import { cn } from '#utils'; export type HeadingProps = { children: string; className?: string; variant: 'h1' | 'h2' | 'h3' | 'h4' | 'h5'; }; export const Heading = ({ children, className, variant }: HeadingProps) => { switch (variant) { case 'h1': return