Midday / packages /ui /src /components /currency-input.tsx
Jules
Final deployment with all fixes and verified content
c09f67c
import { NumericFormat, type NumericFormatProps } from "react-number-format";
import { Input } from "./input";
export function CurrencyInput({
thousandSeparator = true,
...props
}: NumericFormatProps) {
return (
<NumericFormat
thousandSeparator={thousandSeparator}
customInput={Input}
{...props}
/>
);
}