elk/components/nav/button/Mention.vue
2025-01-01 19:28:07 +01:00

22 lines
566 B
Vue

<script setup lang="ts">
defineProps<{
activeClass: string
}>()
const hideLabel = useHideBottomNavigationLabel()
</script>
<template>
<NuxtLink
to="/conversations"
:aria-label="$t('nav.conversations')"
:active-class="activeClass"
flex flex-col items-center place-content-center h-full flex-1
class="coarse-pointer:select-none"
:class="hideLabel ? null : 'gap-1'"
@click="$scrollToTop"
>
<div aria-hidden="true" i-ri:at-line />
<span v-if="!hideLabel" text-xs>{{ $t('nav.conversations') }}</span>
</NuxtLink>
</template>