import classnames from 'classnames'; import type { ComponentChildren } from 'preact'; type Props = { className?: string; children?: ComponentChildren; }; export function Heading({ className, children, ...props }: Props) { return (

{children}

); }