Footer.tsx 587 B

12345678910111213141516171819202122
  1. import { FC } from 'react';
  2. import { BoxProps, Divider } from '@mui/material';
  3. import { VerticallyCentered } from '../../Container';
  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. {props.children}
  16. </VerticallyCentered>
  17. </>
  18. );
  19. };
  20. export default FormPaperFooter;