Kbd
blacksite/kbdFreeComponent
Inline keyboard key chip.
Install it
npx shadcn@latest add https://blacksite.sh/r/kbd.jsonSource
1import * as React from "react";23import { cn } from "@/lib/utils";45export interface KbdProps extends React.HTMLAttributes<HTMLElement> {}67const Kbd = React.memo(function Kbd({ className, ...props }: KbdProps) {8 return (9 <kbd10 className={cn(11 "inline-flex h-5 min-w-5 items-center justify-center rounded-[3px]",12 "border-border-strong bg-background-elevated border px-1.5",13 "text-mono text-foreground-muted text-[10px] font-medium",14 "shadow-[inset_0_-1px_0_rgba(0,0,0,0.4)]",15 className,16 )}17 {...props}18 />19 );20});2122export { Kbd };
More from blacksite
All 25 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| App headerapp-header | blacksite | Components | Free | no deps | |
| Badgebadge | blacksite | Components | Free | no deps | |
| Bar chartbar-chart | blacksite | Components | Free | no deps | |
| Buttonbutton | blacksite | Components | Free | no deps | |
| Cardcard | blacksite | Components | Free | no deps | |
| Chart tooltipchart-tooltip | blacksite | Components | Free | no deps | |
| Data listdata-list | blacksite | Components | Free | no deps | |
| Gantt timelinegantt-timeline | blacksite | Components | Free | no deps |
