Files
tps/src/icons/BaseIcon.vue
Julien Calixte fc5e897ade really middle
2023-07-30 16:00:00 +02:00

29 lines
483 B
Vue

<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: middle;
}
</style>