import { clsx } from 'clsx' type HeadingProps = { as?: 'div' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' dark?: boolean } & React.ComponentPropsWithoutRef< 'div' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' > export function Heading({ className, as: Element = 'h2', dark = false, ...props }: HeadingProps) { return ( ) } export function Subheading({ className, as: Element = 'h2', dark = false, ...props }: HeadingProps) { return ( ) } export function Lead({ className, ...props }: React.ComponentPropsWithoutRef<'p'>) { return (

) }