How to build an accessible Kbd in React

Renders a native <kbd> element so assistive tech identifies the content as keyboard input; compose multiple <kbd> for a chord rather than encoding the combination in one string

When to use a Kbd

When not to use it

Accessibility

Role kbd, verified at WCAG 2.2-AA.

Common mistakes

Avoid: <Kbd>npm install</Kbd>

Prefer: <Code>npm install</Code>

Kbd is for keys to press, not shell commands or code

Example

<Kbd>⌘</Kbd>

See the full Kbd reference →