1import { Meta, Props } from '@storybook/addon-docs/blocks';
2import { SliderProps } from './types';
3
4<Meta title="MDX|Slider" />
5
6# Slider
7
8The `Slider` component is an input element where users can manipulate one value on a one-dimensional axis.
9
10`Slider` can be implemented in horizontal or vertical orientation. You can set the default starting value(s) for the slider with the `value` prop.
11
12<Props of={SliderProps} />
13