Components
Loading preview...
Here is Kbd component
npx shadcn@latest add https://21st.dev/r/shadcn/kbdimport { Kbd, KbdGroup } from "@/components/ui/kbd"
export default function KbdGroupExample() {
return (
<div className="flex flex-col items-center gap-4">
<p className="text-muted-foreground text-sm">
Use{" "}
<KbdGroup>
<Kbd>Ctrl + B</Kbd>
<Kbd>Ctrl + K</Kbd>
</KbdGroup>{" "}
to open the command palette
</p>
</div>
)
}