{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "orbit-ring",
  "files": [
    {
      "path": "registry/components/loading-ui/orbit-ring.tsx",
      "content": "import { cn } from \"@/lib/utils\";\n\nfunction OrbitRing({ className, ...props }: React.ComponentProps<\"span\">) {\n  return (\n    <>\n      <style>{`\n        @keyframes loading-ui-orbit-ring-rotation {\n          0% {\n            transform: rotate(0deg);\n          }\n\n          100% {\n            transform: rotate(360deg);\n          }\n        }\n      `}</style>\n      <span\n        role=\"status\"\n        className={cn(\"relative inline-block\", className)}\n        style={{\n          animation:\n            \"loading-ui-orbit-ring-rotation var(--duration, 1s) linear infinite\",\n        }}\n        {...props}\n      >\n        <span\n          aria-hidden=\"true\"\n          className=\"absolute inset-0 rounded-full border-2 border-current\"\n          style={{ opacity: 0.25 }}\n        />\n        <span\n          aria-hidden=\"true\"\n          className=\"absolute top-1/2 left-1/2 rounded-full border-2 border-transparent border-b-current\"\n          style={{\n            width: \"116.667%\",\n            height: \"116.667%\",\n            transform: \"translate(-50%, -50%)\",\n          }}\n        />\n        <span className=\"sr-only\">Loading</span>\n      </span>\n    </>\n  );\n}\n\nexport { OrbitRing };\n",
      "type": "registry:component",
      "target": ""
    }
  ],
  "type": "registry:component"
}
