Files
shadcn-ui/apps/v4/examples/base/kbd-group.tsx
2026-03-02 12:49:00 +04:00

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>
)
}