Components
Kbd
A kbd component
Preview
Loading...
import { Kbd, KbdGroup } from "@/registry/axon/ui/kbd";export default function KbdDemo() { return ( <div className="flex flex-col items-center gap-4"> <KbdGroup> <Kbd>⌘</Kbd> <Kbd>⇧</Kbd> <Kbd>⌥</Kbd> <Kbd>⌃</Kbd> </KbdGroup> <KbdGroup> <Kbd>Ctrl</Kbd> <span>+</span> <Kbd>B</Kbd> </KbdGroup> </div> );}Installation
CLI
npx shadcn@latest add @emberui/kbdyarn shadcn@latest add @emberui/kbdpnpm dlx shadcn@latest add @emberui/kbdbunx --bun shadcn@latest add @emberui/kbdReference
This component is based on the shadcn/ui Kbd component.