20 lines
637 B
TypeScript
20 lines
637 B
TypeScript
|
import type { ThemeCommonVars } from '../../_styles/common';
|
||
|
import type { Theme } from '../../_mixins';
|
||
|
export declare const 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;
|