{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "kbd",
  "type": "registry:ui",
  "dependencies": [],
  "registryDependencies": [],
  "files": [
    {
      "path": "ui/kbd.tsx",
      "content": "import type { HTMLAttributes } from \"react\";\nimport { cn } from \"@/lib/utils\";\n\n/** A keyboard key hint, e.g. <Kbd>⌘K</Kbd>. */\nexport function Kbd({ className, ...props }: HTMLAttributes<HTMLElement>) {\n  return (\n    <kbd\n      data-slot=\"kbd\"\n      className={cn(\n        \"inline-flex h-5 min-w-5 items-center justify-center gap-0.5 rounded border border-hairline bg-panel px-1.5 font-mono text-[11px] font-medium text-muted-foreground\",\n        className,\n      )}\n      {...props}\n    />\n  );\n}\n",
      "type": "registry:ui",
      "target": "components/ui/kbd.tsx"
    }
  ]
}
