@alicloud/console-components
Version:
Alibaba Cloud React Components
25 lines (24 loc) • 577 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var SIZE_MAPPING = {
mini: 400,
small: 600,
medium: 800,
large: 1200
};
var SIZE_MAPPING_YUNXIAO = {
mini: 440,
small: 600,
medium: 800,
large: 1200
};
// 获取 size 大小
function getStyleCustomWidth(size, theme) {
var sizeWidth = theme.startsWith('yunxiao') ? SIZE_MAPPING_YUNXIAO[size] : SIZE_MAPPING[size];
return sizeWidth ? {
style: {
width: "".concat(sizeWidth, "px")
}
} : {};
}
exports.default = getStyleCustomWidth;