mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
293 B
12 lines
293 B
<template>
|
|
<h4 class="col-span-full flex items-center py-6 text-2xl">
|
|
<slot />
|
|
<BaseTooltip v-if="description" :text="description">
|
|
<IconsInfo class="size-4" />
|
|
</BaseTooltip>
|
|
</h4>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
defineProps<{ description?: string }>();
|
|
</script>
|
|
|