File size: 204 Bytes
4bcd925
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<template>
  <Tooltip :text="text">
    <span class="help-dot">?</span>
  </Tooltip>
</template>

<script setup lang="ts">
import Tooltip from './Tooltip.vue'

defineProps<{
  text: string
}>()
</script>