@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
89 lines (88 loc) • 1.42 kB
TypeScript
import { ComponentStyle } from "../../core/system/index.types.js";
import { CSSModifierObject, CSSObject, CSSPropObject } from "../../core/css/index.types.js";
import "../../index.js";
//#region src/components/heading/heading.style.d.ts
declare const headingStyle: ComponentStyle<CSSPropObject<CSSObject>, {
xs: {
fontSize: {
base: "xs";
sm: "2xs";
};
};
sm: {
fontSize: {
base: "sm";
sm: "xs";
};
};
md: {
fontSize: {
base: "md";
sm: "sm";
};
};
lg: {
fontSize: {
base: "lg";
sm: "md";
};
};
xl: {
fontSize: {
base: "xl";
sm: "lg";
};
};
"2xl": {
fontSize: {
base: "2xl";
sm: "xl";
};
};
"3xl": {
fontSize: {
base: "3xl";
sm: "2xl";
};
};
"4xl": {
fontSize: {
base: "4xl";
sm: "3xl";
};
};
"5xl": {
fontSize: {
base: "5xl";
sm: "4xl";
};
};
"6xl": {
fontSize: {
base: "6xl";
sm: "5xl";
};
};
"7xl": {
fontSize: {
base: "7xl";
sm: "6xl";
};
};
"8xl": {
fontSize: {
base: "8xl";
sm: "7xl";
};
};
"9xl": {
fontSize: {
base: "9xl";
sm: "8xl";
};
};
}, CSSModifierObject>;
type HeadingStyle = typeof headingStyle;
//#endregion
export { HeadingStyle, headingStyle };
//# sourceMappingURL=heading.style.d.ts.map