@re-flex/ui
Version:
Re-Flex ui library
53 lines (52 loc) • 1.74 kB
TypeScript
declare const AppBaseLineInitialStyle: (theme: Theme) => {
[x: string]: {
"--typography-color": any;
"--typography-letter-spacing": any;
"--typography-font-size": any;
"--typography-font-family": any;
"--typography-font-style": any;
"--typography-font-weight": string;
"--typography-font-stretch": any;
"--typography-opacity": any;
"--typography-text-align": string;
"--body-background": any;
"--component-background": any;
"--direction": string;
color?: undefined;
"letter-spacing"?: undefined;
"font-size"?: undefined;
"font-family"?: undefined;
"font-style"?: undefined;
"font-weight"?: undefined;
"font-stretch"?: undefined;
"text-align"?: undefined;
"text-transform"?: undefined;
opacity?: undefined;
} | {
color: string;
"letter-spacing": string;
"font-size": string;
"font-family": string;
"font-style": string;
"font-weight": string;
"font-stretch": string;
"text-align": string;
"text-transform": string;
opacity: string;
};
":root": {
"--typography-color": any;
"--typography-letter-spacing": any;
"--typography-font-size": any;
"--typography-font-family": any;
"--typography-font-style": any;
"--typography-font-weight": string;
"--typography-font-stretch": any;
"--typography-opacity": any;
"--typography-text-align": string;
"--body-background": any;
"--component-background": any;
"--direction": string;
};
};
export default AppBaseLineInitialStyle;