at main 214 B view raw
1import { ReactNode } from 'react'; 2 3export type ParagraphSize = 'sm' | 'base' | 'md' | 'lg' | 'xl' | '2xl'; 4 5export interface ParagraphProps { 6 children: ReactNode; 7 size?: ParagraphSize; 8 className?: string; 9}