import classNames from 'classnames'; import type { HTMLAttributes } from 'react'; interface Props extends HTMLAttributes { size?: 1 | 2 | 3; } export function Heading({ className, size = 1, ...props }: Props) { const Component = size === 1 ? 'h1' : size === 2 ? 'h2' : 'h3'; return ( ); }