{ "name": "smooth-drawer", "type": "registry:component", "dependencies": [ "motion" ], "registryDependencies": [ "drawer", "button" ], "files": [ { "type": "registry:component", "content": "\"use client\";\n\n/**\n * @author: @dorianbaffier\n * @description: Smooth Drawer\n * @version: 1.0.0\n * @date: 2025-06-26\n * @license: MIT\n * @website: https://kokonutui.com\n * @github: https://github.com/kokonut-labs/kokonutui\n */\n\nimport { Fingerprint } from \"lucide-react\";\nimport { motion } from \"motion/react\";\nimport Image from \"next/image\";\nimport Link from \"next/link\";\nimport type * as React from \"react\";\nimport { Button } from \"@/components/ui/button\";\nimport {\n Drawer,\n DrawerClose,\n DrawerContent,\n DrawerDescription,\n DrawerFooter,\n DrawerHeader,\n DrawerTitle,\n DrawerTrigger,\n} from \"@/components/ui/drawer\";\n\ninterface PriceTagProps {\n price: number;\n discountedPrice: number;\n}\n\nfunction PriceTag({ price, discountedPrice }: PriceTagProps) {\n return (\n