FullBlock.jsx 687 B

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