From 8cba2a36465c2708c37d0caa275b8bb7d35f9034 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:15:02 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- src/components/ui/slider.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/components/ui/slider.tsx diff --git a/src/components/ui/slider.tsx b/src/components/ui/slider.tsx new file mode 100644 index 0000000..e56622a --- /dev/null +++ b/src/components/ui/slider.tsx @@ -0,0 +1,23 @@ +import * as React from "react"; +import * as SliderPrimitive from "@radix-ui/react-slider"; + +import { cn } from "@/lib/utils"; + +const Slider = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>(({ className, ...props }, ref) => ( + + + + + + +)); +Slider.displayName = SliderPrimitive.Root.displayName; + +export { Slider };