import { type FC } from 'react' import { cn } from '@/lib/utils' import { PARAGRAPH_SIZES } from './constants' import { type ParagraphProps } from './types' const Paragraph: FC = ({ children, size = 'default', className, id }) => (

{children}

) export default Paragraph