@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
42 lines (41 loc) • 849 B
TypeScript
import { ComponentStyle } from "../../core/system/index.types.js";
import { CSSObject, CSSPropObject } from "../../core/css/index.types.js";
import "../../index.js";
//#region src/components/kbd/kbd.style.d.ts
declare const kbdStyle: ComponentStyle<CSSPropObject<CSSObject>, {
sm: {
fontSize: "xs";
lineHeight: "{sizes.4}";
minH: "4";
px: "1";
};
md: {
fontSize: "sm";
lineHeight: "{sizes.5}";
minH: "5";
px: "1.5";
};
lg: {
fontSize: "md";
lineHeight: "{sizes.6}";
minH: "6";
px: "2";
};
}, {
outline: {
layerStyle: "outline";
};
solid: {
layerStyle: "solid";
};
subtle: {
layerStyle: "subtle";
};
surface: {
layerStyle: "surface";
};
}>;
type KbdStyle = typeof kbdStyle;
//#endregion
export { KbdStyle, kbdStyle };
//# sourceMappingURL=kbd.style.d.ts.map