20 lines
266 B
Vue
20 lines
266 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="tooltip-name">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.tooltip-name {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-top: 0.2rem;
|
|
line-height: 1.3;
|
|
}
|
|
</style>
|