1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <template>
| <div>
| <div class="flex justify-end">
| <div
| @click="$emit('close')"
| class="flex-cc c-p size-7.5 !transition-all duration-200 rounded hover:bg-g-300/80"
| >
| <ArtSvgIcon icon="ri:close-fill" class="block text-xl text-g-600" />
| </div>
| </div>
| </div>
| </template>
|
| <script setup>
| defineEmits(['close'])
| </script>
|
|