Newer
Older
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
35
36
37
38
39
40
41
<script setup lang="ts">
interface Props {
color?: string;
size?: string | number;
}
defineProps<Props>();
</script>
<template>
<svg
xmlns="http://www.w3.org/2000/svg"
:width="`${size ?? 40}px`"
:height="`${size ?? 40}px`"
viewBox="0 0 532.153 532.153"
xml:space="preserve"
>
<line
x1="155"
y1="-100"
x2="-50"
y2="100"
transform="matrix(1.066014 0 0 1.167066 83.13335 150)"
fill="none"
:stroke="color ?? '#000000'"
stroke-width="50"
stroke-linecap="round"
/>
<line
x1="-50"
y1="100"
x2="155"
y2="300"
transform="matrix(1.066014 0 0 1.167066 83.13335 150)"
fill="none"
:stroke="color ?? '#000000'"
stroke-width="50"
stroke-linecap="round"
/>
<line
x1="335"
y1="-100"
y2="100"
transform="matrix(1.066014 0 0 1.167066 83.13335 150)"
fill="none"
:stroke="color ?? '#000000'"
stroke-width="50"
stroke-linecap="round"
/>
<line
y1="100"
x2="335"
y2="300"
transform="matrix(1.066014 0 0 1.167066 83.13335 150)"
fill="none"
:stroke="color ?? '#000000'"
stroke-width="50"
stroke-linecap="round"
/>
</svg>
</template>
<style scoped></style>