Files
2024-09-01 18:54:23 +05:00

19 lines
342 B
Vue

<template>
<button
type="button"
@keydown.enter.prevent="$emit('click')"
@click.prevent="$emit('click')"
tabindex="0"
class="cursor-pointer text-gray-500 inline-flex items-center"
>
<Icon type="trash" :solid="true" />
<slot />
</button>
</template>
<script>
export default {
emits: ['click'],
}
</script>