mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-25 05:35:48 +00:00
12 lines
220 B
TypeScript
12 lines
220 B
TypeScript
import { Kbd } from "@/examples/radix/ui/kbd"
|
|
|
|
export function KbdBasic() {
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<Kbd>Ctrl</Kbd>
|
|
<Kbd>⌘K</Kbd>
|
|
<Kbd>Ctrl + B</Kbd>
|
|
</div>
|
|
)
|
|
}
|