import {Box, Grid, Typography} from "@mui/material"; import Title from "../../components/Title"; export const BlockQualityItem = ({Icon, title, content}) => { return ( {Icon && } <Typography variant='body1' fontWeight='300' lineHeight='1.8em' color='#616161' marginBottom='10px' textAlign='center' > {content || 'default content'} </Typography> </Grid> ) }