{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "kbd",
  "title": "Kbd",
  "description": "A key with two pixels of implied depth under it. Pass `glyph` for `⌘`, `⇧` and `↵`.",
  "registryDependencies": [
    "@afterglow/theme"
  ],
  "files": [
    {
      "path": "registry/terminal/ui/kbd.tsx",
      "content": "import type * as React from \"react\";\n\nimport { cn } from \"@/lib/utils\";\n\nfunction Kbd({\n  className,\n  glyph = false,\n  ...props\n}: React.ComponentProps<\"kbd\"> & { glyph?: boolean }) {\n  return (\n    <kbd\n      className={cn(\n        \"pointer-events-none inline-flex h-[1.375rem] w-fit min-w-[1.375rem] select-none items-center justify-center gap-1 rounded-none border border-line border-b-line-strong bg-secondary px-1.5 pt-[1.5px] font-medium font-mono text-1xs text-phosphor-bright leading-none shadow-kbd\",\n        glyph && \"text-[0.9375rem] leading-[0.72]\",\n        \"[&_svg:not([class*='size-'])]:size-3.5\",\n        className\n      )}\n      data-glyph={glyph || undefined}\n      data-slot=\"kbd\"\n      {...props}\n    />\n  );\n}\n\nfunction KbdGroup({ className, ...props }: React.ComponentProps<\"span\">) {\n  return (\n    <span\n      className={cn(\"inline-flex items-center gap-1\", className)}\n      data-slot=\"kbd-group\"\n      {...props}\n    />\n  );\n}\n\nexport { Kbd, KbdGroup };\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}