@yamada-ui/kbd
Version:
Yamada UI kbd component
14 lines (11 loc) • 406 B
text/typescript
import * as _yamada_ui_core from '@yamada-ui/core';
import { HTMLUIProps, ThemeProps } from '@yamada-ui/core';
interface KbdProps extends HTMLUIProps<"kbd">, ThemeProps<"Kbd"> {
}
/**
* `Kbd` is a component that represents keyboard input.
*
* @see Docs https://yamada-ui.com/components/data-display/kbd
*/
declare const Kbd: _yamada_ui_core.Component<"kbd", KbdProps>;
export { Kbd, type KbdProps };