blob: 8486686c237b7aa39cee999025164acaf5120ba7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<template>
<svg viewBox="0 0 512 512">
<path d="M160 164s1.44-33 33.54-59.46C212.6 88.83 235.49 84.28 256 84c18.73-.23 35.47 2.94 45.48 7.82C318.59 100.2 352 120.6 352 164c0 45.67-29.18 66.37-62.35 89.18S248 298.36 248 324"
fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="45"/>
<circle cx="248" cy="430" r="32" fill="currentColor"/>
</svg>
</template>
<script lang="ts">
import {defineComponent, PropType} from 'vue';
export default defineComponent({});
</script>
|