naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
16 lines (15 loc) • 503 B
TypeScript
import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
declare function self(vars: ThemeCommonVars): {
color: string;
colorInfo: string;
colorSuccess: string;
colorError: string;
colorWarning: string;
fontSize: string;
fontFamily: string;
};
export type BadgeThemeVars = ReturnType<typeof self>;
declare const badgeLight: Theme<'Badge', BadgeThemeVars>;
export default badgeLight;
export type BadgeTheme = typeof badgeLight;