2024-06-28 13:43:38 +02:00
|
|
|
<template>
|
|
|
|
<div class="h-full items-center flex absolute top-0 right-0">
|
2024-06-28 14:04:20 +02:00
|
|
|
<div v-tooltip="value" class="mr-2">
|
|
|
|
<ui-sprite src="info-button" class="w-5 h-5 text-primary-700"></ui-sprite>
|
2024-06-28 13:43:38 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
const props = defineProps({
|
|
|
|
value: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|