Files
evilspins/app/components/UI/CloseButton.vue
valere 543b513e08
All checks were successful
Deploy App / build (push) Successful in 2m1s
Deploy App / deploy (push) Successful in 20s
dupont release
2026-02-13 17:20:00 +01:00

39 lines
1.3 KiB
Vue

<template>
<button ref="buttonRef">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g>
<g id="SVGRepo_iconCarrier">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M15.7071 5.29289C16.0976 5.68342 16.0976 6.31658 15.7071 6.70711L10.4142 12L15.7071 17.2929C16.0976 17.6834 16.0976 18.3166 15.7071 18.7071C15.3165 19.0976 14.6834 19.0976 14.2929 18.7071L8.46963 12.8839C7.98148 12.3957 7.98148 11.6043 8.46963 11.1161L14.2929 5.29289C14.6834 4.90237 15.3165 4.90237 15.7071 5.29289Z"
fill="#0F1729"></path>
</g>
</svg>
</button>
</template>
<script setup lang="ts">
import { ref, onMounted, onUnmounted } from 'vue'
const buttonRef = ref<HTMLButtonElement | null>(null)
const handleKeyDown = (event: KeyboardEvent) => {
if (event.key === 'Escape' && buttonRef.value) {
buttonRef.value.click()
}
}
onMounted(() => {
window.addEventListener('keydown', handleKeyDown)
})
onUnmounted(() => {
window.removeEventListener('keydown', handleKeyDown)
})
</script>
<style scoped lang="scss">
button {
@apply bottom-4 md:top-4 left-4 size-20 fill-slate-600 bg-slate-500;
}
</style>