NumberInputPropsinterface
{
min?: number | undefined;
max?: number | undefined;
formatter?: NumberFormatter | undefined;
}| Property | Type | |
|---|---|---|
.min | number | |
.max | number | |
.formatter | NumberFormatter | Optional formatter — when provided the input switches to type="text" and reformats the value on blur. |
Props for NumberInput, a text-based numeric input bound to a number value.