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