UNPKG

reablocks

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