2023-07-02 19:55:18 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
defineProps<{
|
|
|
|
showLabel?: boolean
|
|
|
|
}>()
|
2024-01-24 16:48:24 +01:00
|
|
|
|
|
|
|
const { t } = useI18n()
|
2023-07-02 19:55:18 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
flex="~ gap1" items-center
|
|
|
|
:class="{ 'border border-base rounded-md px-1': showLabel }"
|
|
|
|
text-secondary-light
|
|
|
|
>
|
|
|
|
<slot name="prepend" />
|
2024-04-06 05:58:50 +02:00
|
|
|
<CommonTooltip content="Lock" :disabled="showLabel">
|
2023-07-02 19:55:18 +02:00
|
|
|
<div i-ri:lock-line />
|
|
|
|
</CommonTooltip>
|
|
|
|
<div v-if="showLabel">
|
2024-01-24 16:48:24 +01:00
|
|
|
{{ t('account.lock') }}
|
2023-07-02 19:55:18 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|