import * as React from "react" import * as SliderPrimitive from "@radix-ui/react-slider" import { cn } from "@/lib/utils" function Slider({ className, ...props }: React.ComponentProps) { return ( ) } export { Slider }