17 lines
610 B
TypeScript
17 lines
610 B
TypeScript
import type { ThemeCommonVars } from '../../_styles/common';
|
|
import type { Theme } from '../../_mixins';
|
|
export declare function self(vars: ThemeCommonVars): {
|
|
labelFontSize: string;
|
|
labelFontWeight: string;
|
|
valueFontWeight: string;
|
|
valueFontSize: string;
|
|
labelTextColor: string;
|
|
valuePrefixTextColor: string;
|
|
valueSuffixTextColor: string;
|
|
valueTextColor: string;
|
|
};
|
|
export type StatisticThemeVars = ReturnType<typeof self>;
|
|
declare const statisticLight: Theme<'Statistic', StatisticThemeVars>;
|
|
export default statisticLight;
|
|
export type StatisticTheme = typeof statisticLight;
|