elk/components/account/AccountBotIndicator.vue
2023-01-09 22:27:03 +02:00

21 lines
459 B
Vue

<script setup lang="ts">
defineProps<{
showLabel?: boolean
}>()
</script>
<template>
<div
flex="~ gap1" items-center
:class="{ 'border border-base rounded-md px-1': showLabel }"
text-secondary-light
>
<slot name="prepend" />
<CommonTooltip :content="$t('account_bot')" :disabled="showLabel">
<div i-ri:robot-line />
</CommonTooltip>
<div v-if="showLabel">
{{ $t('account_bot') }}
</div>
</div>
</template>