2024-08-02 18:19:39 +08:00

20 lines
636 B
TypeScript

import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
export declare function self(vars: ThemeCommonVars): {
fontSizeSmall: string;
fontSizeMedium: string;
fontSizeLarge: string;
fontSizeHuge: string;
textColor: string;
iconColor: string;
extraTextColor: string;
iconSizeSmall: string;
iconSizeMedium: string;
iconSizeLarge: string;
iconSizeHuge: string;
};
export type EmptyThemeVars = ReturnType<typeof self>;
declare const emptyLight: Theme<'Empty', EmptyThemeVars>;
export default emptyLight;
export type EmptyTheme = typeof emptyLight;