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

14 lines
458 B
TypeScript

import type { ThemeCommonVars } from '../../_styles/common';
import { type Theme } from '../../_mixins';
declare const self: (vars: ThemeCommonVars) => {
itemColor: string;
itemColorActive: string;
sizeSmall: string;
sizeMedium: string;
sizeLarge: string;
};
export type RateThemeVars = ReturnType<typeof self>;
declare const themeLight: Theme<'Rate', RateThemeVars>;
export default themeLight;
export type RateTheme = typeof themeLight;