{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "spinner",
  "files": [
    {
      "path": "components/ui/spinner.tsx",
      "content": "import { cn } from \"@/lib/utils\"\n\nfunction Spinner({ className, ...props }: React.ComponentProps<\"svg\">) {\n  return (\n    <svg\n      role=\"status\"\n      aria-label=\"Loading\"\n      width=\"32\"\n      height=\"32\"\n      viewBox=\"0 0 32 32\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      className={cn(\"size-4 animate-spin\", className)}\n      fill=\"none\"\n      {...props}\n    >\n      <path\n        d=\"M27 16C27 18.3229 26.2646 20.5862 24.8993 22.4655C23.5339 24.3448 21.6087 25.7436 19.3995 26.4615C17.1903 27.1794 14.8105 27.1795 12.6013 26.4618C10.392 25.7441 8.46668 24.3454 7.10119 22.4662C5.73571 20.587 5.00017 18.3237 5 16.0008C4.99983 13.6779 5.73503 11.4146 7.10024 9.53515C8.46545 7.65575 10.3906 6.25678 12.5997 5.53873C14.8089 4.82068 17.1886 4.82042 19.398 5.53798\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2.5\"\n        strokeLinecap=\"round\"\n      />\n    </svg>\n  )\n}\n\nexport { Spinner }\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}