{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "spinner",
  "title": "Spinner",
  "description": "Spinner component",
  "files": [
    {
      "path": "components/ui/spinner.tsx",
      "content": "import { cn } from '@/lib/cn'\n\nfunction Spinner({ className, ...props }: React.ComponentProps<'svg'>) {\n  return (\n    <svg\n      data-slot='spinner'\n      xmlns='http://www.w3.org/2000/svg'\n      width='24'\n      height='24'\n      viewBox='0 0 24 24'\n      fill='none'\n      stroke='currentColor'\n      strokeWidth='2'\n      strokeLinecap='round'\n      strokeLinejoin='round'\n      role='status'\n      aria-label='Loading'\n      className={cn('size-4 animate-spin', className)}\n      {...props}\n    >\n      <title>Loading…</title>\n      <circle cx='12' cy='12' r='9' opacity='0.4' />\n      <path d='M12 3a9 9 0 0 1 9 9' />\n    </svg>\n  )\n}\n\nexport { Spinner }\n",
      "type": "registry:component"
    },
    {
      "path": "lib/cn.ts",
      "content": "import { type ClassValue, clsx } from 'clsx'\nimport { twMerge } from 'tailwind-merge'\n\nexport function cn(...inputs: ClassValue[]) {\n  return twMerge(clsx(inputs))\n}\n",
      "type": "registry:lib"
    }
  ],
  "type": "registry:component"
}