Title.tsx 331 B

123456789101112
  1. import { Typography, TypographyProps } from "@mui/material";
  2. import { FC } from "react";
  3. const FormPaperTitle: FC<TypographyProps> = ({ sx, ...props }) => {
  4. return (
  5. <Typography variant="h2" sx={{ mb: 8, ...sx }} {...props}>
  6. {props.children}
  7. </Typography>
  8. );
  9. };
  10. export default FormPaperTitle;