a-icons 1.2.67 → 1.2.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/GarbageCanOutlined.js +10 -2
- package/es/PencilOutlined.js +4 -7
- package/lib/GarbageCanOutlined.js +10 -2
- package/lib/PencilOutlined.js +4 -7
- package/package.json +2 -2
- package/src/GarbageCanOutlined.tsx +4 -2
- package/src/PencilOutlined.tsx +3 -6
- package/svgs/outlined/garbage-can-outlined.svg +6 -5
- package/svgs/outlined/pencil-outlined.svg +2 -2
- package/tmpAllSvgs/garbage-can-outlined.svg +6 -5
- package/tmpAllSvgs/pencil-outlined.svg +2 -2
package/es/GarbageCanOutlined.js
CHANGED
|
@@ -15,12 +15,20 @@ import Icon from 'a-base-icon/lib/icon';
|
|
|
15
15
|
function GarbageCanOutlined(componentProps) {
|
|
16
16
|
var IconNode = function IconNode(props) {
|
|
17
17
|
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
-
|
|
18
|
+
width: 24,
|
|
19
|
+
height: 24,
|
|
20
|
+
fill: "none",
|
|
19
21
|
xmlns: "http://www.w3.org/2000/svg"
|
|
20
22
|
}, props), /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
d: "M11 17.5H9v-7h2v7zM15 17.5h-2v-7h2v7z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
21
26
|
fillRule: "evenodd",
|
|
22
27
|
clipRule: "evenodd",
|
|
23
|
-
d: "
|
|
28
|
+
d: "M22 7h-2v10.2c0 .824.001 1.502-.044 2.052-.046.562-.144 1.08-.392 1.564a4.002 4.002 0 01-1.748 1.748c-.485.248-1.002.346-1.564.392-.55.045-1.228.044-2.052.044H9.8c-.824 0-1.502.001-2.052-.044-.562-.046-1.08-.144-1.564-.392a4.001 4.001 0 01-1.748-1.748c-.248-.485-.346-1.002-.392-1.564C3.999 18.702 4 18.024 4 17.2V7H2V5h20v2zM6 17.2c0 .857 0 1.439.037 1.889.036.438.101.663.18.82a2 2 0 00.875.873c.156.08.38.145.82.18C8.361 21 8.942 21 9.8 21h4.4c.857 0 1.439 0 1.889-.037.438-.036.663-.101.82-.18a2 2 0 00.873-.875c.08-.156.145-.38.18-.82.038-.45.038-1.031.038-1.888V7H6v10.2z",
|
|
29
|
+
fill: "currentColor"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
d: "M15.83 4h-8V2h8v2z",
|
|
24
32
|
fill: "currentColor"
|
|
25
33
|
}));
|
|
26
34
|
};
|
package/es/PencilOutlined.js
CHANGED
|
@@ -15,16 +15,13 @@ import Icon from 'a-base-icon/lib/icon';
|
|
|
15
15
|
function PencilOutlined(componentProps) {
|
|
16
16
|
var IconNode = function IconNode(props) {
|
|
17
17
|
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
-
width:
|
|
19
|
-
height:
|
|
18
|
+
width: 24,
|
|
19
|
+
height: 24,
|
|
20
20
|
fill: "none",
|
|
21
21
|
xmlns: "http://www.w3.org/2000/svg"
|
|
22
22
|
}, props), /*#__PURE__*/React.createElement("path", {
|
|
23
|
-
d: "M16.
|
|
24
|
-
|
|
25
|
-
strokeWidth: 1.5,
|
|
26
|
-
strokeLinecap: "round",
|
|
27
|
-
strokeLinejoin: "round"
|
|
23
|
+
d: "M16.275 2.203a2.136 2.136 0 011.158.046c.305.1.541.268.733.43.183.156.384.359.597.571l1.976 1.977c.214.213.417.415.572.598.143.168.29.37.391.623l.04.112.046.162c.091.381.076.783-.046 1.158-.099.305-.268.541-.43.733-.156.183-.359.385-.572.598L8.39 21.561a1 1 0 01-.707.294H3.138a1 1 0 01-1-1V16.31a1 1 0 01.293-.707L14.785 3.248c.212-.211.412-.414.594-.568.192-.163.428-.332.733-.43l.163-.047zM4.138 16.723v3.132h3.13l8.09-8.091-3.13-3.13-8.09 8.09zM16.746 4.149a.956.956 0 00-.072.057c-.106.09-.242.224-.478.46L13.642 7.22l3.13 3.13 2.553-2.551.009-.01h.001c.23-.232.363-.365.452-.47a.867.867 0 00.056-.072.134.134 0 000-.055.878.878 0 00-.056-.072 9.486 9.486 0 00-.462-.478L17.35 4.664a9.424 9.424 0 00-.477-.46c-.037-.03-.061-.047-.074-.056a.134.134 0 00-.052 0z",
|
|
24
|
+
fill: "currentColor"
|
|
28
25
|
}));
|
|
29
26
|
};
|
|
30
27
|
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
@@ -58,12 +58,20 @@ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
|
58
58
|
function GarbageCanOutlined(componentProps) {
|
|
59
59
|
var IconNode = function IconNode(props) {
|
|
60
60
|
return React.createElement("svg", __assign({
|
|
61
|
-
|
|
61
|
+
width: 24,
|
|
62
|
+
height: 24,
|
|
63
|
+
fill: "none",
|
|
62
64
|
xmlns: "http://www.w3.org/2000/svg"
|
|
63
65
|
}, props), React.createElement("path", {
|
|
66
|
+
d: "M11 17.5H9v-7h2v7zM15 17.5h-2v-7h2v7z",
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
}), React.createElement("path", {
|
|
64
69
|
fillRule: "evenodd",
|
|
65
70
|
clipRule: "evenodd",
|
|
66
|
-
d: "
|
|
71
|
+
d: "M22 7h-2v10.2c0 .824.001 1.502-.044 2.052-.046.562-.144 1.08-.392 1.564a4.002 4.002 0 01-1.748 1.748c-.485.248-1.002.346-1.564.392-.55.045-1.228.044-2.052.044H9.8c-.824 0-1.502.001-2.052-.044-.562-.046-1.08-.144-1.564-.392a4.001 4.001 0 01-1.748-1.748c-.248-.485-.346-1.002-.392-1.564C3.999 18.702 4 18.024 4 17.2V7H2V5h20v2zM6 17.2c0 .857 0 1.439.037 1.889.036.438.101.663.18.82a2 2 0 00.875.873c.156.08.38.145.82.18C8.361 21 8.942 21 9.8 21h4.4c.857 0 1.439 0 1.889-.037.438-.036.663-.101.82-.18a2 2 0 00.873-.875c.08-.156.145-.38.18-.82.038-.45.038-1.031.038-1.888V7H6v10.2z",
|
|
72
|
+
fill: "currentColor"
|
|
73
|
+
}), React.createElement("path", {
|
|
74
|
+
d: "M15.83 4h-8V2h8v2z",
|
|
67
75
|
fill: "currentColor"
|
|
68
76
|
}));
|
|
69
77
|
};
|
package/lib/PencilOutlined.js
CHANGED
|
@@ -58,16 +58,13 @@ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
|
58
58
|
function PencilOutlined(componentProps) {
|
|
59
59
|
var IconNode = function IconNode(props) {
|
|
60
60
|
return React.createElement("svg", __assign({
|
|
61
|
-
width:
|
|
62
|
-
height:
|
|
61
|
+
width: 24,
|
|
62
|
+
height: 24,
|
|
63
63
|
fill: "none",
|
|
64
64
|
xmlns: "http://www.w3.org/2000/svg"
|
|
65
65
|
}, props), React.createElement("path", {
|
|
66
|
-
d: "M16.
|
|
67
|
-
|
|
68
|
-
strokeWidth: 1.5,
|
|
69
|
-
strokeLinecap: "round",
|
|
70
|
-
strokeLinejoin: "round"
|
|
66
|
+
d: "M16.275 2.203a2.136 2.136 0 011.158.046c.305.1.541.268.733.43.183.156.384.359.597.571l1.976 1.977c.214.213.417.415.572.598.143.168.29.37.391.623l.04.112.046.162c.091.381.076.783-.046 1.158-.099.305-.268.541-.43.733-.156.183-.359.385-.572.598L8.39 21.561a1 1 0 01-.707.294H3.138a1 1 0 01-1-1V16.31a1 1 0 01.293-.707L14.785 3.248c.212-.211.412-.414.594-.568.192-.163.428-.332.733-.43l.163-.047zM4.138 16.723v3.132h3.13l8.09-8.091-3.13-3.13-8.09 8.09zM16.746 4.149a.956.956 0 00-.072.057c-.106.09-.242.224-.478.46L13.642 7.22l3.13 3.13 2.553-2.551.009-.01h.001c.23-.232.363-.365.452-.47a.867.867 0 00.056-.072.134.134 0 000-.055.878.878 0 00-.056-.072 9.486 9.486 0 00-.462-.478L17.35 4.664a9.424 9.424 0 00-.477-.46c-.037-.03-.061-.047-.074-.056a.134.134 0 00-.052 0z",
|
|
67
|
+
fill: "currentColor"
|
|
71
68
|
}));
|
|
72
69
|
};
|
|
73
70
|
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.68",
|
|
4
4
|
"repository": "git@github.com:SPOTEC-LTD/assui.git",
|
|
5
5
|
"author": "jason <usochen@gmail.com>",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"assui": "^3.2.49"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "5a23d2afa94774e465da3475a970d637026783a8"
|
|
26
26
|
}
|
|
@@ -3,13 +3,15 @@ import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
|
3
3
|
|
|
4
4
|
function GarbageCanOutlined(componentProps: IconProps) {
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
-
<svg
|
|
6
|
+
<svg width={24} height={24} fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path d="M11 17.5H9v-7h2v7zM15 17.5h-2v-7h2v7z" fill="currentColor" />
|
|
7
8
|
<path
|
|
8
9
|
fillRule="evenodd"
|
|
9
10
|
clipRule="evenodd"
|
|
10
|
-
d="
|
|
11
|
+
d="M22 7h-2v10.2c0 .824.001 1.502-.044 2.052-.046.562-.144 1.08-.392 1.564a4.002 4.002 0 01-1.748 1.748c-.485.248-1.002.346-1.564.392-.55.045-1.228.044-2.052.044H9.8c-.824 0-1.502.001-2.052-.044-.562-.046-1.08-.144-1.564-.392a4.001 4.001 0 01-1.748-1.748c-.248-.485-.346-1.002-.392-1.564C3.999 18.702 4 18.024 4 17.2V7H2V5h20v2zM6 17.2c0 .857 0 1.439.037 1.889.036.438.101.663.18.82a2 2 0 00.875.873c.156.08.38.145.82.18C8.361 21 8.942 21 9.8 21h4.4c.857 0 1.439 0 1.889-.037.438-.036.663-.101.82-.18a2 2 0 00.873-.875c.08-.156.145-.38.18-.82.038-.45.038-1.031.038-1.888V7H6v10.2z"
|
|
11
12
|
fill="currentColor"
|
|
12
13
|
/>
|
|
14
|
+
<path d="M15.83 4h-8V2h8v2z" fill="currentColor" />
|
|
13
15
|
</svg>
|
|
14
16
|
);
|
|
15
17
|
|
package/src/PencilOutlined.tsx
CHANGED
|
@@ -3,13 +3,10 @@ import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
|
3
3
|
|
|
4
4
|
function PencilOutlined(componentProps: IconProps) {
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
-
<svg width={
|
|
6
|
+
<svg width={24} height={24} fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
7
|
<path
|
|
8
|
-
d="M16.
|
|
9
|
-
|
|
10
|
-
strokeWidth={1.5}
|
|
11
|
-
strokeLinecap="round"
|
|
12
|
-
strokeLinejoin="round"
|
|
8
|
+
d="M16.275 2.203a2.136 2.136 0 011.158.046c.305.1.541.268.733.43.183.156.384.359.597.571l1.976 1.977c.214.213.417.415.572.598.143.168.29.37.391.623l.04.112.046.162c.091.381.076.783-.046 1.158-.099.305-.268.541-.43.733-.156.183-.359.385-.572.598L8.39 21.561a1 1 0 01-.707.294H3.138a1 1 0 01-1-1V16.31a1 1 0 01.293-.707L14.785 3.248c.212-.211.412-.414.594-.568.192-.163.428-.332.733-.43l.163-.047zM4.138 16.723v3.132h3.13l8.09-8.091-3.13-3.13-8.09 8.09zM16.746 4.149a.956.956 0 00-.072.057c-.106.09-.242.224-.478.46L13.642 7.22l3.13 3.13 2.553-2.551.009-.01h.001c.23-.232.363-.365.452-.47a.867.867 0 00.056-.072.134.134 0 000-.055.878.878 0 00-.056-.072 9.486 9.486 0 00-.462-.478L17.35 4.664a9.424 9.424 0 00-.477-.46c-.037-.03-.061-.047-.074-.056a.134.134 0 00-.052 0z"
|
|
9
|
+
fill="currentColor"
|
|
13
10
|
/>
|
|
14
11
|
</svg>
|
|
15
12
|
);
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11 17.5H9V10.5H11V17.5Z" fill="currentColor"/>
|
|
3
|
+
<path d="M15 17.5H13V10.5H15V17.5Z" fill="currentColor"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 7H20V17.2002C20 18.0237 20.001 18.7016 19.9561 19.252C19.9101 19.814 19.8117 20.3311 19.5645 20.8164C19.181 21.5689 18.5689 22.181 17.8164 22.5645C17.3311 22.8117 16.814 22.9101 16.252 22.9561C15.7016 23.001 15.0237 23 14.2002 23H9.7998C8.97631 23 8.29843 23.001 7.74805 22.9561C7.18599 22.9101 6.6689 22.8117 6.18359 22.5645C5.43109 22.181 4.81902 21.5689 4.43555 20.8164C4.18827 20.3311 4.08987 19.814 4.04395 19.252C3.99898 18.7016 4 18.0237 4 17.2002V7H2V5H22V7ZM6 17.2002C6 18.0566 6.00035 18.6388 6.03711 19.0889C6.07293 19.5273 6.13808 19.7518 6.21777 19.9082C6.40951 20.2845 6.71554 20.5905 7.0918 20.7822C7.2482 20.8619 7.47272 20.9271 7.91113 20.9629C8.36117 20.9997 8.94341 21 9.7998 21H14.2002C15.0566 21 15.6388 20.9997 16.0889 20.9629C16.5273 20.9271 16.7518 20.8619 16.9082 20.7822C17.2845 20.5905 17.5905 20.2845 17.7822 19.9082C17.8619 19.7518 17.9271 19.5273 17.9629 19.0889C17.9997 18.6388 18 18.0566 18 17.2002V7H6V17.2002Z" fill="currentColor"/>
|
|
5
|
+
<path d="M15.8291 4H7.8291V2H15.8291V4Z" fill="currentColor"/>
|
|
6
|
+
</svg>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="M16.
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.2754 2.20318C16.6569 2.11184 17.0574 2.12724 17.4326 2.24908C17.7376 2.34815 17.9742 2.51693 18.166 2.67974C18.3489 2.83496 18.5504 3.03775 18.7627 3.25005L20.7393 5.22661C20.9526 5.43994 21.1559 5.64193 21.3115 5.82525C21.4543 5.99348 21.6012 6.19578 21.7021 6.44829L21.7422 6.55962L21.7881 6.72173C21.8795 7.10349 21.8641 7.50461 21.7422 7.87993C21.643 8.1848 21.4745 8.42135 21.3115 8.61333C21.1561 8.79641 20.9531 8.9981 20.7402 9.21099L8.38965 21.5616C8.20213 21.749 7.94774 21.8545 7.68262 21.8545H3.1377C2.87254 21.8545 2.61819 21.749 2.43066 21.5616C2.24319 21.3741 2.13776 21.1197 2.1377 20.8545V16.3096C2.1377 16.0445 2.24323 15.7901 2.43066 15.6026L14.7852 3.2481C14.9967 3.03652 15.1967 2.83441 15.3789 2.67974C15.5708 2.51686 15.8074 2.34821 16.1123 2.24908L16.2754 2.20318ZM4.1377 16.7237V19.8545H7.26855L15.3574 11.7637L12.2275 8.63384L4.1377 16.7237ZM16.7461 4.14849C16.7331 4.15747 16.7096 4.17479 16.6738 4.20513C16.5676 4.29534 16.4322 4.42919 16.1963 4.66509L13.6416 7.2188L16.7725 10.3497L19.3252 7.7979L19.334 7.78814L19.335 7.78716C19.5656 7.55649 19.698 7.4234 19.7871 7.31841C19.8172 7.28292 19.8338 7.25918 19.8428 7.24615C19.8465 7.22786 19.8466 7.20967 19.8428 7.19146C19.8336 7.17824 19.817 7.1544 19.7871 7.11919C19.6966 7.01261 19.5618 6.87731 19.3252 6.64068L17.3486 4.66411C17.1131 4.42853 16.9781 4.2942 16.8721 4.20415C16.8355 4.1731 16.8106 4.15723 16.7979 4.14849C16.7806 4.14522 16.7633 4.14501 16.7461 4.14849Z" fill="currentColor"/>
|
|
3
3
|
</svg>
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11 17.5H9V10.5H11V17.5Z" fill="currentColor"/>
|
|
3
|
+
<path d="M15 17.5H13V10.5H15V17.5Z" fill="currentColor"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 7H20V17.2002C20 18.0237 20.001 18.7016 19.9561 19.252C19.9101 19.814 19.8117 20.3311 19.5645 20.8164C19.181 21.5689 18.5689 22.181 17.8164 22.5645C17.3311 22.8117 16.814 22.9101 16.252 22.9561C15.7016 23.001 15.0237 23 14.2002 23H9.7998C8.97631 23 8.29843 23.001 7.74805 22.9561C7.18599 22.9101 6.6689 22.8117 6.18359 22.5645C5.43109 22.181 4.81902 21.5689 4.43555 20.8164C4.18827 20.3311 4.08987 19.814 4.04395 19.252C3.99898 18.7016 4 18.0237 4 17.2002V7H2V5H22V7ZM6 17.2002C6 18.0566 6.00035 18.6388 6.03711 19.0889C6.07293 19.5273 6.13808 19.7518 6.21777 19.9082C6.40951 20.2845 6.71554 20.5905 7.0918 20.7822C7.2482 20.8619 7.47272 20.9271 7.91113 20.9629C8.36117 20.9997 8.94341 21 9.7998 21H14.2002C15.0566 21 15.6388 20.9997 16.0889 20.9629C16.5273 20.9271 16.7518 20.8619 16.9082 20.7822C17.2845 20.5905 17.5905 20.2845 17.7822 19.9082C17.8619 19.7518 17.9271 19.5273 17.9629 19.0889C17.9997 18.6388 18 18.0566 18 17.2002V7H6V17.2002Z" fill="currentColor"/>
|
|
5
|
+
<path d="M15.8291 4H7.8291V2H15.8291V4Z" fill="currentColor"/>
|
|
6
|
+
</svg>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="M16.
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.2754 2.20318C16.6569 2.11184 17.0574 2.12724 17.4326 2.24908C17.7376 2.34815 17.9742 2.51693 18.166 2.67974C18.3489 2.83496 18.5504 3.03775 18.7627 3.25005L20.7393 5.22661C20.9526 5.43994 21.1559 5.64193 21.3115 5.82525C21.4543 5.99348 21.6012 6.19578 21.7021 6.44829L21.7422 6.55962L21.7881 6.72173C21.8795 7.10349 21.8641 7.50461 21.7422 7.87993C21.643 8.1848 21.4745 8.42135 21.3115 8.61333C21.1561 8.79641 20.9531 8.9981 20.7402 9.21099L8.38965 21.5616C8.20213 21.749 7.94774 21.8545 7.68262 21.8545H3.1377C2.87254 21.8545 2.61819 21.749 2.43066 21.5616C2.24319 21.3741 2.13776 21.1197 2.1377 20.8545V16.3096C2.1377 16.0445 2.24323 15.7901 2.43066 15.6026L14.7852 3.2481C14.9967 3.03652 15.1967 2.83441 15.3789 2.67974C15.5708 2.51686 15.8074 2.34821 16.1123 2.24908L16.2754 2.20318ZM4.1377 16.7237V19.8545H7.26855L15.3574 11.7637L12.2275 8.63384L4.1377 16.7237ZM16.7461 4.14849C16.7331 4.15747 16.7096 4.17479 16.6738 4.20513C16.5676 4.29534 16.4322 4.42919 16.1963 4.66509L13.6416 7.2188L16.7725 10.3497L19.3252 7.7979L19.334 7.78814L19.335 7.78716C19.5656 7.55649 19.698 7.4234 19.7871 7.31841C19.8172 7.28292 19.8338 7.25918 19.8428 7.24615C19.8465 7.22786 19.8466 7.20967 19.8428 7.19146C19.8336 7.17824 19.817 7.1544 19.7871 7.11919C19.6966 7.01261 19.5618 6.87731 19.3252 6.64068L17.3486 4.66411C17.1131 4.42853 16.9781 4.2942 16.8721 4.20415C16.8355 4.1731 16.8106 4.15723 16.7979 4.14849C16.7806 4.14522 16.7633 4.14501 16.7461 4.14849Z" fill="currentColor"/>
|
|
3
3
|
</svg>
|