ente/web/packages/shared/components/Form/FormPaper/Title.tsx
2024-03-01 12:21:07 +05:30

12 lines
331 B
TypeScript

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