{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "concentric-pulse",
  "type": "registry:ui",
  "title": "Concentric Pulse",
  "description": "Concentric Pulse loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/concentric-pulse.tsx",
      "type": "registry:ui",
      "target": "components/amicro/concentric-pulse.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const ConcentricPulse = () => {\r\n  return (\r\n    <div className=\"relative w-12 h-12 flex items-center justify-center\">\r\n      {[1, 2, 3].map((i) => (\r\n        <motion.div\r\n          key={i}\r\n          className=\"absolute rounded-full border border-zinc-800 dark:border-zinc-700\"\r\n          initial={{ width: 0, height: 0, opacity: 1 }}\r\n          animate={{ width: 48, height: 48, opacity: 0 }}\r\n          transition={{ duration: 2, repeat: Infinity, delay: i * 0.6, ease: \"easeOut\" }}\r\n        />\r\n      ))}\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}