1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-23 14:46:48 +01:00
elk/components/nav/NavSideItem.vue
2022-11-27 12:45:26 +08:00

19 lines
454 B
Vue

<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-full group-hover:bg-active group-focus-visible:ring="2 current">
<slot name="icon">
<div :class="icon" />
</slot>
<span>{{ text }}</span>
</div>
</NuxtLink>
</template>