Slider
An input where the user selects a value from within a given range.
tsx
import { Slider } from "@/components/ui/slider"
export function SliderDemo() { return ( <Slider defaultValue={[50]} max={100} step={1} className="w-[60%]" /> )}
Installation
CLI
bash
npx fivui add slider
Manual
Copy and paste the following code into your project.
bash
npm install @radix-ui/react-slider
components/ui/slider.tsx
"use client"
import * as React from "react"import * as SliderPrimitive from "@radix-ui/react-slider"
import { cn } from "@/lib/utils"
const Slider = React.forwardRef< React.ElementRef<typeof SliderPrimitive.Root>, React.ComponentPropsWithoutRef<typeof SliderPrimitive.Root>>(({ className, ...props }, ref) => ( <SliderPrimitive.Root ref={ref} className={cn( "relative flex w-full touch-none select-none items-center", className )} {...props} > <SliderPrimitive.Track className="relative h-2 w-full grow overflow-hidden rounded-full bg-secondary"> <SliderPrimitive.Range className="absolute h-full bg-primary" /> </SliderPrimitive.Track> <SliderPrimitive.Thumb className="block h-5 w-5 rounded-full border-2 border-primary bg-background ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50" /> </SliderPrimitive.Root>))Slider.displayName = SliderPrimitive.Root.displayName
export { Slider }
Usage
tsx
import { Slider } from "@/components/ui/slider"
<Slider defaultValue={[33]} max={100} step={1} />
API Reference
Slider
Contains all the parts of a slider.
Prop | Type | Default |
---|---|---|
defaultValue | number[] | - |
value | number[] | - |
onValueChange | function | - |
min | number | 0 |
max | number | 100 |
step | number | 1 |
orientation | "horizontal" | "vertical" | "horizontal" |
disabled | boolean | false |
Built on top of Radix UI Slider.