{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "dual-arc",
  "type": "registry:ui",
  "title": "Dual Arc",
  "description": "Dual Arc loading animation.",
  "dependencies": [
    "framer-motion"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/ui/loading/dual-arc.tsx",
      "type": "registry:ui",
      "target": "components/amicro/dual-arc.tsx",
      "content": "import React from 'react';\r\nimport { motion } from 'framer-motion';\r\n\r\nexport const DualArc = () => {\r\n  return (\r\n    <div className=\"relative w-8 h-8 flex items-center justify-center\">\r\n      <motion.div\r\n        className=\"absolute inset-0 border-2 border-t-zinc-800 dark:border-t-white border-b-zinc-800 dark:border-b-white border-l-transparent border-r-transparent rounded-full\"\r\n        animate={{ rotate: 360, scale: [1, 0.82, 1] }}\r\n        transition={{\r\n          rotate: { duration: 1.2, repeat: Infinity, ease: \"linear\" },\r\n          scale: { duration: 1.2, repeat: Infinity, ease: \"easeInOut\" }\r\n        }}\r\n      />\r\n    </div>\r\n  );\r\n};\r\n"
    }
  ]
}