aboutsummaryrefslogtreecommitdiff
path: root/src/components/icon/EduIcon.vue
blob: e46f2a6b56d4b9040715c2996dd50d91658c9b22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
<svg viewBox="0 0 512 512">
	<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32"
		d="M32 192L256 64l224 128-224 128L32 192z"/>
	<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32"
		d="M112 240v128l144 80 144-80V240M480 368V192M256 320v128"/>
</svg>
</template>

<script lang="ts">
import {defineComponent, PropType} from 'vue';
export default defineComponent({});
</script>