import type { HTMLAttributes, PropsWithChildren } from 'react'; export function H3({ children, className, ...props }: PropsWithChildren>) { return (

{children}

); }