aboutsummaryrefslogtreecommitdiff
path: root/src/components/icon/EduIcon.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/icon/EduIcon.vue')
-rw-r--r--src/components/icon/EduIcon.vue13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/icon/EduIcon.vue b/src/components/icon/EduIcon.vue
new file mode 100644
index 0000000..e46f2a6
--- /dev/null
+++ b/src/components/icon/EduIcon.vue
@@ -0,0 +1,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>