@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
48 lines (47 loc) • 950 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/code/code.style.d.ts
declare const codeStyle: ComponentStyle<CSSPropObject<CSSObject>, {
xs: {
fontSize: "2xs";
lineHeight: "{sizes.4}";
minH: "4";
px: "1";
};
sm: {
fontSize: "xs";
lineHeight: "{sizes.5}";
minH: "5";
px: "1.5";
};
md: {
fontSize: "sm";
lineHeight: "{sizes.6}";
minH: "6";
px: "2";
};
lg: {
fontSize: "sm";
lineHeight: "{sizes.7}";
minH: "7";
px: "2.5";
};
}, {
outline: {
layerStyle: "outline";
};
solid: {
layerStyle: "solid";
};
subtle: {
layerStyle: "subtle";
};
surface: {
layerStyle: "surface";
};
}>;
type CodeStyle = typeof codeStyle;
//#endregion
export { CodeStyle, codeStyle };
//# sourceMappingURL=code.style.d.ts.map