BlockContentItem.jsx 509 B

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