aboutsummaryrefslogtreecommitdiff
path: root/src/components/icon/LogInIcon.vue
blob: bb925b02fdad6a96a47d14ca27b6fc5059bde901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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>