{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "kbd",
  "type": "registry:ui",
  "title": "Kbd",
  "description": "Inline keyboard key chip.",
  "dependencies": [],
  "devDependencies": [],
  "registryDependencies": [
    "utils"
  ],
  "files": [
    {
      "path": "registry/blacksite/ui/kbd.tsx",
      "type": "registry:ui",
      "target": "components/ui/kbd.tsx",
      "content": "import * as React from \"react\";\n\nimport { cn } from \"@/lib/utils\";\n\nexport interface KbdProps extends React.HTMLAttributes<HTMLElement> {}\n\nconst Kbd = React.memo(function Kbd({ className, ...props }: KbdProps) {\n  return (\n    <kbd\n      className={cn(\n        \"inline-flex h-5 min-w-5 items-center justify-center rounded-[3px]\",\n        \"border-border-strong bg-background-elevated border px-1.5\",\n        \"text-mono text-foreground-muted text-[10px] font-medium\",\n        \"shadow-[inset_0_-1px_0_rgba(0,0,0,0.4)]\",\n        className,\n      )}\n      {...props}\n    />\n  );\n});\n\nexport { Kbd };\n"
    }
  ]
}
