jiaqingjiayi-xiaochengxu/甲情_甲意/node_modules/antd-mini/es/_util/arrow.sjs

14 lines
261 B
Plaintext
Raw Normal View History

2024-11-15 03:51:28 +00:00
var arrowType = {
right: 'RightOutline',
up: 'UpOutline',
down: 'DownOutline'
};
var getArrow = function getArrow(arrow) {
if (arrow === true) {
return arrowType.right;
}
return arrowType[arrow] || '';
};
export default {
getArrow: getArrow
};