Design System

Slider

The Slider is used to allow users to make selections from a range of values.

Design guidance

When and how to use this

Sliders reflect a range of values along a bar, from which users may select a single value. They are ideal for adjusting settings such as volume, brightness, or applying image filters.

When to consider something else

For cases when we want to represent the selection as a range. For more explicit available values, you may consider using Select instead.


React

Slider composes Chakra's Slider. We offer size variants that align with those in TextInput.

live

<Stack direction="column" spacing="400">
<Slider size="small"></Slider>
<Slider></Slider>
<Slider size="large"></Slider>
</Stack>

Slider has support for adding marks along the range of the input. This will allow customization on the visual indicators of values.

live

<Stack direction="column" spacing="400">
<Slider
marks={[
{ value: 25, label: '25' },
{ value: 50, label: '50' },
{ value: 75, label: '75' },
]}
></Slider>
</Stack>

Slider accepts a suggestedValue prop to display an indicator at location of the range.

live

<Stack direction="column" spacing="400">
<Slider
suggestedValue={45}
marks={[
{ value: 0, label: '0' },
{ value: 100, label: '100' },
]}
></Slider>
</Stack>

Slider accepts an orientation prop to control the orientation of the slider.

live

<Slider
h="300px"
marks={[
{ value: 0, label: '0' },
{ value: 50, label: '50' },
{ value: 100, label: '100' },
]}
orientation="vertical"
></Slider>


PropDescription
ariaValueTextText for the human-readable text alternative to aria-valuenow. If supplied this string is interpolated directly after the value without spacing.
labelAccessible label for the slider.
suggestedValueDisplays an indicator at a particular "suggested" value.
snapThresholdDetermines a threshold within which the slider will snap directly to the suggestedValue.
marksArray of objects representing the marks on the slider. Each object should have a value (position of the mark) and a label (text for the mark).
sizeSets the size of the slider. Use small for compact interfaces.
widthSlider defaults to a width of 100%. Set width: auto and display: inline-block or use flexbox to layout a slider with automatic width.
minMinimum value of the slider.
maxMaximum value of the slider.
stepStep interval for the slider.
valueControlled value of the slider.
defaultValueDefault value of the slider when it is uncontrolled.
isDisabledIf true, the slider will be disabled.
onChangeCallback function triggered when the slider value changes.
onChangeStartCallback function triggered when the slider starts being dragged.
onChangeEndCallback function triggered when the slider stops being dragged.


Copyright © 2025 Hover Inc. All Rights Reserved.