import { cn } from '@/lib/utils'; import React from 'react'; import { paragraphStyles } from './Paragraph.styles'; import { ParagraphProps } from './Paragraph.types'; export const Paragraph = React.forwardRef( ({ children, size = 'md', className = '' }, ref) => { return (

{children}

); }, ); Paragraph.displayName = 'Paragraph';