Accessible React Slider Component
npm install @reach/slider !MIT license
A UI input component where the user selects a value from within a given range. A Slider has a handle that can be moved along a track to change its value. When the user's mouse or focus is on the Slider's handle, the value can be incremented with keyboard controls.
``jsx
import {
Slider,
SliderInput,
SliderTrack,
SliderRange,
SliderHandle,
SliderMarker,
} from "@reach/slider";
import "@reach/slider/styles.css";
function Example() {
return
}
function ExampleComposed() {
return (
);
}
``