naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
14 lines (13 loc) • 457 B
TypeScript
import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
declare function self(vars: ThemeCommonVars): {
itemColor: string;
itemColorActive: string;
sizeSmall: string;
sizeMedium: string;
sizeLarge: string;
};
export type RateThemeVars = ReturnType<typeof self>;
declare const themeLight: Theme<'Rate', RateThemeVars>;
export default themeLight;
export type RateTheme = typeof themeLight;