{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "cn",
  "title": "cn Utility",
  "description": "Class-name combiner: clsx + tailwind-merge.",
  "dependencies": [
    "clsx",
    "tailwind-merge"
  ],
  "files": [
    {
      "path": "src/lib/cn.ts",
      "content": "import { clsx, type ClassValue } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\n/** Merge class names with Tailwind conflict resolution. */\nexport function cn(...inputs: ClassValue[]) {\n  return twMerge(clsx(inputs));\n}\n",
      "type": "registry:lib"
    }
  ],
  "type": "registry:lib"
}