src/components/paragraph.tsximport { clsx } from 'clsx'export interface ParagraphProps extends React.ComponentPropsWithoutRef<'p'> {/** Variant of the paragraph - controls default styling */variant?: 'default' | 'large' | 'small'/** Font size override */fontSize?: string/** Text color override */color?: string | undefined/** Font family override */fontFamily?: string/** Font weight override */fontWeight?: string/** Font style override */fontStyle?: string/** Line height override */lineHeight?: string/** Text alignment override */textAlign?: string/** Margin override */
Showing the first 20 lines.
Get full code