localhost-front/src/components/button/DeleteBtn.vue
2025-01-09 13:46:18 +09:00

14 lines
220 B
Vue

<template>
<button class="btn btn-label-primary btn-icon">
<i class='bx bx-trash' ></i>
</button>
</template>
<script>
export default {
name: 'DeleteButton',
methods: {
},
};
</script>