naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
12 lines (11 loc) • 426 B
TypeScript
import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
export declare function self(vars: ThemeCommonVars): {
textColor: string;
color: string;
fontWeight: string;
};
export type DividerThemeVars = ReturnType<typeof self>;
declare const dividerLight: Theme<'Divider', DividerThemeVars>;
export default dividerLight;
export type DividerTheme = typeof dividerLight;