type SectionHeadingProps = React.ComponentPropsWithRef<'h2'> export const SectionHeading: React.FC = (props) => { const { children, ...rest } = props return (

{children}

) }