Saasflare UI
Components

Kbd

Inline keyboard-key styling for documenting shortcuts (⌘K, Ctrl+C).

Installation

npx shadcn@latest add https://ui.saasflare.io/r/kbd.json
pnpm add @saasflare/ui

Usage

Loading…
"use client"import { Kbd, KbdGroup } from "@saasflare/ui"/** Keyboard shortcut keys, single and grouped. */export function Demo() {    return (        <div className="flex flex-col gap-4">            <Kbd>Esc</Kbd>            <KbdGroup>                <Kbd>⌘</Kbd>                <Kbd>K</Kbd>            </KbdGroup>            <KbdGroup>                <Kbd>Ctrl</Kbd>                <Kbd>Shift</Kbd>                <Kbd>P</Kbd>            </KbdGroup>        </div>    )}

API Reference

Kbd

Prop

Type

KbdGroup

Prop

Type

On this page