aboutsummaryrefslogtreecommitdiff
path: root/src/components/icon
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/icon')
-rw-r--r--src/components/icon/LogInIcon.vue13
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>