{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "cx-util",
  "title": "cx (classname helper)",
  "description": "Tiny local classname joiner used across blocks. Installed automatically.",
  "files": [
    {
      "path": "packages/react/cx.ts",
      "content": "/** Tiny local classname joiner — avoids a `clsx` dependency for copy-owned portability. */\r\nexport function cx(...classes: Array<string | false | null | undefined>): string {\r\n  return classes.filter(Boolean).join(\" \");\r\n}\r\n",
      "type": "registry:file",
      "target": "components/knock-codes/react/cx.ts"
    }
  ],
  "type": "registry:block"
}