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,25 @@
<template>
<svg class="inline" width="1em" height="1 em" viewBox="0 0 24 24" focusable="false">
<g
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M9 12V8"/>
<path d="M15 12v-2"/>
<path d="M12 12v-1"/>
<path d="M3 4h18"/>
<path d="M4 4v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4"/>
<path d="M12 16v4"/>
<path d="M9 20h6"/>
</g>
</svg>
</template>
<script>
export default {
name: "PresentationIcon"
}
</script>