(article) add icons and multiple flow steps

This commit is contained in:
Julien Calixte
2023-07-29 22:49:32 +02:00
parent 77285713ea
commit 9f842c3b6e
13 changed files with 135 additions and 58 deletions

View 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>