@primer/react
Version:
An implementation of GitHub's Primer Design System using React
10 lines • 339 B
TypeScript
import React from 'react';
import type { KeybindingHintFormat } from '../props';
interface KeyProps {
name: string;
format: KeybindingHintFormat;
}
/** Renders a single key with accessible alternative text. */
export declare const Key: ({ name, format }: KeyProps) => React.JSX.Element;
export {};
//# sourceMappingURL=Key.d.ts.map