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