17 lines
330 B
JavaScript
17 lines
330 B
JavaScript
|
import { commonLight } from "../../_styles/common/index.mjs";
|
||
|
export const self = vars => {
|
||
|
const {
|
||
|
primaryColor,
|
||
|
baseColor
|
||
|
} = vars;
|
||
|
return {
|
||
|
color: primaryColor,
|
||
|
iconColor: baseColor
|
||
|
};
|
||
|
};
|
||
|
const iconWrapperLight = {
|
||
|
name: 'IconWrapper',
|
||
|
common: commonLight,
|
||
|
self
|
||
|
};
|
||
|
export default iconWrapperLight;
|