Ground-Zerro / Phobos Public
Code Issues Pull requests Actions Releases View on GitHub ↗
438 B plaintext
<template>
  <div class="flex items-center">
    <FormLabel :for="id">
      {{ label }}
    </FormLabel>
    <BaseTooltip v-if="description" :text="description">
      <IconsInfo class="size-4" />
    </BaseTooltip>
  </div>
  <span :id="id" class="flex flex-col justify-center">{{ data }}</span>
</template>

<script lang="ts" setup>
defineProps<{
  id: string;
  label: string;
  description?: string;
  data?: string;
}>();
</script>