{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "spinner",
  "dependencies": [
    "cn",
    "class-variance-authority"
  ],
  "files": [
    {
      "path": "registry/new-york-v4/ui/spinner.tsx",
      "content": "import { cn } from \"cn\"\nimport { Loader2Icon } from \"lucide-react\"\n\nfunction Spinner({ className, ...props }: React.ComponentProps<\"svg\">) {\n  return (\n    <Loader2Icon\n      role=\"status\"\n      aria-label=\"Loading\"\n      className={cn(\"size-4 animate-spin\", className)}\n      {...props}\n    />\n  )\n}\n\nexport { Spinner }\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}