import { cn } from "@/lib/utils"; interface ShortcutKbdProps { keys: string[]; className?: string; } export function ShortcutKbd({ keys, className }: ShortcutKbdProps) { if (keys.length === 0) return null; return ( {keys.map((key) => ( 1 ? "px-1" : "w-[18px]" )} > {key} ))} ); }