mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-23 08:20:38 +01:00
26 lines
554 B
Vue
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>
|