Files
website-old/src/components/icons/CrossIcon.vue
2021-08-12 22:04:47 +02:00

19 lines
549 B
Vue

<template>
<svg class="inline" width="1.5em" height="1.5em" viewBox="0 0 15 15" focusable="false">
<g fill="none">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M11.782 4.032a.575.575 0 1 0-.813-.814L7.5 6.687L4.032 3.218a.575.575 0 0 0-.814.814L6.687 7.5l-3.469 3.468a.575.575 0 0 0 .814.814L7.5 8.313l3.469 3.469a.575.575 0 0 0 .813-.814L8.313 7.5l3.469-3.468z"
fill="currentColor"
/>
</g>
</svg>
</template>
<script>
export default {
name: "CrossIcon"
}
</script>