naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
12 lines (11 loc) • 444 B
TypeScript
import type { Theme } from '../../_mixins';
import type { ThemeCommonVars } from '../../_styles/common';
declare function self(vars: ThemeCommonVars): {
colorError: string;
colorLoading: string;
height: string;
};
export type LoadingBarThemeVars = ReturnType<typeof self>;
declare const loadingBarLight: Theme<'LoadingBar', LoadingBarThemeVars>;
export default loadingBarLight;
export type LoadingBarTheme = typeof loadingBarLight;