UNPKG

reablocks

Version:
15 lines (14 loc) 349 B
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>;