import type { InputHTMLAttributes } from "react"; import { cn } from "../../lib/cn"; export type SliderProps = InputHTMLAttributes; export function Slider({ className, ...props }: SliderProps) { return ( ); }