Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 745 Bytes

File metadata and controls

23 lines (18 loc) · 745 Bytes

Slider

Sliders allow users to make selections from a range of values.

Props

Name Required Type Possible values
min number
max number
value number
onChange event => void

Example

<Slider
    type="range"
    min={100}
    max={1000}
    value={500}
/>