aboutsummaryrefslogtreecommitdiff
path: root/src/components/icon
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-29 19:38:16 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-29 19:38:16 +1000
commit20fd1b948e3902683e1088799621aa4af34b9f8f (patch)
treefc713aa30a00fc2572ce001d1d81e6da01a5096d /src/components/icon
parent717ebc7783c2c791fe787d02fe07b21bbb4ee16b (diff)
Show pause-icon during auto-mode
Diffstat (limited to 'src/components/icon')
-rw-r--r--src/components/icon/PauseIcon.vue12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/components/icon/PauseIcon.vue b/src/components/icon/PauseIcon.vue
new file mode 100644
index 0000000..dc768a2
--- /dev/null
+++ b/src/components/icon/PauseIcon.vue
@@ -0,0 +1,12 @@
+<template>
+<svg viewBox="0 0 24 24" fill="none"
+ stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+ <rect x="6" y="4" width="4" height="16"></rect>
+ <rect x="14" y="4" width="4" height="16"></rect>
+</svg>
+</template>
+
+<script lang="ts">
+import {defineComponent, PropType} from 'vue';
+export default defineComponent({});
+</script>