Slider API
API reference docs for the React Slider component. Learn about the props, CSS, and other APIs of this exported module.
Demos
Import
import Slider from '@mui/material/Slider';
// or
import { Slider } from '@mui/material';
Learn about the difference by reading this guide on minimizing bundle size.
Props of the native component are also available.
Name | Type | Default | Description |
---|---|---|---|
aria-label | string | - | The label of the slider. |
aria-labelledby | string | - | The id of the element containing a label for the slider. |
aria-valuetext | string | - | A string value that provides a user-friendly name for the current value of the slider. |
classes | object | - | Override or extend the styles applied to the component. See CSS classes API below for more details. |
color | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning' | string | 'primary' | The color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide. |
components | { Input?: elementType, Mark?: elementType, MarkLabel?: elementType, Rail?: elementType, Root?: elementType, Thumb?: elementType, Track?: elementType, ValueLabel?: elementType } | {} | The components used for each slot inside. |
componentsProps | { input?: func | object, mark?: func | object, markLabel?: func | object, rail?: func | object, root?: func | object, thumb?: func | object, track?: func | object, valueLabel?: func | { children?: element, className?: string, open?: bool, style?: object, value?: number, valueLabelDisplay?: 'auto' | 'off' | 'on' } } | {} | The extra props for the slot components. You can override the existing props or add new ones. |
defaultValue | Array<number> | number | - | The default value. Use when the component is not controlled. |
disabled | bool | false | If |
disableSwap | bool | false | If |
getAriaLabel | func | - | Accepts a function which returns a string value that provides a user-friendly name for the thumb labels of the slider. This is important for screen reader users. Signature: function(index: number) => string
|
getAriaValueText | func | - | Accepts a function which returns a string value that provides a user-friendly name for the current value of the slider. This is important for screen reader users. Signature: function(value: number, index: number) => string
|
marks | Array<{ label?: node, value: number }> | bool | false | Marks indicate predetermined values to which the user can move the slider. If |
max | number | 100 | The maximum allowed value of the slider. Should not be equal to min. |
min | number | 0 | The minimum allowed value of the slider. Should not be equal to max. |
name | string | - | Name attribute of the hidden |
onChange | func | - | Callback function that is fired when the slider's value changed. Signature: function(event: Event, value: number | Array
|
onChangeCommitted | func | - | Callback function that is fired when the Signature: function(event: React.SyntheticEvent | Event, value: number | Array
|
orientation | 'horizontal' | 'vertical' | 'horizontal' | The component orientation. |
scale | func | function Identity(x) { return x; } | A transformation function, to change the scale of the slider. Signature: function(x: any) => any |
shiftStep | number | 10 | The granularity with which the slider can step through values when using Page Up/Page Down or Shift + Arrow Up/Arrow Down. |
size | 'small' | 'medium' | string | 'medium' | The size of the slider. |
slotProps | { input?: func | object, mark?: func | object, markLabel?: func | object, rail?: func | object, root?: func | object, thumb?: func | object, track?: func | object, valueLabel?: func | { children?: element, className?: string, open?: bool, style?: object, value?: number, valueLabelDisplay?: 'auto' | 'off' | 'on' } } | {} | The props used for each slot inside the Slider. |
slots | { input?: elementType, mark?: elementType, markLabel?: elementType, rail?: elementType, root?: elementType, thumb?: elementType, track?: elementType, valueLabel?: elementType } | {} | The components used for each slot inside the Slider. Either a string to use a HTML element or a component. |
step | number | 1 | The granularity with which the slider can step through values. (A "discrete" slider.) The |
sx | Array<func | object | bool> | func | object | - | The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details. |
tabIndex | number | - | Tab index attribute of the hidden |
track | 'inverted' | 'normal' | false | 'normal' | The track presentation:
|
value | Array<number> | number | - | The value of the slider. For ranged sliders, provide an array with two values. |
valueLabelDisplay | 'auto' | 'off' | 'on' | 'off' | Controls when the value label is displayed:
|
valueLabelFormat | func | string | function Identity(x) { return x; } | The format function the value label's value. |
ref
is forwarded to the root element.Theme default props
You can use MuiSlider
to change the default props of this component with the theme.
These class names are useful for styling with CSS. They are applied to the component's slots when specific states are triggered.
Class name | Rule name | Description |
---|---|---|
.Mui-active | State class applied to the thumb element if it's active. | |
.Mui-disabled | State class applied to the root and thumb element if disabled={true} . | |
.Mui-focusVisible | State class applied to the thumb element if keyboard focused. | |
.MuiSlider-colorError | colorError | Styles applied to the root element if color="error" . |
.MuiSlider-colorInfo | colorInfo | Styles applied to the root element if color="info" . |
.MuiSlider-colorPrimary | colorPrimary | Styles applied to the root element if color="primary" . |
.MuiSlider-colorSecondary | colorSecondary | Styles applied to the root element if color="secondary" . |
.MuiSlider-colorSuccess | colorSuccess | Styles applied to the root element if color="success" . |
.MuiSlider-colorWarning | colorWarning | Styles applied to the root element if color="warning" . |
.MuiSlider-dragging | dragging | State class applied to the root if a thumb is being dragged. |
.MuiSlider-mark | mark | Styles applied to the mark element. |
.MuiSlider-markActive | markActive | Styles applied to the mark element if active (depending on the value). |
.MuiSlider-marked | marked | Styles applied to the root element if marks is provided with at least one label. |
.MuiSlider-markLabel | markLabel | Styles applied to the mark label element. |
.MuiSlider-markLabelActive | markLabelActive | Styles applied to the mark label element if active (depending on the value). |
.MuiSlider-rail | rail | Styles applied to the rail element. |
.MuiSlider-root | root | Styles applied to the root element. |
.MuiSlider-sizeSmall | sizeSmall | Styles applied to the root element if size="small" . |
.MuiSlider-thumb | thumb | Styles applied to the thumb element. |
.MuiSlider-thumbColorError | thumbColorError | Styles applied to the thumb element if color="error" . |
.MuiSlider-thumbColorInfo | thumbColorInfo | Styles applied to the thumb element if color="info" . |
.MuiSlider-thumbColorPrimary | thumbColorPrimary | Styles applied to the thumb element if color="primary" . |
.MuiSlider-thumbColorSecondary | thumbColorSecondary | Styles applied to the thumb element if color="secondary" . |
.MuiSlider-thumbColorSuccess | thumbColorSuccess | Styles applied to the thumb element if color="success" . |
.MuiSlider-thumbColorWarning | thumbColorWarning | Styles applied to the thumb element if color="warning" . |
.MuiSlider-thumbSizeSmall | thumbSizeSmall | Styles applied to the thumb element if size="small" . |
.MuiSlider-track | track | Styles applied to the track element. |
.MuiSlider-trackFalse | trackFalse | Styles applied to the root element if track={false} . |
.MuiSlider-trackInverted | trackInverted | Styles applied to the root element if track="inverted" . |
.MuiSlider-valueLabel | valueLabel | Styles applied to the thumb label element. |
.MuiSlider-valueLabelCircle | valueLabelCircle | Styles applied to the thumb label's circle element. |
.MuiSlider-valueLabelLabel | valueLabelLabel | Styles applied to the thumb label's label element. |
.MuiSlider-valueLabelOpen | valueLabelOpen | Styles applied to the thumb label element if it's open. |
.MuiSlider-vertical | vertical | Styles applied to the root element if orientation="vertical" . |
You can override the style of the component using one of these customization options:
- With a global class name.
- With a rule name as part of the component's
styleOverrides
property in a custom theme.