import React from "react"; import { NumericFormat } from "react-number-format"; import Input from "./Input"; export default function FormInputNumeric({ name, onChange, value, label, className, error }) { return (
{ onChange({ target: { name: name, value: values.floatValue } }) }} /> {error && (

{error}

)}
) }