mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
20 lines
408 B
TypeScript
20 lines
408 B
TypeScript
import { Kbd, KbdGroup } from "@/styles/base-nova/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>
|
|
)
|
|
}
|