Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import * as React from "react"; import * as SliderPrimitive from "@radix-ui/react-slider"; import { ui } from "@/config/theme"; 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={ui("sliderTrack")}> <SliderPrimitive.Range className={ui("sliderRange")} /> </SliderPrimitive.Track> <SliderPrimitive.Thumb className={ui("sliderThumb")} /> </SliderPrimitive.Root> )); Slider.displayName = SliderPrimitive.Root.displayName; export { Slider }; |