type SimpleProps = { children: JSX.Element | string | (JSX.Element | string)[]; className?: string; }; const Title = ({ children, className }: SimpleProps) => (

{children}

); const Subtitle = ({ children, className }: SimpleProps) => (

{children}

); const Paragraph = ({ children, className }: SimpleProps) => (

{children}

); export { Title, Subtitle, Paragraph };