Files
website-old/src/components/icons/PresentationIcon.vue
2021-07-03 17:27:35 +02:00

26 lines
554 B
Vue

<template>
<svg class="inline" width="1em" height="1em" 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>