{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "animated-checkbox-shadcnui", "type": "registry:component", "title": "Animated Checkbox", "description": "Checkbox with checkmark animation", "registryDependencies": [ "button" ], "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/forms/animated-checkbox.tsx", "content": "\"use client\";\n\nimport { motion } from \"framer-motion\";\nimport { Check } from \"lucide-react\";\nimport { useState } from \"react\";\n\nexport function AnimatedCheckbox() {\n const [isChecked, setIsChecked] = useState(false);\n\n return (\n