diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-06-24 03:22:29 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-06-24 03:22:29 +1000 |
| commit | 17d5aa2eb276bca92a2cc29067d98f06b87df491 (patch) | |
| tree | d190af78e431528e54cc8bea610ffb2aa1e3ffb3 /src/components/icon | |
| parent | 98c99677eb922587fde8c19a9a1190529cd432a7 (diff) | |
Add jump-to-searched-node button to search-bar
Diffstat (limited to 'src/components/icon')
| -rw-r--r-- | src/components/icon/LogInIcon.vue | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/icon/LogInIcon.vue b/src/components/icon/LogInIcon.vue new file mode 100644 index 0000000..bb925b0 --- /dev/null +++ b/src/components/icon/LogInIcon.vue @@ -0,0 +1,13 @@ +<script lang="ts"> +import {defineComponent, PropType} from 'vue'; +export default defineComponent({}); +</script> + +<template> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" + stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> + <path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"></path> + <polyline points="10 17 15 12 10 7"></polyline> + <line x1="15" y1="12" x2="3" y2="12"></line> +</svg> +</template> |
