{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "ripple-effect",
  "type": "registry:ui",
  "title": "Ripple Effect",
  "description": "Ripple Effect loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/ripple-effect.tsx",
      "type": "registry:ui",
      "target": "components/amicro/ripple-effect.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const RippleEffect = () => {\r\n  return (\r\n    <div className=\"relative w-12 h-12 flex items-center justify-center\">\r\n      {/* Center dot */}\r\n      <div className=\"absolute w-2.5 h-2.5 bg-zinc-800 dark:bg-white rounded-full\" />\r\n      {[0, 1, 2].map((i) => (\r\n        <motion.div\r\n          key={i}\r\n          className=\"absolute w-8 h-8 border border-zinc-850 dark:border-white rounded-full\"\r\n          initial={{ scale: 0.3, opacity: 0.8 }}\r\n          animate={{ scale: 1.6, opacity: 0 }}\r\n          transition={{\r\n            duration: 2.2,\r\n            repeat: Infinity,\r\n            ease: \"easeOut\",\r\n            delay: i * 0.7,\r\n          }}\r\n        />\r\n      ))}\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}