import { VerticallyCentered } from "@ente/shared/components/Container"; import { Divider, Paper, styled, Typography, type BoxProps, type TypographyProps, } from "@mui/material"; import React from "react"; export const FormPaper = styled(Paper)(({ theme }) => ({ padding: theme.spacing(4, 2), maxWidth: "360px", width: "100%", textAlign: "left", })); export const FormPaperTitle: React.FC = ({ sx, ...props }) => { return ( {props.children} ); }; export const FormPaperFooter: React.FC = ({ sx, style, ...props }) => { return ( <> {props.children} ); };