reablocks
Version:
Component library for React
15 lines (14 loc) • 349 B
TypeScript
import { FC } from 'react';
import { ChipProps } from '../Chip';
import { KbdTheme } from './KbdTheme';
export interface KbdProps extends Omit<ChipProps, 'children' | 'theme'> {
/**
* Keycode for the Kbd.
*/
keycode: string;
/**
* Theme for the Kbd.
*/
theme?: KbdTheme;
}
export declare const Kbd: FC<KbdProps>;