"use client"; import * as React from "react"; import * as SliderPrimitive from "@radix-ui/react-slider"; import { sliderSlots } from "./variants"; import { cn } from "@eloquent/styles"; export const Slider = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => { const { rootStyle, trackStyle, rangeStyle, thumbStyle } = sliderSlots(); return ( ); }); Slider.displayName = SliderPrimitive.Root.displayName;