2024-08-02 18:19:39 +08:00

20 lines
703 B
TypeScript

import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
export declare function self(vars: ThemeCommonVars): {
fontSize: string;
itemLineHeight: string;
itemTextColor: string;
itemTextColorHover: string;
itemTextColorPressed: string;
itemTextColorActive: string;
itemBorderRadius: string;
itemColorHover: string;
itemColorPressed: string;
separatorColor: string;
fontWeightActive: string;
};
export type BreadcrumbThemeVars = ReturnType<typeof self>;
declare const breadcrumbLight: Theme<'Breadcrumb', BreadcrumbThemeVars>;
export default breadcrumbLight;
export type BreadcrumbTheme = typeof breadcrumbLight;