ProductTitle.jsx 286 B

12345678910111213
  1. import {Typography} from "@mui/material";
  2. export const ProductTitle = ({title}) => {
  3. return (
  4. <Typography
  5. variant='h4'
  6. fontFamily='sarif'
  7. letterSpacing='4px'
  8. >
  9. {title || 'PRODUCT TITLE'}
  10. </Typography>
  11. )
  12. }