Files
bodyshop/client/src/utils/CurrencyFormatter.jsx
2025-08-19 16:23:29 -04:00

15 lines
309 B
JavaScript

import { NumericFormat } from "react-number-format";
export default function CurrencyFormatter(props) {
return (
<NumericFormat
thousandSeparator={true}
decimalScale={2}
fixedDecimalScale={true}
prefix={"$"}
value={props.children}
displayType={"text"}
/>
);
}