1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-27 14:28:10 +09:00
elk/components/nav/NavSideItem.vue

19 lines
452 B
Vue
Raw Normal View History

2022-11-27 11:35:26 +09:00
<script setup lang="ts">
defineProps<{
text: string
icon: string
to: string
}>()
</script>
<template>
<NuxtLink :to="to" active-class="text-primary" group focus:outline-none>
<div flex w-fit px5 py2 gap2 items-center transition-100 rounded-10 group-hover:bg-active group-focus-visible:ring="2 current">
<slot name="icon">
<div :class="icon" />
</slot>
<span>{{ text }}</span>
</div>
</NuxtLink>
</template>