Type Alias NumberInputProps

NumberInputProps: OverrideProps<typeof Input, {
    onChange?: NumberChangeEventHandler;
    placeholder?: string | number;
    ref?: ComponentPropsWithRef<typeof Input>["ref"];
    value?: number;
}, "type">