ProductPrice.jsx 297 B

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