add the setup part and now we can erase
This commit is contained in:
17
src/icons/EraserIcon.vue
Normal file
17
src/icons/EraserIcon.vue
Normal 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>
|
||||
Reference in New Issue
Block a user