Search documentation

Search components and pages

Slider

An input where the user selects a value from a range.

01

Installation

Add the slider component with the shadcn CLI.

bash
npx shadcn@latest add https://swiss.ui.unsanity.ai/r/slider.json
02

Usage

tsx
import { Slider } from "@/components/ui/slider"
03

Examples

Default

import { Slider } from "@/components/ui/slider"

<div className="w-64">
  <Slider defaultValue={[50]} max={100} step={1} />
</div>