import { cn } from '@/lib/utils'; import React from 'react'; import { quoteStyles } from './Quote.styles'; import { QuoteProps } from './Quote.types'; export const Quote = React.forwardRef( ({ children, size = 'md', cite, className = '', ...props }, ref) => { return (
{children}
); }, ); Quote.displayName = 'Quote';