✨ (article) add icons and multiple flow steps
This commit is contained in:
15
src/icons/ProblemSolvingIcon.vue
Normal file
15
src/icons/ProblemSolvingIcon.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<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="M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" />
|
||||
<path d="M21 21l-6 -6" />
|
||||
</BaseIcon>
|
||||
</template>
|
||||
Reference in New Issue
Block a user