11 lines
		
	
	
		
			431 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			431 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { ThemeCommonVars } from '../../_styles/common';
 | |
| import type { Theme } from '../../_mixins';
 | |
| export declare const self: (vars: ThemeCommonVars) => {
 | |
|     color: string;
 | |
|     iconColor: string;
 | |
| };
 | |
| export type IconWrapperThemeVars = ReturnType<typeof self>;
 | |
| declare const iconWrapperLight: Theme<'IconWrapper', IconWrapperThemeVars>;
 | |
| export default iconWrapperLight;
 | |
| export type IconWrapperTheme = typeof iconWrapperLight;
 |