import {Typography} from "@mui/material"; export const ProductPrice = ({price}) => { return ( ${ price ? parseFloat(price).toFixed(2) : 0 } ) }