(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

28
src/icons/BaseIcon.vue Normal file
View File

@@ -0,0 +1,28 @@
<script setup lang="ts">
withDefaults(defineProps<{ color: string }>(), {
color: 'var(--primary-color)'
})
</script>
<template>
<svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-search"
width="20"
height="20"
viewBox="0 0 24 24"
stroke-width="3"
:stroke="color"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<slot />
</svg>
</template>
<style>
svg {
vertical-align: text-bottom;
}
</style>