import { VerticallyCentered } from "@ente/shared/components/Container"; import { BoxProps, Divider } from "@mui/material"; import { FC } from "react"; const FormPaperFooter: FC = ({ sx, style, ...props }) => { return ( <> {props.children} ); }; export default FormPaperFooter;