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

{children}

) }