aboutsummaryrefslogtreecommitdiff
path: root/src/components
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
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')
-rw-r--r--src/components/AncestryBar.vue2
-rw-r--r--src/components/icon/FastForwardIcon.vue12
2 files changed, 13 insertions, 1 deletions
diff --git a/src/components/AncestryBar.vue b/src/components/AncestryBar.vue
index 78972b2..cf9513f 100644
--- a/src/components/AncestryBar.vue
+++ b/src/components/AncestryBar.vue
@@ -8,7 +8,7 @@
<script lang="ts">
import {defineComponent, PropType} from 'vue';
-import Tile from './Tile.vue'
+import Tile from './Tile.vue';
import {TolMap} from '../tol';
import {LayoutNode, LayoutOptions} from '../layout';
import {UiOptions} from '../lib';
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>