{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "dots-ring",
  "type": "registry:ui",
  "title": "Dots Ring",
  "description": "Dots Ring loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/dots-ring.tsx",
      "type": "registry:ui",
      "target": "components/amicro/dots-ring.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const DotsRing = () => {\r\n  return (\r\n    <div className=\"relative w-12 h-12\">\r\n      {[0, 1, 2, 3, 4, 5, 6, 7].map((i) => (\r\n        <motion.div\r\n          key={i}\r\n          className=\"absolute top-0 left-1/2 w-2 h-2 bg-zinc-800 dark:bg-white rounded-full -ml-1 origin-[4px_24px]\"\r\n          style={{ rotate: i * 45 }}\r\n          animate={{ scale: [1, 0.5, 1], opacity: [1, 0.3, 1] }}\r\n          transition={{ duration: 1.5, repeat: Infinity, delay: i * 0.15, ease: \"easeInOut\" }}\r\n        />\r\n      ))}\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}