23 lines
626 B
JavaScript
23 lines
626 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.self = void 0;
|
||
|
const common_1 = require("../../_styles/common");
|
||
|
const self = (vars) => {
|
||
|
const { textColorBase, opacity1, opacity2, opacity3, opacity4, opacity5 } = vars;
|
||
|
return {
|
||
|
color: textColorBase,
|
||
|
opacity1Depth: opacity1,
|
||
|
opacity2Depth: opacity2,
|
||
|
opacity3Depth: opacity3,
|
||
|
opacity4Depth: opacity4,
|
||
|
opacity5Depth: opacity5
|
||
|
};
|
||
|
};
|
||
|
exports.self = self;
|
||
|
const iconLight = {
|
||
|
name: 'Icon',
|
||
|
common: common_1.commonLight,
|
||
|
self: exports.self
|
||
|
};
|
||
|
exports.default = iconLight;
|