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

<script lang="ts">
import {defineComponent, PropType} from 'vue';
export default defineComponent({});
</script>