ProductPrice.jsx 270 B

123456789101112
  1. import {Typography} from "@mui/material";
  2. export const ProductPrice = ({price}) => {
  3. return (
  4. <Typography
  5. variant='h5'
  6. margin='30px 0'
  7. >
  8. ${ price ? parseFloat(price).toFixed(2) : 0 }
  9. </Typography>
  10. )
  11. }