19 lines
466 B
Vue

<script setup>
defineOptions({
name: "ModalClose",
});
const closeModal = inject("closeModal");
</script>
<template>
<button
type="button"
class="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2"
@click="closeModal"
>
<Icon name="ph:x" class="h-4 w-4" />
<span class="sr-only">Close</span>
</button>
</template>