{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "slider", "type": "registry:component", "title": "Slider", "description": "Let your users pick what they want.", "dependencies": [ "@radix-ui/react-slider", "lucide-react" ], "files": [ { "path": "components/retroui/Slider.tsx", "content": "\"use client\";\n\nimport * as React from \"react\";\nimport * as SliderPrimitive from \"@radix-ui/react-slider\";\n\nimport { cn } from \"@/lib/utils\";\n\nconst Slider = React.forwardRef<\n React.ElementRef,\n React.ComponentPropsWithoutRef\n>(({ className, ...props }, ref) => (\n \n \n \n \n \n \n));\nSlider.displayName = SliderPrimitive.Root.displayName;\n\nexport { Slider };\n", "type": "registry:component", "target": "components/retroui/Slider.tsx" } ] }