{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "fade-slide-modal-shadcnui", "type": "registry:component", "title": "Fade & Slide Modal", "description": "Modal with fade backdrop and slide-up animation", "registryDependencies": [ "button" ], "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/components/modal/fade-slide.tsx", "content": "\"use client\";\n\nimport { AnimatePresence, motion } from \"framer-motion\";\nimport { X } from \"lucide-react\";\nimport { useState } from \"react\";\n\nexport function FadeSlideModal() {\n const [isOpen, setIsOpen] = useState(false);\n\n return (\n
\n This is a beautiful modal with fade and slide animation.\n
\n