mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-15 13:30:05 +00:00
12 lines
355 B
Vue
12 lines
355 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
activeClass: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLink to="/compose" :aria-label="$t('nav.favourites')" :active-class="activeClass" flex flex-row items-center place-content-center h-full flex-1 class="coarse-pointer:select-none" @click="$scrollToTop">
|
|
<div i-ri:quill-pen-line />
|
|
</NuxtLink>
|
|
</template>
|