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