1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| <script setup lang="ts"></script>
|
| <template>
| <svg
| xmlns="http://www.w3.org/2000/svg"
| version="1.1"
| width="200px"
| height="200px"
| viewBox="0 0 200 200"
| style="
| shape-rendering: geometricPrecision;
| text-rendering: geometricPrecision;
| image-rendering: optimizeQuality;
| fill-rule: evenodd;
| clip-rule: evenodd;
| "
| xmlns:xlink="http://www.w3.org/1999/xlink"
| >
| <g>
| <path
| style="opacity: 0.988"
| d="M 87.5,-0.5 C 95.1667,-0.5 102.833,-0.5 110.5,-0.5C 146.888,7.72465 167.388,30.3913 172,67.5C 172.5,101.165 172.667,134.832 172.5,168.5C 123.833,168.5 75.1667,168.5 26.5,168.5C 26.3333,132.498 26.5,96.4985 27,60.5C 33.9986,27.0017 54.1653,6.66837 87.5,-0.5 Z M 101.5,40.5 C 103.678,52.6006 105.011,64.9339 105.5,77.5C 116.858,77.4139 128.191,77.9139 139.5,79C 123.945,100.223 108.778,121.723 94,143.5C 93.167,128.176 92.667,112.842 92.5,97.5C 80.4954,97.6665 68.4954,97.4999 56.5,97C 71.8692,78.4097 86.8692,59.5764 101.5,40.5 Z"
| />
| </g>
| <g>
| <path
| style="opacity: 0.995"
| d="M 199.5,183.5 C 199.5,186.833 199.5,190.167 199.5,193.5C 197.167,195.167 195.167,197.167 193.5,199.5C 130.833,199.5 68.1667,199.5 5.5,199.5C 3.83333,197.167 1.83333,195.167 -0.5,193.5C -0.5,190.167 -0.5,186.833 -0.5,183.5C 1.67098,181.5 4.00432,179.666 6.5,178C 68.5,177.333 130.5,177.333 192.5,178C 194.996,179.666 197.329,181.5 199.5,183.5 Z"
| />
| </g>
| </svg>
| </template>
|
| <style scoped lang="scss"></style>
|
|