jiaqingjiayi-xiaochengxu/甲情_甲意/node_modules/antd-mini/less/Divider/index.sjs

15 lines
298 B
Plaintext
Raw Normal View History

2024-11-15 03:51:28 +00:00
var getLineWidthFlex = function getLineWidthFlex(textPosition, text) {
if (!text) {
return [1, 0];
}
if (textPosition === 'left') {
return [1, 5];
}
if (textPosition === 'right') {
return [5, 1];
}
return [1, 1];
};
export default {
getLineWidthFlex: getLineWidthFlex
};