22 lines
828 B
JavaScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
2024-08-02 18:19:39 +08:00
exports.self = self;
2024-01-29 09:26:07 +08:00
const common_1 = require("../../_styles/common");
2024-08-02 18:19:39 +08:00
const _common_1 = __importDefault(require("./_common"));
function self(vars) {
2024-01-29 09:26:07 +08:00
const { textColorDisabled, iconColor, textColor2, fontSizeSmall, fontSizeMedium, fontSizeLarge, fontSizeHuge } = vars;
return Object.assign(Object.assign({}, _common_1.default), { fontSizeSmall,
fontSizeMedium,
fontSizeLarge,
fontSizeHuge, textColor: textColorDisabled, iconColor, extraTextColor: textColor2 });
2024-08-02 18:19:39 +08:00
}
2024-01-29 09:26:07 +08:00
const emptyLight = {
name: 'Empty',
common: common_1.commonLight,
2024-08-02 18:19:39 +08:00
self
2024-01-29 09:26:07 +08:00
};
exports.default = emptyLight;