@primer/react
Version:
An implementation of GitHub's Primer Design System using React
10 lines (9 loc) • 347 B
TypeScript
import { KeybindingHintProps } from "./props.js";
//#region src/KeybindingHint/KeybindingHint.d.ts
/** Indicates the presence of an available keybinding. */
declare const KeybindingHint: import("react").MemoExoticComponent<({
className,
...props
}: KeybindingHintProps) => import("react").JSX.Element>;
//#endregion
export { KeybindingHint };