UNPKG

@alicloud/console-components

Version:

Alibaba Cloud React Components

22 lines (21 loc) 476 B
var SIZE_MAPPING = { mini: 400, small: 600, medium: 800, large: 1200 }; var SIZE_MAPPING_YUNXIAO = { mini: 440, small: 600, medium: 800, large: 1200 }; // 获取 size 大小 export default function getStyleCustomWidth(size, theme) { var sizeWidth = theme.startsWith('yunxiao') ? SIZE_MAPPING_YUNXIAO[size] : SIZE_MAPPING[size]; return sizeWidth ? { style: { width: "".concat(sizeWidth, "px") } } : {}; }