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
						
					
					
						
							306 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							14 lines
						
					
					
						
							306 B
						
					
					
				
								/* eslint-disable */
							 | 
						|
								var PRESET_ICONS = ['qq', 'weibo', 'wechat', 'link', 'qrcode', 'poster'];
							 | 
						|
								
							 | 
						|
								function getIconURL(icon) {
							 | 
						|
								  if (PRESET_ICONS.indexOf(icon) !== -1) {
							 | 
						|
								    return 'https://img.yzcdn.cn/vant/share-icon-' + icon + '.png';
							 | 
						|
								  }
							 | 
						|
								
							 | 
						|
								  return icon;
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								module.exports = {
							 | 
						|
								  getIconURL: getIconURL,
							 | 
						|
								};
							 |