18 lines
547 B
TypeScript
18 lines
547 B
TypeScript
|
import { type Theme } from '../../_mixins';
|
||
|
import type { ThemeCommonVars } from '../../_styles/common';
|
||
|
export declare const self: (vars: ThemeCommonVars) => {
|
||
|
fontSize: string;
|
||
|
textColor: string;
|
||
|
sizeTiny: string;
|
||
|
sizeSmall: string;
|
||
|
sizeMedium: string;
|
||
|
sizeLarge: string;
|
||
|
sizeHuge: string;
|
||
|
color: string;
|
||
|
opacitySpinning: string;
|
||
|
};
|
||
|
export type SpinThemeVars = ReturnType<typeof self>;
|
||
|
declare const spinLight: Theme<'Spin', SpinThemeVars>;
|
||
|
export default spinLight;
|
||
|
export type SpinTheme = typeof spinLight;
|