Files
Matdash_nuxt/components/layout/full/vertical-header/NotificationDD.vue
2025-03-21 09:37:29 +07:00

11 lines
380 B
Vue

<script setup lang="ts">
import { Icon } from '@iconify/vue';
</script>
<template>
<v-btn icon class="custom-hover-primary" size="small" variant="text" rounded="circle" color="primary" >
<v-badge dot color="primary" offset-x="-5" offset-y="-3">
<Icon icon="solar:bell-bing-line-duotone" height="22" />
</v-badge>
</v-btn>
</template>