a-icons 1.1.5 → 1.1.6
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/RefreshRightOutlined.d.ts +7 -0
- package/es/RefreshRightOutlined.js +34 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/RefreshRightOutlined.d.ts +7 -0
- package/lib/RefreshRightOutlined.js +77 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +8 -1
- package/package.json +2 -2
- package/src/RefreshRightOutlined.tsx +21 -0
- package/src/index.tsx +1 -0
- package/svgs/outlined/refresh-right-outlined.svg +8 -0
- package/tmpAllSvgs/refresh-right-outlined.svg +8 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function RefreshRightOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace RefreshRightOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default RefreshRightOutlined;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) {
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
import * as React from 'react';
|
|
14
|
+
import Icon from 'a-base-icon/lib/icon';
|
|
15
|
+
function RefreshRightOutlined(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M18.92 14.89c.26-.87.43-1.83.43-2.89 0-4.79-3.88-8.67-8.67-8.67C5.88 3.33 2 7.21 2 12s3.88 8.67 8.67 8.67c1.78 0 3.44-.54 4.82-1.46M18.68 16.13L22 13.24M18.68 16.13l-2.46-3.37",
|
|
23
|
+
stroke: "currentColor",
|
|
24
|
+
strokeWidth: 1.5,
|
|
25
|
+
strokeLinecap: "round",
|
|
26
|
+
strokeLinejoin: "round"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
30
|
+
component: IconNode
|
|
31
|
+
}));
|
|
32
|
+
}
|
|
33
|
+
RefreshRightOutlined.displayName = 'RefreshRightOutlined';
|
|
34
|
+
export default RefreshRightOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -151,6 +151,7 @@ export { default as ReceiptFilled } from './ReceiptFilled';
|
|
|
151
151
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
152
152
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
153
153
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
154
|
+
export { default as RefreshRightOutlined } from './RefreshRightOutlined';
|
|
154
155
|
export { default as RetryRefreshFilled } from './RetryRefreshFilled';
|
|
155
156
|
export { default as RiskControlFilled } from './RiskControlFilled';
|
|
156
157
|
export { default as RiskControlOutlined } from './RiskControlOutlined';
|
package/es/index.js
CHANGED
|
@@ -151,6 +151,7 @@ export { default as ReceiptFilled } from './ReceiptFilled';
|
|
|
151
151
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
152
152
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
153
153
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
154
|
+
export { default as RefreshRightOutlined } from './RefreshRightOutlined';
|
|
154
155
|
export { default as RetryRefreshFilled } from './RetryRefreshFilled';
|
|
155
156
|
export { default as RiskControlFilled } from './RiskControlFilled';
|
|
156
157
|
export { default as RiskControlOutlined } from './RiskControlOutlined';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function RefreshRightOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace RefreshRightOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default RefreshRightOutlined;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
for (var p in s) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
return __assign.apply(this, arguments);
|
|
14
|
+
};
|
|
15
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function get() {
|
|
22
|
+
return m[k];
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
Object.defineProperty(o, k2, desc);
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
32
|
+
Object.defineProperty(o, "default", {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
value: v
|
|
35
|
+
});
|
|
36
|
+
} : function (o, v) {
|
|
37
|
+
o["default"] = v;
|
|
38
|
+
});
|
|
39
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
40
|
+
if (mod && mod.__esModule) return mod;
|
|
41
|
+
var result = {};
|
|
42
|
+
if (mod != null) for (var k in mod) {
|
|
43
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
44
|
+
}
|
|
45
|
+
__setModuleDefault(result, mod);
|
|
46
|
+
return result;
|
|
47
|
+
};
|
|
48
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
49
|
+
return mod && mod.__esModule ? mod : {
|
|
50
|
+
"default": mod
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
Object.defineProperty(exports, "__esModule", {
|
|
54
|
+
value: true
|
|
55
|
+
});
|
|
56
|
+
var React = __importStar(require("react"));
|
|
57
|
+
var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
58
|
+
function RefreshRightOutlined(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("path", {
|
|
65
|
+
d: "M18.92 14.89c.26-.87.43-1.83.43-2.89 0-4.79-3.88-8.67-8.67-8.67C5.88 3.33 2 7.21 2 12s3.88 8.67 8.67 8.67c1.78 0 3.44-.54 4.82-1.46M18.68 16.13L22 13.24M18.68 16.13l-2.46-3.37",
|
|
66
|
+
stroke: "currentColor",
|
|
67
|
+
strokeWidth: 1.5,
|
|
68
|
+
strokeLinecap: "round",
|
|
69
|
+
strokeLinejoin: "round"
|
|
70
|
+
}));
|
|
71
|
+
};
|
|
72
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
73
|
+
component: IconNode
|
|
74
|
+
}));
|
|
75
|
+
}
|
|
76
|
+
RefreshRightOutlined.displayName = 'RefreshRightOutlined';
|
|
77
|
+
exports["default"] = RefreshRightOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -151,6 +151,7 @@ export { default as ReceiptFilled } from './ReceiptFilled';
|
|
|
151
151
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
152
152
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
153
153
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
154
|
+
export { default as RefreshRightOutlined } from './RefreshRightOutlined';
|
|
154
155
|
export { default as RetryRefreshFilled } from './RetryRefreshFilled';
|
|
155
156
|
export { default as RiskControlFilled } from './RiskControlFilled';
|
|
156
157
|
export { default as RiskControlOutlined } from './RiskControlOutlined';
|
package/lib/index.js
CHANGED
|
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
11
11
|
exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.CirclePlusFilled = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BankCardFilled = exports.AtOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowSwapHorizontal = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddFilled = exports.ImpassabilityFilled = void 0;
|
|
12
12
|
exports.KeyFilled = exports.InviteFriendFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GiftFilled = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FormOutlined = exports.FolderAddOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFilled = exports.FileDownloadLineOutlined = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = exports.EarthOutlined = exports.EarthFilled = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DashboardOutlined = exports.DashboardFilled = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = void 0;
|
|
13
13
|
exports.ReceiptFilled = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = void 0;
|
|
14
|
-
exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RetryRefreshFilled = exports.RefreshOutlined = exports.RefreshFilled = exports.ReceiptOutlined = void 0;
|
|
14
|
+
exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RetryRefreshFilled = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.ReceiptOutlined = void 0;
|
|
15
15
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
16
16
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
17
17
|
enumerable: true,
|
|
@@ -1083,6 +1083,13 @@ Object.defineProperty(exports, "RefreshOutlined", {
|
|
|
1083
1083
|
return __importDefault(RefreshOutlined_1)["default"];
|
|
1084
1084
|
}
|
|
1085
1085
|
});
|
|
1086
|
+
var RefreshRightOutlined_1 = require("./RefreshRightOutlined");
|
|
1087
|
+
Object.defineProperty(exports, "RefreshRightOutlined", {
|
|
1088
|
+
enumerable: true,
|
|
1089
|
+
get: function get() {
|
|
1090
|
+
return __importDefault(RefreshRightOutlined_1)["default"];
|
|
1091
|
+
}
|
|
1092
|
+
});
|
|
1086
1093
|
var RetryRefreshFilled_1 = require("./RetryRefreshFilled");
|
|
1087
1094
|
Object.defineProperty(exports, "RetryRefreshFilled", {
|
|
1088
1095
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
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": "^2.0.2"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "ec673e45d6e92b52a4385d137627199bece49544"
|
|
26
26
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function RefreshRightOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M18.92 14.89c.26-.87.43-1.83.43-2.89 0-4.79-3.88-8.67-8.67-8.67C5.88 3.33 2 7.21 2 12s3.88 8.67 8.67 8.67c1.78 0 3.44-.54 4.82-1.46M18.68 16.13L22 13.24M18.68 16.13l-2.46-3.37"
|
|
9
|
+
stroke="currentColor"
|
|
10
|
+
strokeWidth={1.5}
|
|
11
|
+
strokeLinecap="round"
|
|
12
|
+
strokeLinejoin="round"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
|
16
|
+
|
|
17
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
RefreshRightOutlined.displayName = 'RefreshRightOutlined';
|
|
21
|
+
export default RefreshRightOutlined;
|
package/src/index.tsx
CHANGED
|
@@ -151,6 +151,7 @@ export { default as ReceiptFilled } from './ReceiptFilled';
|
|
|
151
151
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
152
152
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
153
153
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
154
|
+
export { default as RefreshRightOutlined } from './RefreshRightOutlined';
|
|
154
155
|
export { default as RetryRefreshFilled } from './RetryRefreshFilled';
|
|
155
156
|
export { default as RiskControlFilled } from './RiskControlFilled';
|
|
156
157
|
export { default as RiskControlOutlined } from './RiskControlOutlined';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M18.9196 14.89C19.1796 14.02 19.3496 13.06 19.3496 12C19.3496 7.21002 15.4696 3.33002 10.6796 3.33002C5.87961 3.33002 1.99961 7.21002 1.99961 12C1.99961 16.79 5.87961 20.67 10.6696 20.67C12.4496 20.67 14.1096 20.13 15.4896 19.21"
|
|
4
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
5
|
+
<path d="M18.68 16.13L22 13.24" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
6
|
+
<path d="M18.6797 16.13L16.2197 12.76" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
|
7
|
+
stroke-linejoin="round" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M18.9196 14.89C19.1796 14.02 19.3496 13.06 19.3496 12C19.3496 7.21002 15.4696 3.33002 10.6796 3.33002C5.87961 3.33002 1.99961 7.21002 1.99961 12C1.99961 16.79 5.87961 20.67 10.6696 20.67C12.4496 20.67 14.1096 20.13 15.4896 19.21"
|
|
4
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
5
|
+
<path d="M18.68 16.13L22 13.24" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
6
|
+
<path d="M18.6797 16.13L16.2197 12.76" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
|
7
|
+
stroke-linejoin="round" />
|
|
8
|
+
</svg>
|