mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 23:55:02 +00:00
17 lines
403 B
TypeScript
17 lines
403 B
TypeScript
import { Kbd, KbdGroup } from "@/examples/base/ui/kbd"
|
|
|
|
export default function KbdGroupExample() {
|
|
return (
|
|
<div className="flex flex-col items-center gap-4">
|
|
<p className="text-sm text-muted-foreground">
|
|
Use{" "}
|
|
<KbdGroup>
|
|
<Kbd>Ctrl + B</Kbd>
|
|
<Kbd>Ctrl + K</Kbd>
|
|
</KbdGroup>{" "}
|
|
to open the command palette
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|