Installation & Usage
Basic Usage
import { Slider } from 'dotti'
<Slider
label="Volume"
value={volume}
onChange={setVolume}
min={0}
max={100}
/>Examples
Basic Slider
Standard range slider with label.
Volume50
Code
const [value, setValue] = useState(50)
<Slider
label="Volume"
value={value}
onChange={setValue}
min={0}
max={100}
/>Props
TypeScript Support
All components are fully typed with TypeScript. Check your IDE for prop suggestions and documentation.