aboutsummaryrefslogtreecommitdiff
path: root/src/components/icon/FastForwardIcon.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-30 00:13:50 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-30 00:13:50 +1000
commite746e7ec7ab457a67bc5fb6c41e1f4aaaa54b336 (patch)
tree6d0c76d1dcd7b048dbf3308583f901b75140b18a /src/components/icon/FastForwardIcon.vue
parent4989a49f2e370b664b54ecc3f085689508d2bb6f (diff)
Add button for jumping to roottest-toroot-button
Arguably redundant due to ability to click/tap on sidebar scrollbar
Diffstat (limited to 'src/components/icon/FastForwardIcon.vue')
-rw-r--r--src/components/icon/FastForwardIcon.vue12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/components/icon/FastForwardIcon.vue b/src/components/icon/FastForwardIcon.vue
new file mode 100644
index 0000000..1efad04
--- /dev/null
+++ b/src/components/icon/FastForwardIcon.vue
@@ -0,0 +1,12 @@
+<template>
+<svg viewBox="-2 0 24 24" fill="none"
+ stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+ <polygon points="13 19 22 12 13 5 13 19"></polygon>
+ <polygon points="2 19 11 12 2 5 2 19"></polygon>
+</svg>
+</template>
+
+<script lang="ts">
+import {defineComponent, PropType} from 'vue';
+export default defineComponent({});
+</script>