mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			439 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			439 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script setup>
 | 
						|
import ChannelIcon from 'dashboard/components-next/icon/ChannelIcon.vue';
 | 
						|
 | 
						|
defineProps({
 | 
						|
  inbox: {
 | 
						|
    type: Object,
 | 
						|
    default: () => {},
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <div class="flex items-center text-n-slate-11 text-xs min-w-0">
 | 
						|
    <ChannelIcon
 | 
						|
      :inbox="inbox"
 | 
						|
      class="size-3 ltr:mr-0.5 rtl:ml-0.5 flex-shrink-0"
 | 
						|
    />
 | 
						|
    <span class="truncate">
 | 
						|
      {{ inbox.name }}
 | 
						|
    </span>
 | 
						|
  </div>
 | 
						|
</template>
 |