21 lines
688 B
TypeScript
Raw Normal View History

2024-08-02 18:19:39 +08:00
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;