naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
21 lines (20 loc) • 688 B
TypeScript
import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
declare function self(vars: ThemeCommonVars): {
color: string;
colorHover: string;
colorPressed: string;
colorPrimary: string;
colorPrimaryHover: string;
colorPrimaryPressed: string;
textColor: string;
boxShadow: string;
boxShadowHover: string;
boxShadowPressed: string;
textColorPrimary: string;
borderRadiusSquare: string;
};
export type FloatButtonThemeVars = ReturnType<typeof self>;
declare const themeLight: Theme<'FloatButton', FloatButtonThemeVars>;
export default themeLight;
export type FloatButtonTheme = typeof themeLight;