reablocks
Version:
Component library for React
16 lines (14 loc) • 350 B
TypeScript
import { KbdTheme } from './KbdTheme';
import { ChipProps } from '../Chip';
import { FC } from 'react';
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>;