17 lines
		
	
	
		
			371 B
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			371 B
		
	
	
	
		
			Vue
		
	
	
	
| <template>
 | |
|     <div class="h-full items-center flex absolute top-0 right-0">
 | |
|         <div v-tooltip="value" class="mr-2">
 | |
|             <ui-sprite src="info-button" class="w-5 h-5 text-primary-700"></ui-sprite>
 | |
|         </div>
 | |
|     </div>
 | |
| </template>
 | |
| 
 | |
| <script setup>
 | |
| const props = defineProps({
 | |
|     value: {
 | |
|         type: String,
 | |
|         required: true,
 | |
|     },
 | |
| });
 | |
| </script>
 |