7 lines
232 B
Vue
7 lines
232 B
Vue
<script setup>
|
|
import Icon from '@/Components/Icon.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<Icon name="times" class="px-2 py-1 bg-red-500 hover:bg-red-600 dark:text-gray-700 rounded-md transition-all duration-300 cursor-pointer" />
|
|
</template> |