mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-30 18:12:25 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			730 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			730 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="w-full bg-opacity-5 border border-opacity-60 rounded-lg flex items-center relative py-4 pl-16" :class="wrapperClass">
 | |
|     <div class="absolute top-0 left-4 h-full flex items-center">
 | |
|       <span class="material-icons-outlined text-2xl">{{ icon }}</span>
 | |
|     </div>
 | |
|     <slot />
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   props: {
 | |
|     type: {
 | |
|       type: String,
 | |
|       default: 'error'
 | |
|     }
 | |
|   },
 | |
|   data() {
 | |
|     return {}
 | |
|   },
 | |
|   computed: {
 | |
|     icon() {
 | |
|       if (this.type === 'error' || this.type === 'warning') return 'report'
 | |
|       return 'info'
 | |
|     },
 | |
|     wrapperClass() {
 | |
|       return `bg-${this.type} border-${this.type} text-${this.type}`
 | |
|     }
 | |
|   },
 | |
|   methods: {},
 | |
|   mounted() {}
 | |
| }
 | |
| </script> |