import { cn } from '@/lib/utils' import type { ComponentPropsWithoutRef, FC } from 'react' type Props = ComponentPropsWithoutRef<'h2'> const SectionTitle: FC = ({ children, className, ...rest }) => (

{children}

) export default SectionTitle