Files
shadcn-ui/apps/v4/examples/base/kbd-group-example.tsx
2026-01-14 09:25:14 +04:00

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