{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "kbd",
  "title": "Kbd",
  "type": "registry:ui",
  "files": [
    {
      "path": "packages/registry-react/components/kbd/kbd.tsx",
      "content": "import * as React from 'react'\nimport { cn } from '@/lib/utils'\n\nconst Kbd = React.forwardRef<HTMLElement, React.HTMLAttributes<HTMLElement>>(({ className, ...props }, ref) => (\n  <kbd\n    ref={ref}\n    data-uipkge=\"\"\n    data-slot=\"kbd\"\n    className={cn(\n      'pointer-events-none inline-flex h-5 min-w-5 select-none items-center justify-center gap-1 rounded border bg-muted px-1.5 font-mono text-[10px] font-medium text-muted-foreground',\n      className,\n    )}\n    {...props}\n  />\n))\nKbd.displayName = 'Kbd'\n\nexport { Kbd }\n",
      "type": "registry:ui",
      "target": "~/components/ui/kbd/kbd.tsx"
    },
    {
      "path": "packages/registry-react/components/kbd/index.ts",
      "content": "export { Kbd } from './kbd'\n",
      "type": "registry:ui",
      "target": "~/components/ui/kbd/index.ts"
    }
  ],
  "dependencies": [],
  "devDependencies": [],
  "registryDependencies": [],
  "description": "Inline keyboard-key indicator — renders a single key or shortcut in monospace with a subtle bordered chip.",
  "categories": [
    "data-display"
  ]
}