mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			466 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			466 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div :class="`h-${size} w-${size} min-w-${size}`">
 | |
|     <component :is="iconComponentName" />
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   props: {
 | |
|     icon: String,
 | |
|     size: {
 | |
|       type: Number,
 | |
|       default: 5
 | |
|     }
 | |
|   },
 | |
|   data() {
 | |
|     return {}
 | |
|   },
 | |
|   computed: {
 | |
|     iconComponentName() {
 | |
|       if (this.icon === 'default') return `icons-database-svg`
 | |
|       return `icons-${this.icon}-svg`
 | |
|     }
 | |
|   },
 | |
|   methods: {},
 | |
|   mounted() {}
 | |
| }
 | |
| </script> |