Kbd
A component for displaying keyboard keys and key combinations in tooltips, documentation, or command palettes.
⌘KCtrlShiftP
Usage
import { Kbd, KbdGroup } from "@/components/ui/kbd"<KbdGroup>
<Kbd>⌘</Kbd>
<Kbd>K</Kbd>
</KbdGroup>Examples
Single key
Esc
<Kbd>Esc</Kbd>Key combination
CtrlB
<KbdGroup>
<Kbd>Ctrl</Kbd>
<Kbd>B</Kbd>
</KbdGroup>Common shortcuts
⌘C⌘V⌘Z⌘⇧Z
In text context
Press ⌘K to open the command palette.
<p className="text-sm text-default-11">Press <KbdGroup><Kbd>⌘</Kbd><Kbd>K</Kbd></KbdGroup> to open the command palette.</p>Last updated on