You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
341 B
14 lines
341 B
/* eslint-disable */ |
|
var PRESET_ICONS = ['qq', 'link', 'weibo', 'wechat', 'poster', 'qrcode', 'weapp-qrcode', 'wechat-moments']; |
|
|
|
function getIconURL(icon) { |
|
if (PRESET_ICONS.indexOf(icon) !== -1) { |
|
return 'https://img.yzcdn.cn/vant/share-sheet-' + icon + '.png'; |
|
} |
|
|
|
return icon; |
|
} |
|
|
|
module.exports = { |
|
getIconURL: getIconURL, |
|
};
|
|
|