{ "name": "delete", "type": "registry:ui", "registryDependencies": [], "dependencies": [ "motion" ], "devDependencies": [], "tailwind": {}, "cssVars": { "light": {}, "dark": {} }, "files": [ { "path": "delete.tsx", "content": "'use client';\n\nimport type { Variants } from 'motion/react';\nimport { motion, useAnimation } from 'motion/react';\n\nconst lidVariants: Variants = {\n normal: { y: 0 },\n animate: { y: -1.1 },\n};\n\nconst springTransition = {\n type: 'spring',\n stiffness: 500,\n damping: 30,\n};\n\nconst DeleteIcon = () => {\n const controls = useAnimation();\n\n return (\n