naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
21 lines (20 loc) • 656 B
TypeScript
import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins/use-theme';
export declare function self(vars: ThemeCommonVars): {
fontSize: string;
borderRadius: string;
color: string;
dividerColor: string;
textColor: string;
boxShadow: string;
space: string;
spaceArrow: string;
arrowOffset: string;
arrowOffsetVertical: string;
arrowHeight: string;
padding: string;
};
export type PopoverThemeVars = ReturnType<typeof self>;
declare const popoverLight: Theme<'Popover', PopoverThemeVars>;
export type PopoverTheme = typeof popoverLight;
export default popoverLight;