{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "satellite-ring",
  "files": [
    {
      "path": "registry/components/loading-ui/satellite-ring.tsx",
      "content": "import { cn } from \"@/lib/utils\";\n\nfunction SatelliteRing({ className, ...props }: React.ComponentProps<\"span\">) {\n  return (\n    <>\n      <style>{`\n        @keyframes loading-ui-satellite-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(\n          \"relative inline-block rounded-full border-2 border-current/25\",\n          className,\n        )}\n        style={{\n          animation:\n            \"loading-ui-satellite-ring-rotation var(--duration, 1.5s) linear infinite\",\n        }}\n        {...props}\n      >\n        <span\n          aria-hidden=\"true\"\n          className=\"absolute top-0 left-0 rounded-full bg-current\"\n          style={{\n            width: \"33.333%\",\n            height: \"33.333%\",\n            transform: \"translate(-50%, 50%)\",\n          }}\n        />\n        <span className=\"sr-only\">Loading</span>\n      </span>\n    </>\n  );\n}\n\nexport { SatelliteRing };\n",
      "type": "registry:component",
      "target": ""
    }
  ],
  "type": "registry:component"
}
