import { Typography, TypographyProps } from "@mui/material"; import { FC } from "react"; const FormPaperTitle: FC = ({ sx, ...props }) => { return ( {props.children} ); }; export default FormPaperTitle;