@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
19 lines (18 loc) • 803 B
TypeScript
import { ThemeProps } from "../../core/system/index.types.js";
import { Component, HTMLStyledProps } from "../../core/components/index.types.js";
import "../../core/index.js";
import { KbdStyle } from "./kbd.style.js";
import "../../index.js";
import * as react826 from "react";
//#region src/components/kbd/kbd.d.ts
interface KbdProps extends HTMLStyledProps<"kbd">, ThemeProps<KbdStyle> {}
declare const KbdPropsContext: react826.Context<Partial<KbdProps> | undefined>, useKbdPropsContext: () => Partial<KbdProps> | undefined;
/**
* `Kbd` is a component that represents keyboard input.
*
* @see https://yamada-ui.com/docs/components/kbd
*/
declare const Kbd: Component<"kbd", KbdProps>;
//#endregion
export { Kbd, KbdProps, KbdPropsContext, useKbdPropsContext };
//# sourceMappingURL=kbd.d.ts.map