UNPKG

naive-ui

Version:

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

30 lines (29 loc) 957 B
import type { Theme } from '../../_mixins/use-theme'; import type { ThemeCommonVars } from '../../_styles/common'; export declare function self(vars: ThemeCommonVars): { fontSize: string; fontSizeCircle: string; fontWeightCircle: string; railColor: string; railHeight: string; iconSizeCircle: string; iconSizeLine: string; iconColor: string; iconColorInfo: string; iconColorSuccess: string; iconColorWarning: string; iconColorError: string; textColorCircle: string; textColorLineInner: string; textColorLineOuter: string; fillColor: string; fillColorInfo: string; fillColorSuccess: string; fillColorWarning: string; fillColorError: string; lineBgProcessing: string; }; export type ProgressThemeVars = ReturnType<typeof self>; declare const progressLight: Theme<'Progress', ProgressThemeVars>; export default progressLight; export type ProgressTheme = typeof progressLight;