{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "keyboard",
  "title": "keyboard",
  "description": "keyboard",
  "dependencies": [
    "react-aria-components",
    "tailwind-merge"
  ],
  "files": [
    {
      "path": "src/components/ui/keyboard.tsx",
      "content": "'use client'\n\nimport { Keyboard as KeyboardPrimitive } from 'react-aria-components/Keyboard'\nimport { twMerge } from 'tailwind-merge'\n\nexport function Keyboard({ className, ...props }: React.ComponentProps<typeof KeyboardPrimitive>) {\n  return (\n    <KeyboardPrimitive\n      data-slot=\"keyboard\"\n      className={twMerge(\n        'hidden font-mono text-[0.80rem] text-current/60 group-hover:text-fg group-focus:text-fg group-focus:opacity-90 group-disabled:opacity-50 lg:inline forced-colors:group-focus:text-[HighlightText',\n        className\n      )}\n      {...props}\n    />\n  )\n}\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}