BlockContentItem.jsx 482 B

123456789101112131415161718
  1. import {Grid, Typography} from "@mui/material";
  2. export const BlockContentItem = ({content}) => {
  3. return (
  4. <Grid item xs={12} sm={5}>
  5. <Typography
  6. variant='body1'
  7. fontWeight='300'
  8. lineHeight='1.8em'
  9. color='#616161'
  10. marginBottom='10px'
  11. textAlign='justify'
  12. >
  13. {content || 'default text'}
  14. </Typography>
  15. </Grid>
  16. )
  17. }