import React from 'react' import { NumericFormat } from 'react-number-format' import Input from './Input' import { toFixed } from '@/utils' import { isEmpty } from 'lodash' const InputNum = (props) => { return } export default function FormInputNumericWith({ name, onChange, value, label, className, error, max = 999999999, fixed = true, leftItem = null, }) { if (fixed) { value = toFixed(value) } value = Number(value) const labelId = `${name}-${value}` return (
{error}
)}