mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-28 07:04:20 +00:00
12 lines
204 B
TypeScript
12 lines
204 B
TypeScript
import { Kbd, KbdGroup } from "@/examples/base/ui/kbd"
|
|
|
|
export function KbdGroupExample() {
|
|
return (
|
|
<KbdGroup>
|
|
<Kbd>Ctrl</Kbd>
|
|
<Kbd>Shift</Kbd>
|
|
<Kbd>P</Kbd>
|
|
</KbdGroup>
|
|
)
|
|
}
|