src/components/quote.tsximport { clsx } from 'clsx'export interface QuoteProps extends React.ComponentPropsWithoutRef<'blockquote'> {/** Variant of the quote - controls default styling */variant?: 'default' | 'large' | 'small'/** Font size override */fontSize?: string/** Text color override */color?: string/** Font family override */fontFamily?: string/** Font weight override */fontWeight?: string/** Font style override */fontStyle?: string/** Text alignment override */textAlign?: string/** Margin override */margin?: string/** Additional CSS classes */
Showing the first 20 lines.
Get full code