import { cn } from "@/lib/utils" // https://ui.shadcn.com/docs/components/radix/typography.md export function H1({ className, children, ...props }: React.HTMLAttributes) { return (

{children}

) } export function H2({ className, children, ...props }: React.HTMLAttributes) { return (

{children}

) } export function H3({ className, children, ...props }: React.HTMLAttributes) { return (

{children}

) } export function H4({ className, children, ...props }: React.HTMLAttributes) { return (

{children}

) } export function P({ className, children, ...props }: React.HTMLAttributes) { return (

{children}

) } export function Blockquote({ className, children, ...props }: React.HTMLAttributes) { return (
{children}
) } export function InlineCode({ className, children, ...props }: React.HTMLAttributes) { return ( {children} ) } export function Lead({ className, children, ...props }: React.HTMLAttributes) { return (

{children}

) } export function Large({ className, children, ...props }: React.HTMLAttributes) { return (
{children}
) } export function Small({ className, children, ...props }: React.HTMLAttributes) { return ( {children} ) } export function Muted({ className, children, ...props }: React.HTMLAttributes) { return (

{children}

) }