{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "twin-orbit",
  "files": [
    {
      "path": "registry/components/loading-ui/twin-orbit.tsx",
      "content": "import { cn } from \"@/lib/utils\";\n\nfunction TwinOrbit({ className, ...props }: React.ComponentProps<\"span\">) {\n  return (\n    <>\n      <style>{`\n        @keyframes loading-ui-twin-orbit-rotate {\n          100% {\n            transform: rotate(360deg) translate(155%);\n          }\n        }\n      `}</style>\n      <span\n        role=\"status\"\n        className={cn(\n          \"relative inline-block aspect-square rounded-full bg-current\",\n          className,\n        )}\n        {...props}\n      >\n        <span\n          aria-hidden=\"true\"\n          className=\"absolute inset-0 rounded-full bg-current\"\n          style={{\n            transform: \"rotate(0deg) translate(155%)\",\n            animation:\n              \"loading-ui-twin-orbit-rotate var(--duration, 1s) ease infinite\",\n          }}\n        />\n        <span\n          aria-hidden=\"true\"\n          className=\"absolute inset-0 rounded-full bg-current\"\n          style={{\n            transform: \"rotate(0deg) translate(155%)\",\n            animation:\n              \"loading-ui-twin-orbit-rotate var(--duration, 1s) ease infinite\",\n            animationDelay: \"calc(var(--duration, 1s) / 2)\",\n          }}\n        />\n        <span className=\"sr-only\">Loading</span>\n      </span>\n    </>\n  );\n}\n\nexport { TwinOrbit };\n",
      "type": "registry:component",
      "target": ""
    }
  ],
  "type": "registry:component"
}
