ProductDescription.jsx 397 B

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