12 lines
426 B
TypeScript
Raw Permalink Normal View History

2024-01-29 09:26:07 +08:00
import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
2024-08-02 18:19:39 +08:00
export declare function self(vars: ThemeCommonVars): {
2024-01-29 09:26:07 +08:00
textColor: string;
color: string;
fontWeight: string;
};
export type DividerThemeVars = ReturnType<typeof self>;
declare const dividerLight: Theme<'Divider', DividerThemeVars>;
export default dividerLight;
export type DividerTheme = typeof dividerLight;