import * as SliderPrimitive from "@radix-ui/react-slider"; import * as React from "react"; import { cn } from "@/lib/utils"; /** * Shadcn-style horizontal slider built on `@radix-ui/react-slider`. * * Single-thumb only by current design (the design-form uses one * thumb per scalar field). Multi-thumb is supported by the primitive * if a future feature needs it. */ export const Slider = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); Slider.displayName = "Slider";