import { forwardRef } from 'react' type SectionHeadingProps = React.ComponentPropsWithRef<'h2'> export const SectionHeading = forwardRef< HTMLHeadingElement, SectionHeadingProps >((props, ref) => { const { children, ...rest } = props return ( <>

{children}

) })