2024-01-29 09:26:07 +08:00

21 lines
645 B
TypeScript

import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
declare const self: (vars: ThemeCommonVars) => {
color: string;
textColor: string;
iconColor: string;
iconColorHover: string;
iconColorPressed: string;
boxShadow: string;
boxShadowHover: string;
boxShadowPressed: string;
width: string;
height: string;
borderRadius: string;
iconSize: string;
};
export type BackTopThemeVars = ReturnType<typeof self>;
declare const backTopLight: Theme<'BackTop', BackTopThemeVars>;
export default backTopLight;
export type BackTopTheme = typeof backTopLight;