naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
21 lines (20 loc) • 722 B
TypeScript
import type { Theme } from '../../_mixins';
import type { ThemeCommonVars } from '../../_styles/common';
declare function self(vars: ThemeCommonVars): {
fontWeight: string;
rotate: string;
colorStartPrimary: string;
colorEndPrimary: string;
colorStartInfo: string;
colorEndInfo: string;
colorStartWarning: string;
colorEndWarning: string;
colorStartError: string;
colorEndError: string;
colorStartSuccess: string;
colorEndSuccess: string;
};
export type GradientTextThemeVars = ReturnType<typeof self>;
declare const gradientTextLight: Theme<'GradientText', GradientTextThemeVars>;
export default gradientTextLight;
export type GradientTextTheme = typeof gradientTextLight;