cd9db1563d
* improve mobile ui * general cleanup * cleanup, improvements * fix hydration mismatch
13 lines
293 B
Vue
13 lines
293 B
Vue
<template>
|
|
<h3 class="col-span-full flex items-center py-6 text-2xl">
|
|
<slot />
|
|
<BaseTooltip v-if="description" :text="description">
|
|
<IconsInfo class="size-4" />
|
|
</BaseTooltip>
|
|
</h3>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
defineProps<{ description?: string }>();
|
|
</script>
|