// components/Kbd.js import { Tag } from "sigpro"; export const Kbd = (props, children) => { if (typeof props === "string" || typeof props === "number") { children = props; props = {}; } const { class: className, ...rest } = props; return Tag("kbd", { ...rest, class: `kbd ${className || ''}`.trim() }, children); };