FullBlock.jsx 714 B

1234567891011121314151617181920212223242526
  1. import React from 'react';
  2. import {Box, Typography} from "@mui/material";
  3. export const FullBlock = ({title, children, breakpoint}) => {
  4. return (
  5. <Box>
  6. <Typography
  7. variant={breakpoint ? 'h5': 'h4'}
  8. textAlign='center'
  9. fontWeight='300'
  10. marginBottom='20px'
  11. letterSpacing='7px'
  12. >
  13. {title || 'title'}
  14. </Typography>
  15. <Typography
  16. variant='body1'
  17. fontWeight='300'
  18. marginBottom='40px'
  19. color='#616161'
  20. >
  21. {children || 'children'}
  22. </Typography>
  23. </Box>
  24. )
  25. }