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

10 lines
369 B
TypeScript

import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
declare function self(vars: ThemeCommonVars): {
borderRadius: string;
};
export type QrCodeThemeVars = ReturnType<typeof self>;
declare const themeLight: Theme<'QrCode', QrCodeThemeVars>;
export default themeLight;
export type QrCodeTheme = typeof themeLight;