ProductDescription.jsx 370 B

123456789101112131415
  1. import {Typography} from "@mui/material";
  2. export const ProductDescription = ({description}) => {
  3. return (
  4. <Typography
  5. fontSize='17px'
  6. letterSpacing='1px'
  7. lineHeight='1.7em'
  8. color='#616161'
  9. fontWeight='300'
  10. >
  11. {description || 'PRODUCT DESCRIPTION'}
  12. </Typography>
  13. )
  14. }