{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "concentric-ring",
  "type": "registry:ui",
  "title": "Concentric Ring",
  "description": "Concentric Ring loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/concentric-ring.tsx",
      "type": "registry:ui",
      "target": "components/amicro/concentric-ring.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const ConcentricRing = () => {\r\n  return (\r\n    <div className=\"relative w-12 h-12 flex items-center justify-center\">\r\n      <motion.div\r\n        className=\"absolute w-12 h-12 border-2 border-zinc-800 dark:border-zinc-700 border-t-transparent rounded-full\"\r\n        animate={{ rotate: 360 }}\r\n        transition={{ duration: 2, repeat: Infinity, ease: \"linear\" }}\r\n      />\r\n      <motion.div\r\n        className=\"absolute w-8 h-8 border-2 border-zinc-500 border-b-transparent rounded-full\"\r\n        animate={{ rotate: -360 }}\r\n        transition={{ duration: 1.5, repeat: Infinity, ease: \"linear\" }}\r\n      />\r\n      <motion.div\r\n        className=\"absolute w-4 h-4 border-2 border-zinc-300 border-l-transparent rounded-full\"\r\n        animate={{ rotate: 360 }}\r\n        transition={{ duration: 1, repeat: Infinity, ease: \"linear\" }}\r\n      />\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}