mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			564 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			564 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script setup>
 | 
						|
defineProps({
 | 
						|
  message: {
 | 
						|
    type: String,
 | 
						|
    default: '',
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <div class="relative group w-[inherit] whitespace-normal z-20">
 | 
						|
    <fluent-icon
 | 
						|
      icon="info"
 | 
						|
      size="14"
 | 
						|
      class="mt-0.5 text-n-slate-11 absolute"
 | 
						|
    />
 | 
						|
    <div
 | 
						|
      class="bg-n-background w-fit ltr:left-4 rtl:right-4 top-0 border p-2.5 group-hover:flex items-center hidden absolute border-n-weak rounded-lg shadow-md"
 | 
						|
    >
 | 
						|
      <p class="text-n-slate-12 mb-0 text-xs">
 | 
						|
        {{ message }}
 | 
						|
      </p>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 |