Installation
via Shadcn cli
pnpm dlx shadcn@latest add https://neobrutalism.dev/r/slider.json
Manually
import * as SliderPrimitive from "@radix-ui/react-slider"
import * as React from "react"
import { cn } from "@/lib/utils"
const Slider = React.forwardRef<
React.ElementRef<typeof SliderPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof SliderPrimitive.Root>
>(({ className, ...props }, ref) => (
"relative flex w-full touch-none select-none items-center",
<SliderPrimitive.Track className="relative h-3 w-full grow overflow-hidden rounded-full border-2 border-border bg-bw">
<SliderPrimitive.Range className="absolute h-full bg-main" />
<SliderPrimitive.Thumb className="block h-5 w-5 rounded-full border-2 border-border bg-white ring-offset-white transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-black focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50" />
Slider.displayName = SliderPrimitive.Root.displayName
Usage
import { Slider } from '@/components/ui/slider'
<Slider defaultValue={[33]} max={100} step={1} />
Edit this page