Files
BarangaySystem/resources/js/Components/Core/Services/ServiceButton.vue
2026-06-06 18:43:00 +08:00

21 lines
558 B
Vue

<template>
<li>
<a href="javascript:void(0);" @click="$emit('click', $event)">
<div :class="['icon-box', bgColor8 ? 'bg_color_8' : '']" style="background: transparent !important; border: none !important;">
<img :src="icon" />
</div>
<span style="color: var(--text-primary);">{{ title }}</span>
</a>
</li>
</template>
<script setup>
defineProps({
icon: { type: String, required: true },
title: { type: String, default: '' },
bgColor8: { type: Boolean, default: false },
})
defineEmits(['click'])
</script>