jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/Divider/index.sjs
2024-11-10 15:01:22 +08:00

17 lines
260 B
JavaScript

const 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
}