{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "wheel-picker", "title": "Wheel Picker", "author": "ncdai ", "description": "iOS-like wheel picker for React with smooth inertia scrolling and infinite loop support.", "dependencies": [ "@ncdai/react-wheel-picker" ], "files": [ { "path": "src/registry/components/wheel-picker/wheel-picker.tsx", "content": "import \"@ncdai/react-wheel-picker/style.css\"\n\nimport * as WheelPickerPrimitive from \"@ncdai/react-wheel-picker\"\nimport type { ComponentProps } from \"react\"\n\nimport { cn } from \"@/lib/utils\"\n\ntype WheelPickerValue = WheelPickerPrimitive.WheelPickerValue\n\ntype WheelPickerOption =\n WheelPickerPrimitive.WheelPickerOption\n\ntype WheelPickerClassNames = WheelPickerPrimitive.WheelPickerClassNames\n\nfunction WheelPickerWrapper({\n className,\n ...props\n}: ComponentProps) {\n return (\n \n )\n}\n\nfunction WheelPicker({\n classNames,\n ...props\n}: WheelPickerPrimitive.WheelPickerProps) {\n return (\n \n )\n}\n\nexport { WheelPicker, WheelPickerWrapper }\nexport type { WheelPickerClassNames, WheelPickerOption }\n", "type": "registry:component" } ], "docs": "https://chanhdai.com/components/react-wheel-picker", "type": "registry:component" }