{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "quarter-ring",
  "files": [
    {
      "path": "registry/components/loading-ui/quarter-ring.tsx",
      "content": "import { cn } from \"@/lib/utils\";\n\nfunction QuarterRing({ className, ...props }: React.ComponentProps<\"span\">) {\n  return (\n    <>\n      <style>{`\n        @keyframes loading-ui-quarter-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          \"inline-block rounded-full border-t-[3px] border-r-[3px] border-t-current border-r-transparent\",\n          className,\n        )}\n        style={{\n          animation:\n            \"loading-ui-quarter-ring-rotation var(--duration, 1s) linear infinite\",\n        }}\n        {...props}\n      >\n        <span className=\"sr-only\">Loading</span>\n      </span>\n    </>\n  );\n}\n\nexport { QuarterRing };\n",
      "type": "registry:component",
      "target": ""
    }
  ],
  "type": "registry:component"
}
