react-smooth-range-input
v0.3.1
Published
[](https://twitter.com/intent/tweet?text=π+React+Smooth+Range+Input&url=https://github.com/bluebill1049/react-smooth-range-input/) [ => <Slider value={1} min={1} max={30} />;
Props
| Prop | Type | Required | Description |
| :----------------- | :----------------------------------------------- | :------: | :------------------------------------------- |
| value
| number | β | current value |
| min
| number | β | min number range |
| max
| number | β | max number range |
| onChange
| Function | | on value change callback |
| disabled
| boolean | | disable the component |
| hasTickMarks
| boolean = true | | show tick marks only apply to thick type |
| customController
| ({ ref: any, value: number }) => React.ReactNode | | custom controller: make sure to pass the ref |