{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "animated-tooltip-shadcnui", "type": "registry:component", "title": "Animated Tooltip", "description": "Tooltip with delay and slide animation", "registryDependencies": [ "button" ], "dependencies": [ "framer-motion", "lucide-react", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/tooltips/animated-tooltip.tsx", "content": "\"use client\";\n\nimport { AnimatePresence, motion } from \"framer-motion\";\nimport { Info } from \"lucide-react\";\nimport { useState } from \"react\";\n\nexport function AnimatedTooltip() {\n const [isVisible, setIsVisible] = useState(false);\n\n return (\n
\n This is a helpful tooltip with smooth animation and delay.\n
\n