Footer.tsx 618 B

1234567891011121314151617181920212223
  1. import { VerticallyCentered } from "@ente/shared/components/Container";
  2. import { BoxProps, Divider } from "@mui/material";
  3. import { FC } from "react";
  4. const FormPaperFooter: FC<BoxProps> = ({ sx, style, ...props }) => {
  5. return (
  6. <>
  7. <Divider />
  8. <VerticallyCentered
  9. style={{ flexDirection: "row", ...style }}
  10. sx={{
  11. mt: 3,
  12. ...sx,
  13. }}
  14. {...props}
  15. >
  16. {props.children}
  17. </VerticallyCentered>
  18. </>
  19. );
  20. };
  21. export default FormPaperFooter;