import classNames from 'classnames'; import type { HTMLAttributes } from 'react'; export function Heading({ className, children, ...props }: HTMLAttributes) { return (

{children}

); }