elk/components/nav/NavSideItem.vue

26 lines
529 B
Vue
Raw Normal View History

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