kbd

PreviousNext
Docs
cossui

Preview

Loading preview…
registry/default/ui/kbd.tsx
import type * as React from "react";

import { cn } from "@/registry/default/lib/utils";

function Kbd({ className, ...props }: React.ComponentProps<"kbd">) {
  return (
    <kbd
      className={cn(
        "pointer-events-none inline-flex h-5 min-w-5 select-none items-center justify-center gap-1 rounded bg-muted px-1 font-medium font-sans text-muted-foreground text-xs [&_svg:not([class*='size-'])]:size-3",
        className,
      )}
      data-slot="kbd"
      {...props}
    />
  );
}

function KbdGroup({ className, ...props }: React.ComponentProps<"kbd">) {
  return (
    <kbd
      className={cn("inline-flex items-center gap-1", className)}
      data-slot="kbd-group"
      {...props}
    />
  );
}

export { Kbd, KbdGroup };

Installation

npx shadcn@latest add @coss/kbd

Usage

import { Kbd } from "@/components/ui/kbd"
<Kbd />