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

21 lines
657 B
TypeScript

import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins/use-theme';
export declare const self: (vars: ThemeCommonVars) => {
fontSize: string;
borderRadius: string;
color: string;
dividerColor: string;
textColor: string;
boxShadow: string;
space: string;
spaceArrow: string;
arrowOffset: string;
arrowOffsetVertical: string;
arrowHeight: string;
padding: string;
};
export type PopoverThemeVars = ReturnType<typeof self>;
declare const popoverLight: Theme<'Popover', PopoverThemeVars>;
export type PopoverTheme = typeof popoverLight;
export default popoverLight;