11 lines
317 B
TypeScript
Raw Permalink Normal View History

2024-01-29 09:26:07 +08:00
import type { Theme } from '../../_mixins';
2024-08-02 18:19:39 +08:00
declare function self(): {
2024-01-29 09:26:07 +08:00
gapSmall: string;
gapMedium: string;
gapLarge: string;
};
export type FlexThemeVars = ReturnType<typeof self>;
declare const flexLight: Theme<'Flex', FlexThemeVars>;
export default flexLight;
export type FlexTheme = typeof flexLight;