1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-12 21:58:05 +09:00
elk/components/account/AccountBotIndicator.vue

22 lines
477 B
Vue
Raw Normal View History

2023-01-07 22:53:09 +09:00
<script setup lang="ts">
defineProps<{
showLabel?: boolean
}>()
</script>
2022-12-12 00:43:23 +09:00
<template>
2023-01-07 22:53:09 +09:00
<div
flex="~ gap1" items-center
:class="{ 'border border-base rounded-md px-1': showLabel }"
text-secondary-light
2023-01-07 22:53:09 +09:00
>
<slot name="prepend" />
<CommonTooltip no-auto-focus :content="$t('account.bot')" :disabled="showLabel">
<div i-mdi:robot-outline />
2023-01-07 22:53:09 +09:00
</CommonTooltip>
<div v-if="showLabel">
{{ $t('account.bot') }}
</div>
2022-12-12 00:43:23 +09:00
</div>
</template>