This component is represents range for <NumericInput />. It requires context which is provided by <FormGroup />.
<Form {...FormProps}>
<FormGroup {...FormGroupProps}>
<InputRange
max={900}
min={1}
>
<NumericInput {...HTMLInputProps} />
</InputRange>
</FormGroup>
</Form>where:
max- max value for input. Required.min- min value for input. Optional.