"use client"; import * as React from "react"; import * as SliderPrimitive from "@radix-ui/react-slider"; import { cn } from "@/lib/utils"; export const Slider = React.forwardRef, React.ComponentPropsWithoutRef>(function Slider({ className, ...props }, ref) { return ( ); });