UNPKG

naive-ui

Version:

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

22 lines (21 loc) 688 B
import type { ThemeCommonVars } from '../../_styles/common'; import type { Theme } from '../../_mixins'; export declare function self(vars: ThemeCommonVars): { fontSizeTiny: string; fontSizeSmall: string; fontSizeMedium: string; fontSizeLarge: string; fontSizeHuge: string; textColor: string; iconColor: string; extraTextColor: string; iconSizeTiny: 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;