{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "intersecting-rings",
  "type": "registry:ui",
  "title": "Intersecting Rings",
  "description": "Intersecting Rings loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/intersecting-rings.tsx",
      "type": "registry:ui",
      "target": "components/amicro/intersecting-rings.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const IntersectingRings = () => {\r\n  return (\r\n    <div className=\"relative w-12 h-12 flex items-center justify-center [perspective:800px]\">\r\n      <motion.div\r\n        className=\"absolute w-10 h-10 border-2 border-t-zinc-800 dark:border-t-white border-r-zinc-800/30 dark:border-r-white/30 border-b-zinc-800/10 dark:border-b-white/10 border-l-transparent rounded-full\"\r\n        style={{ transformStyle: \"preserve-3d\" }}\r\n        animate={{ rotateX: 360, rotateY: 180 }}\r\n        transition={{ duration: 2.2, repeat: Infinity, ease: \"linear\" }}\r\n      />\r\n      <motion.div\r\n        className=\"absolute w-10 h-10 border-2 border-b-zinc-800 dark:border-b-white border-t-zinc-800/30 dark:border-t-white/30 border-l-zinc-800/10 dark:border-l-white/10 border-r-transparent rounded-full\"\r\n        style={{ transformStyle: \"preserve-3d\" }}\r\n        animate={{ rotateX: 180, rotateY: 360 }}\r\n        transition={{ duration: 2.2, repeat: Infinity, ease: \"linear\" }}\r\n      />\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}