aboutsummaryrefslogtreecommitdiff
path: root/src/components/icon
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-07-15 18:21:08 +1000
committerTerry Truong <terry06890@gmail.com>2022-07-15 18:21:08 +1000
commit1bca6634b31f1e18e8d29233a1502914ae284e2b (patch)
treedb83749ce6096a9befaaf9d38c121d578021960f /src/components/icon
parent61d57b38400fdd2e3f51ff515e5191b27b869c9e (diff)
Show tutorial-open icon when tut-pane auto-closes
Diffstat (limited to 'src/components/icon')
-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>