add the setup part and now we can erase

This commit is contained in:
Julien Calixte
2023-07-30 19:16:36 +02:00
parent ea4183d309
commit c8644074b4
3 changed files with 56 additions and 1 deletions

17
src/icons/EraserIcon.vue Normal file
View File

@@ -0,0 +1,17 @@
<script setup lang="ts">
import BaseIcon from './BaseIcon.vue'
withDefaults(defineProps<{ color?: string }>(), {
color: 'var(--primary-color)'
})
</script>
<template>
<BaseIcon :color="color">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path
d="M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"
/>
<path d="M18 13.3l-6.3 -6.3" />
</BaseIcon>
</template>