import { clsx } from 'clsx' export function Heading({ as: Component = 'h1', className, children, ...props }) { return ( {children} ) } export function H2({ className, children, ...props }) { return (

{children}

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

{children}

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

{children}

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

{children}

) } export function PS({ className, children, ...props }) { return (

{children}

) } export function PXS({ className, children, ...props }) { return (

{children}

) } export function Subheading({ className, children, ...props }) { return (

{children}

) }