elk/components/nav/NavSideItem.vue

26 lines
529 B
Vue
Raw Normal View History

2022-11-27 03:35:26 +01:00
<script setup lang="ts">
defineProps<{
2022-11-27 17:59:33 +01:00
text?: string
2022-11-27 03:35:26 +01:00
icon: string
to: string
}>()
2022-11-27 17:59:33 +01:00
defineSlots<{
icon: {}
default: {}
}>()
2022-11-27 03:35:26 +01:00
</script>
<template>
<NuxtLink :to="to" active-class="text-primary" group focus:outline-none>
2022-11-27 05:45:26 +01: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 03:35:26 +01:00
<slot name="icon">
<div :class="icon" />
</slot>
2022-11-27 17:59:33 +01:00
<slot>
<span>{{ text }}</span>
</slot>
2022-11-27 03:35:26 +01:00
</div>
</NuxtLink>
</template>