Change all SVG in code into Vue Components

This commit is contained in:
2021-07-02 23:46:05 +02:00
parent eb93bac593
commit 0cae02babf
28 changed files with 444 additions and 89 deletions

View File

@@ -0,0 +1,21 @@
<template>
<svg class="inline" width="2.5em" height="2.5em" viewBox="0 0 24 24" focusable="false">
<path
d="M20 20V9.132l-8-4.8l-8 4.8V20h4v-2.75a4 4 0 1 1 8 0V20h4zm-6 2v-4.75a2 2 0 1 0-4 0V22H4a2 2 0 0 1-2-2V9.132a2 2 0 0 1 .971-1.715l8-4.8a2 2 0 0 1 2.058 0l8 4.8A2 2 0 0 1 22 9.132V20a2 2 0 0 1-2 2h-6z"
stroke="currentColor"
:class="{active: 'fill-black dark:fill-white'}"
/>
</svg>
</template>
<script lang="ts">
export default {
name: "HomeIcon",
props: {
active: {
type: Boolean,
default: false
}
}
}
</script>