UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

17 lines (16 loc) 610 B
import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; 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;