A keyboard key component for displaying keyboard shortcuts and key combinations.
import { Kbd } from "@/components/ui/kbd"; export default function DemoOne() { return ( <> <div className="flex flex-wrap gap-4 items-center"> <Kbd>Ctrl</Kbd> <Kbd>⌘</Kbd> <Kbd>Shift</Kbd> <Kbd>Alt</Kbd> <Kbd>Enter</Kbd> <Kbd>Esc</Kbd> <Kbd>Space</Kbd> <Kbd>Tab</Kbd> </div> </> ); }
Part of HextaUI — browse the full library on 21st.dev.