16 lines
412 B
Vue
16 lines
412 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
icon?: string
|
|
active?: boolean
|
|
}>()
|
|
</script>
|
|
<template>
|
|
<a
|
|
class="mt-1 block w-full cursor-pointer rounded hover:bg-gray-200 active:bg-primary active:text-primary-content"
|
|
:class="props.active ? 'font-bold text-primary' : 'text-secondary'"
|
|
>
|
|
<i :class="props.icon" class="mr-2" v-if="props.icon"></i>
|
|
<slot></slot>
|
|
</a>
|
|
</template>
|