import { FunctionComponent } from "react"; export const LargeTitle: FunctionComponent<{ className?: string }> = ({ className, children, }) => { return (

{children}

); };