index.tsx 228 B

123456789
  1. import { Paper, styled } from "@mui/material";
  2. const FormPaper = styled(Paper)(({ theme }) => ({
  3. padding: theme.spacing(4, 2),
  4. maxWidth: "360px",
  5. width: "100%",
  6. textAlign: "left",
  7. }));
  8. export default FormPaper;