@tant/icons 1.18.15 → 1.18.16
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/dist/es/icons/auto-layout.js +75 -0
- package/dist/es/index.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/lib/icons/auto-layout.js +82 -0
- package/dist/lib/index.js +7 -0
- package/dist/tant-icons.cjs.js +806 -741
- package/dist/tant-icons.esm.js +806 -742
- package/package.json +1 -1
package/dist/tant-icons.cjs.js
CHANGED
|
@@ -17014,7 +17014,7 @@ CopyDdl.defaultProps = {
|
|
|
17014
17014
|
|
|
17015
17015
|
var _excluded$4r = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17016
17016
|
var loadingCircleStyle$4r = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17017
|
-
var
|
|
17017
|
+
var AutoLayout = function AutoLayout(props) {
|
|
17018
17018
|
var color = props.color,
|
|
17019
17019
|
size = props.size,
|
|
17020
17020
|
spin = props.spin,
|
|
@@ -17047,6 +17047,70 @@ var User1 = function User1(props) {
|
|
|
17047
17047
|
width: "24",
|
|
17048
17048
|
height: "24",
|
|
17049
17049
|
xmlns: "http://www.w3.org/2000/svg"
|
|
17050
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
17051
|
+
fillRule: "evenodd",
|
|
17052
|
+
clipRule: "evenodd",
|
|
17053
|
+
d: "M7.5 12a4.5 4.5 0 110-9 4.5 4.5 0 010 9zm0-2a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
|
|
17054
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17055
|
+
fillRule: "evenodd",
|
|
17056
|
+
clipRule: "evenodd",
|
|
17057
|
+
d: "M17.5 22a4.5 4.5 0 110-9 4.5 4.5 0 010 9zm0-2a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
|
|
17058
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17059
|
+
d: "M18.303 11.019l-.278.636a.57.57 0 01-1.05 0l-.278-.636a4.908 4.908 0 00-2.496-2.533l-.854-.38c-.463-.205-.463-.878 0-1.083l.806-.359a4.911 4.911 0 002.533-2.617l.285-.688a.57.57 0 011.058 0l.285.688a4.911 4.911 0 002.533 2.617l.806.359c.463.205.463.878 0 1.083l-.854.38a4.908 4.908 0 00-2.496 2.533z"
|
|
17060
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17061
|
+
fillRule: "evenodd",
|
|
17062
|
+
clipRule: "evenodd",
|
|
17063
|
+
d: "M3.5 14.5a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1h-6a1 1 0 01-1-1v-6zm2 5v-4h4v4h-4z"
|
|
17064
|
+
}))));
|
|
17065
|
+
};
|
|
17066
|
+
AutoLayout.propTypes = {
|
|
17067
|
+
iconClassName: PropTypes.string,
|
|
17068
|
+
spin: PropTypes.bool,
|
|
17069
|
+
color: PropTypes.string,
|
|
17070
|
+
testid: PropTypes.string,
|
|
17071
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
17072
|
+
};
|
|
17073
|
+
AutoLayout.defaultProps = {
|
|
17074
|
+
spin: false,
|
|
17075
|
+
color: 'currentColor',
|
|
17076
|
+
size: '1em'
|
|
17077
|
+
};
|
|
17078
|
+
|
|
17079
|
+
var _excluded$4s = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17080
|
+
var loadingCircleStyle$4s = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17081
|
+
var User1 = function User1(props) {
|
|
17082
|
+
var color = props.color,
|
|
17083
|
+
size = props.size,
|
|
17084
|
+
spin = props.spin,
|
|
17085
|
+
style = props.style,
|
|
17086
|
+
className = props.className,
|
|
17087
|
+
iconClassName = props.iconClassName,
|
|
17088
|
+
testid = props.testid,
|
|
17089
|
+
otherProps = _objectWithoutProperties(props, _excluded$4s);
|
|
17090
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
17091
|
+
role: "img",
|
|
17092
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17093
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
17094
|
+
children: loadingCircleStyle$4s
|
|
17095
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17096
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17097
|
+
width: size,
|
|
17098
|
+
height: size,
|
|
17099
|
+
viewBox: "0 0 24 24",
|
|
17100
|
+
fill: color
|
|
17101
|
+
}, otherProps, {
|
|
17102
|
+
className: iconClassName,
|
|
17103
|
+
"data-testid": testid,
|
|
17104
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
17105
|
+
animationDuration: '1s',
|
|
17106
|
+
animationIterationCount: 'infinite',
|
|
17107
|
+
animationName: 'loadingCircle',
|
|
17108
|
+
animationTimingFunction: 'linear'
|
|
17109
|
+
} : {})
|
|
17110
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
17111
|
+
width: "24",
|
|
17112
|
+
height: "24",
|
|
17113
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17050
17114
|
}, /*#__PURE__*/React.createElement("path", {
|
|
17051
17115
|
fillRule: "evenodd",
|
|
17052
17116
|
clipRule: "evenodd",
|
|
@@ -17070,8 +17134,8 @@ User1.defaultProps = {
|
|
|
17070
17134
|
size: '1em'
|
|
17071
17135
|
};
|
|
17072
17136
|
|
|
17073
|
-
var _excluded$
|
|
17074
|
-
var loadingCircleStyle$
|
|
17137
|
+
var _excluded$4t = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17138
|
+
var loadingCircleStyle$4t = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17075
17139
|
var User1Fill = function User1Fill(props) {
|
|
17076
17140
|
var color = props.color,
|
|
17077
17141
|
size = props.size,
|
|
@@ -17080,12 +17144,12 @@ var User1Fill = function User1Fill(props) {
|
|
|
17080
17144
|
className = props.className,
|
|
17081
17145
|
iconClassName = props.iconClassName,
|
|
17082
17146
|
testid = props.testid,
|
|
17083
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17147
|
+
otherProps = _objectWithoutProperties(props, _excluded$4t);
|
|
17084
17148
|
return /*#__PURE__*/React.createElement("span", {
|
|
17085
17149
|
role: "img",
|
|
17086
17150
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17087
17151
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17088
|
-
children: loadingCircleStyle$
|
|
17152
|
+
children: loadingCircleStyle$4t
|
|
17089
17153
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17090
17154
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17091
17155
|
width: size,
|
|
@@ -17122,8 +17186,8 @@ User1Fill.defaultProps = {
|
|
|
17122
17186
|
size: '1em'
|
|
17123
17187
|
};
|
|
17124
17188
|
|
|
17125
|
-
var _excluded$
|
|
17126
|
-
var loadingCircleStyle$
|
|
17189
|
+
var _excluded$4u = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17190
|
+
var loadingCircleStyle$4u = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17127
17191
|
var User2 = function User2(props) {
|
|
17128
17192
|
var color = props.color,
|
|
17129
17193
|
size = props.size,
|
|
@@ -17132,12 +17196,12 @@ var User2 = function User2(props) {
|
|
|
17132
17196
|
className = props.className,
|
|
17133
17197
|
iconClassName = props.iconClassName,
|
|
17134
17198
|
testid = props.testid,
|
|
17135
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17199
|
+
otherProps = _objectWithoutProperties(props, _excluded$4u);
|
|
17136
17200
|
return /*#__PURE__*/React.createElement("span", {
|
|
17137
17201
|
role: "img",
|
|
17138
17202
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17139
17203
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17140
|
-
children: loadingCircleStyle$
|
|
17204
|
+
children: loadingCircleStyle$4u
|
|
17141
17205
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17142
17206
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17143
17207
|
width: size,
|
|
@@ -17174,8 +17238,8 @@ User2.defaultProps = {
|
|
|
17174
17238
|
size: '1em'
|
|
17175
17239
|
};
|
|
17176
17240
|
|
|
17177
|
-
var _excluded$
|
|
17178
|
-
var loadingCircleStyle$
|
|
17241
|
+
var _excluded$4v = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17242
|
+
var loadingCircleStyle$4v = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17179
17243
|
var UserSettings = function UserSettings(props) {
|
|
17180
17244
|
var color = props.color,
|
|
17181
17245
|
size = props.size,
|
|
@@ -17184,12 +17248,12 @@ var UserSettings = function UserSettings(props) {
|
|
|
17184
17248
|
className = props.className,
|
|
17185
17249
|
iconClassName = props.iconClassName,
|
|
17186
17250
|
testid = props.testid,
|
|
17187
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17251
|
+
otherProps = _objectWithoutProperties(props, _excluded$4v);
|
|
17188
17252
|
return /*#__PURE__*/React.createElement("span", {
|
|
17189
17253
|
role: "img",
|
|
17190
17254
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17191
17255
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17192
|
-
children: loadingCircleStyle$
|
|
17256
|
+
children: loadingCircleStyle$4v
|
|
17193
17257
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17194
17258
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17195
17259
|
width: size,
|
|
@@ -17226,8 +17290,8 @@ UserSettings.defaultProps = {
|
|
|
17226
17290
|
size: '1em'
|
|
17227
17291
|
};
|
|
17228
17292
|
|
|
17229
|
-
var _excluded$
|
|
17230
|
-
var loadingCircleStyle$
|
|
17293
|
+
var _excluded$4w = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17294
|
+
var loadingCircleStyle$4w = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17231
17295
|
var GroupA2b = function GroupA2b(props) {
|
|
17232
17296
|
var color = props.color,
|
|
17233
17297
|
size = props.size,
|
|
@@ -17236,12 +17300,12 @@ var GroupA2b = function GroupA2b(props) {
|
|
|
17236
17300
|
className = props.className,
|
|
17237
17301
|
iconClassName = props.iconClassName,
|
|
17238
17302
|
testid = props.testid,
|
|
17239
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17303
|
+
otherProps = _objectWithoutProperties(props, _excluded$4w);
|
|
17240
17304
|
return /*#__PURE__*/React.createElement("span", {
|
|
17241
17305
|
role: "img",
|
|
17242
17306
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17243
17307
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17244
|
-
children: loadingCircleStyle$
|
|
17308
|
+
children: loadingCircleStyle$4w
|
|
17245
17309
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17246
17310
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17247
17311
|
width: size,
|
|
@@ -17278,8 +17342,8 @@ GroupA2b.defaultProps = {
|
|
|
17278
17342
|
size: '1em'
|
|
17279
17343
|
};
|
|
17280
17344
|
|
|
17281
|
-
var _excluded$
|
|
17282
|
-
var loadingCircleStyle$
|
|
17345
|
+
var _excluded$4x = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17346
|
+
var loadingCircleStyle$4x = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17283
17347
|
var Group = function Group(props) {
|
|
17284
17348
|
var color = props.color,
|
|
17285
17349
|
size = props.size,
|
|
@@ -17288,12 +17352,12 @@ var Group = function Group(props) {
|
|
|
17288
17352
|
className = props.className,
|
|
17289
17353
|
iconClassName = props.iconClassName,
|
|
17290
17354
|
testid = props.testid,
|
|
17291
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17355
|
+
otherProps = _objectWithoutProperties(props, _excluded$4x);
|
|
17292
17356
|
return /*#__PURE__*/React.createElement("span", {
|
|
17293
17357
|
role: "img",
|
|
17294
17358
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17295
17359
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17296
|
-
children: loadingCircleStyle$
|
|
17360
|
+
children: loadingCircleStyle$4x
|
|
17297
17361
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17298
17362
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17299
17363
|
width: size,
|
|
@@ -17330,8 +17394,8 @@ Group.defaultProps = {
|
|
|
17330
17394
|
size: '1em'
|
|
17331
17395
|
};
|
|
17332
17396
|
|
|
17333
|
-
var _excluded$
|
|
17334
|
-
var loadingCircleStyle$
|
|
17397
|
+
var _excluded$4y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17398
|
+
var loadingCircleStyle$4y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17335
17399
|
var GroupFill = function GroupFill(props) {
|
|
17336
17400
|
var color = props.color,
|
|
17337
17401
|
size = props.size,
|
|
@@ -17340,12 +17404,12 @@ var GroupFill = function GroupFill(props) {
|
|
|
17340
17404
|
className = props.className,
|
|
17341
17405
|
iconClassName = props.iconClassName,
|
|
17342
17406
|
testid = props.testid,
|
|
17343
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17407
|
+
otherProps = _objectWithoutProperties(props, _excluded$4y);
|
|
17344
17408
|
return /*#__PURE__*/React.createElement("span", {
|
|
17345
17409
|
role: "img",
|
|
17346
17410
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17347
17411
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17348
|
-
children: loadingCircleStyle$
|
|
17412
|
+
children: loadingCircleStyle$4y
|
|
17349
17413
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17350
17414
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17351
17415
|
width: size,
|
|
@@ -17382,8 +17446,8 @@ GroupFill.defaultProps = {
|
|
|
17382
17446
|
size: '1em'
|
|
17383
17447
|
};
|
|
17384
17448
|
|
|
17385
|
-
var _excluded$
|
|
17386
|
-
var loadingCircleStyle$
|
|
17449
|
+
var _excluded$4z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17450
|
+
var loadingCircleStyle$4z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17387
17451
|
var GroupFill2 = function GroupFill2(props) {
|
|
17388
17452
|
var color = props.color,
|
|
17389
17453
|
size = props.size,
|
|
@@ -17392,12 +17456,12 @@ var GroupFill2 = function GroupFill2(props) {
|
|
|
17392
17456
|
className = props.className,
|
|
17393
17457
|
iconClassName = props.iconClassName,
|
|
17394
17458
|
testid = props.testid,
|
|
17395
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17459
|
+
otherProps = _objectWithoutProperties(props, _excluded$4z);
|
|
17396
17460
|
return /*#__PURE__*/React.createElement("span", {
|
|
17397
17461
|
role: "img",
|
|
17398
17462
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17399
17463
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17400
|
-
children: loadingCircleStyle$
|
|
17464
|
+
children: loadingCircleStyle$4z
|
|
17401
17465
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17402
17466
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17403
17467
|
width: size,
|
|
@@ -17434,8 +17498,8 @@ GroupFill2.defaultProps = {
|
|
|
17434
17498
|
size: '1em'
|
|
17435
17499
|
};
|
|
17436
17500
|
|
|
17437
|
-
var _excluded$
|
|
17438
|
-
var loadingCircleStyle$
|
|
17501
|
+
var _excluded$4A = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17502
|
+
var loadingCircleStyle$4A = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17439
17503
|
var GroupAddFill = function GroupAddFill(props) {
|
|
17440
17504
|
var color = props.color,
|
|
17441
17505
|
size = props.size,
|
|
@@ -17444,12 +17508,12 @@ var GroupAddFill = function GroupAddFill(props) {
|
|
|
17444
17508
|
className = props.className,
|
|
17445
17509
|
iconClassName = props.iconClassName,
|
|
17446
17510
|
testid = props.testid,
|
|
17447
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17511
|
+
otherProps = _objectWithoutProperties(props, _excluded$4A);
|
|
17448
17512
|
return /*#__PURE__*/React.createElement("span", {
|
|
17449
17513
|
role: "img",
|
|
17450
17514
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17451
17515
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17452
|
-
children: loadingCircleStyle$
|
|
17516
|
+
children: loadingCircleStyle$4A
|
|
17453
17517
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17454
17518
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17455
17519
|
width: size,
|
|
@@ -17486,8 +17550,8 @@ GroupAddFill.defaultProps = {
|
|
|
17486
17550
|
size: '1em'
|
|
17487
17551
|
};
|
|
17488
17552
|
|
|
17489
|
-
var _excluded$
|
|
17490
|
-
var loadingCircleStyle$
|
|
17553
|
+
var _excluded$4B = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17554
|
+
var loadingCircleStyle$4B = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17491
17555
|
var UserAddFill = function UserAddFill(props) {
|
|
17492
17556
|
var color = props.color,
|
|
17493
17557
|
size = props.size,
|
|
@@ -17496,12 +17560,12 @@ var UserAddFill = function UserAddFill(props) {
|
|
|
17496
17560
|
className = props.className,
|
|
17497
17561
|
iconClassName = props.iconClassName,
|
|
17498
17562
|
testid = props.testid,
|
|
17499
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17563
|
+
otherProps = _objectWithoutProperties(props, _excluded$4B);
|
|
17500
17564
|
return /*#__PURE__*/React.createElement("span", {
|
|
17501
17565
|
role: "img",
|
|
17502
17566
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17503
17567
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17504
|
-
children: loadingCircleStyle$
|
|
17568
|
+
children: loadingCircleStyle$4B
|
|
17505
17569
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17506
17570
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17507
17571
|
width: size,
|
|
@@ -17538,8 +17602,8 @@ UserAddFill.defaultProps = {
|
|
|
17538
17602
|
size: '1em'
|
|
17539
17603
|
};
|
|
17540
17604
|
|
|
17541
|
-
var _excluded$
|
|
17542
|
-
var loadingCircleStyle$
|
|
17605
|
+
var _excluded$4C = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17606
|
+
var loadingCircleStyle$4C = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17543
17607
|
var UploadId = function UploadId(props) {
|
|
17544
17608
|
var color = props.color,
|
|
17545
17609
|
size = props.size,
|
|
@@ -17548,12 +17612,12 @@ var UploadId = function UploadId(props) {
|
|
|
17548
17612
|
className = props.className,
|
|
17549
17613
|
iconClassName = props.iconClassName,
|
|
17550
17614
|
testid = props.testid,
|
|
17551
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17615
|
+
otherProps = _objectWithoutProperties(props, _excluded$4C);
|
|
17552
17616
|
return /*#__PURE__*/React.createElement("span", {
|
|
17553
17617
|
role: "img",
|
|
17554
17618
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17555
17619
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17556
|
-
children: loadingCircleStyle$
|
|
17620
|
+
children: loadingCircleStyle$4C
|
|
17557
17621
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17558
17622
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17559
17623
|
width: size,
|
|
@@ -17592,8 +17656,8 @@ UploadId.defaultProps = {
|
|
|
17592
17656
|
size: '1em'
|
|
17593
17657
|
};
|
|
17594
17658
|
|
|
17595
|
-
var _excluded$
|
|
17596
|
-
var loadingCircleStyle$
|
|
17659
|
+
var _excluded$4D = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17660
|
+
var loadingCircleStyle$4D = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17597
17661
|
var IdFreeze = function IdFreeze(props) {
|
|
17598
17662
|
var color = props.color,
|
|
17599
17663
|
size = props.size,
|
|
@@ -17602,12 +17666,12 @@ var IdFreeze = function IdFreeze(props) {
|
|
|
17602
17666
|
className = props.className,
|
|
17603
17667
|
iconClassName = props.iconClassName,
|
|
17604
17668
|
testid = props.testid,
|
|
17605
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17669
|
+
otherProps = _objectWithoutProperties(props, _excluded$4D);
|
|
17606
17670
|
return /*#__PURE__*/React.createElement("span", {
|
|
17607
17671
|
role: "img",
|
|
17608
17672
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17609
17673
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17610
|
-
children: loadingCircleStyle$
|
|
17674
|
+
children: loadingCircleStyle$4D
|
|
17611
17675
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17612
17676
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17613
17677
|
width: size,
|
|
@@ -17654,8 +17718,8 @@ IdFreeze.defaultProps = {
|
|
|
17654
17718
|
size: '1em'
|
|
17655
17719
|
};
|
|
17656
17720
|
|
|
17657
|
-
var _excluded$
|
|
17658
|
-
var loadingCircleStyle$
|
|
17721
|
+
var _excluded$4E = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17722
|
+
var loadingCircleStyle$4E = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17659
17723
|
var Vip = function Vip(props) {
|
|
17660
17724
|
var color = props.color,
|
|
17661
17725
|
size = props.size,
|
|
@@ -17664,12 +17728,12 @@ var Vip = function Vip(props) {
|
|
|
17664
17728
|
className = props.className,
|
|
17665
17729
|
iconClassName = props.iconClassName,
|
|
17666
17730
|
testid = props.testid,
|
|
17667
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17731
|
+
otherProps = _objectWithoutProperties(props, _excluded$4E);
|
|
17668
17732
|
return /*#__PURE__*/React.createElement("span", {
|
|
17669
17733
|
role: "img",
|
|
17670
17734
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17671
17735
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17672
|
-
children: loadingCircleStyle$
|
|
17736
|
+
children: loadingCircleStyle$4E
|
|
17673
17737
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17674
17738
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17675
17739
|
width: size,
|
|
@@ -17706,8 +17770,8 @@ Vip.defaultProps = {
|
|
|
17706
17770
|
size: '1em'
|
|
17707
17771
|
};
|
|
17708
17772
|
|
|
17709
|
-
var _excluded$
|
|
17710
|
-
var loadingCircleStyle$
|
|
17773
|
+
var _excluded$4F = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17774
|
+
var loadingCircleStyle$4F = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17711
17775
|
var VipFill = function VipFill(props) {
|
|
17712
17776
|
var color = props.color,
|
|
17713
17777
|
size = props.size,
|
|
@@ -17716,12 +17780,12 @@ var VipFill = function VipFill(props) {
|
|
|
17716
17780
|
className = props.className,
|
|
17717
17781
|
iconClassName = props.iconClassName,
|
|
17718
17782
|
testid = props.testid,
|
|
17719
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17783
|
+
otherProps = _objectWithoutProperties(props, _excluded$4F);
|
|
17720
17784
|
return /*#__PURE__*/React.createElement("span", {
|
|
17721
17785
|
role: "img",
|
|
17722
17786
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17723
17787
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17724
|
-
children: loadingCircleStyle$
|
|
17788
|
+
children: loadingCircleStyle$4F
|
|
17725
17789
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17726
17790
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17727
17791
|
width: size,
|
|
@@ -17758,8 +17822,8 @@ VipFill.defaultProps = {
|
|
|
17758
17822
|
size: '1em'
|
|
17759
17823
|
};
|
|
17760
17824
|
|
|
17761
|
-
var _excluded$
|
|
17762
|
-
var loadingCircleStyle$
|
|
17825
|
+
var _excluded$4G = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17826
|
+
var loadingCircleStyle$4G = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17763
17827
|
var SvipFill = function SvipFill(props) {
|
|
17764
17828
|
var color = props.color,
|
|
17765
17829
|
size = props.size,
|
|
@@ -17768,12 +17832,12 @@ var SvipFill = function SvipFill(props) {
|
|
|
17768
17832
|
className = props.className,
|
|
17769
17833
|
iconClassName = props.iconClassName,
|
|
17770
17834
|
testid = props.testid,
|
|
17771
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17835
|
+
otherProps = _objectWithoutProperties(props, _excluded$4G);
|
|
17772
17836
|
return /*#__PURE__*/React.createElement("span", {
|
|
17773
17837
|
role: "img",
|
|
17774
17838
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17775
17839
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17776
|
-
children: loadingCircleStyle$
|
|
17840
|
+
children: loadingCircleStyle$4G
|
|
17777
17841
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17778
17842
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17779
17843
|
width: size,
|
|
@@ -17812,8 +17876,8 @@ SvipFill.defaultProps = {
|
|
|
17812
17876
|
size: '1em'
|
|
17813
17877
|
};
|
|
17814
17878
|
|
|
17815
|
-
var _excluded$
|
|
17816
|
-
var loadingCircleStyle$
|
|
17879
|
+
var _excluded$4H = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17880
|
+
var loadingCircleStyle$4H = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17817
17881
|
var TransferOwnership = function TransferOwnership(props) {
|
|
17818
17882
|
var color = props.color,
|
|
17819
17883
|
size = props.size,
|
|
@@ -17822,12 +17886,12 @@ var TransferOwnership = function TransferOwnership(props) {
|
|
|
17822
17886
|
className = props.className,
|
|
17823
17887
|
iconClassName = props.iconClassName,
|
|
17824
17888
|
testid = props.testid,
|
|
17825
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17889
|
+
otherProps = _objectWithoutProperties(props, _excluded$4H);
|
|
17826
17890
|
return /*#__PURE__*/React.createElement("span", {
|
|
17827
17891
|
role: "img",
|
|
17828
17892
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17829
17893
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17830
|
-
children: loadingCircleStyle$
|
|
17894
|
+
children: loadingCircleStyle$4H
|
|
17831
17895
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17832
17896
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17833
17897
|
width: size,
|
|
@@ -17866,8 +17930,8 @@ TransferOwnership.defaultProps = {
|
|
|
17866
17930
|
size: '1em'
|
|
17867
17931
|
};
|
|
17868
17932
|
|
|
17869
|
-
var _excluded$
|
|
17870
|
-
var loadingCircleStyle$
|
|
17933
|
+
var _excluded$4I = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17934
|
+
var loadingCircleStyle$4I = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17871
17935
|
var ArrowLeft = function ArrowLeft(props) {
|
|
17872
17936
|
var color = props.color,
|
|
17873
17937
|
size = props.size,
|
|
@@ -17876,12 +17940,12 @@ var ArrowLeft = function ArrowLeft(props) {
|
|
|
17876
17940
|
className = props.className,
|
|
17877
17941
|
iconClassName = props.iconClassName,
|
|
17878
17942
|
testid = props.testid,
|
|
17879
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17943
|
+
otherProps = _objectWithoutProperties(props, _excluded$4I);
|
|
17880
17944
|
return /*#__PURE__*/React.createElement("span", {
|
|
17881
17945
|
role: "img",
|
|
17882
17946
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17883
17947
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17884
|
-
children: loadingCircleStyle$
|
|
17948
|
+
children: loadingCircleStyle$4I
|
|
17885
17949
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17886
17950
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17887
17951
|
width: size,
|
|
@@ -17918,8 +17982,8 @@ ArrowLeft.defaultProps = {
|
|
|
17918
17982
|
size: '1em'
|
|
17919
17983
|
};
|
|
17920
17984
|
|
|
17921
|
-
var _excluded$
|
|
17922
|
-
var loadingCircleStyle$
|
|
17985
|
+
var _excluded$4J = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
17986
|
+
var loadingCircleStyle$4J = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17923
17987
|
var ArrowRight = function ArrowRight(props) {
|
|
17924
17988
|
var color = props.color,
|
|
17925
17989
|
size = props.size,
|
|
@@ -17928,12 +17992,12 @@ var ArrowRight = function ArrowRight(props) {
|
|
|
17928
17992
|
className = props.className,
|
|
17929
17993
|
iconClassName = props.iconClassName,
|
|
17930
17994
|
testid = props.testid,
|
|
17931
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17995
|
+
otherProps = _objectWithoutProperties(props, _excluded$4J);
|
|
17932
17996
|
return /*#__PURE__*/React.createElement("span", {
|
|
17933
17997
|
role: "img",
|
|
17934
17998
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17935
17999
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17936
|
-
children: loadingCircleStyle$
|
|
18000
|
+
children: loadingCircleStyle$4J
|
|
17937
18001
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17938
18002
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17939
18003
|
width: size,
|
|
@@ -17970,8 +18034,8 @@ ArrowRight.defaultProps = {
|
|
|
17970
18034
|
size: '1em'
|
|
17971
18035
|
};
|
|
17972
18036
|
|
|
17973
|
-
var _excluded$
|
|
17974
|
-
var loadingCircleStyle$
|
|
18037
|
+
var _excluded$4K = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18038
|
+
var loadingCircleStyle$4K = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17975
18039
|
var ArrowUp = function ArrowUp(props) {
|
|
17976
18040
|
var color = props.color,
|
|
17977
18041
|
size = props.size,
|
|
@@ -17980,12 +18044,12 @@ var ArrowUp = function ArrowUp(props) {
|
|
|
17980
18044
|
className = props.className,
|
|
17981
18045
|
iconClassName = props.iconClassName,
|
|
17982
18046
|
testid = props.testid,
|
|
17983
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18047
|
+
otherProps = _objectWithoutProperties(props, _excluded$4K);
|
|
17984
18048
|
return /*#__PURE__*/React.createElement("span", {
|
|
17985
18049
|
role: "img",
|
|
17986
18050
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17987
18051
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17988
|
-
children: loadingCircleStyle$
|
|
18052
|
+
children: loadingCircleStyle$4K
|
|
17989
18053
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17990
18054
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17991
18055
|
width: size,
|
|
@@ -18022,8 +18086,8 @@ ArrowUp.defaultProps = {
|
|
|
18022
18086
|
size: '1em'
|
|
18023
18087
|
};
|
|
18024
18088
|
|
|
18025
|
-
var _excluded$
|
|
18026
|
-
var loadingCircleStyle$
|
|
18089
|
+
var _excluded$4L = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18090
|
+
var loadingCircleStyle$4L = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18027
18091
|
var ArrowDown = function ArrowDown(props) {
|
|
18028
18092
|
var color = props.color,
|
|
18029
18093
|
size = props.size,
|
|
@@ -18032,12 +18096,12 @@ var ArrowDown = function ArrowDown(props) {
|
|
|
18032
18096
|
className = props.className,
|
|
18033
18097
|
iconClassName = props.iconClassName,
|
|
18034
18098
|
testid = props.testid,
|
|
18035
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18099
|
+
otherProps = _objectWithoutProperties(props, _excluded$4L);
|
|
18036
18100
|
return /*#__PURE__*/React.createElement("span", {
|
|
18037
18101
|
role: "img",
|
|
18038
18102
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18039
18103
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18040
|
-
children: loadingCircleStyle$
|
|
18104
|
+
children: loadingCircleStyle$4L
|
|
18041
18105
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18042
18106
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18043
18107
|
width: size,
|
|
@@ -18074,8 +18138,8 @@ ArrowDown.defaultProps = {
|
|
|
18074
18138
|
size: '1em'
|
|
18075
18139
|
};
|
|
18076
18140
|
|
|
18077
|
-
var _excluded$
|
|
18078
|
-
var loadingCircleStyle$
|
|
18141
|
+
var _excluded$4M = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18142
|
+
var loadingCircleStyle$4M = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18079
18143
|
var ArrowLeft2 = function ArrowLeft2(props) {
|
|
18080
18144
|
var color = props.color,
|
|
18081
18145
|
size = props.size,
|
|
@@ -18084,12 +18148,12 @@ var ArrowLeft2 = function ArrowLeft2(props) {
|
|
|
18084
18148
|
className = props.className,
|
|
18085
18149
|
iconClassName = props.iconClassName,
|
|
18086
18150
|
testid = props.testid,
|
|
18087
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18151
|
+
otherProps = _objectWithoutProperties(props, _excluded$4M);
|
|
18088
18152
|
return /*#__PURE__*/React.createElement("span", {
|
|
18089
18153
|
role: "img",
|
|
18090
18154
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18091
18155
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18092
|
-
children: loadingCircleStyle$
|
|
18156
|
+
children: loadingCircleStyle$4M
|
|
18093
18157
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18094
18158
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18095
18159
|
width: size,
|
|
@@ -18126,8 +18190,8 @@ ArrowLeft2.defaultProps = {
|
|
|
18126
18190
|
size: '1em'
|
|
18127
18191
|
};
|
|
18128
18192
|
|
|
18129
|
-
var _excluded$
|
|
18130
|
-
var loadingCircleStyle$
|
|
18193
|
+
var _excluded$4N = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18194
|
+
var loadingCircleStyle$4N = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18131
18195
|
var ArrowRight2 = function ArrowRight2(props) {
|
|
18132
18196
|
var color = props.color,
|
|
18133
18197
|
size = props.size,
|
|
@@ -18136,12 +18200,12 @@ var ArrowRight2 = function ArrowRight2(props) {
|
|
|
18136
18200
|
className = props.className,
|
|
18137
18201
|
iconClassName = props.iconClassName,
|
|
18138
18202
|
testid = props.testid,
|
|
18139
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18203
|
+
otherProps = _objectWithoutProperties(props, _excluded$4N);
|
|
18140
18204
|
return /*#__PURE__*/React.createElement("span", {
|
|
18141
18205
|
role: "img",
|
|
18142
18206
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18143
18207
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18144
|
-
children: loadingCircleStyle$
|
|
18208
|
+
children: loadingCircleStyle$4N
|
|
18145
18209
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18146
18210
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18147
18211
|
width: size,
|
|
@@ -18178,8 +18242,8 @@ ArrowRight2.defaultProps = {
|
|
|
18178
18242
|
size: '1em'
|
|
18179
18243
|
};
|
|
18180
18244
|
|
|
18181
|
-
var _excluded$
|
|
18182
|
-
var loadingCircleStyle$
|
|
18245
|
+
var _excluded$4O = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18246
|
+
var loadingCircleStyle$4O = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18183
18247
|
var ArrowUp2 = function ArrowUp2(props) {
|
|
18184
18248
|
var color = props.color,
|
|
18185
18249
|
size = props.size,
|
|
@@ -18188,12 +18252,12 @@ var ArrowUp2 = function ArrowUp2(props) {
|
|
|
18188
18252
|
className = props.className,
|
|
18189
18253
|
iconClassName = props.iconClassName,
|
|
18190
18254
|
testid = props.testid,
|
|
18191
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18255
|
+
otherProps = _objectWithoutProperties(props, _excluded$4O);
|
|
18192
18256
|
return /*#__PURE__*/React.createElement("span", {
|
|
18193
18257
|
role: "img",
|
|
18194
18258
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18195
18259
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18196
|
-
children: loadingCircleStyle$
|
|
18260
|
+
children: loadingCircleStyle$4O
|
|
18197
18261
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18198
18262
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18199
18263
|
width: size,
|
|
@@ -18230,8 +18294,8 @@ ArrowUp2.defaultProps = {
|
|
|
18230
18294
|
size: '1em'
|
|
18231
18295
|
};
|
|
18232
18296
|
|
|
18233
|
-
var _excluded$
|
|
18234
|
-
var loadingCircleStyle$
|
|
18297
|
+
var _excluded$4P = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18298
|
+
var loadingCircleStyle$4P = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18235
18299
|
var ArrowDown2 = function ArrowDown2(props) {
|
|
18236
18300
|
var color = props.color,
|
|
18237
18301
|
size = props.size,
|
|
@@ -18240,12 +18304,12 @@ var ArrowDown2 = function ArrowDown2(props) {
|
|
|
18240
18304
|
className = props.className,
|
|
18241
18305
|
iconClassName = props.iconClassName,
|
|
18242
18306
|
testid = props.testid,
|
|
18243
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18307
|
+
otherProps = _objectWithoutProperties(props, _excluded$4P);
|
|
18244
18308
|
return /*#__PURE__*/React.createElement("span", {
|
|
18245
18309
|
role: "img",
|
|
18246
18310
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18247
18311
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18248
|
-
children: loadingCircleStyle$
|
|
18312
|
+
children: loadingCircleStyle$4P
|
|
18249
18313
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18250
18314
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18251
18315
|
width: size,
|
|
@@ -18282,8 +18346,8 @@ ArrowDown2.defaultProps = {
|
|
|
18282
18346
|
size: '1em'
|
|
18283
18347
|
};
|
|
18284
18348
|
|
|
18285
|
-
var _excluded$
|
|
18286
|
-
var loadingCircleStyle$
|
|
18349
|
+
var _excluded$4Q = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18350
|
+
var loadingCircleStyle$4Q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18287
18351
|
var TriLeft = function TriLeft(props) {
|
|
18288
18352
|
var color = props.color,
|
|
18289
18353
|
size = props.size,
|
|
@@ -18292,12 +18356,12 @@ var TriLeft = function TriLeft(props) {
|
|
|
18292
18356
|
className = props.className,
|
|
18293
18357
|
iconClassName = props.iconClassName,
|
|
18294
18358
|
testid = props.testid,
|
|
18295
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18359
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Q);
|
|
18296
18360
|
return /*#__PURE__*/React.createElement("span", {
|
|
18297
18361
|
role: "img",
|
|
18298
18362
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18299
18363
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18300
|
-
children: loadingCircleStyle$
|
|
18364
|
+
children: loadingCircleStyle$4Q
|
|
18301
18365
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18302
18366
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18303
18367
|
width: size,
|
|
@@ -18334,8 +18398,8 @@ TriLeft.defaultProps = {
|
|
|
18334
18398
|
size: '1em'
|
|
18335
18399
|
};
|
|
18336
18400
|
|
|
18337
|
-
var _excluded$
|
|
18338
|
-
var loadingCircleStyle$
|
|
18401
|
+
var _excluded$4R = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18402
|
+
var loadingCircleStyle$4R = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18339
18403
|
var TriRight = function TriRight(props) {
|
|
18340
18404
|
var color = props.color,
|
|
18341
18405
|
size = props.size,
|
|
@@ -18344,12 +18408,12 @@ var TriRight = function TriRight(props) {
|
|
|
18344
18408
|
className = props.className,
|
|
18345
18409
|
iconClassName = props.iconClassName,
|
|
18346
18410
|
testid = props.testid,
|
|
18347
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18411
|
+
otherProps = _objectWithoutProperties(props, _excluded$4R);
|
|
18348
18412
|
return /*#__PURE__*/React.createElement("span", {
|
|
18349
18413
|
role: "img",
|
|
18350
18414
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18351
18415
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18352
|
-
children: loadingCircleStyle$
|
|
18416
|
+
children: loadingCircleStyle$4R
|
|
18353
18417
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18354
18418
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18355
18419
|
width: size,
|
|
@@ -18386,8 +18450,8 @@ TriRight.defaultProps = {
|
|
|
18386
18450
|
size: '1em'
|
|
18387
18451
|
};
|
|
18388
18452
|
|
|
18389
|
-
var _excluded$
|
|
18390
|
-
var loadingCircleStyle$
|
|
18453
|
+
var _excluded$4S = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18454
|
+
var loadingCircleStyle$4S = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18391
18455
|
var TriUp = function TriUp(props) {
|
|
18392
18456
|
var color = props.color,
|
|
18393
18457
|
size = props.size,
|
|
@@ -18396,12 +18460,12 @@ var TriUp = function TriUp(props) {
|
|
|
18396
18460
|
className = props.className,
|
|
18397
18461
|
iconClassName = props.iconClassName,
|
|
18398
18462
|
testid = props.testid,
|
|
18399
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18463
|
+
otherProps = _objectWithoutProperties(props, _excluded$4S);
|
|
18400
18464
|
return /*#__PURE__*/React.createElement("span", {
|
|
18401
18465
|
role: "img",
|
|
18402
18466
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18403
18467
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18404
|
-
children: loadingCircleStyle$
|
|
18468
|
+
children: loadingCircleStyle$4S
|
|
18405
18469
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18406
18470
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18407
18471
|
width: size,
|
|
@@ -18438,8 +18502,8 @@ TriUp.defaultProps = {
|
|
|
18438
18502
|
size: '1em'
|
|
18439
18503
|
};
|
|
18440
18504
|
|
|
18441
|
-
var _excluded$
|
|
18442
|
-
var loadingCircleStyle$
|
|
18505
|
+
var _excluded$4T = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18506
|
+
var loadingCircleStyle$4T = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18443
18507
|
var TriDown = function TriDown(props) {
|
|
18444
18508
|
var color = props.color,
|
|
18445
18509
|
size = props.size,
|
|
@@ -18448,12 +18512,12 @@ var TriDown = function TriDown(props) {
|
|
|
18448
18512
|
className = props.className,
|
|
18449
18513
|
iconClassName = props.iconClassName,
|
|
18450
18514
|
testid = props.testid,
|
|
18451
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18515
|
+
otherProps = _objectWithoutProperties(props, _excluded$4T);
|
|
18452
18516
|
return /*#__PURE__*/React.createElement("span", {
|
|
18453
18517
|
role: "img",
|
|
18454
18518
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18455
18519
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18456
|
-
children: loadingCircleStyle$
|
|
18520
|
+
children: loadingCircleStyle$4T
|
|
18457
18521
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18458
18522
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18459
18523
|
width: size,
|
|
@@ -18490,8 +18554,8 @@ TriDown.defaultProps = {
|
|
|
18490
18554
|
size: '1em'
|
|
18491
18555
|
};
|
|
18492
18556
|
|
|
18493
|
-
var _excluded$
|
|
18494
|
-
var loadingCircleStyle$
|
|
18557
|
+
var _excluded$4U = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18558
|
+
var loadingCircleStyle$4U = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18495
18559
|
var DArrowL = function DArrowL(props) {
|
|
18496
18560
|
var color = props.color,
|
|
18497
18561
|
size = props.size,
|
|
@@ -18500,12 +18564,12 @@ var DArrowL = function DArrowL(props) {
|
|
|
18500
18564
|
className = props.className,
|
|
18501
18565
|
iconClassName = props.iconClassName,
|
|
18502
18566
|
testid = props.testid,
|
|
18503
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18567
|
+
otherProps = _objectWithoutProperties(props, _excluded$4U);
|
|
18504
18568
|
return /*#__PURE__*/React.createElement("span", {
|
|
18505
18569
|
role: "img",
|
|
18506
18570
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18507
18571
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18508
|
-
children: loadingCircleStyle$
|
|
18572
|
+
children: loadingCircleStyle$4U
|
|
18509
18573
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18510
18574
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18511
18575
|
width: size,
|
|
@@ -18544,8 +18608,8 @@ DArrowL.defaultProps = {
|
|
|
18544
18608
|
size: '1em'
|
|
18545
18609
|
};
|
|
18546
18610
|
|
|
18547
|
-
var _excluded$
|
|
18548
|
-
var loadingCircleStyle$
|
|
18611
|
+
var _excluded$4V = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18612
|
+
var loadingCircleStyle$4V = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18549
18613
|
var DArrowR = function DArrowR(props) {
|
|
18550
18614
|
var color = props.color,
|
|
18551
18615
|
size = props.size,
|
|
@@ -18554,12 +18618,12 @@ var DArrowR = function DArrowR(props) {
|
|
|
18554
18618
|
className = props.className,
|
|
18555
18619
|
iconClassName = props.iconClassName,
|
|
18556
18620
|
testid = props.testid,
|
|
18557
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18621
|
+
otherProps = _objectWithoutProperties(props, _excluded$4V);
|
|
18558
18622
|
return /*#__PURE__*/React.createElement("span", {
|
|
18559
18623
|
role: "img",
|
|
18560
18624
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18561
18625
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18562
|
-
children: loadingCircleStyle$
|
|
18626
|
+
children: loadingCircleStyle$4V
|
|
18563
18627
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18564
18628
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18565
18629
|
width: size,
|
|
@@ -18598,8 +18662,8 @@ DArrowR.defaultProps = {
|
|
|
18598
18662
|
size: '1em'
|
|
18599
18663
|
};
|
|
18600
18664
|
|
|
18601
|
-
var _excluded$
|
|
18602
|
-
var loadingCircleStyle$
|
|
18665
|
+
var _excluded$4W = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18666
|
+
var loadingCircleStyle$4W = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18603
18667
|
var DArrowT = function DArrowT(props) {
|
|
18604
18668
|
var color = props.color,
|
|
18605
18669
|
size = props.size,
|
|
@@ -18608,12 +18672,12 @@ var DArrowT = function DArrowT(props) {
|
|
|
18608
18672
|
className = props.className,
|
|
18609
18673
|
iconClassName = props.iconClassName,
|
|
18610
18674
|
testid = props.testid,
|
|
18611
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18675
|
+
otherProps = _objectWithoutProperties(props, _excluded$4W);
|
|
18612
18676
|
return /*#__PURE__*/React.createElement("span", {
|
|
18613
18677
|
role: "img",
|
|
18614
18678
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18615
18679
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18616
|
-
children: loadingCircleStyle$
|
|
18680
|
+
children: loadingCircleStyle$4W
|
|
18617
18681
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18618
18682
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18619
18683
|
width: size,
|
|
@@ -18652,8 +18716,8 @@ DArrowT.defaultProps = {
|
|
|
18652
18716
|
size: '1em'
|
|
18653
18717
|
};
|
|
18654
18718
|
|
|
18655
|
-
var _excluded$
|
|
18656
|
-
var loadingCircleStyle$
|
|
18719
|
+
var _excluded$4X = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18720
|
+
var loadingCircleStyle$4X = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18657
18721
|
var DArrowB = function DArrowB(props) {
|
|
18658
18722
|
var color = props.color,
|
|
18659
18723
|
size = props.size,
|
|
@@ -18662,12 +18726,12 @@ var DArrowB = function DArrowB(props) {
|
|
|
18662
18726
|
className = props.className,
|
|
18663
18727
|
iconClassName = props.iconClassName,
|
|
18664
18728
|
testid = props.testid,
|
|
18665
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18729
|
+
otherProps = _objectWithoutProperties(props, _excluded$4X);
|
|
18666
18730
|
return /*#__PURE__*/React.createElement("span", {
|
|
18667
18731
|
role: "img",
|
|
18668
18732
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18669
18733
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18670
|
-
children: loadingCircleStyle$
|
|
18734
|
+
children: loadingCircleStyle$4X
|
|
18671
18735
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18672
18736
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18673
18737
|
width: size,
|
|
@@ -18706,8 +18770,8 @@ DArrowB.defaultProps = {
|
|
|
18706
18770
|
size: '1em'
|
|
18707
18771
|
};
|
|
18708
18772
|
|
|
18709
|
-
var _excluded$
|
|
18710
|
-
var loadingCircleStyle$
|
|
18773
|
+
var _excluded$4Y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18774
|
+
var loadingCircleStyle$4Y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18711
18775
|
var DropDown = function DropDown(props) {
|
|
18712
18776
|
var color = props.color,
|
|
18713
18777
|
size = props.size,
|
|
@@ -18716,12 +18780,12 @@ var DropDown = function DropDown(props) {
|
|
|
18716
18780
|
className = props.className,
|
|
18717
18781
|
iconClassName = props.iconClassName,
|
|
18718
18782
|
testid = props.testid,
|
|
18719
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18783
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Y);
|
|
18720
18784
|
return /*#__PURE__*/React.createElement("span", {
|
|
18721
18785
|
role: "img",
|
|
18722
18786
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18723
18787
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18724
|
-
children: loadingCircleStyle$
|
|
18788
|
+
children: loadingCircleStyle$4Y
|
|
18725
18789
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18726
18790
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18727
18791
|
width: size,
|
|
@@ -18758,8 +18822,8 @@ DropDown.defaultProps = {
|
|
|
18758
18822
|
size: '1em'
|
|
18759
18823
|
};
|
|
18760
18824
|
|
|
18761
|
-
var _excluded$
|
|
18762
|
-
var loadingCircleStyle$
|
|
18825
|
+
var _excluded$4Z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18826
|
+
var loadingCircleStyle$4Z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18763
18827
|
var DropUp = function DropUp(props) {
|
|
18764
18828
|
var color = props.color,
|
|
18765
18829
|
size = props.size,
|
|
@@ -18768,12 +18832,12 @@ var DropUp = function DropUp(props) {
|
|
|
18768
18832
|
className = props.className,
|
|
18769
18833
|
iconClassName = props.iconClassName,
|
|
18770
18834
|
testid = props.testid,
|
|
18771
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18835
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Z);
|
|
18772
18836
|
return /*#__PURE__*/React.createElement("span", {
|
|
18773
18837
|
role: "img",
|
|
18774
18838
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18775
18839
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18776
|
-
children: loadingCircleStyle$
|
|
18840
|
+
children: loadingCircleStyle$4Z
|
|
18777
18841
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18778
18842
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18779
18843
|
width: size,
|
|
@@ -18810,8 +18874,8 @@ DropUp.defaultProps = {
|
|
|
18810
18874
|
size: '1em'
|
|
18811
18875
|
};
|
|
18812
18876
|
|
|
18813
|
-
var _excluded$
|
|
18814
|
-
var loadingCircleStyle$
|
|
18877
|
+
var _excluded$4_ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18878
|
+
var loadingCircleStyle$4_ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18815
18879
|
var More1 = function More1(props) {
|
|
18816
18880
|
var color = props.color,
|
|
18817
18881
|
size = props.size,
|
|
@@ -18820,12 +18884,12 @@ var More1 = function More1(props) {
|
|
|
18820
18884
|
className = props.className,
|
|
18821
18885
|
iconClassName = props.iconClassName,
|
|
18822
18886
|
testid = props.testid,
|
|
18823
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18887
|
+
otherProps = _objectWithoutProperties(props, _excluded$4_);
|
|
18824
18888
|
return /*#__PURE__*/React.createElement("span", {
|
|
18825
18889
|
role: "img",
|
|
18826
18890
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18827
18891
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18828
|
-
children: loadingCircleStyle$
|
|
18892
|
+
children: loadingCircleStyle$4_
|
|
18829
18893
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18830
18894
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18831
18895
|
width: size,
|
|
@@ -18862,8 +18926,8 @@ More1.defaultProps = {
|
|
|
18862
18926
|
size: '1em'
|
|
18863
18927
|
};
|
|
18864
18928
|
|
|
18865
|
-
var _excluded$
|
|
18866
|
-
var loadingCircleStyle$
|
|
18929
|
+
var _excluded$4$ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18930
|
+
var loadingCircleStyle$4$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18867
18931
|
var More2 = function More2(props) {
|
|
18868
18932
|
var color = props.color,
|
|
18869
18933
|
size = props.size,
|
|
@@ -18872,12 +18936,12 @@ var More2 = function More2(props) {
|
|
|
18872
18936
|
className = props.className,
|
|
18873
18937
|
iconClassName = props.iconClassName,
|
|
18874
18938
|
testid = props.testid,
|
|
18875
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18939
|
+
otherProps = _objectWithoutProperties(props, _excluded$4$);
|
|
18876
18940
|
return /*#__PURE__*/React.createElement("span", {
|
|
18877
18941
|
role: "img",
|
|
18878
18942
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18879
18943
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18880
|
-
children: loadingCircleStyle$
|
|
18944
|
+
children: loadingCircleStyle$4$
|
|
18881
18945
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18882
18946
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18883
18947
|
width: size,
|
|
@@ -18914,8 +18978,8 @@ More2.defaultProps = {
|
|
|
18914
18978
|
size: '1em'
|
|
18915
18979
|
};
|
|
18916
18980
|
|
|
18917
|
-
var _excluded$
|
|
18918
|
-
var loadingCircleStyle$
|
|
18981
|
+
var _excluded$50 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
18982
|
+
var loadingCircleStyle$50 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18919
18983
|
var Drag = function Drag(props) {
|
|
18920
18984
|
var color = props.color,
|
|
18921
18985
|
size = props.size,
|
|
@@ -18924,12 +18988,12 @@ var Drag = function Drag(props) {
|
|
|
18924
18988
|
className = props.className,
|
|
18925
18989
|
iconClassName = props.iconClassName,
|
|
18926
18990
|
testid = props.testid,
|
|
18927
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18991
|
+
otherProps = _objectWithoutProperties(props, _excluded$50);
|
|
18928
18992
|
return /*#__PURE__*/React.createElement("span", {
|
|
18929
18993
|
role: "img",
|
|
18930
18994
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18931
18995
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18932
|
-
children: loadingCircleStyle$
|
|
18996
|
+
children: loadingCircleStyle$50
|
|
18933
18997
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18934
18998
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18935
18999
|
width: size,
|
|
@@ -18976,8 +19040,8 @@ Drag.defaultProps = {
|
|
|
18976
19040
|
size: '1em'
|
|
18977
19041
|
};
|
|
18978
19042
|
|
|
18979
|
-
var _excluded$
|
|
18980
|
-
var loadingCircleStyle$
|
|
19043
|
+
var _excluded$51 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19044
|
+
var loadingCircleStyle$51 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18981
19045
|
var Grid = function Grid(props) {
|
|
18982
19046
|
var color = props.color,
|
|
18983
19047
|
size = props.size,
|
|
@@ -18986,12 +19050,12 @@ var Grid = function Grid(props) {
|
|
|
18986
19050
|
className = props.className,
|
|
18987
19051
|
iconClassName = props.iconClassName,
|
|
18988
19052
|
testid = props.testid,
|
|
18989
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19053
|
+
otherProps = _objectWithoutProperties(props, _excluded$51);
|
|
18990
19054
|
return /*#__PURE__*/React.createElement("span", {
|
|
18991
19055
|
role: "img",
|
|
18992
19056
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18993
19057
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18994
|
-
children: loadingCircleStyle$
|
|
19058
|
+
children: loadingCircleStyle$51
|
|
18995
19059
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18996
19060
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18997
19061
|
width: size,
|
|
@@ -19030,8 +19094,8 @@ Grid.defaultProps = {
|
|
|
19030
19094
|
size: '1em'
|
|
19031
19095
|
};
|
|
19032
19096
|
|
|
19033
|
-
var _excluded$
|
|
19034
|
-
var loadingCircleStyle$
|
|
19097
|
+
var _excluded$52 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19098
|
+
var loadingCircleStyle$52 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19035
19099
|
var Drag2 = function Drag2(props) {
|
|
19036
19100
|
var color = props.color,
|
|
19037
19101
|
size = props.size,
|
|
@@ -19040,12 +19104,12 @@ var Drag2 = function Drag2(props) {
|
|
|
19040
19104
|
className = props.className,
|
|
19041
19105
|
iconClassName = props.iconClassName,
|
|
19042
19106
|
testid = props.testid,
|
|
19043
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19107
|
+
otherProps = _objectWithoutProperties(props, _excluded$52);
|
|
19044
19108
|
return /*#__PURE__*/React.createElement("span", {
|
|
19045
19109
|
role: "img",
|
|
19046
19110
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19047
19111
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19048
|
-
children: loadingCircleStyle$
|
|
19112
|
+
children: loadingCircleStyle$52
|
|
19049
19113
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19050
19114
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19051
19115
|
width: size,
|
|
@@ -19086,8 +19150,8 @@ Drag2.defaultProps = {
|
|
|
19086
19150
|
size: '1em'
|
|
19087
19151
|
};
|
|
19088
19152
|
|
|
19089
|
-
var _excluded$
|
|
19090
|
-
var loadingCircleStyle$
|
|
19153
|
+
var _excluded$53 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19154
|
+
var loadingCircleStyle$53 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19091
19155
|
var External = function External(props) {
|
|
19092
19156
|
var color = props.color,
|
|
19093
19157
|
size = props.size,
|
|
@@ -19096,12 +19160,12 @@ var External = function External(props) {
|
|
|
19096
19160
|
className = props.className,
|
|
19097
19161
|
iconClassName = props.iconClassName,
|
|
19098
19162
|
testid = props.testid,
|
|
19099
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19163
|
+
otherProps = _objectWithoutProperties(props, _excluded$53);
|
|
19100
19164
|
return /*#__PURE__*/React.createElement("span", {
|
|
19101
19165
|
role: "img",
|
|
19102
19166
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19103
19167
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19104
|
-
children: loadingCircleStyle$
|
|
19168
|
+
children: loadingCircleStyle$53
|
|
19105
19169
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19106
19170
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19107
19171
|
width: size,
|
|
@@ -19138,8 +19202,8 @@ External.defaultProps = {
|
|
|
19138
19202
|
size: '1em'
|
|
19139
19203
|
};
|
|
19140
19204
|
|
|
19141
|
-
var _excluded$
|
|
19142
|
-
var loadingCircleStyle$
|
|
19205
|
+
var _excluded$54 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19206
|
+
var loadingCircleStyle$54 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19143
19207
|
var DisplayS = function DisplayS(props) {
|
|
19144
19208
|
var color = props.color,
|
|
19145
19209
|
size = props.size,
|
|
@@ -19148,12 +19212,12 @@ var DisplayS = function DisplayS(props) {
|
|
|
19148
19212
|
className = props.className,
|
|
19149
19213
|
iconClassName = props.iconClassName,
|
|
19150
19214
|
testid = props.testid,
|
|
19151
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19215
|
+
otherProps = _objectWithoutProperties(props, _excluded$54);
|
|
19152
19216
|
return /*#__PURE__*/React.createElement("span", {
|
|
19153
19217
|
role: "img",
|
|
19154
19218
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19155
19219
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19156
|
-
children: loadingCircleStyle$
|
|
19220
|
+
children: loadingCircleStyle$54
|
|
19157
19221
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19158
19222
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19159
19223
|
width: size,
|
|
@@ -19192,8 +19256,8 @@ DisplayS.defaultProps = {
|
|
|
19192
19256
|
size: '1em'
|
|
19193
19257
|
};
|
|
19194
19258
|
|
|
19195
|
-
var _excluded$
|
|
19196
|
-
var loadingCircleStyle$
|
|
19259
|
+
var _excluded$55 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19260
|
+
var loadingCircleStyle$55 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19197
19261
|
var Share = function Share(props) {
|
|
19198
19262
|
var color = props.color,
|
|
19199
19263
|
size = props.size,
|
|
@@ -19202,12 +19266,12 @@ var Share = function Share(props) {
|
|
|
19202
19266
|
className = props.className,
|
|
19203
19267
|
iconClassName = props.iconClassName,
|
|
19204
19268
|
testid = props.testid,
|
|
19205
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19269
|
+
otherProps = _objectWithoutProperties(props, _excluded$55);
|
|
19206
19270
|
return /*#__PURE__*/React.createElement("span", {
|
|
19207
19271
|
role: "img",
|
|
19208
19272
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19209
19273
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19210
|
-
children: loadingCircleStyle$
|
|
19274
|
+
children: loadingCircleStyle$55
|
|
19211
19275
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19212
19276
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19213
19277
|
width: size,
|
|
@@ -19244,8 +19308,8 @@ Share.defaultProps = {
|
|
|
19244
19308
|
size: '1em'
|
|
19245
19309
|
};
|
|
19246
19310
|
|
|
19247
|
-
var _excluded$
|
|
19248
|
-
var loadingCircleStyle$
|
|
19311
|
+
var _excluded$56 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19312
|
+
var loadingCircleStyle$56 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19249
19313
|
var Play = function Play(props) {
|
|
19250
19314
|
var color = props.color,
|
|
19251
19315
|
size = props.size,
|
|
@@ -19254,12 +19318,12 @@ var Play = function Play(props) {
|
|
|
19254
19318
|
className = props.className,
|
|
19255
19319
|
iconClassName = props.iconClassName,
|
|
19256
19320
|
testid = props.testid,
|
|
19257
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19321
|
+
otherProps = _objectWithoutProperties(props, _excluded$56);
|
|
19258
19322
|
return /*#__PURE__*/React.createElement("span", {
|
|
19259
19323
|
role: "img",
|
|
19260
19324
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19261
19325
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19262
|
-
children: loadingCircleStyle$
|
|
19326
|
+
children: loadingCircleStyle$56
|
|
19263
19327
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19264
19328
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19265
19329
|
width: size,
|
|
@@ -19296,8 +19360,8 @@ Play.defaultProps = {
|
|
|
19296
19360
|
size: '1em'
|
|
19297
19361
|
};
|
|
19298
19362
|
|
|
19299
|
-
var _excluded$
|
|
19300
|
-
var loadingCircleStyle$
|
|
19363
|
+
var _excluded$57 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19364
|
+
var loadingCircleStyle$57 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19301
19365
|
var Config = function Config(props) {
|
|
19302
19366
|
var color = props.color,
|
|
19303
19367
|
size = props.size,
|
|
@@ -19306,12 +19370,12 @@ var Config = function Config(props) {
|
|
|
19306
19370
|
className = props.className,
|
|
19307
19371
|
iconClassName = props.iconClassName,
|
|
19308
19372
|
testid = props.testid,
|
|
19309
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19373
|
+
otherProps = _objectWithoutProperties(props, _excluded$57);
|
|
19310
19374
|
return /*#__PURE__*/React.createElement("span", {
|
|
19311
19375
|
role: "img",
|
|
19312
19376
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19313
19377
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19314
|
-
children: loadingCircleStyle$
|
|
19378
|
+
children: loadingCircleStyle$57
|
|
19315
19379
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19316
19380
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19317
19381
|
width: size,
|
|
@@ -19348,8 +19412,8 @@ Config.defaultProps = {
|
|
|
19348
19412
|
size: '1em'
|
|
19349
19413
|
};
|
|
19350
19414
|
|
|
19351
|
-
var _excluded$
|
|
19352
|
-
var loadingCircleStyle$
|
|
19415
|
+
var _excluded$58 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19416
|
+
var loadingCircleStyle$58 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19353
19417
|
var Setting = function Setting(props) {
|
|
19354
19418
|
var color = props.color,
|
|
19355
19419
|
size = props.size,
|
|
@@ -19358,12 +19422,12 @@ var Setting = function Setting(props) {
|
|
|
19358
19422
|
className = props.className,
|
|
19359
19423
|
iconClassName = props.iconClassName,
|
|
19360
19424
|
testid = props.testid,
|
|
19361
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19425
|
+
otherProps = _objectWithoutProperties(props, _excluded$58);
|
|
19362
19426
|
return /*#__PURE__*/React.createElement("span", {
|
|
19363
19427
|
role: "img",
|
|
19364
19428
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19365
19429
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19366
|
-
children: loadingCircleStyle$
|
|
19430
|
+
children: loadingCircleStyle$58
|
|
19367
19431
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19368
19432
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19369
19433
|
width: size,
|
|
@@ -19400,8 +19464,8 @@ Setting.defaultProps = {
|
|
|
19400
19464
|
size: '1em'
|
|
19401
19465
|
};
|
|
19402
19466
|
|
|
19403
|
-
var _excluded$
|
|
19404
|
-
var loadingCircleStyle$
|
|
19467
|
+
var _excluded$59 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19468
|
+
var loadingCircleStyle$59 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19405
19469
|
var Search = function Search(props) {
|
|
19406
19470
|
var color = props.color,
|
|
19407
19471
|
size = props.size,
|
|
@@ -19410,12 +19474,12 @@ var Search = function Search(props) {
|
|
|
19410
19474
|
className = props.className,
|
|
19411
19475
|
iconClassName = props.iconClassName,
|
|
19412
19476
|
testid = props.testid,
|
|
19413
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19477
|
+
otherProps = _objectWithoutProperties(props, _excluded$59);
|
|
19414
19478
|
return /*#__PURE__*/React.createElement("span", {
|
|
19415
19479
|
role: "img",
|
|
19416
19480
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19417
19481
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19418
|
-
children: loadingCircleStyle$
|
|
19482
|
+
children: loadingCircleStyle$59
|
|
19419
19483
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19420
19484
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19421
19485
|
width: size,
|
|
@@ -19452,8 +19516,8 @@ Search.defaultProps = {
|
|
|
19452
19516
|
size: '1em'
|
|
19453
19517
|
};
|
|
19454
19518
|
|
|
19455
|
-
var _excluded$
|
|
19456
|
-
var loadingCircleStyle$
|
|
19519
|
+
var _excluded$5a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19520
|
+
var loadingCircleStyle$5a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19457
19521
|
var Copy = function Copy(props) {
|
|
19458
19522
|
var color = props.color,
|
|
19459
19523
|
size = props.size,
|
|
@@ -19462,12 +19526,12 @@ var Copy = function Copy(props) {
|
|
|
19462
19526
|
className = props.className,
|
|
19463
19527
|
iconClassName = props.iconClassName,
|
|
19464
19528
|
testid = props.testid,
|
|
19465
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19529
|
+
otherProps = _objectWithoutProperties(props, _excluded$5a);
|
|
19466
19530
|
return /*#__PURE__*/React.createElement("span", {
|
|
19467
19531
|
role: "img",
|
|
19468
19532
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19469
19533
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19470
|
-
children: loadingCircleStyle$
|
|
19534
|
+
children: loadingCircleStyle$5a
|
|
19471
19535
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19472
19536
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19473
19537
|
width: size,
|
|
@@ -19504,8 +19568,8 @@ Copy.defaultProps = {
|
|
|
19504
19568
|
size: '1em'
|
|
19505
19569
|
};
|
|
19506
19570
|
|
|
19507
|
-
var _excluded$
|
|
19508
|
-
var loadingCircleStyle$
|
|
19571
|
+
var _excluded$5b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19572
|
+
var loadingCircleStyle$5b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19509
19573
|
var Copy2 = function Copy2(props) {
|
|
19510
19574
|
var color = props.color,
|
|
19511
19575
|
size = props.size,
|
|
@@ -19514,12 +19578,12 @@ var Copy2 = function Copy2(props) {
|
|
|
19514
19578
|
className = props.className,
|
|
19515
19579
|
iconClassName = props.iconClassName,
|
|
19516
19580
|
testid = props.testid,
|
|
19517
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19581
|
+
otherProps = _objectWithoutProperties(props, _excluded$5b);
|
|
19518
19582
|
return /*#__PURE__*/React.createElement("span", {
|
|
19519
19583
|
role: "img",
|
|
19520
19584
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19521
19585
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19522
|
-
children: loadingCircleStyle$
|
|
19586
|
+
children: loadingCircleStyle$5b
|
|
19523
19587
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19524
19588
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19525
19589
|
width: size,
|
|
@@ -19556,8 +19620,8 @@ Copy2.defaultProps = {
|
|
|
19556
19620
|
size: '1em'
|
|
19557
19621
|
};
|
|
19558
19622
|
|
|
19559
|
-
var _excluded$
|
|
19560
|
-
var loadingCircleStyle$
|
|
19623
|
+
var _excluded$5c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19624
|
+
var loadingCircleStyle$5c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19561
19625
|
var Format = function Format(props) {
|
|
19562
19626
|
var color = props.color,
|
|
19563
19627
|
size = props.size,
|
|
@@ -19566,12 +19630,12 @@ var Format = function Format(props) {
|
|
|
19566
19630
|
className = props.className,
|
|
19567
19631
|
iconClassName = props.iconClassName,
|
|
19568
19632
|
testid = props.testid,
|
|
19569
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19633
|
+
otherProps = _objectWithoutProperties(props, _excluded$5c);
|
|
19570
19634
|
return /*#__PURE__*/React.createElement("span", {
|
|
19571
19635
|
role: "img",
|
|
19572
19636
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19573
19637
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19574
|
-
children: loadingCircleStyle$
|
|
19638
|
+
children: loadingCircleStyle$5c
|
|
19575
19639
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19576
19640
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19577
19641
|
width: size,
|
|
@@ -19610,8 +19674,8 @@ Format.defaultProps = {
|
|
|
19610
19674
|
size: '1em'
|
|
19611
19675
|
};
|
|
19612
19676
|
|
|
19613
|
-
var _excluded$
|
|
19614
|
-
var loadingCircleStyle$
|
|
19677
|
+
var _excluded$5d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19678
|
+
var loadingCircleStyle$5d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19615
19679
|
var Code = function Code(props) {
|
|
19616
19680
|
var color = props.color,
|
|
19617
19681
|
size = props.size,
|
|
@@ -19620,12 +19684,12 @@ var Code = function Code(props) {
|
|
|
19620
19684
|
className = props.className,
|
|
19621
19685
|
iconClassName = props.iconClassName,
|
|
19622
19686
|
testid = props.testid,
|
|
19623
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19687
|
+
otherProps = _objectWithoutProperties(props, _excluded$5d);
|
|
19624
19688
|
return /*#__PURE__*/React.createElement("span", {
|
|
19625
19689
|
role: "img",
|
|
19626
19690
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19627
19691
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19628
|
-
children: loadingCircleStyle$
|
|
19692
|
+
children: loadingCircleStyle$5d
|
|
19629
19693
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19630
19694
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19631
19695
|
width: size,
|
|
@@ -19662,8 +19726,8 @@ Code.defaultProps = {
|
|
|
19662
19726
|
size: '1em'
|
|
19663
19727
|
};
|
|
19664
19728
|
|
|
19665
|
-
var _excluded$
|
|
19666
|
-
var loadingCircleStyle$
|
|
19729
|
+
var _excluded$5e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19730
|
+
var loadingCircleStyle$5e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19667
19731
|
var Edit = function Edit(props) {
|
|
19668
19732
|
var color = props.color,
|
|
19669
19733
|
size = props.size,
|
|
@@ -19672,12 +19736,12 @@ var Edit = function Edit(props) {
|
|
|
19672
19736
|
className = props.className,
|
|
19673
19737
|
iconClassName = props.iconClassName,
|
|
19674
19738
|
testid = props.testid,
|
|
19675
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19739
|
+
otherProps = _objectWithoutProperties(props, _excluded$5e);
|
|
19676
19740
|
return /*#__PURE__*/React.createElement("span", {
|
|
19677
19741
|
role: "img",
|
|
19678
19742
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19679
19743
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19680
|
-
children: loadingCircleStyle$
|
|
19744
|
+
children: loadingCircleStyle$5e
|
|
19681
19745
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19682
19746
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19683
19747
|
width: size,
|
|
@@ -19714,8 +19778,8 @@ Edit.defaultProps = {
|
|
|
19714
19778
|
size: '1em'
|
|
19715
19779
|
};
|
|
19716
19780
|
|
|
19717
|
-
var _excluded$
|
|
19718
|
-
var loadingCircleStyle$
|
|
19781
|
+
var _excluded$5f = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19782
|
+
var loadingCircleStyle$5f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19719
19783
|
var EditFill = function EditFill(props) {
|
|
19720
19784
|
var color = props.color,
|
|
19721
19785
|
size = props.size,
|
|
@@ -19724,12 +19788,12 @@ var EditFill = function EditFill(props) {
|
|
|
19724
19788
|
className = props.className,
|
|
19725
19789
|
iconClassName = props.iconClassName,
|
|
19726
19790
|
testid = props.testid,
|
|
19727
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19791
|
+
otherProps = _objectWithoutProperties(props, _excluded$5f);
|
|
19728
19792
|
return /*#__PURE__*/React.createElement("span", {
|
|
19729
19793
|
role: "img",
|
|
19730
19794
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19731
19795
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19732
|
-
children: loadingCircleStyle$
|
|
19796
|
+
children: loadingCircleStyle$5f
|
|
19733
19797
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19734
19798
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19735
19799
|
width: size,
|
|
@@ -19768,8 +19832,8 @@ EditFill.defaultProps = {
|
|
|
19768
19832
|
size: '1em'
|
|
19769
19833
|
};
|
|
19770
19834
|
|
|
19771
|
-
var _excluded$
|
|
19772
|
-
var loadingCircleStyle$
|
|
19835
|
+
var _excluded$5g = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19836
|
+
var loadingCircleStyle$5g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19773
19837
|
var Delete1 = function Delete1(props) {
|
|
19774
19838
|
var color = props.color,
|
|
19775
19839
|
size = props.size,
|
|
@@ -19778,12 +19842,12 @@ var Delete1 = function Delete1(props) {
|
|
|
19778
19842
|
className = props.className,
|
|
19779
19843
|
iconClassName = props.iconClassName,
|
|
19780
19844
|
testid = props.testid,
|
|
19781
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19845
|
+
otherProps = _objectWithoutProperties(props, _excluded$5g);
|
|
19782
19846
|
return /*#__PURE__*/React.createElement("span", {
|
|
19783
19847
|
role: "img",
|
|
19784
19848
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19785
19849
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19786
|
-
children: loadingCircleStyle$
|
|
19850
|
+
children: loadingCircleStyle$5g
|
|
19787
19851
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19788
19852
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19789
19853
|
width: size,
|
|
@@ -19820,8 +19884,8 @@ Delete1.defaultProps = {
|
|
|
19820
19884
|
size: '1em'
|
|
19821
19885
|
};
|
|
19822
19886
|
|
|
19823
|
-
var _excluded$
|
|
19824
|
-
var loadingCircleStyle$
|
|
19887
|
+
var _excluded$5h = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19888
|
+
var loadingCircleStyle$5h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19825
19889
|
var Save = function Save(props) {
|
|
19826
19890
|
var color = props.color,
|
|
19827
19891
|
size = props.size,
|
|
@@ -19830,12 +19894,12 @@ var Save = function Save(props) {
|
|
|
19830
19894
|
className = props.className,
|
|
19831
19895
|
iconClassName = props.iconClassName,
|
|
19832
19896
|
testid = props.testid,
|
|
19833
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19897
|
+
otherProps = _objectWithoutProperties(props, _excluded$5h);
|
|
19834
19898
|
return /*#__PURE__*/React.createElement("span", {
|
|
19835
19899
|
role: "img",
|
|
19836
19900
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19837
19901
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19838
|
-
children: loadingCircleStyle$
|
|
19902
|
+
children: loadingCircleStyle$5h
|
|
19839
19903
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19840
19904
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19841
19905
|
width: size,
|
|
@@ -19872,8 +19936,8 @@ Save.defaultProps = {
|
|
|
19872
19936
|
size: '1em'
|
|
19873
19937
|
};
|
|
19874
19938
|
|
|
19875
|
-
var _excluded$
|
|
19876
|
-
var loadingCircleStyle$
|
|
19939
|
+
var _excluded$5i = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19940
|
+
var loadingCircleStyle$5i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19877
19941
|
var Send = function Send(props) {
|
|
19878
19942
|
var color = props.color,
|
|
19879
19943
|
size = props.size,
|
|
@@ -19882,12 +19946,12 @@ var Send = function Send(props) {
|
|
|
19882
19946
|
className = props.className,
|
|
19883
19947
|
iconClassName = props.iconClassName,
|
|
19884
19948
|
testid = props.testid,
|
|
19885
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19949
|
+
otherProps = _objectWithoutProperties(props, _excluded$5i);
|
|
19886
19950
|
return /*#__PURE__*/React.createElement("span", {
|
|
19887
19951
|
role: "img",
|
|
19888
19952
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19889
19953
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19890
|
-
children: loadingCircleStyle$
|
|
19954
|
+
children: loadingCircleStyle$5i
|
|
19891
19955
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19892
19956
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19893
19957
|
width: size,
|
|
@@ -19926,8 +19990,8 @@ Send.defaultProps = {
|
|
|
19926
19990
|
size: '1em'
|
|
19927
19991
|
};
|
|
19928
19992
|
|
|
19929
|
-
var _excluded$
|
|
19930
|
-
var loadingCircleStyle$
|
|
19993
|
+
var _excluded$5j = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19994
|
+
var loadingCircleStyle$5j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19931
19995
|
var Fullscreen = function Fullscreen(props) {
|
|
19932
19996
|
var color = props.color,
|
|
19933
19997
|
size = props.size,
|
|
@@ -19936,12 +20000,12 @@ var Fullscreen = function Fullscreen(props) {
|
|
|
19936
20000
|
className = props.className,
|
|
19937
20001
|
iconClassName = props.iconClassName,
|
|
19938
20002
|
testid = props.testid,
|
|
19939
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20003
|
+
otherProps = _objectWithoutProperties(props, _excluded$5j);
|
|
19940
20004
|
return /*#__PURE__*/React.createElement("span", {
|
|
19941
20005
|
role: "img",
|
|
19942
20006
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19943
20007
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19944
|
-
children: loadingCircleStyle$
|
|
20008
|
+
children: loadingCircleStyle$5j
|
|
19945
20009
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19946
20010
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19947
20011
|
width: size,
|
|
@@ -19978,8 +20042,8 @@ Fullscreen.defaultProps = {
|
|
|
19978
20042
|
size: '1em'
|
|
19979
20043
|
};
|
|
19980
20044
|
|
|
19981
|
-
var _excluded$
|
|
19982
|
-
var loadingCircleStyle$
|
|
20045
|
+
var _excluded$5k = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20046
|
+
var loadingCircleStyle$5k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19983
20047
|
var ArrowLeftDown = function ArrowLeftDown(props) {
|
|
19984
20048
|
var color = props.color,
|
|
19985
20049
|
size = props.size,
|
|
@@ -19988,12 +20052,12 @@ var ArrowLeftDown = function ArrowLeftDown(props) {
|
|
|
19988
20052
|
className = props.className,
|
|
19989
20053
|
iconClassName = props.iconClassName,
|
|
19990
20054
|
testid = props.testid,
|
|
19991
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20055
|
+
otherProps = _objectWithoutProperties(props, _excluded$5k);
|
|
19992
20056
|
return /*#__PURE__*/React.createElement("span", {
|
|
19993
20057
|
role: "img",
|
|
19994
20058
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19995
20059
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19996
|
-
children: loadingCircleStyle$
|
|
20060
|
+
children: loadingCircleStyle$5k
|
|
19997
20061
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19998
20062
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19999
20063
|
width: size,
|
|
@@ -20030,8 +20094,8 @@ ArrowLeftDown.defaultProps = {
|
|
|
20030
20094
|
size: '1em'
|
|
20031
20095
|
};
|
|
20032
20096
|
|
|
20033
|
-
var _excluded$
|
|
20034
|
-
var loadingCircleStyle$
|
|
20097
|
+
var _excluded$5l = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20098
|
+
var loadingCircleStyle$5l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20035
20099
|
var Link = function Link(props) {
|
|
20036
20100
|
var color = props.color,
|
|
20037
20101
|
size = props.size,
|
|
@@ -20040,12 +20104,12 @@ var Link = function Link(props) {
|
|
|
20040
20104
|
className = props.className,
|
|
20041
20105
|
iconClassName = props.iconClassName,
|
|
20042
20106
|
testid = props.testid,
|
|
20043
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20107
|
+
otherProps = _objectWithoutProperties(props, _excluded$5l);
|
|
20044
20108
|
return /*#__PURE__*/React.createElement("span", {
|
|
20045
20109
|
role: "img",
|
|
20046
20110
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20047
20111
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20048
|
-
children: loadingCircleStyle$
|
|
20112
|
+
children: loadingCircleStyle$5l
|
|
20049
20113
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20050
20114
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20051
20115
|
width: size,
|
|
@@ -20086,8 +20150,8 @@ Link.defaultProps = {
|
|
|
20086
20150
|
size: '1em'
|
|
20087
20151
|
};
|
|
20088
20152
|
|
|
20089
|
-
var _excluded$
|
|
20090
|
-
var loadingCircleStyle$
|
|
20153
|
+
var _excluded$5m = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20154
|
+
var loadingCircleStyle$5m = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20091
20155
|
var Unlink = function Unlink(props) {
|
|
20092
20156
|
var color = props.color,
|
|
20093
20157
|
size = props.size,
|
|
@@ -20096,12 +20160,12 @@ var Unlink = function Unlink(props) {
|
|
|
20096
20160
|
className = props.className,
|
|
20097
20161
|
iconClassName = props.iconClassName,
|
|
20098
20162
|
testid = props.testid,
|
|
20099
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20163
|
+
otherProps = _objectWithoutProperties(props, _excluded$5m);
|
|
20100
20164
|
return /*#__PURE__*/React.createElement("span", {
|
|
20101
20165
|
role: "img",
|
|
20102
20166
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20103
20167
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20104
|
-
children: loadingCircleStyle$
|
|
20168
|
+
children: loadingCircleStyle$5m
|
|
20105
20169
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20106
20170
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20107
20171
|
width: size,
|
|
@@ -20144,8 +20208,8 @@ Unlink.defaultProps = {
|
|
|
20144
20208
|
size: '1em'
|
|
20145
20209
|
};
|
|
20146
20210
|
|
|
20147
|
-
var _excluded$
|
|
20148
|
-
var loadingCircleStyle$
|
|
20211
|
+
var _excluded$5n = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20212
|
+
var loadingCircleStyle$5n = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20149
20213
|
var Link2 = function Link2(props) {
|
|
20150
20214
|
var color = props.color,
|
|
20151
20215
|
size = props.size,
|
|
@@ -20154,12 +20218,12 @@ var Link2 = function Link2(props) {
|
|
|
20154
20218
|
className = props.className,
|
|
20155
20219
|
iconClassName = props.iconClassName,
|
|
20156
20220
|
testid = props.testid,
|
|
20157
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20221
|
+
otherProps = _objectWithoutProperties(props, _excluded$5n);
|
|
20158
20222
|
return /*#__PURE__*/React.createElement("span", {
|
|
20159
20223
|
role: "img",
|
|
20160
20224
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20161
20225
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20162
|
-
children: loadingCircleStyle$
|
|
20226
|
+
children: loadingCircleStyle$5n
|
|
20163
20227
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20164
20228
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20165
20229
|
width: size,
|
|
@@ -20196,8 +20260,8 @@ Link2.defaultProps = {
|
|
|
20196
20260
|
size: '1em'
|
|
20197
20261
|
};
|
|
20198
20262
|
|
|
20199
|
-
var _excluded$
|
|
20200
|
-
var loadingCircleStyle$
|
|
20263
|
+
var _excluded$5o = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20264
|
+
var loadingCircleStyle$5o = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20201
20265
|
var MenuUnfold = function MenuUnfold(props) {
|
|
20202
20266
|
var color = props.color,
|
|
20203
20267
|
size = props.size,
|
|
@@ -20206,12 +20270,12 @@ var MenuUnfold = function MenuUnfold(props) {
|
|
|
20206
20270
|
className = props.className,
|
|
20207
20271
|
iconClassName = props.iconClassName,
|
|
20208
20272
|
testid = props.testid,
|
|
20209
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20273
|
+
otherProps = _objectWithoutProperties(props, _excluded$5o);
|
|
20210
20274
|
return /*#__PURE__*/React.createElement("span", {
|
|
20211
20275
|
role: "img",
|
|
20212
20276
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20213
20277
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20214
|
-
children: loadingCircleStyle$
|
|
20278
|
+
children: loadingCircleStyle$5o
|
|
20215
20279
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20216
20280
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20217
20281
|
width: size,
|
|
@@ -20248,8 +20312,8 @@ MenuUnfold.defaultProps = {
|
|
|
20248
20312
|
size: '1em'
|
|
20249
20313
|
};
|
|
20250
20314
|
|
|
20251
|
-
var _excluded$
|
|
20252
|
-
var loadingCircleStyle$
|
|
20315
|
+
var _excluded$5p = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20316
|
+
var loadingCircleStyle$5p = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20253
20317
|
var MenuFold = function MenuFold(props) {
|
|
20254
20318
|
var color = props.color,
|
|
20255
20319
|
size = props.size,
|
|
@@ -20258,12 +20322,12 @@ var MenuFold = function MenuFold(props) {
|
|
|
20258
20322
|
className = props.className,
|
|
20259
20323
|
iconClassName = props.iconClassName,
|
|
20260
20324
|
testid = props.testid,
|
|
20261
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20325
|
+
otherProps = _objectWithoutProperties(props, _excluded$5p);
|
|
20262
20326
|
return /*#__PURE__*/React.createElement("span", {
|
|
20263
20327
|
role: "img",
|
|
20264
20328
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20265
20329
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20266
|
-
children: loadingCircleStyle$
|
|
20330
|
+
children: loadingCircleStyle$5p
|
|
20267
20331
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20268
20332
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20269
20333
|
width: size,
|
|
@@ -20300,8 +20364,8 @@ MenuFold.defaultProps = {
|
|
|
20300
20364
|
size: '1em'
|
|
20301
20365
|
};
|
|
20302
20366
|
|
|
20303
|
-
var _excluded$
|
|
20304
|
-
var loadingCircleStyle$
|
|
20367
|
+
var _excluded$5q = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20368
|
+
var loadingCircleStyle$5q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20305
20369
|
var List = function List(props) {
|
|
20306
20370
|
var color = props.color,
|
|
20307
20371
|
size = props.size,
|
|
@@ -20310,12 +20374,12 @@ var List = function List(props) {
|
|
|
20310
20374
|
className = props.className,
|
|
20311
20375
|
iconClassName = props.iconClassName,
|
|
20312
20376
|
testid = props.testid,
|
|
20313
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20377
|
+
otherProps = _objectWithoutProperties(props, _excluded$5q);
|
|
20314
20378
|
return /*#__PURE__*/React.createElement("span", {
|
|
20315
20379
|
role: "img",
|
|
20316
20380
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20317
20381
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20318
|
-
children: loadingCircleStyle$
|
|
20382
|
+
children: loadingCircleStyle$5q
|
|
20319
20383
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20320
20384
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20321
20385
|
width: size,
|
|
@@ -20352,8 +20416,8 @@ List.defaultProps = {
|
|
|
20352
20416
|
size: '1em'
|
|
20353
20417
|
};
|
|
20354
20418
|
|
|
20355
|
-
var _excluded$
|
|
20356
|
-
var loadingCircleStyle$
|
|
20419
|
+
var _excluded$5r = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20420
|
+
var loadingCircleStyle$5r = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20357
20421
|
var ListNested = function ListNested(props) {
|
|
20358
20422
|
var color = props.color,
|
|
20359
20423
|
size = props.size,
|
|
@@ -20362,12 +20426,12 @@ var ListNested = function ListNested(props) {
|
|
|
20362
20426
|
className = props.className,
|
|
20363
20427
|
iconClassName = props.iconClassName,
|
|
20364
20428
|
testid = props.testid,
|
|
20365
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20429
|
+
otherProps = _objectWithoutProperties(props, _excluded$5r);
|
|
20366
20430
|
return /*#__PURE__*/React.createElement("span", {
|
|
20367
20431
|
role: "img",
|
|
20368
20432
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20369
20433
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20370
|
-
children: loadingCircleStyle$
|
|
20434
|
+
children: loadingCircleStyle$5r
|
|
20371
20435
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20372
20436
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20373
20437
|
width: size,
|
|
@@ -20406,8 +20470,8 @@ ListNested.defaultProps = {
|
|
|
20406
20470
|
size: '1em'
|
|
20407
20471
|
};
|
|
20408
20472
|
|
|
20409
|
-
var _excluded$
|
|
20410
|
-
var loadingCircleStyle$
|
|
20473
|
+
var _excluded$5s = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20474
|
+
var loadingCircleStyle$5s = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20411
20475
|
var DoubleList = function DoubleList(props) {
|
|
20412
20476
|
var color = props.color,
|
|
20413
20477
|
size = props.size,
|
|
@@ -20416,12 +20480,12 @@ var DoubleList = function DoubleList(props) {
|
|
|
20416
20480
|
className = props.className,
|
|
20417
20481
|
iconClassName = props.iconClassName,
|
|
20418
20482
|
testid = props.testid,
|
|
20419
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20483
|
+
otherProps = _objectWithoutProperties(props, _excluded$5s);
|
|
20420
20484
|
return /*#__PURE__*/React.createElement("span", {
|
|
20421
20485
|
role: "img",
|
|
20422
20486
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20423
20487
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20424
|
-
children: loadingCircleStyle$
|
|
20488
|
+
children: loadingCircleStyle$5s
|
|
20425
20489
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20426
20490
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20427
20491
|
width: size,
|
|
@@ -20468,8 +20532,8 @@ DoubleList.defaultProps = {
|
|
|
20468
20532
|
size: '1em'
|
|
20469
20533
|
};
|
|
20470
20534
|
|
|
20471
|
-
var _excluded$
|
|
20472
|
-
var loadingCircleStyle$
|
|
20535
|
+
var _excluded$5t = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20536
|
+
var loadingCircleStyle$5t = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20473
20537
|
var Pause2 = function Pause2(props) {
|
|
20474
20538
|
var color = props.color,
|
|
20475
20539
|
size = props.size,
|
|
@@ -20478,12 +20542,12 @@ var Pause2 = function Pause2(props) {
|
|
|
20478
20542
|
className = props.className,
|
|
20479
20543
|
iconClassName = props.iconClassName,
|
|
20480
20544
|
testid = props.testid,
|
|
20481
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20545
|
+
otherProps = _objectWithoutProperties(props, _excluded$5t);
|
|
20482
20546
|
return /*#__PURE__*/React.createElement("span", {
|
|
20483
20547
|
role: "img",
|
|
20484
20548
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20485
20549
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20486
|
-
children: loadingCircleStyle$
|
|
20550
|
+
children: loadingCircleStyle$5t
|
|
20487
20551
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20488
20552
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20489
20553
|
width: size,
|
|
@@ -20520,8 +20584,8 @@ Pause2.defaultProps = {
|
|
|
20520
20584
|
size: '1em'
|
|
20521
20585
|
};
|
|
20522
20586
|
|
|
20523
|
-
var _excluded$
|
|
20524
|
-
var loadingCircleStyle$
|
|
20587
|
+
var _excluded$5u = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20588
|
+
var loadingCircleStyle$5u = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20525
20589
|
var Export = function Export(props) {
|
|
20526
20590
|
var color = props.color,
|
|
20527
20591
|
size = props.size,
|
|
@@ -20530,12 +20594,12 @@ var Export = function Export(props) {
|
|
|
20530
20594
|
className = props.className,
|
|
20531
20595
|
iconClassName = props.iconClassName,
|
|
20532
20596
|
testid = props.testid,
|
|
20533
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20597
|
+
otherProps = _objectWithoutProperties(props, _excluded$5u);
|
|
20534
20598
|
return /*#__PURE__*/React.createElement("span", {
|
|
20535
20599
|
role: "img",
|
|
20536
20600
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20537
20601
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20538
|
-
children: loadingCircleStyle$
|
|
20602
|
+
children: loadingCircleStyle$5u
|
|
20539
20603
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20540
20604
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20541
20605
|
width: size,
|
|
@@ -20574,8 +20638,8 @@ Export.defaultProps = {
|
|
|
20574
20638
|
size: '1em'
|
|
20575
20639
|
};
|
|
20576
20640
|
|
|
20577
|
-
var _excluded$
|
|
20578
|
-
var loadingCircleStyle$
|
|
20641
|
+
var _excluded$5v = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20642
|
+
var loadingCircleStyle$5v = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20579
20643
|
var Import = function Import(props) {
|
|
20580
20644
|
var color = props.color,
|
|
20581
20645
|
size = props.size,
|
|
@@ -20584,12 +20648,12 @@ var Import = function Import(props) {
|
|
|
20584
20648
|
className = props.className,
|
|
20585
20649
|
iconClassName = props.iconClassName,
|
|
20586
20650
|
testid = props.testid,
|
|
20587
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20651
|
+
otherProps = _objectWithoutProperties(props, _excluded$5v);
|
|
20588
20652
|
return /*#__PURE__*/React.createElement("span", {
|
|
20589
20653
|
role: "img",
|
|
20590
20654
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20591
20655
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20592
|
-
children: loadingCircleStyle$
|
|
20656
|
+
children: loadingCircleStyle$5v
|
|
20593
20657
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20594
20658
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20595
20659
|
width: size,
|
|
@@ -20628,8 +20692,8 @@ Import.defaultProps = {
|
|
|
20628
20692
|
size: '1em'
|
|
20629
20693
|
};
|
|
20630
20694
|
|
|
20631
|
-
var _excluded$
|
|
20632
|
-
var loadingCircleStyle$
|
|
20695
|
+
var _excluded$5w = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20696
|
+
var loadingCircleStyle$5w = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20633
20697
|
var Subtract = function Subtract(props) {
|
|
20634
20698
|
var color = props.color,
|
|
20635
20699
|
size = props.size,
|
|
@@ -20638,12 +20702,12 @@ var Subtract = function Subtract(props) {
|
|
|
20638
20702
|
className = props.className,
|
|
20639
20703
|
iconClassName = props.iconClassName,
|
|
20640
20704
|
testid = props.testid,
|
|
20641
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20705
|
+
otherProps = _objectWithoutProperties(props, _excluded$5w);
|
|
20642
20706
|
return /*#__PURE__*/React.createElement("span", {
|
|
20643
20707
|
role: "img",
|
|
20644
20708
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20645
20709
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20646
|
-
children: loadingCircleStyle$
|
|
20710
|
+
children: loadingCircleStyle$5w
|
|
20647
20711
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20648
20712
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20649
20713
|
width: size,
|
|
@@ -20683,8 +20747,8 @@ Subtract.defaultProps = {
|
|
|
20683
20747
|
size: '1em'
|
|
20684
20748
|
};
|
|
20685
20749
|
|
|
20686
|
-
var _excluded$
|
|
20687
|
-
var loadingCircleStyle$
|
|
20750
|
+
var _excluded$5x = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20751
|
+
var loadingCircleStyle$5x = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20688
20752
|
var Add1 = function Add1(props) {
|
|
20689
20753
|
var color = props.color,
|
|
20690
20754
|
size = props.size,
|
|
@@ -20693,12 +20757,12 @@ var Add1 = function Add1(props) {
|
|
|
20693
20757
|
className = props.className,
|
|
20694
20758
|
iconClassName = props.iconClassName,
|
|
20695
20759
|
testid = props.testid,
|
|
20696
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20760
|
+
otherProps = _objectWithoutProperties(props, _excluded$5x);
|
|
20697
20761
|
return /*#__PURE__*/React.createElement("span", {
|
|
20698
20762
|
role: "img",
|
|
20699
20763
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20700
20764
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20701
|
-
children: loadingCircleStyle$
|
|
20765
|
+
children: loadingCircleStyle$5x
|
|
20702
20766
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20703
20767
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20704
20768
|
width: size,
|
|
@@ -20735,8 +20799,8 @@ Add1.defaultProps = {
|
|
|
20735
20799
|
size: '1em'
|
|
20736
20800
|
};
|
|
20737
20801
|
|
|
20738
|
-
var _excluded$
|
|
20739
|
-
var loadingCircleStyle$
|
|
20802
|
+
var _excluded$5y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20803
|
+
var loadingCircleStyle$5y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20740
20804
|
var Add2 = function Add2(props) {
|
|
20741
20805
|
var color = props.color,
|
|
20742
20806
|
size = props.size,
|
|
@@ -20745,12 +20809,12 @@ var Add2 = function Add2(props) {
|
|
|
20745
20809
|
className = props.className,
|
|
20746
20810
|
iconClassName = props.iconClassName,
|
|
20747
20811
|
testid = props.testid,
|
|
20748
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20812
|
+
otherProps = _objectWithoutProperties(props, _excluded$5y);
|
|
20749
20813
|
return /*#__PURE__*/React.createElement("span", {
|
|
20750
20814
|
role: "img",
|
|
20751
20815
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20752
20816
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20753
|
-
children: loadingCircleStyle$
|
|
20817
|
+
children: loadingCircleStyle$5y
|
|
20754
20818
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20755
20819
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20756
20820
|
width: size,
|
|
@@ -20787,8 +20851,8 @@ Add2.defaultProps = {
|
|
|
20787
20851
|
size: '1em'
|
|
20788
20852
|
};
|
|
20789
20853
|
|
|
20790
|
-
var _excluded$
|
|
20791
|
-
var loadingCircleStyle$
|
|
20854
|
+
var _excluded$5z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20855
|
+
var loadingCircleStyle$5z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20792
20856
|
var Add3 = function Add3(props) {
|
|
20793
20857
|
var color = props.color,
|
|
20794
20858
|
size = props.size,
|
|
@@ -20797,12 +20861,12 @@ var Add3 = function Add3(props) {
|
|
|
20797
20861
|
className = props.className,
|
|
20798
20862
|
iconClassName = props.iconClassName,
|
|
20799
20863
|
testid = props.testid,
|
|
20800
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20864
|
+
otherProps = _objectWithoutProperties(props, _excluded$5z);
|
|
20801
20865
|
return /*#__PURE__*/React.createElement("span", {
|
|
20802
20866
|
role: "img",
|
|
20803
20867
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20804
20868
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20805
|
-
children: loadingCircleStyle$
|
|
20869
|
+
children: loadingCircleStyle$5z
|
|
20806
20870
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20807
20871
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20808
20872
|
width: size,
|
|
@@ -20839,8 +20903,8 @@ Add3.defaultProps = {
|
|
|
20839
20903
|
size: '1em'
|
|
20840
20904
|
};
|
|
20841
20905
|
|
|
20842
|
-
var _excluded$
|
|
20843
|
-
var loadingCircleStyle$
|
|
20906
|
+
var _excluded$5A = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20907
|
+
var loadingCircleStyle$5A = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20844
20908
|
var Subtract3 = function Subtract3(props) {
|
|
20845
20909
|
var color = props.color,
|
|
20846
20910
|
size = props.size,
|
|
@@ -20849,12 +20913,12 @@ var Subtract3 = function Subtract3(props) {
|
|
|
20849
20913
|
className = props.className,
|
|
20850
20914
|
iconClassName = props.iconClassName,
|
|
20851
20915
|
testid = props.testid,
|
|
20852
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20916
|
+
otherProps = _objectWithoutProperties(props, _excluded$5A);
|
|
20853
20917
|
return /*#__PURE__*/React.createElement("span", {
|
|
20854
20918
|
role: "img",
|
|
20855
20919
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20856
20920
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20857
|
-
children: loadingCircleStyle$
|
|
20921
|
+
children: loadingCircleStyle$5A
|
|
20858
20922
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20859
20923
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20860
20924
|
width: size,
|
|
@@ -20893,8 +20957,8 @@ Subtract3.defaultProps = {
|
|
|
20893
20957
|
size: '1em'
|
|
20894
20958
|
};
|
|
20895
20959
|
|
|
20896
|
-
var _excluded$
|
|
20897
|
-
var loadingCircleStyle$
|
|
20960
|
+
var _excluded$5B = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20961
|
+
var loadingCircleStyle$5B = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20898
20962
|
var Add3Fill = function Add3Fill(props) {
|
|
20899
20963
|
var color = props.color,
|
|
20900
20964
|
size = props.size,
|
|
@@ -20903,12 +20967,12 @@ var Add3Fill = function Add3Fill(props) {
|
|
|
20903
20967
|
className = props.className,
|
|
20904
20968
|
iconClassName = props.iconClassName,
|
|
20905
20969
|
testid = props.testid,
|
|
20906
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20970
|
+
otherProps = _objectWithoutProperties(props, _excluded$5B);
|
|
20907
20971
|
return /*#__PURE__*/React.createElement("span", {
|
|
20908
20972
|
role: "img",
|
|
20909
20973
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20910
20974
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20911
|
-
children: loadingCircleStyle$
|
|
20975
|
+
children: loadingCircleStyle$5B
|
|
20912
20976
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20913
20977
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20914
20978
|
width: size,
|
|
@@ -20945,8 +21009,8 @@ Add3Fill.defaultProps = {
|
|
|
20945
21009
|
size: '1em'
|
|
20946
21010
|
};
|
|
20947
21011
|
|
|
20948
|
-
var _excluded$
|
|
20949
|
-
var loadingCircleStyle$
|
|
21012
|
+
var _excluded$5C = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21013
|
+
var loadingCircleStyle$5C = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20950
21014
|
var Subtract2 = function Subtract2(props) {
|
|
20951
21015
|
var color = props.color,
|
|
20952
21016
|
size = props.size,
|
|
@@ -20955,12 +21019,12 @@ var Subtract2 = function Subtract2(props) {
|
|
|
20955
21019
|
className = props.className,
|
|
20956
21020
|
iconClassName = props.iconClassName,
|
|
20957
21021
|
testid = props.testid,
|
|
20958
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21022
|
+
otherProps = _objectWithoutProperties(props, _excluded$5C);
|
|
20959
21023
|
return /*#__PURE__*/React.createElement("span", {
|
|
20960
21024
|
role: "img",
|
|
20961
21025
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20962
21026
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20963
|
-
children: loadingCircleStyle$
|
|
21027
|
+
children: loadingCircleStyle$5C
|
|
20964
21028
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20965
21029
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20966
21030
|
width: size,
|
|
@@ -21001,8 +21065,8 @@ Subtract2.defaultProps = {
|
|
|
21001
21065
|
size: '1em'
|
|
21002
21066
|
};
|
|
21003
21067
|
|
|
21004
|
-
var _excluded$
|
|
21005
|
-
var loadingCircleStyle$
|
|
21068
|
+
var _excluded$5D = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21069
|
+
var loadingCircleStyle$5D = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21006
21070
|
var Update = function Update(props) {
|
|
21007
21071
|
var color = props.color,
|
|
21008
21072
|
size = props.size,
|
|
@@ -21011,12 +21075,12 @@ var Update = function Update(props) {
|
|
|
21011
21075
|
className = props.className,
|
|
21012
21076
|
iconClassName = props.iconClassName,
|
|
21013
21077
|
testid = props.testid,
|
|
21014
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21078
|
+
otherProps = _objectWithoutProperties(props, _excluded$5D);
|
|
21015
21079
|
return /*#__PURE__*/React.createElement("span", {
|
|
21016
21080
|
role: "img",
|
|
21017
21081
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21018
21082
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21019
|
-
children: loadingCircleStyle$
|
|
21083
|
+
children: loadingCircleStyle$5D
|
|
21020
21084
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21021
21085
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21022
21086
|
width: size,
|
|
@@ -21053,8 +21117,8 @@ Update.defaultProps = {
|
|
|
21053
21117
|
size: '1em'
|
|
21054
21118
|
};
|
|
21055
21119
|
|
|
21056
|
-
var _excluded$
|
|
21057
|
-
var loadingCircleStyle$
|
|
21120
|
+
var _excluded$5E = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21121
|
+
var loadingCircleStyle$5E = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21058
21122
|
var Rename = function Rename(props) {
|
|
21059
21123
|
var color = props.color,
|
|
21060
21124
|
size = props.size,
|
|
@@ -21063,12 +21127,12 @@ var Rename = function Rename(props) {
|
|
|
21063
21127
|
className = props.className,
|
|
21064
21128
|
iconClassName = props.iconClassName,
|
|
21065
21129
|
testid = props.testid,
|
|
21066
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21130
|
+
otherProps = _objectWithoutProperties(props, _excluded$5E);
|
|
21067
21131
|
return /*#__PURE__*/React.createElement("span", {
|
|
21068
21132
|
role: "img",
|
|
21069
21133
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21070
21134
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21071
|
-
children: loadingCircleStyle$
|
|
21135
|
+
children: loadingCircleStyle$5E
|
|
21072
21136
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21073
21137
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21074
21138
|
width: size,
|
|
@@ -21107,8 +21171,8 @@ Rename.defaultProps = {
|
|
|
21107
21171
|
size: '1em'
|
|
21108
21172
|
};
|
|
21109
21173
|
|
|
21110
|
-
var _excluded$
|
|
21111
|
-
var loadingCircleStyle$
|
|
21174
|
+
var _excluded$5F = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21175
|
+
var loadingCircleStyle$5F = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21112
21176
|
var PlayCircle = function PlayCircle(props) {
|
|
21113
21177
|
var color = props.color,
|
|
21114
21178
|
size = props.size,
|
|
@@ -21117,12 +21181,12 @@ var PlayCircle = function PlayCircle(props) {
|
|
|
21117
21181
|
className = props.className,
|
|
21118
21182
|
iconClassName = props.iconClassName,
|
|
21119
21183
|
testid = props.testid,
|
|
21120
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21184
|
+
otherProps = _objectWithoutProperties(props, _excluded$5F);
|
|
21121
21185
|
return /*#__PURE__*/React.createElement("span", {
|
|
21122
21186
|
role: "img",
|
|
21123
21187
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21124
21188
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21125
|
-
children: loadingCircleStyle$
|
|
21189
|
+
children: loadingCircleStyle$5F
|
|
21126
21190
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21127
21191
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21128
21192
|
width: size,
|
|
@@ -21159,8 +21223,8 @@ PlayCircle.defaultProps = {
|
|
|
21159
21223
|
size: '1em'
|
|
21160
21224
|
};
|
|
21161
21225
|
|
|
21162
|
-
var _excluded$
|
|
21163
|
-
var loadingCircleStyle$
|
|
21226
|
+
var _excluded$5G = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21227
|
+
var loadingCircleStyle$5G = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21164
21228
|
var PauseCircle = function PauseCircle(props) {
|
|
21165
21229
|
var color = props.color,
|
|
21166
21230
|
size = props.size,
|
|
@@ -21169,12 +21233,12 @@ var PauseCircle = function PauseCircle(props) {
|
|
|
21169
21233
|
className = props.className,
|
|
21170
21234
|
iconClassName = props.iconClassName,
|
|
21171
21235
|
testid = props.testid,
|
|
21172
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21236
|
+
otherProps = _objectWithoutProperties(props, _excluded$5G);
|
|
21173
21237
|
return /*#__PURE__*/React.createElement("span", {
|
|
21174
21238
|
role: "img",
|
|
21175
21239
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21176
21240
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21177
|
-
children: loadingCircleStyle$
|
|
21241
|
+
children: loadingCircleStyle$5G
|
|
21178
21242
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21179
21243
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21180
21244
|
width: size,
|
|
@@ -21211,8 +21275,8 @@ PauseCircle.defaultProps = {
|
|
|
21211
21275
|
size: '1em'
|
|
21212
21276
|
};
|
|
21213
21277
|
|
|
21214
|
-
var _excluded$
|
|
21215
|
-
var loadingCircleStyle$
|
|
21278
|
+
var _excluded$5H = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21279
|
+
var loadingCircleStyle$5H = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21216
21280
|
var UpdateData = function UpdateData(props) {
|
|
21217
21281
|
var color = props.color,
|
|
21218
21282
|
size = props.size,
|
|
@@ -21221,12 +21285,12 @@ var UpdateData = function UpdateData(props) {
|
|
|
21221
21285
|
className = props.className,
|
|
21222
21286
|
iconClassName = props.iconClassName,
|
|
21223
21287
|
testid = props.testid,
|
|
21224
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21288
|
+
otherProps = _objectWithoutProperties(props, _excluded$5H);
|
|
21225
21289
|
return /*#__PURE__*/React.createElement("span", {
|
|
21226
21290
|
role: "img",
|
|
21227
21291
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21228
21292
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21229
|
-
children: loadingCircleStyle$
|
|
21293
|
+
children: loadingCircleStyle$5H
|
|
21230
21294
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21231
21295
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21232
21296
|
width: size,
|
|
@@ -21267,8 +21331,8 @@ UpdateData.defaultProps = {
|
|
|
21267
21331
|
size: '1em'
|
|
21268
21332
|
};
|
|
21269
21333
|
|
|
21270
|
-
var _excluded$
|
|
21271
|
-
var loadingCircleStyle$
|
|
21334
|
+
var _excluded$5I = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21335
|
+
var loadingCircleStyle$5I = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21272
21336
|
var Upload = function Upload(props) {
|
|
21273
21337
|
var color = props.color,
|
|
21274
21338
|
size = props.size,
|
|
@@ -21277,12 +21341,12 @@ var Upload = function Upload(props) {
|
|
|
21277
21341
|
className = props.className,
|
|
21278
21342
|
iconClassName = props.iconClassName,
|
|
21279
21343
|
testid = props.testid,
|
|
21280
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21344
|
+
otherProps = _objectWithoutProperties(props, _excluded$5I);
|
|
21281
21345
|
return /*#__PURE__*/React.createElement("span", {
|
|
21282
21346
|
role: "img",
|
|
21283
21347
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21284
21348
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21285
|
-
children: loadingCircleStyle$
|
|
21349
|
+
children: loadingCircleStyle$5I
|
|
21286
21350
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21287
21351
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21288
21352
|
width: size,
|
|
@@ -21321,8 +21385,8 @@ Upload.defaultProps = {
|
|
|
21321
21385
|
size: '1em'
|
|
21322
21386
|
};
|
|
21323
21387
|
|
|
21324
|
-
var _excluded$
|
|
21325
|
-
var loadingCircleStyle$
|
|
21388
|
+
var _excluded$5J = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21389
|
+
var loadingCircleStyle$5J = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21326
21390
|
var Click = function Click(props) {
|
|
21327
21391
|
var color = props.color,
|
|
21328
21392
|
size = props.size,
|
|
@@ -21331,12 +21395,12 @@ var Click = function Click(props) {
|
|
|
21331
21395
|
className = props.className,
|
|
21332
21396
|
iconClassName = props.iconClassName,
|
|
21333
21397
|
testid = props.testid,
|
|
21334
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21398
|
+
otherProps = _objectWithoutProperties(props, _excluded$5J);
|
|
21335
21399
|
return /*#__PURE__*/React.createElement("span", {
|
|
21336
21400
|
role: "img",
|
|
21337
21401
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21338
21402
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21339
|
-
children: loadingCircleStyle$
|
|
21403
|
+
children: loadingCircleStyle$5J
|
|
21340
21404
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21341
21405
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21342
21406
|
width: size,
|
|
@@ -21373,8 +21437,8 @@ Click.defaultProps = {
|
|
|
21373
21437
|
size: '1em'
|
|
21374
21438
|
};
|
|
21375
21439
|
|
|
21376
|
-
var _excluded$
|
|
21377
|
-
var loadingCircleStyle$
|
|
21440
|
+
var _excluded$5K = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21441
|
+
var loadingCircleStyle$5K = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21378
21442
|
var Install = function Install(props) {
|
|
21379
21443
|
var color = props.color,
|
|
21380
21444
|
size = props.size,
|
|
@@ -21383,12 +21447,12 @@ var Install = function Install(props) {
|
|
|
21383
21447
|
className = props.className,
|
|
21384
21448
|
iconClassName = props.iconClassName,
|
|
21385
21449
|
testid = props.testid,
|
|
21386
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21450
|
+
otherProps = _objectWithoutProperties(props, _excluded$5K);
|
|
21387
21451
|
return /*#__PURE__*/React.createElement("span", {
|
|
21388
21452
|
role: "img",
|
|
21389
21453
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21390
21454
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21391
|
-
children: loadingCircleStyle$
|
|
21455
|
+
children: loadingCircleStyle$5K
|
|
21392
21456
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21393
21457
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21394
21458
|
width: size,
|
|
@@ -21425,8 +21489,8 @@ Install.defaultProps = {
|
|
|
21425
21489
|
size: '1em'
|
|
21426
21490
|
};
|
|
21427
21491
|
|
|
21428
|
-
var _excluded$
|
|
21429
|
-
var loadingCircleStyle$
|
|
21492
|
+
var _excluded$5L = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21493
|
+
var loadingCircleStyle$5L = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21430
21494
|
var Expand = function Expand(props) {
|
|
21431
21495
|
var color = props.color,
|
|
21432
21496
|
size = props.size,
|
|
@@ -21435,12 +21499,12 @@ var Expand = function Expand(props) {
|
|
|
21435
21499
|
className = props.className,
|
|
21436
21500
|
iconClassName = props.iconClassName,
|
|
21437
21501
|
testid = props.testid,
|
|
21438
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21502
|
+
otherProps = _objectWithoutProperties(props, _excluded$5L);
|
|
21439
21503
|
return /*#__PURE__*/React.createElement("span", {
|
|
21440
21504
|
role: "img",
|
|
21441
21505
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21442
21506
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21443
|
-
children: loadingCircleStyle$
|
|
21507
|
+
children: loadingCircleStyle$5L
|
|
21444
21508
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21445
21509
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21446
21510
|
width: size,
|
|
@@ -21479,8 +21543,8 @@ Expand.defaultProps = {
|
|
|
21479
21543
|
size: '1em'
|
|
21480
21544
|
};
|
|
21481
21545
|
|
|
21482
|
-
var _excluded$
|
|
21483
|
-
var loadingCircleStyle$
|
|
21546
|
+
var _excluded$5M = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21547
|
+
var loadingCircleStyle$5M = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21484
21548
|
var Pinch = function Pinch(props) {
|
|
21485
21549
|
var color = props.color,
|
|
21486
21550
|
size = props.size,
|
|
@@ -21489,12 +21553,12 @@ var Pinch = function Pinch(props) {
|
|
|
21489
21553
|
className = props.className,
|
|
21490
21554
|
iconClassName = props.iconClassName,
|
|
21491
21555
|
testid = props.testid,
|
|
21492
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21556
|
+
otherProps = _objectWithoutProperties(props, _excluded$5M);
|
|
21493
21557
|
return /*#__PURE__*/React.createElement("span", {
|
|
21494
21558
|
role: "img",
|
|
21495
21559
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21496
21560
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21497
|
-
children: loadingCircleStyle$
|
|
21561
|
+
children: loadingCircleStyle$5M
|
|
21498
21562
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21499
21563
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21500
21564
|
width: size,
|
|
@@ -21533,8 +21597,8 @@ Pinch.defaultProps = {
|
|
|
21533
21597
|
size: '1em'
|
|
21534
21598
|
};
|
|
21535
21599
|
|
|
21536
|
-
var _excluded$
|
|
21537
|
-
var loadingCircleStyle$
|
|
21600
|
+
var _excluded$5N = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21601
|
+
var loadingCircleStyle$5N = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21538
21602
|
var NewIndicator = function NewIndicator(props) {
|
|
21539
21603
|
var color = props.color,
|
|
21540
21604
|
size = props.size,
|
|
@@ -21543,12 +21607,12 @@ var NewIndicator = function NewIndicator(props) {
|
|
|
21543
21607
|
className = props.className,
|
|
21544
21608
|
iconClassName = props.iconClassName,
|
|
21545
21609
|
testid = props.testid,
|
|
21546
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21610
|
+
otherProps = _objectWithoutProperties(props, _excluded$5N);
|
|
21547
21611
|
return /*#__PURE__*/React.createElement("span", {
|
|
21548
21612
|
role: "img",
|
|
21549
21613
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21550
21614
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21551
|
-
children: loadingCircleStyle$
|
|
21615
|
+
children: loadingCircleStyle$5N
|
|
21552
21616
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21553
21617
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21554
21618
|
width: size,
|
|
@@ -21587,8 +21651,8 @@ NewIndicator.defaultProps = {
|
|
|
21587
21651
|
size: '1em'
|
|
21588
21652
|
};
|
|
21589
21653
|
|
|
21590
|
-
var _excluded$
|
|
21591
|
-
var loadingCircleStyle$
|
|
21654
|
+
var _excluded$5O = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21655
|
+
var loadingCircleStyle$5O = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21592
21656
|
var BoxOpen = function BoxOpen(props) {
|
|
21593
21657
|
var color = props.color,
|
|
21594
21658
|
size = props.size,
|
|
@@ -21597,12 +21661,12 @@ var BoxOpen = function BoxOpen(props) {
|
|
|
21597
21661
|
className = props.className,
|
|
21598
21662
|
iconClassName = props.iconClassName,
|
|
21599
21663
|
testid = props.testid,
|
|
21600
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21664
|
+
otherProps = _objectWithoutProperties(props, _excluded$5O);
|
|
21601
21665
|
return /*#__PURE__*/React.createElement("span", {
|
|
21602
21666
|
role: "img",
|
|
21603
21667
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21604
21668
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21605
|
-
children: loadingCircleStyle$
|
|
21669
|
+
children: loadingCircleStyle$5O
|
|
21606
21670
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21607
21671
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21608
21672
|
width: size,
|
|
@@ -21641,8 +21705,8 @@ BoxOpen.defaultProps = {
|
|
|
21641
21705
|
size: '1em'
|
|
21642
21706
|
};
|
|
21643
21707
|
|
|
21644
|
-
var _excluded$
|
|
21645
|
-
var loadingCircleStyle$
|
|
21708
|
+
var _excluded$5P = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21709
|
+
var loadingCircleStyle$5P = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21646
21710
|
var Interval = function Interval(props) {
|
|
21647
21711
|
var color = props.color,
|
|
21648
21712
|
size = props.size,
|
|
@@ -21651,12 +21715,12 @@ var Interval = function Interval(props) {
|
|
|
21651
21715
|
className = props.className,
|
|
21652
21716
|
iconClassName = props.iconClassName,
|
|
21653
21717
|
testid = props.testid,
|
|
21654
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21718
|
+
otherProps = _objectWithoutProperties(props, _excluded$5P);
|
|
21655
21719
|
return /*#__PURE__*/React.createElement("span", {
|
|
21656
21720
|
role: "img",
|
|
21657
21721
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21658
21722
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21659
|
-
children: loadingCircleStyle$
|
|
21723
|
+
children: loadingCircleStyle$5P
|
|
21660
21724
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21661
21725
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21662
21726
|
width: size,
|
|
@@ -21701,8 +21765,8 @@ Interval.defaultProps = {
|
|
|
21701
21765
|
size: '1em'
|
|
21702
21766
|
};
|
|
21703
21767
|
|
|
21704
|
-
var _excluded$
|
|
21705
|
-
var loadingCircleStyle$
|
|
21768
|
+
var _excluded$5Q = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21769
|
+
var loadingCircleStyle$5Q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21706
21770
|
var Revert = function Revert(props) {
|
|
21707
21771
|
var color = props.color,
|
|
21708
21772
|
size = props.size,
|
|
@@ -21711,12 +21775,12 @@ var Revert = function Revert(props) {
|
|
|
21711
21775
|
className = props.className,
|
|
21712
21776
|
iconClassName = props.iconClassName,
|
|
21713
21777
|
testid = props.testid,
|
|
21714
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21778
|
+
otherProps = _objectWithoutProperties(props, _excluded$5Q);
|
|
21715
21779
|
return /*#__PURE__*/React.createElement("span", {
|
|
21716
21780
|
role: "img",
|
|
21717
21781
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21718
21782
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21719
|
-
children: loadingCircleStyle$
|
|
21783
|
+
children: loadingCircleStyle$5Q
|
|
21720
21784
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21721
21785
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21722
21786
|
width: size,
|
|
@@ -21753,8 +21817,8 @@ Revert.defaultProps = {
|
|
|
21753
21817
|
size: '1em'
|
|
21754
21818
|
};
|
|
21755
21819
|
|
|
21756
|
-
var _excluded$
|
|
21757
|
-
var loadingCircleStyle$
|
|
21820
|
+
var _excluded$5R = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21821
|
+
var loadingCircleStyle$5R = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21758
21822
|
var Insert = function Insert(props) {
|
|
21759
21823
|
var color = props.color,
|
|
21760
21824
|
size = props.size,
|
|
@@ -21763,12 +21827,12 @@ var Insert = function Insert(props) {
|
|
|
21763
21827
|
className = props.className,
|
|
21764
21828
|
iconClassName = props.iconClassName,
|
|
21765
21829
|
testid = props.testid,
|
|
21766
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21830
|
+
otherProps = _objectWithoutProperties(props, _excluded$5R);
|
|
21767
21831
|
return /*#__PURE__*/React.createElement("span", {
|
|
21768
21832
|
role: "img",
|
|
21769
21833
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21770
21834
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21771
|
-
children: loadingCircleStyle$
|
|
21835
|
+
children: loadingCircleStyle$5R
|
|
21772
21836
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21773
21837
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21774
21838
|
width: size,
|
|
@@ -21807,8 +21871,8 @@ Insert.defaultProps = {
|
|
|
21807
21871
|
size: '1em'
|
|
21808
21872
|
};
|
|
21809
21873
|
|
|
21810
|
-
var _excluded$
|
|
21811
|
-
var loadingCircleStyle$
|
|
21874
|
+
var _excluded$5S = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21875
|
+
var loadingCircleStyle$5S = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21812
21876
|
var Disable = function Disable(props) {
|
|
21813
21877
|
var color = props.color,
|
|
21814
21878
|
size = props.size,
|
|
@@ -21817,12 +21881,12 @@ var Disable = function Disable(props) {
|
|
|
21817
21881
|
className = props.className,
|
|
21818
21882
|
iconClassName = props.iconClassName,
|
|
21819
21883
|
testid = props.testid,
|
|
21820
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21884
|
+
otherProps = _objectWithoutProperties(props, _excluded$5S);
|
|
21821
21885
|
return /*#__PURE__*/React.createElement("span", {
|
|
21822
21886
|
role: "img",
|
|
21823
21887
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21824
21888
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21825
|
-
children: loadingCircleStyle$
|
|
21889
|
+
children: loadingCircleStyle$5S
|
|
21826
21890
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21827
21891
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21828
21892
|
width: size,
|
|
@@ -21861,8 +21925,8 @@ Disable.defaultProps = {
|
|
|
21861
21925
|
size: '1em'
|
|
21862
21926
|
};
|
|
21863
21927
|
|
|
21864
|
-
var _excluded$
|
|
21865
|
-
var loadingCircleStyle$
|
|
21928
|
+
var _excluded$5T = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21929
|
+
var loadingCircleStyle$5T = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21866
21930
|
var Branch = function Branch(props) {
|
|
21867
21931
|
var color = props.color,
|
|
21868
21932
|
size = props.size,
|
|
@@ -21871,12 +21935,12 @@ var Branch = function Branch(props) {
|
|
|
21871
21935
|
className = props.className,
|
|
21872
21936
|
iconClassName = props.iconClassName,
|
|
21873
21937
|
testid = props.testid,
|
|
21874
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21938
|
+
otherProps = _objectWithoutProperties(props, _excluded$5T);
|
|
21875
21939
|
return /*#__PURE__*/React.createElement("span", {
|
|
21876
21940
|
role: "img",
|
|
21877
21941
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21878
21942
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21879
|
-
children: loadingCircleStyle$
|
|
21943
|
+
children: loadingCircleStyle$5T
|
|
21880
21944
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21881
21945
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21882
21946
|
width: size,
|
|
@@ -21913,8 +21977,8 @@ Branch.defaultProps = {
|
|
|
21913
21977
|
size: '1em'
|
|
21914
21978
|
};
|
|
21915
21979
|
|
|
21916
|
-
var _excluded$
|
|
21917
|
-
var loadingCircleStyle$
|
|
21980
|
+
var _excluded$5U = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21981
|
+
var loadingCircleStyle$5U = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21918
21982
|
var Validate = function Validate(props) {
|
|
21919
21983
|
var color = props.color,
|
|
21920
21984
|
size = props.size,
|
|
@@ -21923,12 +21987,12 @@ var Validate = function Validate(props) {
|
|
|
21923
21987
|
className = props.className,
|
|
21924
21988
|
iconClassName = props.iconClassName,
|
|
21925
21989
|
testid = props.testid,
|
|
21926
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21990
|
+
otherProps = _objectWithoutProperties(props, _excluded$5U);
|
|
21927
21991
|
return /*#__PURE__*/React.createElement("span", {
|
|
21928
21992
|
role: "img",
|
|
21929
21993
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21930
21994
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21931
|
-
children: loadingCircleStyle$
|
|
21995
|
+
children: loadingCircleStyle$5U
|
|
21932
21996
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21933
21997
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21934
21998
|
width: size,
|
|
@@ -21969,8 +22033,8 @@ Validate.defaultProps = {
|
|
|
21969
22033
|
size: '1em'
|
|
21970
22034
|
};
|
|
21971
22035
|
|
|
21972
|
-
var _excluded$
|
|
21973
|
-
var loadingCircleStyle$
|
|
22036
|
+
var _excluded$5V = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22037
|
+
var loadingCircleStyle$5V = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21974
22038
|
var MagicWand = function MagicWand(props) {
|
|
21975
22039
|
var color = props.color,
|
|
21976
22040
|
size = props.size,
|
|
@@ -21979,12 +22043,12 @@ var MagicWand = function MagicWand(props) {
|
|
|
21979
22043
|
className = props.className,
|
|
21980
22044
|
iconClassName = props.iconClassName,
|
|
21981
22045
|
testid = props.testid,
|
|
21982
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22046
|
+
otherProps = _objectWithoutProperties(props, _excluded$5V);
|
|
21983
22047
|
return /*#__PURE__*/React.createElement("span", {
|
|
21984
22048
|
role: "img",
|
|
21985
22049
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21986
22050
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21987
|
-
children: loadingCircleStyle$
|
|
22051
|
+
children: loadingCircleStyle$5V
|
|
21988
22052
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21989
22053
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21990
22054
|
width: size,
|
|
@@ -22021,8 +22085,8 @@ MagicWand.defaultProps = {
|
|
|
22021
22085
|
size: '1em'
|
|
22022
22086
|
};
|
|
22023
22087
|
|
|
22024
|
-
var _excluded$
|
|
22025
|
-
var loadingCircleStyle$
|
|
22088
|
+
var _excluded$5W = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22089
|
+
var loadingCircleStyle$5W = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22026
22090
|
var SystemBuild = function SystemBuild(props) {
|
|
22027
22091
|
var color = props.color,
|
|
22028
22092
|
size = props.size,
|
|
@@ -22031,12 +22095,12 @@ var SystemBuild = function SystemBuild(props) {
|
|
|
22031
22095
|
className = props.className,
|
|
22032
22096
|
iconClassName = props.iconClassName,
|
|
22033
22097
|
testid = props.testid,
|
|
22034
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22098
|
+
otherProps = _objectWithoutProperties(props, _excluded$5W);
|
|
22035
22099
|
return /*#__PURE__*/React.createElement("span", {
|
|
22036
22100
|
role: "img",
|
|
22037
22101
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22038
22102
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22039
|
-
children: loadingCircleStyle$
|
|
22103
|
+
children: loadingCircleStyle$5W
|
|
22040
22104
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22041
22105
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22042
22106
|
width: size,
|
|
@@ -22077,8 +22141,8 @@ SystemBuild.defaultProps = {
|
|
|
22077
22141
|
size: '1em'
|
|
22078
22142
|
};
|
|
22079
22143
|
|
|
22080
|
-
var _excluded$
|
|
22081
|
-
var loadingCircleStyle$
|
|
22144
|
+
var _excluded$5X = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22145
|
+
var loadingCircleStyle$5X = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22082
22146
|
var AddToPage = function AddToPage(props) {
|
|
22083
22147
|
var color = props.color,
|
|
22084
22148
|
size = props.size,
|
|
@@ -22087,12 +22151,12 @@ var AddToPage = function AddToPage(props) {
|
|
|
22087
22151
|
className = props.className,
|
|
22088
22152
|
iconClassName = props.iconClassName,
|
|
22089
22153
|
testid = props.testid,
|
|
22090
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22154
|
+
otherProps = _objectWithoutProperties(props, _excluded$5X);
|
|
22091
22155
|
return /*#__PURE__*/React.createElement("span", {
|
|
22092
22156
|
role: "img",
|
|
22093
22157
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22094
22158
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22095
|
-
children: loadingCircleStyle$
|
|
22159
|
+
children: loadingCircleStyle$5X
|
|
22096
22160
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22097
22161
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22098
22162
|
width: size,
|
|
@@ -22131,8 +22195,8 @@ AddToPage.defaultProps = {
|
|
|
22131
22195
|
size: '1em'
|
|
22132
22196
|
};
|
|
22133
22197
|
|
|
22134
|
-
var _excluded$
|
|
22135
|
-
var loadingCircleStyle$
|
|
22198
|
+
var _excluded$5Y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22199
|
+
var loadingCircleStyle$5Y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22136
22200
|
var FullDownload = function FullDownload(props) {
|
|
22137
22201
|
var color = props.color,
|
|
22138
22202
|
size = props.size,
|
|
@@ -22141,12 +22205,12 @@ var FullDownload = function FullDownload(props) {
|
|
|
22141
22205
|
className = props.className,
|
|
22142
22206
|
iconClassName = props.iconClassName,
|
|
22143
22207
|
testid = props.testid,
|
|
22144
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22208
|
+
otherProps = _objectWithoutProperties(props, _excluded$5Y);
|
|
22145
22209
|
return /*#__PURE__*/React.createElement("span", {
|
|
22146
22210
|
role: "img",
|
|
22147
22211
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22148
22212
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22149
|
-
children: loadingCircleStyle$
|
|
22213
|
+
children: loadingCircleStyle$5Y
|
|
22150
22214
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22151
22215
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22152
22216
|
width: size,
|
|
@@ -22185,8 +22249,8 @@ FullDownload.defaultProps = {
|
|
|
22185
22249
|
size: '1em'
|
|
22186
22250
|
};
|
|
22187
22251
|
|
|
22188
|
-
var _excluded$
|
|
22189
|
-
var loadingCircleStyle$
|
|
22252
|
+
var _excluded$5Z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22253
|
+
var loadingCircleStyle$5Z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22190
22254
|
var Download = function Download(props) {
|
|
22191
22255
|
var color = props.color,
|
|
22192
22256
|
size = props.size,
|
|
@@ -22195,12 +22259,12 @@ var Download = function Download(props) {
|
|
|
22195
22259
|
className = props.className,
|
|
22196
22260
|
iconClassName = props.iconClassName,
|
|
22197
22261
|
testid = props.testid,
|
|
22198
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22262
|
+
otherProps = _objectWithoutProperties(props, _excluded$5Z);
|
|
22199
22263
|
return /*#__PURE__*/React.createElement("span", {
|
|
22200
22264
|
role: "img",
|
|
22201
22265
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22202
22266
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22203
|
-
children: loadingCircleStyle$
|
|
22267
|
+
children: loadingCircleStyle$5Z
|
|
22204
22268
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22205
22269
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22206
22270
|
width: size,
|
|
@@ -22237,8 +22301,8 @@ Download.defaultProps = {
|
|
|
22237
22301
|
size: '1em'
|
|
22238
22302
|
};
|
|
22239
22303
|
|
|
22240
|
-
var _excluded$
|
|
22241
|
-
var loadingCircleStyle$
|
|
22304
|
+
var _excluded$5_ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22305
|
+
var loadingCircleStyle$5_ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22242
22306
|
var EventModify = function EventModify(props) {
|
|
22243
22307
|
var color = props.color,
|
|
22244
22308
|
size = props.size,
|
|
@@ -22247,12 +22311,12 @@ var EventModify = function EventModify(props) {
|
|
|
22247
22311
|
className = props.className,
|
|
22248
22312
|
iconClassName = props.iconClassName,
|
|
22249
22313
|
testid = props.testid,
|
|
22250
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22314
|
+
otherProps = _objectWithoutProperties(props, _excluded$5_);
|
|
22251
22315
|
return /*#__PURE__*/React.createElement("span", {
|
|
22252
22316
|
role: "img",
|
|
22253
22317
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22254
22318
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22255
|
-
children: loadingCircleStyle$
|
|
22319
|
+
children: loadingCircleStyle$5_
|
|
22256
22320
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22257
22321
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22258
22322
|
width: size,
|
|
@@ -22289,8 +22353,8 @@ EventModify.defaultProps = {
|
|
|
22289
22353
|
size: '1em'
|
|
22290
22354
|
};
|
|
22291
22355
|
|
|
22292
|
-
var _excluded$
|
|
22293
|
-
var loadingCircleStyle$
|
|
22356
|
+
var _excluded$5$ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22357
|
+
var loadingCircleStyle$5$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22294
22358
|
var Pin = function Pin(props) {
|
|
22295
22359
|
var color = props.color,
|
|
22296
22360
|
size = props.size,
|
|
@@ -22299,12 +22363,12 @@ var Pin = function Pin(props) {
|
|
|
22299
22363
|
className = props.className,
|
|
22300
22364
|
iconClassName = props.iconClassName,
|
|
22301
22365
|
testid = props.testid,
|
|
22302
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22366
|
+
otherProps = _objectWithoutProperties(props, _excluded$5$);
|
|
22303
22367
|
return /*#__PURE__*/React.createElement("span", {
|
|
22304
22368
|
role: "img",
|
|
22305
22369
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22306
22370
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22307
|
-
children: loadingCircleStyle$
|
|
22371
|
+
children: loadingCircleStyle$5$
|
|
22308
22372
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22309
22373
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22310
22374
|
width: size,
|
|
@@ -22341,8 +22405,8 @@ Pin.defaultProps = {
|
|
|
22341
22405
|
size: '1em'
|
|
22342
22406
|
};
|
|
22343
22407
|
|
|
22344
|
-
var _excluded$
|
|
22345
|
-
var loadingCircleStyle$
|
|
22408
|
+
var _excluded$60 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22409
|
+
var loadingCircleStyle$60 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22346
22410
|
var PinUnsave = function PinUnsave(props) {
|
|
22347
22411
|
var color = props.color,
|
|
22348
22412
|
size = props.size,
|
|
@@ -22351,12 +22415,12 @@ var PinUnsave = function PinUnsave(props) {
|
|
|
22351
22415
|
className = props.className,
|
|
22352
22416
|
iconClassName = props.iconClassName,
|
|
22353
22417
|
testid = props.testid,
|
|
22354
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22418
|
+
otherProps = _objectWithoutProperties(props, _excluded$60);
|
|
22355
22419
|
return /*#__PURE__*/React.createElement("span", {
|
|
22356
22420
|
role: "img",
|
|
22357
22421
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22358
22422
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22359
|
-
children: loadingCircleStyle$
|
|
22423
|
+
children: loadingCircleStyle$60
|
|
22360
22424
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22361
22425
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22362
22426
|
width: size,
|
|
@@ -22395,8 +22459,8 @@ PinUnsave.defaultProps = {
|
|
|
22395
22459
|
size: '1em'
|
|
22396
22460
|
};
|
|
22397
22461
|
|
|
22398
|
-
var _excluded$
|
|
22399
|
-
var loadingCircleStyle$
|
|
22462
|
+
var _excluded$61 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22463
|
+
var loadingCircleStyle$61 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22400
22464
|
var Unpin = function Unpin(props) {
|
|
22401
22465
|
var color = props.color,
|
|
22402
22466
|
size = props.size,
|
|
@@ -22405,12 +22469,12 @@ var Unpin = function Unpin(props) {
|
|
|
22405
22469
|
className = props.className,
|
|
22406
22470
|
iconClassName = props.iconClassName,
|
|
22407
22471
|
testid = props.testid,
|
|
22408
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22472
|
+
otherProps = _objectWithoutProperties(props, _excluded$61);
|
|
22409
22473
|
return /*#__PURE__*/React.createElement("span", {
|
|
22410
22474
|
role: "img",
|
|
22411
22475
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22412
22476
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22413
|
-
children: loadingCircleStyle$
|
|
22477
|
+
children: loadingCircleStyle$61
|
|
22414
22478
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22415
22479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22416
22480
|
width: size,
|
|
@@ -22451,8 +22515,8 @@ Unpin.defaultProps = {
|
|
|
22451
22515
|
size: '1em'
|
|
22452
22516
|
};
|
|
22453
22517
|
|
|
22454
|
-
var _excluded$
|
|
22455
|
-
var loadingCircleStyle$
|
|
22518
|
+
var _excluded$62 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22519
|
+
var loadingCircleStyle$62 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22456
22520
|
var Unsave = function Unsave(props) {
|
|
22457
22521
|
var color = props.color,
|
|
22458
22522
|
size = props.size,
|
|
@@ -22461,12 +22525,12 @@ var Unsave = function Unsave(props) {
|
|
|
22461
22525
|
className = props.className,
|
|
22462
22526
|
iconClassName = props.iconClassName,
|
|
22463
22527
|
testid = props.testid,
|
|
22464
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22528
|
+
otherProps = _objectWithoutProperties(props, _excluded$62);
|
|
22465
22529
|
return /*#__PURE__*/React.createElement("span", {
|
|
22466
22530
|
role: "img",
|
|
22467
22531
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22468
22532
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22469
|
-
children: loadingCircleStyle$
|
|
22533
|
+
children: loadingCircleStyle$62
|
|
22470
22534
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22471
22535
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22472
22536
|
width: size,
|
|
@@ -22505,8 +22569,8 @@ Unsave.defaultProps = {
|
|
|
22505
22569
|
size: '1em'
|
|
22506
22570
|
};
|
|
22507
22571
|
|
|
22508
|
-
var _excluded$
|
|
22509
|
-
var loadingCircleStyle$
|
|
22572
|
+
var _excluded$63 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22573
|
+
var loadingCircleStyle$63 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22510
22574
|
var Sticky = function Sticky(props) {
|
|
22511
22575
|
var color = props.color,
|
|
22512
22576
|
size = props.size,
|
|
@@ -22515,12 +22579,12 @@ var Sticky = function Sticky(props) {
|
|
|
22515
22579
|
className = props.className,
|
|
22516
22580
|
iconClassName = props.iconClassName,
|
|
22517
22581
|
testid = props.testid,
|
|
22518
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22582
|
+
otherProps = _objectWithoutProperties(props, _excluded$63);
|
|
22519
22583
|
return /*#__PURE__*/React.createElement("span", {
|
|
22520
22584
|
role: "img",
|
|
22521
22585
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22522
22586
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22523
|
-
children: loadingCircleStyle$
|
|
22587
|
+
children: loadingCircleStyle$63
|
|
22524
22588
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22525
22589
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22526
22590
|
width: size,
|
|
@@ -22557,8 +22621,8 @@ Sticky.defaultProps = {
|
|
|
22557
22621
|
size: '1em'
|
|
22558
22622
|
};
|
|
22559
22623
|
|
|
22560
|
-
var _excluded$
|
|
22561
|
-
var loadingCircleStyle$
|
|
22624
|
+
var _excluded$64 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22625
|
+
var loadingCircleStyle$64 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22562
22626
|
var Online = function Online(props) {
|
|
22563
22627
|
var color = props.color,
|
|
22564
22628
|
size = props.size,
|
|
@@ -22567,12 +22631,12 @@ var Online = function Online(props) {
|
|
|
22567
22631
|
className = props.className,
|
|
22568
22632
|
iconClassName = props.iconClassName,
|
|
22569
22633
|
testid = props.testid,
|
|
22570
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22634
|
+
otherProps = _objectWithoutProperties(props, _excluded$64);
|
|
22571
22635
|
return /*#__PURE__*/React.createElement("span", {
|
|
22572
22636
|
role: "img",
|
|
22573
22637
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22574
22638
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22575
|
-
children: loadingCircleStyle$
|
|
22639
|
+
children: loadingCircleStyle$64
|
|
22576
22640
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22577
22641
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22578
22642
|
width: size,
|
|
@@ -22609,8 +22673,8 @@ Online.defaultProps = {
|
|
|
22609
22673
|
size: '1em'
|
|
22610
22674
|
};
|
|
22611
22675
|
|
|
22612
|
-
var _excluded$
|
|
22613
|
-
var loadingCircleStyle$
|
|
22676
|
+
var _excluded$65 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22677
|
+
var loadingCircleStyle$65 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22614
22678
|
var Offline = function Offline(props) {
|
|
22615
22679
|
var color = props.color,
|
|
22616
22680
|
size = props.size,
|
|
@@ -22619,12 +22683,12 @@ var Offline = function Offline(props) {
|
|
|
22619
22683
|
className = props.className,
|
|
22620
22684
|
iconClassName = props.iconClassName,
|
|
22621
22685
|
testid = props.testid,
|
|
22622
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22686
|
+
otherProps = _objectWithoutProperties(props, _excluded$65);
|
|
22623
22687
|
return /*#__PURE__*/React.createElement("span", {
|
|
22624
22688
|
role: "img",
|
|
22625
22689
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22626
22690
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22627
|
-
children: loadingCircleStyle$
|
|
22691
|
+
children: loadingCircleStyle$65
|
|
22628
22692
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22629
22693
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22630
22694
|
width: size,
|
|
@@ -22661,8 +22725,8 @@ Offline.defaultProps = {
|
|
|
22661
22725
|
size: '1em'
|
|
22662
22726
|
};
|
|
22663
22727
|
|
|
22664
|
-
var _excluded$
|
|
22665
|
-
var loadingCircleStyle$
|
|
22728
|
+
var _excluded$66 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22729
|
+
var loadingCircleStyle$66 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22666
22730
|
var StopCircle = function StopCircle(props) {
|
|
22667
22731
|
var color = props.color,
|
|
22668
22732
|
size = props.size,
|
|
@@ -22671,12 +22735,12 @@ var StopCircle = function StopCircle(props) {
|
|
|
22671
22735
|
className = props.className,
|
|
22672
22736
|
iconClassName = props.iconClassName,
|
|
22673
22737
|
testid = props.testid,
|
|
22674
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22738
|
+
otherProps = _objectWithoutProperties(props, _excluded$66);
|
|
22675
22739
|
return /*#__PURE__*/React.createElement("span", {
|
|
22676
22740
|
role: "img",
|
|
22677
22741
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22678
22742
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22679
|
-
children: loadingCircleStyle$
|
|
22743
|
+
children: loadingCircleStyle$66
|
|
22680
22744
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22681
22745
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22682
22746
|
width: size,
|
|
@@ -22713,8 +22777,8 @@ StopCircle.defaultProps = {
|
|
|
22713
22777
|
size: '1em'
|
|
22714
22778
|
};
|
|
22715
22779
|
|
|
22716
|
-
var _excluded$
|
|
22717
|
-
var loadingCircleStyle$
|
|
22780
|
+
var _excluded$67 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22781
|
+
var loadingCircleStyle$67 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22718
22782
|
var Find = function Find(props) {
|
|
22719
22783
|
var color = props.color,
|
|
22720
22784
|
size = props.size,
|
|
@@ -22723,12 +22787,12 @@ var Find = function Find(props) {
|
|
|
22723
22787
|
className = props.className,
|
|
22724
22788
|
iconClassName = props.iconClassName,
|
|
22725
22789
|
testid = props.testid,
|
|
22726
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22790
|
+
otherProps = _objectWithoutProperties(props, _excluded$67);
|
|
22727
22791
|
return /*#__PURE__*/React.createElement("span", {
|
|
22728
22792
|
role: "img",
|
|
22729
22793
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22730
22794
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22731
|
-
children: loadingCircleStyle$
|
|
22795
|
+
children: loadingCircleStyle$67
|
|
22732
22796
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22733
22797
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22734
22798
|
width: size,
|
|
@@ -22775,8 +22839,8 @@ Find.defaultProps = {
|
|
|
22775
22839
|
size: '1em'
|
|
22776
22840
|
};
|
|
22777
22841
|
|
|
22778
|
-
var _excluded$
|
|
22779
|
-
var loadingCircleStyle$
|
|
22842
|
+
var _excluded$68 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22843
|
+
var loadingCircleStyle$68 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22780
22844
|
var ArrowGoBack = function ArrowGoBack(props) {
|
|
22781
22845
|
var color = props.color,
|
|
22782
22846
|
size = props.size,
|
|
@@ -22785,12 +22849,12 @@ var ArrowGoBack = function ArrowGoBack(props) {
|
|
|
22785
22849
|
className = props.className,
|
|
22786
22850
|
iconClassName = props.iconClassName,
|
|
22787
22851
|
testid = props.testid,
|
|
22788
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22852
|
+
otherProps = _objectWithoutProperties(props, _excluded$68);
|
|
22789
22853
|
return /*#__PURE__*/React.createElement("span", {
|
|
22790
22854
|
role: "img",
|
|
22791
22855
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22792
22856
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22793
|
-
children: loadingCircleStyle$
|
|
22857
|
+
children: loadingCircleStyle$68
|
|
22794
22858
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22795
22859
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22796
22860
|
width: size,
|
|
@@ -22827,8 +22891,8 @@ ArrowGoBack.defaultProps = {
|
|
|
22827
22891
|
size: '1em'
|
|
22828
22892
|
};
|
|
22829
22893
|
|
|
22830
|
-
var _excluded$
|
|
22831
|
-
var loadingCircleStyle$
|
|
22894
|
+
var _excluded$69 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22895
|
+
var loadingCircleStyle$69 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22832
22896
|
var ArrowGoForward = function ArrowGoForward(props) {
|
|
22833
22897
|
var color = props.color,
|
|
22834
22898
|
size = props.size,
|
|
@@ -22837,12 +22901,12 @@ var ArrowGoForward = function ArrowGoForward(props) {
|
|
|
22837
22901
|
className = props.className,
|
|
22838
22902
|
iconClassName = props.iconClassName,
|
|
22839
22903
|
testid = props.testid,
|
|
22840
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22904
|
+
otherProps = _objectWithoutProperties(props, _excluded$69);
|
|
22841
22905
|
return /*#__PURE__*/React.createElement("span", {
|
|
22842
22906
|
role: "img",
|
|
22843
22907
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22844
22908
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22845
|
-
children: loadingCircleStyle$
|
|
22909
|
+
children: loadingCircleStyle$69
|
|
22846
22910
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22847
22911
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22848
22912
|
width: size,
|
|
@@ -22879,8 +22943,8 @@ ArrowGoForward.defaultProps = {
|
|
|
22879
22943
|
size: '1em'
|
|
22880
22944
|
};
|
|
22881
22945
|
|
|
22882
|
-
var _excluded$
|
|
22883
|
-
var loadingCircleStyle$
|
|
22946
|
+
var _excluded$6a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22947
|
+
var loadingCircleStyle$6a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22884
22948
|
var Recycle = function Recycle(props) {
|
|
22885
22949
|
var color = props.color,
|
|
22886
22950
|
size = props.size,
|
|
@@ -22889,12 +22953,12 @@ var Recycle = function Recycle(props) {
|
|
|
22889
22953
|
className = props.className,
|
|
22890
22954
|
iconClassName = props.iconClassName,
|
|
22891
22955
|
testid = props.testid,
|
|
22892
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22956
|
+
otherProps = _objectWithoutProperties(props, _excluded$6a);
|
|
22893
22957
|
return /*#__PURE__*/React.createElement("span", {
|
|
22894
22958
|
role: "img",
|
|
22895
22959
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22896
22960
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22897
|
-
children: loadingCircleStyle$
|
|
22961
|
+
children: loadingCircleStyle$6a
|
|
22898
22962
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22899
22963
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22900
22964
|
width: size,
|
|
@@ -22939,8 +23003,8 @@ Recycle.defaultProps = {
|
|
|
22939
23003
|
size: '1em'
|
|
22940
23004
|
};
|
|
22941
23005
|
|
|
22942
|
-
var _excluded$
|
|
22943
|
-
var loadingCircleStyle$
|
|
23006
|
+
var _excluded$6b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23007
|
+
var loadingCircleStyle$6b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22944
23008
|
var Info = function Info(props) {
|
|
22945
23009
|
var color = props.color,
|
|
22946
23010
|
size = props.size,
|
|
@@ -22949,12 +23013,12 @@ var Info = function Info(props) {
|
|
|
22949
23013
|
className = props.className,
|
|
22950
23014
|
iconClassName = props.iconClassName,
|
|
22951
23015
|
testid = props.testid,
|
|
22952
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23016
|
+
otherProps = _objectWithoutProperties(props, _excluded$6b);
|
|
22953
23017
|
return /*#__PURE__*/React.createElement("span", {
|
|
22954
23018
|
role: "img",
|
|
22955
23019
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22956
23020
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22957
|
-
children: loadingCircleStyle$
|
|
23021
|
+
children: loadingCircleStyle$6b
|
|
22958
23022
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22959
23023
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22960
23024
|
width: size,
|
|
@@ -22995,8 +23059,8 @@ Info.defaultProps = {
|
|
|
22995
23059
|
size: '1em'
|
|
22996
23060
|
};
|
|
22997
23061
|
|
|
22998
|
-
var _excluded$
|
|
22999
|
-
var loadingCircleStyle$
|
|
23062
|
+
var _excluded$6c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23063
|
+
var loadingCircleStyle$6c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23000
23064
|
var InfoFill = function InfoFill(props) {
|
|
23001
23065
|
var color = props.color,
|
|
23002
23066
|
size = props.size,
|
|
@@ -23005,12 +23069,12 @@ var InfoFill = function InfoFill(props) {
|
|
|
23005
23069
|
className = props.className,
|
|
23006
23070
|
iconClassName = props.iconClassName,
|
|
23007
23071
|
testid = props.testid,
|
|
23008
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23072
|
+
otherProps = _objectWithoutProperties(props, _excluded$6c);
|
|
23009
23073
|
return /*#__PURE__*/React.createElement("span", {
|
|
23010
23074
|
role: "img",
|
|
23011
23075
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23012
23076
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23013
|
-
children: loadingCircleStyle$
|
|
23077
|
+
children: loadingCircleStyle$6c
|
|
23014
23078
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23015
23079
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23016
23080
|
width: size,
|
|
@@ -23047,8 +23111,8 @@ InfoFill.defaultProps = {
|
|
|
23047
23111
|
size: '1em'
|
|
23048
23112
|
};
|
|
23049
23113
|
|
|
23050
|
-
var _excluded$
|
|
23051
|
-
var loadingCircleStyle$
|
|
23114
|
+
var _excluded$6d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23115
|
+
var loadingCircleStyle$6d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23052
23116
|
var Help = function Help(props) {
|
|
23053
23117
|
var color = props.color,
|
|
23054
23118
|
size = props.size,
|
|
@@ -23057,12 +23121,12 @@ var Help = function Help(props) {
|
|
|
23057
23121
|
className = props.className,
|
|
23058
23122
|
iconClassName = props.iconClassName,
|
|
23059
23123
|
testid = props.testid,
|
|
23060
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23124
|
+
otherProps = _objectWithoutProperties(props, _excluded$6d);
|
|
23061
23125
|
return /*#__PURE__*/React.createElement("span", {
|
|
23062
23126
|
role: "img",
|
|
23063
23127
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23064
23128
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23065
|
-
children: loadingCircleStyle$
|
|
23129
|
+
children: loadingCircleStyle$6d
|
|
23066
23130
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23067
23131
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23068
23132
|
width: size,
|
|
@@ -23099,8 +23163,8 @@ Help.defaultProps = {
|
|
|
23099
23163
|
size: '1em'
|
|
23100
23164
|
};
|
|
23101
23165
|
|
|
23102
|
-
var _excluded$
|
|
23103
|
-
var loadingCircleStyle$
|
|
23166
|
+
var _excluded$6e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23167
|
+
var loadingCircleStyle$6e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23104
23168
|
var History = function History(props) {
|
|
23105
23169
|
var color = props.color,
|
|
23106
23170
|
size = props.size,
|
|
@@ -23109,12 +23173,12 @@ var History = function History(props) {
|
|
|
23109
23173
|
className = props.className,
|
|
23110
23174
|
iconClassName = props.iconClassName,
|
|
23111
23175
|
testid = props.testid,
|
|
23112
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23176
|
+
otherProps = _objectWithoutProperties(props, _excluded$6e);
|
|
23113
23177
|
return /*#__PURE__*/React.createElement("span", {
|
|
23114
23178
|
role: "img",
|
|
23115
23179
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23116
23180
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23117
|
-
children: loadingCircleStyle$
|
|
23181
|
+
children: loadingCircleStyle$6e
|
|
23118
23182
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23119
23183
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23120
23184
|
width: size,
|
|
@@ -23151,8 +23215,8 @@ History.defaultProps = {
|
|
|
23151
23215
|
size: '1em'
|
|
23152
23216
|
};
|
|
23153
23217
|
|
|
23154
|
-
var _excluded$
|
|
23155
|
-
var loadingCircleStyle$
|
|
23218
|
+
var _excluded$6f = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23219
|
+
var loadingCircleStyle$6f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23156
23220
|
var Backup = function Backup(props) {
|
|
23157
23221
|
var color = props.color,
|
|
23158
23222
|
size = props.size,
|
|
@@ -23161,12 +23225,12 @@ var Backup = function Backup(props) {
|
|
|
23161
23225
|
className = props.className,
|
|
23162
23226
|
iconClassName = props.iconClassName,
|
|
23163
23227
|
testid = props.testid,
|
|
23164
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23228
|
+
otherProps = _objectWithoutProperties(props, _excluded$6f);
|
|
23165
23229
|
return /*#__PURE__*/React.createElement("span", {
|
|
23166
23230
|
role: "img",
|
|
23167
23231
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23168
23232
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23169
|
-
children: loadingCircleStyle$
|
|
23233
|
+
children: loadingCircleStyle$6f
|
|
23170
23234
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23171
23235
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23172
23236
|
width: size,
|
|
@@ -23205,8 +23269,8 @@ Backup.defaultProps = {
|
|
|
23205
23269
|
size: '1em'
|
|
23206
23270
|
};
|
|
23207
23271
|
|
|
23208
|
-
var _excluded$
|
|
23209
|
-
var loadingCircleStyle$
|
|
23272
|
+
var _excluded$6g = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23273
|
+
var loadingCircleStyle$6g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23210
23274
|
var Error = function Error(props) {
|
|
23211
23275
|
var color = props.color,
|
|
23212
23276
|
size = props.size,
|
|
@@ -23215,12 +23279,12 @@ var Error = function Error(props) {
|
|
|
23215
23279
|
className = props.className,
|
|
23216
23280
|
iconClassName = props.iconClassName,
|
|
23217
23281
|
testid = props.testid,
|
|
23218
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23282
|
+
otherProps = _objectWithoutProperties(props, _excluded$6g);
|
|
23219
23283
|
return /*#__PURE__*/React.createElement("span", {
|
|
23220
23284
|
role: "img",
|
|
23221
23285
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23222
23286
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23223
|
-
children: loadingCircleStyle$
|
|
23287
|
+
children: loadingCircleStyle$6g
|
|
23224
23288
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23225
23289
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23226
23290
|
width: size,
|
|
@@ -23261,8 +23325,8 @@ Error.defaultProps = {
|
|
|
23261
23325
|
size: '1em'
|
|
23262
23326
|
};
|
|
23263
23327
|
|
|
23264
|
-
var _excluded$
|
|
23265
|
-
var loadingCircleStyle$
|
|
23328
|
+
var _excluded$6h = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23329
|
+
var loadingCircleStyle$6h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23266
23330
|
var ErrorFill = function ErrorFill(props) {
|
|
23267
23331
|
var color = props.color,
|
|
23268
23332
|
size = props.size,
|
|
@@ -23271,12 +23335,12 @@ var ErrorFill = function ErrorFill(props) {
|
|
|
23271
23335
|
className = props.className,
|
|
23272
23336
|
iconClassName = props.iconClassName,
|
|
23273
23337
|
testid = props.testid,
|
|
23274
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23338
|
+
otherProps = _objectWithoutProperties(props, _excluded$6h);
|
|
23275
23339
|
return /*#__PURE__*/React.createElement("span", {
|
|
23276
23340
|
role: "img",
|
|
23277
23341
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23278
23342
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23279
|
-
children: loadingCircleStyle$
|
|
23343
|
+
children: loadingCircleStyle$6h
|
|
23280
23344
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23281
23345
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23282
23346
|
width: size,
|
|
@@ -23313,8 +23377,8 @@ ErrorFill.defaultProps = {
|
|
|
23313
23377
|
size: '1em'
|
|
23314
23378
|
};
|
|
23315
23379
|
|
|
23316
|
-
var _excluded$
|
|
23317
|
-
var loadingCircleStyle$
|
|
23380
|
+
var _excluded$6i = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23381
|
+
var loadingCircleStyle$6i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23318
23382
|
var Error2 = function Error2(props) {
|
|
23319
23383
|
var color = props.color,
|
|
23320
23384
|
size = props.size,
|
|
@@ -23323,12 +23387,12 @@ var Error2 = function Error2(props) {
|
|
|
23323
23387
|
className = props.className,
|
|
23324
23388
|
iconClassName = props.iconClassName,
|
|
23325
23389
|
testid = props.testid,
|
|
23326
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23390
|
+
otherProps = _objectWithoutProperties(props, _excluded$6i);
|
|
23327
23391
|
return /*#__PURE__*/React.createElement("span", {
|
|
23328
23392
|
role: "img",
|
|
23329
23393
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23330
23394
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23331
|
-
children: loadingCircleStyle$
|
|
23395
|
+
children: loadingCircleStyle$6i
|
|
23332
23396
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23333
23397
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23334
23398
|
width: size,
|
|
@@ -23367,8 +23431,8 @@ Error2.defaultProps = {
|
|
|
23367
23431
|
size: '1em'
|
|
23368
23432
|
};
|
|
23369
23433
|
|
|
23370
|
-
var _excluded$
|
|
23371
|
-
var loadingCircleStyle$
|
|
23434
|
+
var _excluded$6j = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23435
|
+
var loadingCircleStyle$6j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23372
23436
|
var Error2Fill = function Error2Fill(props) {
|
|
23373
23437
|
var color = props.color,
|
|
23374
23438
|
size = props.size,
|
|
@@ -23377,12 +23441,12 @@ var Error2Fill = function Error2Fill(props) {
|
|
|
23377
23441
|
className = props.className,
|
|
23378
23442
|
iconClassName = props.iconClassName,
|
|
23379
23443
|
testid = props.testid,
|
|
23380
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23444
|
+
otherProps = _objectWithoutProperties(props, _excluded$6j);
|
|
23381
23445
|
return /*#__PURE__*/React.createElement("span", {
|
|
23382
23446
|
role: "img",
|
|
23383
23447
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23384
23448
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23385
|
-
children: loadingCircleStyle$
|
|
23449
|
+
children: loadingCircleStyle$6j
|
|
23386
23450
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23387
23451
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23388
23452
|
width: size,
|
|
@@ -23421,8 +23485,8 @@ Error2Fill.defaultProps = {
|
|
|
23421
23485
|
size: '1em'
|
|
23422
23486
|
};
|
|
23423
23487
|
|
|
23424
|
-
var _excluded$
|
|
23425
|
-
var loadingCircleStyle$
|
|
23488
|
+
var _excluded$6k = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23489
|
+
var loadingCircleStyle$6k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23426
23490
|
var Success = function Success(props) {
|
|
23427
23491
|
var color = props.color,
|
|
23428
23492
|
size = props.size,
|
|
@@ -23431,12 +23495,12 @@ var Success = function Success(props) {
|
|
|
23431
23495
|
className = props.className,
|
|
23432
23496
|
iconClassName = props.iconClassName,
|
|
23433
23497
|
testid = props.testid,
|
|
23434
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23498
|
+
otherProps = _objectWithoutProperties(props, _excluded$6k);
|
|
23435
23499
|
return /*#__PURE__*/React.createElement("span", {
|
|
23436
23500
|
role: "img",
|
|
23437
23501
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23438
23502
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23439
|
-
children: loadingCircleStyle$
|
|
23503
|
+
children: loadingCircleStyle$6k
|
|
23440
23504
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23441
23505
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23442
23506
|
width: size,
|
|
@@ -23473,8 +23537,8 @@ Success.defaultProps = {
|
|
|
23473
23537
|
size: '1em'
|
|
23474
23538
|
};
|
|
23475
23539
|
|
|
23476
|
-
var _excluded$
|
|
23477
|
-
var loadingCircleStyle$
|
|
23540
|
+
var _excluded$6l = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23541
|
+
var loadingCircleStyle$6l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23478
23542
|
var SuccessFill = function SuccessFill(props) {
|
|
23479
23543
|
var color = props.color,
|
|
23480
23544
|
size = props.size,
|
|
@@ -23483,12 +23547,12 @@ var SuccessFill = function SuccessFill(props) {
|
|
|
23483
23547
|
className = props.className,
|
|
23484
23548
|
iconClassName = props.iconClassName,
|
|
23485
23549
|
testid = props.testid,
|
|
23486
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23550
|
+
otherProps = _objectWithoutProperties(props, _excluded$6l);
|
|
23487
23551
|
return /*#__PURE__*/React.createElement("span", {
|
|
23488
23552
|
role: "img",
|
|
23489
23553
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23490
23554
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23491
|
-
children: loadingCircleStyle$
|
|
23555
|
+
children: loadingCircleStyle$6l
|
|
23492
23556
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23493
23557
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23494
23558
|
width: size,
|
|
@@ -23527,8 +23591,8 @@ SuccessFill.defaultProps = {
|
|
|
23527
23591
|
size: '1em'
|
|
23528
23592
|
};
|
|
23529
23593
|
|
|
23530
|
-
var _excluded$
|
|
23531
|
-
var loadingCircleStyle$
|
|
23594
|
+
var _excluded$6m = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23595
|
+
var loadingCircleStyle$6m = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23532
23596
|
var Delete2 = function Delete2(props) {
|
|
23533
23597
|
var color = props.color,
|
|
23534
23598
|
size = props.size,
|
|
@@ -23537,12 +23601,12 @@ var Delete2 = function Delete2(props) {
|
|
|
23537
23601
|
className = props.className,
|
|
23538
23602
|
iconClassName = props.iconClassName,
|
|
23539
23603
|
testid = props.testid,
|
|
23540
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23604
|
+
otherProps = _objectWithoutProperties(props, _excluded$6m);
|
|
23541
23605
|
return /*#__PURE__*/React.createElement("span", {
|
|
23542
23606
|
role: "img",
|
|
23543
23607
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23544
23608
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23545
|
-
children: loadingCircleStyle$
|
|
23609
|
+
children: loadingCircleStyle$6m
|
|
23546
23610
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23547
23611
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23548
23612
|
width: size,
|
|
@@ -23579,8 +23643,8 @@ Delete2.defaultProps = {
|
|
|
23579
23643
|
size: '1em'
|
|
23580
23644
|
};
|
|
23581
23645
|
|
|
23582
|
-
var _excluded$
|
|
23583
|
-
var loadingCircleStyle$
|
|
23646
|
+
var _excluded$6n = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23647
|
+
var loadingCircleStyle$6n = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23584
23648
|
var Delete2Fill = function Delete2Fill(props) {
|
|
23585
23649
|
var color = props.color,
|
|
23586
23650
|
size = props.size,
|
|
@@ -23589,12 +23653,12 @@ var Delete2Fill = function Delete2Fill(props) {
|
|
|
23589
23653
|
className = props.className,
|
|
23590
23654
|
iconClassName = props.iconClassName,
|
|
23591
23655
|
testid = props.testid,
|
|
23592
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23656
|
+
otherProps = _objectWithoutProperties(props, _excluded$6n);
|
|
23593
23657
|
return /*#__PURE__*/React.createElement("span", {
|
|
23594
23658
|
role: "img",
|
|
23595
23659
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23596
23660
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23597
|
-
children: loadingCircleStyle$
|
|
23661
|
+
children: loadingCircleStyle$6n
|
|
23598
23662
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23599
23663
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23600
23664
|
width: size,
|
|
@@ -23631,8 +23695,8 @@ Delete2Fill.defaultProps = {
|
|
|
23631
23695
|
size: '1em'
|
|
23632
23696
|
};
|
|
23633
23697
|
|
|
23634
|
-
var _excluded$
|
|
23635
|
-
var loadingCircleStyle$
|
|
23698
|
+
var _excluded$6o = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23699
|
+
var loadingCircleStyle$6o = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23636
23700
|
var Exchange = function Exchange(props) {
|
|
23637
23701
|
var color = props.color,
|
|
23638
23702
|
size = props.size,
|
|
@@ -23641,12 +23705,12 @@ var Exchange = function Exchange(props) {
|
|
|
23641
23705
|
className = props.className,
|
|
23642
23706
|
iconClassName = props.iconClassName,
|
|
23643
23707
|
testid = props.testid,
|
|
23644
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23708
|
+
otherProps = _objectWithoutProperties(props, _excluded$6o);
|
|
23645
23709
|
return /*#__PURE__*/React.createElement("span", {
|
|
23646
23710
|
role: "img",
|
|
23647
23711
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23648
23712
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23649
|
-
children: loadingCircleStyle$
|
|
23713
|
+
children: loadingCircleStyle$6o
|
|
23650
23714
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23651
23715
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23652
23716
|
width: size,
|
|
@@ -23683,8 +23747,8 @@ Exchange.defaultProps = {
|
|
|
23683
23747
|
size: '1em'
|
|
23684
23748
|
};
|
|
23685
23749
|
|
|
23686
|
-
var _excluded$
|
|
23687
|
-
var loadingCircleStyle$
|
|
23750
|
+
var _excluded$6p = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23751
|
+
var loadingCircleStyle$6p = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23688
23752
|
var SwapFill = function SwapFill(props) {
|
|
23689
23753
|
var color = props.color,
|
|
23690
23754
|
size = props.size,
|
|
@@ -23693,12 +23757,12 @@ var SwapFill = function SwapFill(props) {
|
|
|
23693
23757
|
className = props.className,
|
|
23694
23758
|
iconClassName = props.iconClassName,
|
|
23695
23759
|
testid = props.testid,
|
|
23696
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23760
|
+
otherProps = _objectWithoutProperties(props, _excluded$6p);
|
|
23697
23761
|
return /*#__PURE__*/React.createElement("span", {
|
|
23698
23762
|
role: "img",
|
|
23699
23763
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23700
23764
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23701
|
-
children: loadingCircleStyle$
|
|
23765
|
+
children: loadingCircleStyle$6p
|
|
23702
23766
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23703
23767
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23704
23768
|
width: size,
|
|
@@ -23735,8 +23799,8 @@ SwapFill.defaultProps = {
|
|
|
23735
23799
|
size: '1em'
|
|
23736
23800
|
};
|
|
23737
23801
|
|
|
23738
|
-
var _excluded$
|
|
23739
|
-
var loadingCircleStyle$
|
|
23802
|
+
var _excluded$6q = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23803
|
+
var loadingCircleStyle$6q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23740
23804
|
var Processing = function Processing(props) {
|
|
23741
23805
|
var color = props.color,
|
|
23742
23806
|
size = props.size,
|
|
@@ -23745,12 +23809,12 @@ var Processing = function Processing(props) {
|
|
|
23745
23809
|
className = props.className,
|
|
23746
23810
|
iconClassName = props.iconClassName,
|
|
23747
23811
|
testid = props.testid,
|
|
23748
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23812
|
+
otherProps = _objectWithoutProperties(props, _excluded$6q);
|
|
23749
23813
|
return /*#__PURE__*/React.createElement("span", {
|
|
23750
23814
|
role: "img",
|
|
23751
23815
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23752
23816
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23753
|
-
children: loadingCircleStyle$
|
|
23817
|
+
children: loadingCircleStyle$6q
|
|
23754
23818
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23755
23819
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23756
23820
|
width: size,
|
|
@@ -23787,8 +23851,8 @@ Processing.defaultProps = {
|
|
|
23787
23851
|
size: '1em'
|
|
23788
23852
|
};
|
|
23789
23853
|
|
|
23790
|
-
var _excluded$
|
|
23791
|
-
var loadingCircleStyle$
|
|
23854
|
+
var _excluded$6r = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23855
|
+
var loadingCircleStyle$6r = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23792
23856
|
var Processing2 = function Processing2(props) {
|
|
23793
23857
|
var color = props.color,
|
|
23794
23858
|
size = props.size,
|
|
@@ -23797,12 +23861,12 @@ var Processing2 = function Processing2(props) {
|
|
|
23797
23861
|
className = props.className,
|
|
23798
23862
|
iconClassName = props.iconClassName,
|
|
23799
23863
|
testid = props.testid,
|
|
23800
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23864
|
+
otherProps = _objectWithoutProperties(props, _excluded$6r);
|
|
23801
23865
|
return /*#__PURE__*/React.createElement("span", {
|
|
23802
23866
|
role: "img",
|
|
23803
23867
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23804
23868
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23805
|
-
children: loadingCircleStyle$
|
|
23869
|
+
children: loadingCircleStyle$6r
|
|
23806
23870
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23807
23871
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23808
23872
|
width: size,
|
|
@@ -23841,8 +23905,8 @@ Processing2.defaultProps = {
|
|
|
23841
23905
|
size: '1em'
|
|
23842
23906
|
};
|
|
23843
23907
|
|
|
23844
|
-
var _excluded$
|
|
23845
|
-
var loadingCircleStyle$
|
|
23908
|
+
var _excluded$6s = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23909
|
+
var loadingCircleStyle$6s = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23846
23910
|
var Done = function Done(props) {
|
|
23847
23911
|
var color = props.color,
|
|
23848
23912
|
size = props.size,
|
|
@@ -23851,12 +23915,12 @@ var Done = function Done(props) {
|
|
|
23851
23915
|
className = props.className,
|
|
23852
23916
|
iconClassName = props.iconClassName,
|
|
23853
23917
|
testid = props.testid,
|
|
23854
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23918
|
+
otherProps = _objectWithoutProperties(props, _excluded$6s);
|
|
23855
23919
|
return /*#__PURE__*/React.createElement("span", {
|
|
23856
23920
|
role: "img",
|
|
23857
23921
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23858
23922
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23859
|
-
children: loadingCircleStyle$
|
|
23923
|
+
children: loadingCircleStyle$6s
|
|
23860
23924
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23861
23925
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23862
23926
|
width: size,
|
|
@@ -23893,8 +23957,8 @@ Done.defaultProps = {
|
|
|
23893
23957
|
size: '1em'
|
|
23894
23958
|
};
|
|
23895
23959
|
|
|
23896
|
-
var _excluded$
|
|
23897
|
-
var loadingCircleStyle$
|
|
23960
|
+
var _excluded$6t = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23961
|
+
var loadingCircleStyle$6t = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23898
23962
|
var Close = function Close(props) {
|
|
23899
23963
|
var color = props.color,
|
|
23900
23964
|
size = props.size,
|
|
@@ -23903,12 +23967,12 @@ var Close = function Close(props) {
|
|
|
23903
23967
|
className = props.className,
|
|
23904
23968
|
iconClassName = props.iconClassName,
|
|
23905
23969
|
testid = props.testid,
|
|
23906
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23970
|
+
otherProps = _objectWithoutProperties(props, _excluded$6t);
|
|
23907
23971
|
return /*#__PURE__*/React.createElement("span", {
|
|
23908
23972
|
role: "img",
|
|
23909
23973
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23910
23974
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23911
|
-
children: loadingCircleStyle$
|
|
23975
|
+
children: loadingCircleStyle$6t
|
|
23912
23976
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23913
23977
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23914
23978
|
width: size,
|
|
@@ -23945,8 +24009,8 @@ Close.defaultProps = {
|
|
|
23945
24009
|
size: '1em'
|
|
23946
24010
|
};
|
|
23947
24011
|
|
|
23948
|
-
var _excluded$
|
|
23949
|
-
var loadingCircleStyle$
|
|
24012
|
+
var _excluded$6u = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24013
|
+
var loadingCircleStyle$6u = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23950
24014
|
var StarOutline = function StarOutline(props) {
|
|
23951
24015
|
var color = props.color,
|
|
23952
24016
|
size = props.size,
|
|
@@ -23955,12 +24019,12 @@ var StarOutline = function StarOutline(props) {
|
|
|
23955
24019
|
className = props.className,
|
|
23956
24020
|
iconClassName = props.iconClassName,
|
|
23957
24021
|
testid = props.testid,
|
|
23958
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24022
|
+
otherProps = _objectWithoutProperties(props, _excluded$6u);
|
|
23959
24023
|
return /*#__PURE__*/React.createElement("span", {
|
|
23960
24024
|
role: "img",
|
|
23961
24025
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23962
24026
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23963
|
-
children: loadingCircleStyle$
|
|
24027
|
+
children: loadingCircleStyle$6u
|
|
23964
24028
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23965
24029
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23966
24030
|
width: size,
|
|
@@ -23997,8 +24061,8 @@ StarOutline.defaultProps = {
|
|
|
23997
24061
|
size: '1em'
|
|
23998
24062
|
};
|
|
23999
24063
|
|
|
24000
|
-
var _excluded$
|
|
24001
|
-
var loadingCircleStyle$
|
|
24064
|
+
var _excluded$6v = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24065
|
+
var loadingCircleStyle$6v = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24002
24066
|
var StarFill = function StarFill(props) {
|
|
24003
24067
|
var color = props.color,
|
|
24004
24068
|
size = props.size,
|
|
@@ -24007,12 +24071,12 @@ var StarFill = function StarFill(props) {
|
|
|
24007
24071
|
className = props.className,
|
|
24008
24072
|
iconClassName = props.iconClassName,
|
|
24009
24073
|
testid = props.testid,
|
|
24010
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24074
|
+
otherProps = _objectWithoutProperties(props, _excluded$6v);
|
|
24011
24075
|
return /*#__PURE__*/React.createElement("span", {
|
|
24012
24076
|
role: "img",
|
|
24013
24077
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24014
24078
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24015
|
-
children: loadingCircleStyle$
|
|
24079
|
+
children: loadingCircleStyle$6v
|
|
24016
24080
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24017
24081
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24018
24082
|
width: size,
|
|
@@ -24049,8 +24113,8 @@ StarFill.defaultProps = {
|
|
|
24049
24113
|
size: '1em'
|
|
24050
24114
|
};
|
|
24051
24115
|
|
|
24052
|
-
var _excluded$
|
|
24053
|
-
var loadingCircleStyle$
|
|
24116
|
+
var _excluded$6w = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24117
|
+
var loadingCircleStyle$6w = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24054
24118
|
var TimeLock = function TimeLock(props) {
|
|
24055
24119
|
var color = props.color,
|
|
24056
24120
|
size = props.size,
|
|
@@ -24059,12 +24123,12 @@ var TimeLock = function TimeLock(props) {
|
|
|
24059
24123
|
className = props.className,
|
|
24060
24124
|
iconClassName = props.iconClassName,
|
|
24061
24125
|
testid = props.testid,
|
|
24062
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24126
|
+
otherProps = _objectWithoutProperties(props, _excluded$6w);
|
|
24063
24127
|
return /*#__PURE__*/React.createElement("span", {
|
|
24064
24128
|
role: "img",
|
|
24065
24129
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24066
24130
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24067
|
-
children: loadingCircleStyle$
|
|
24131
|
+
children: loadingCircleStyle$6w
|
|
24068
24132
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24069
24133
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24070
24134
|
width: size,
|
|
@@ -24101,8 +24165,8 @@ TimeLock.defaultProps = {
|
|
|
24101
24165
|
size: '1em'
|
|
24102
24166
|
};
|
|
24103
24167
|
|
|
24104
|
-
var _excluded$
|
|
24105
|
-
var loadingCircleStyle$
|
|
24168
|
+
var _excluded$6x = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24169
|
+
var loadingCircleStyle$6x = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24106
24170
|
var Heart = function Heart(props) {
|
|
24107
24171
|
var color = props.color,
|
|
24108
24172
|
size = props.size,
|
|
@@ -24111,12 +24175,12 @@ var Heart = function Heart(props) {
|
|
|
24111
24175
|
className = props.className,
|
|
24112
24176
|
iconClassName = props.iconClassName,
|
|
24113
24177
|
testid = props.testid,
|
|
24114
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24178
|
+
otherProps = _objectWithoutProperties(props, _excluded$6x);
|
|
24115
24179
|
return /*#__PURE__*/React.createElement("span", {
|
|
24116
24180
|
role: "img",
|
|
24117
24181
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24118
24182
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24119
|
-
children: loadingCircleStyle$
|
|
24183
|
+
children: loadingCircleStyle$6x
|
|
24120
24184
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24121
24185
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24122
24186
|
width: size,
|
|
@@ -24153,8 +24217,8 @@ Heart.defaultProps = {
|
|
|
24153
24217
|
size: '1em'
|
|
24154
24218
|
};
|
|
24155
24219
|
|
|
24156
|
-
var _excluded$
|
|
24157
|
-
var loadingCircleStyle$
|
|
24220
|
+
var _excluded$6y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24221
|
+
var loadingCircleStyle$6y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24158
24222
|
var Bookmark = function Bookmark(props) {
|
|
24159
24223
|
var color = props.color,
|
|
24160
24224
|
size = props.size,
|
|
@@ -24163,12 +24227,12 @@ var Bookmark = function Bookmark(props) {
|
|
|
24163
24227
|
className = props.className,
|
|
24164
24228
|
iconClassName = props.iconClassName,
|
|
24165
24229
|
testid = props.testid,
|
|
24166
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24230
|
+
otherProps = _objectWithoutProperties(props, _excluded$6y);
|
|
24167
24231
|
return /*#__PURE__*/React.createElement("span", {
|
|
24168
24232
|
role: "img",
|
|
24169
24233
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24170
24234
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24171
|
-
children: loadingCircleStyle$
|
|
24235
|
+
children: loadingCircleStyle$6y
|
|
24172
24236
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24173
24237
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24174
24238
|
width: size,
|
|
@@ -24205,8 +24269,8 @@ Bookmark.defaultProps = {
|
|
|
24205
24269
|
size: '1em'
|
|
24206
24270
|
};
|
|
24207
24271
|
|
|
24208
|
-
var _excluded$
|
|
24209
|
-
var loadingCircleStyle$
|
|
24272
|
+
var _excluded$6z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24273
|
+
var loadingCircleStyle$6z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24210
24274
|
var Bookmark2 = function Bookmark2(props) {
|
|
24211
24275
|
var color = props.color,
|
|
24212
24276
|
size = props.size,
|
|
@@ -24215,12 +24279,12 @@ var Bookmark2 = function Bookmark2(props) {
|
|
|
24215
24279
|
className = props.className,
|
|
24216
24280
|
iconClassName = props.iconClassName,
|
|
24217
24281
|
testid = props.testid,
|
|
24218
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24282
|
+
otherProps = _objectWithoutProperties(props, _excluded$6z);
|
|
24219
24283
|
return /*#__PURE__*/React.createElement("span", {
|
|
24220
24284
|
role: "img",
|
|
24221
24285
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24222
24286
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24223
|
-
children: loadingCircleStyle$
|
|
24287
|
+
children: loadingCircleStyle$6z
|
|
24224
24288
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24225
24289
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24226
24290
|
width: size,
|
|
@@ -24257,8 +24321,8 @@ Bookmark2.defaultProps = {
|
|
|
24257
24321
|
size: '1em'
|
|
24258
24322
|
};
|
|
24259
24323
|
|
|
24260
|
-
var _excluded$
|
|
24261
|
-
var loadingCircleStyle$
|
|
24324
|
+
var _excluded$6A = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24325
|
+
var loadingCircleStyle$6A = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24262
24326
|
var LockClose = function LockClose(props) {
|
|
24263
24327
|
var color = props.color,
|
|
24264
24328
|
size = props.size,
|
|
@@ -24267,12 +24331,12 @@ var LockClose = function LockClose(props) {
|
|
|
24267
24331
|
className = props.className,
|
|
24268
24332
|
iconClassName = props.iconClassName,
|
|
24269
24333
|
testid = props.testid,
|
|
24270
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24334
|
+
otherProps = _objectWithoutProperties(props, _excluded$6A);
|
|
24271
24335
|
return /*#__PURE__*/React.createElement("span", {
|
|
24272
24336
|
role: "img",
|
|
24273
24337
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24274
24338
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24275
|
-
children: loadingCircleStyle$
|
|
24339
|
+
children: loadingCircleStyle$6A
|
|
24276
24340
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24277
24341
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24278
24342
|
width: size,
|
|
@@ -24313,8 +24377,8 @@ LockClose.defaultProps = {
|
|
|
24313
24377
|
size: '1em'
|
|
24314
24378
|
};
|
|
24315
24379
|
|
|
24316
|
-
var _excluded$
|
|
24317
|
-
var loadingCircleStyle$
|
|
24380
|
+
var _excluded$6B = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24381
|
+
var loadingCircleStyle$6B = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24318
24382
|
var LockCloseFill = function LockCloseFill(props) {
|
|
24319
24383
|
var color = props.color,
|
|
24320
24384
|
size = props.size,
|
|
@@ -24323,12 +24387,12 @@ var LockCloseFill = function LockCloseFill(props) {
|
|
|
24323
24387
|
className = props.className,
|
|
24324
24388
|
iconClassName = props.iconClassName,
|
|
24325
24389
|
testid = props.testid,
|
|
24326
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24390
|
+
otherProps = _objectWithoutProperties(props, _excluded$6B);
|
|
24327
24391
|
return /*#__PURE__*/React.createElement("span", {
|
|
24328
24392
|
role: "img",
|
|
24329
24393
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24330
24394
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24331
|
-
children: loadingCircleStyle$
|
|
24395
|
+
children: loadingCircleStyle$6B
|
|
24332
24396
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24333
24397
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24334
24398
|
width: size,
|
|
@@ -24365,8 +24429,8 @@ LockCloseFill.defaultProps = {
|
|
|
24365
24429
|
size: '1em'
|
|
24366
24430
|
};
|
|
24367
24431
|
|
|
24368
|
-
var _excluded$
|
|
24369
|
-
var loadingCircleStyle$
|
|
24432
|
+
var _excluded$6C = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24433
|
+
var loadingCircleStyle$6C = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24370
24434
|
var LockOpen = function LockOpen(props) {
|
|
24371
24435
|
var color = props.color,
|
|
24372
24436
|
size = props.size,
|
|
@@ -24375,12 +24439,12 @@ var LockOpen = function LockOpen(props) {
|
|
|
24375
24439
|
className = props.className,
|
|
24376
24440
|
iconClassName = props.iconClassName,
|
|
24377
24441
|
testid = props.testid,
|
|
24378
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24442
|
+
otherProps = _objectWithoutProperties(props, _excluded$6C);
|
|
24379
24443
|
return /*#__PURE__*/React.createElement("span", {
|
|
24380
24444
|
role: "img",
|
|
24381
24445
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24382
24446
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24383
|
-
children: loadingCircleStyle$
|
|
24447
|
+
children: loadingCircleStyle$6C
|
|
24384
24448
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24385
24449
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24386
24450
|
width: size,
|
|
@@ -24417,8 +24481,8 @@ LockOpen.defaultProps = {
|
|
|
24417
24481
|
size: '1em'
|
|
24418
24482
|
};
|
|
24419
24483
|
|
|
24420
|
-
var _excluded$
|
|
24421
|
-
var loadingCircleStyle$
|
|
24484
|
+
var _excluded$6D = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24485
|
+
var loadingCircleStyle$6D = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24422
24486
|
var LockOpenFill = function LockOpenFill(props) {
|
|
24423
24487
|
var color = props.color,
|
|
24424
24488
|
size = props.size,
|
|
@@ -24427,12 +24491,12 @@ var LockOpenFill = function LockOpenFill(props) {
|
|
|
24427
24491
|
className = props.className,
|
|
24428
24492
|
iconClassName = props.iconClassName,
|
|
24429
24493
|
testid = props.testid,
|
|
24430
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24494
|
+
otherProps = _objectWithoutProperties(props, _excluded$6D);
|
|
24431
24495
|
return /*#__PURE__*/React.createElement("span", {
|
|
24432
24496
|
role: "img",
|
|
24433
24497
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24434
24498
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24435
|
-
children: loadingCircleStyle$
|
|
24499
|
+
children: loadingCircleStyle$6D
|
|
24436
24500
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24437
24501
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24438
24502
|
width: size,
|
|
@@ -24469,8 +24533,8 @@ LockOpenFill.defaultProps = {
|
|
|
24469
24533
|
size: '1em'
|
|
24470
24534
|
};
|
|
24471
24535
|
|
|
24472
|
-
var _excluded$
|
|
24473
|
-
var loadingCircleStyle$
|
|
24536
|
+
var _excluded$6E = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24537
|
+
var loadingCircleStyle$6E = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24474
24538
|
var EyeOn = function EyeOn(props) {
|
|
24475
24539
|
var color = props.color,
|
|
24476
24540
|
size = props.size,
|
|
@@ -24479,12 +24543,12 @@ var EyeOn = function EyeOn(props) {
|
|
|
24479
24543
|
className = props.className,
|
|
24480
24544
|
iconClassName = props.iconClassName,
|
|
24481
24545
|
testid = props.testid,
|
|
24482
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24546
|
+
otherProps = _objectWithoutProperties(props, _excluded$6E);
|
|
24483
24547
|
return /*#__PURE__*/React.createElement("span", {
|
|
24484
24548
|
role: "img",
|
|
24485
24549
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24486
24550
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24487
|
-
children: loadingCircleStyle$
|
|
24551
|
+
children: loadingCircleStyle$6E
|
|
24488
24552
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24489
24553
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24490
24554
|
width: size,
|
|
@@ -24521,8 +24585,8 @@ EyeOn.defaultProps = {
|
|
|
24521
24585
|
size: '1em'
|
|
24522
24586
|
};
|
|
24523
24587
|
|
|
24524
|
-
var _excluded$
|
|
24525
|
-
var loadingCircleStyle$
|
|
24588
|
+
var _excluded$6F = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24589
|
+
var loadingCircleStyle$6F = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24526
24590
|
var EyeOnFill = function EyeOnFill(props) {
|
|
24527
24591
|
var color = props.color,
|
|
24528
24592
|
size = props.size,
|
|
@@ -24531,12 +24595,12 @@ var EyeOnFill = function EyeOnFill(props) {
|
|
|
24531
24595
|
className = props.className,
|
|
24532
24596
|
iconClassName = props.iconClassName,
|
|
24533
24597
|
testid = props.testid,
|
|
24534
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24598
|
+
otherProps = _objectWithoutProperties(props, _excluded$6F);
|
|
24535
24599
|
return /*#__PURE__*/React.createElement("span", {
|
|
24536
24600
|
role: "img",
|
|
24537
24601
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24538
24602
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24539
|
-
children: loadingCircleStyle$
|
|
24603
|
+
children: loadingCircleStyle$6F
|
|
24540
24604
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24541
24605
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24542
24606
|
width: size,
|
|
@@ -24575,8 +24639,8 @@ EyeOnFill.defaultProps = {
|
|
|
24575
24639
|
size: '1em'
|
|
24576
24640
|
};
|
|
24577
24641
|
|
|
24578
|
-
var _excluded$
|
|
24579
|
-
var loadingCircleStyle$
|
|
24642
|
+
var _excluded$6G = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24643
|
+
var loadingCircleStyle$6G = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24580
24644
|
var EyeOff = function EyeOff(props) {
|
|
24581
24645
|
var color = props.color,
|
|
24582
24646
|
size = props.size,
|
|
@@ -24585,12 +24649,12 @@ var EyeOff = function EyeOff(props) {
|
|
|
24585
24649
|
className = props.className,
|
|
24586
24650
|
iconClassName = props.iconClassName,
|
|
24587
24651
|
testid = props.testid,
|
|
24588
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24652
|
+
otherProps = _objectWithoutProperties(props, _excluded$6G);
|
|
24589
24653
|
return /*#__PURE__*/React.createElement("span", {
|
|
24590
24654
|
role: "img",
|
|
24591
24655
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24592
24656
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24593
|
-
children: loadingCircleStyle$
|
|
24657
|
+
children: loadingCircleStyle$6G
|
|
24594
24658
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24595
24659
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24596
24660
|
width: size,
|
|
@@ -24627,8 +24691,8 @@ EyeOff.defaultProps = {
|
|
|
24627
24691
|
size: '1em'
|
|
24628
24692
|
};
|
|
24629
24693
|
|
|
24630
|
-
var _excluded$
|
|
24631
|
-
var loadingCircleStyle$
|
|
24694
|
+
var _excluded$6H = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24695
|
+
var loadingCircleStyle$6H = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24632
24696
|
var EyeOffFill = function EyeOffFill(props) {
|
|
24633
24697
|
var color = props.color,
|
|
24634
24698
|
size = props.size,
|
|
@@ -24637,12 +24701,12 @@ var EyeOffFill = function EyeOffFill(props) {
|
|
|
24637
24701
|
className = props.className,
|
|
24638
24702
|
iconClassName = props.iconClassName,
|
|
24639
24703
|
testid = props.testid,
|
|
24640
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24704
|
+
otherProps = _objectWithoutProperties(props, _excluded$6H);
|
|
24641
24705
|
return /*#__PURE__*/React.createElement("span", {
|
|
24642
24706
|
role: "img",
|
|
24643
24707
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24644
24708
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24645
|
-
children: loadingCircleStyle$
|
|
24709
|
+
children: loadingCircleStyle$6H
|
|
24646
24710
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24647
24711
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24648
24712
|
width: size,
|
|
@@ -24681,8 +24745,8 @@ EyeOffFill.defaultProps = {
|
|
|
24681
24745
|
size: '1em'
|
|
24682
24746
|
};
|
|
24683
24747
|
|
|
24684
|
-
var _excluded$
|
|
24685
|
-
var loadingCircleStyle$
|
|
24748
|
+
var _excluded$6I = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24749
|
+
var loadingCircleStyle$6I = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24686
24750
|
var Dot = function Dot(props) {
|
|
24687
24751
|
var color = props.color,
|
|
24688
24752
|
size = props.size,
|
|
@@ -24691,12 +24755,12 @@ var Dot = function Dot(props) {
|
|
|
24691
24755
|
className = props.className,
|
|
24692
24756
|
iconClassName = props.iconClassName,
|
|
24693
24757
|
testid = props.testid,
|
|
24694
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24758
|
+
otherProps = _objectWithoutProperties(props, _excluded$6I);
|
|
24695
24759
|
return /*#__PURE__*/React.createElement("span", {
|
|
24696
24760
|
role: "img",
|
|
24697
24761
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24698
24762
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24699
|
-
children: loadingCircleStyle$
|
|
24763
|
+
children: loadingCircleStyle$6I
|
|
24700
24764
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24701
24765
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24702
24766
|
width: size,
|
|
@@ -24735,8 +24799,8 @@ Dot.defaultProps = {
|
|
|
24735
24799
|
size: '1em'
|
|
24736
24800
|
};
|
|
24737
24801
|
|
|
24738
|
-
var _excluded$
|
|
24739
|
-
var loadingCircleStyle$
|
|
24802
|
+
var _excluded$6J = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24803
|
+
var loadingCircleStyle$6J = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24740
24804
|
var Anchor = function Anchor(props) {
|
|
24741
24805
|
var color = props.color,
|
|
24742
24806
|
size = props.size,
|
|
@@ -24745,12 +24809,12 @@ var Anchor = function Anchor(props) {
|
|
|
24745
24809
|
className = props.className,
|
|
24746
24810
|
iconClassName = props.iconClassName,
|
|
24747
24811
|
testid = props.testid,
|
|
24748
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24812
|
+
otherProps = _objectWithoutProperties(props, _excluded$6J);
|
|
24749
24813
|
return /*#__PURE__*/React.createElement("span", {
|
|
24750
24814
|
role: "img",
|
|
24751
24815
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24752
24816
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24753
|
-
children: loadingCircleStyle$
|
|
24817
|
+
children: loadingCircleStyle$6J
|
|
24754
24818
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24755
24819
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24756
24820
|
width: size,
|
|
@@ -24787,8 +24851,8 @@ Anchor.defaultProps = {
|
|
|
24787
24851
|
size: '1em'
|
|
24788
24852
|
};
|
|
24789
24853
|
|
|
24790
|
-
var _excluded$
|
|
24791
|
-
var loadingCircleStyle$
|
|
24854
|
+
var _excluded$6K = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24855
|
+
var loadingCircleStyle$6K = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24792
24856
|
var Notice = function Notice(props) {
|
|
24793
24857
|
var color = props.color,
|
|
24794
24858
|
size = props.size,
|
|
@@ -24797,12 +24861,12 @@ var Notice = function Notice(props) {
|
|
|
24797
24861
|
className = props.className,
|
|
24798
24862
|
iconClassName = props.iconClassName,
|
|
24799
24863
|
testid = props.testid,
|
|
24800
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24864
|
+
otherProps = _objectWithoutProperties(props, _excluded$6K);
|
|
24801
24865
|
return /*#__PURE__*/React.createElement("span", {
|
|
24802
24866
|
role: "img",
|
|
24803
24867
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24804
24868
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24805
|
-
children: loadingCircleStyle$
|
|
24869
|
+
children: loadingCircleStyle$6K
|
|
24806
24870
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24807
24871
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24808
24872
|
width: size,
|
|
@@ -24841,8 +24905,8 @@ Notice.defaultProps = {
|
|
|
24841
24905
|
size: '1em'
|
|
24842
24906
|
};
|
|
24843
24907
|
|
|
24844
|
-
var _excluded$
|
|
24845
|
-
var loadingCircleStyle$
|
|
24908
|
+
var _excluded$6L = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24909
|
+
var loadingCircleStyle$6L = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24846
24910
|
var ThumbUp = function ThumbUp(props) {
|
|
24847
24911
|
var color = props.color,
|
|
24848
24912
|
size = props.size,
|
|
@@ -24851,12 +24915,12 @@ var ThumbUp = function ThumbUp(props) {
|
|
|
24851
24915
|
className = props.className,
|
|
24852
24916
|
iconClassName = props.iconClassName,
|
|
24853
24917
|
testid = props.testid,
|
|
24854
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24918
|
+
otherProps = _objectWithoutProperties(props, _excluded$6L);
|
|
24855
24919
|
return /*#__PURE__*/React.createElement("span", {
|
|
24856
24920
|
role: "img",
|
|
24857
24921
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24858
24922
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24859
|
-
children: loadingCircleStyle$
|
|
24923
|
+
children: loadingCircleStyle$6L
|
|
24860
24924
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24861
24925
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24862
24926
|
width: size,
|
|
@@ -24893,8 +24957,8 @@ ThumbUp.defaultProps = {
|
|
|
24893
24957
|
size: '1em'
|
|
24894
24958
|
};
|
|
24895
24959
|
|
|
24896
|
-
var _excluded$
|
|
24897
|
-
var loadingCircleStyle$
|
|
24960
|
+
var _excluded$6M = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
24961
|
+
var loadingCircleStyle$6M = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24898
24962
|
var ThumbDown = function ThumbDown(props) {
|
|
24899
24963
|
var color = props.color,
|
|
24900
24964
|
size = props.size,
|
|
@@ -24903,12 +24967,12 @@ var ThumbDown = function ThumbDown(props) {
|
|
|
24903
24967
|
className = props.className,
|
|
24904
24968
|
iconClassName = props.iconClassName,
|
|
24905
24969
|
testid = props.testid,
|
|
24906
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
24970
|
+
otherProps = _objectWithoutProperties(props, _excluded$6M);
|
|
24907
24971
|
return /*#__PURE__*/React.createElement("span", {
|
|
24908
24972
|
role: "img",
|
|
24909
24973
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24910
24974
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24911
|
-
children: loadingCircleStyle$
|
|
24975
|
+
children: loadingCircleStyle$6M
|
|
24912
24976
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24913
24977
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24914
24978
|
width: size,
|
|
@@ -24945,8 +25009,8 @@ ThumbDown.defaultProps = {
|
|
|
24945
25009
|
size: '1em'
|
|
24946
25010
|
};
|
|
24947
25011
|
|
|
24948
|
-
var _excluded$
|
|
24949
|
-
var loadingCircleStyle$
|
|
25012
|
+
var _excluded$6N = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25013
|
+
var loadingCircleStyle$6N = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
24950
25014
|
var TdLogo = function TdLogo(props) {
|
|
24951
25015
|
var color = props.color,
|
|
24952
25016
|
size = props.size,
|
|
@@ -24955,12 +25019,12 @@ var TdLogo = function TdLogo(props) {
|
|
|
24955
25019
|
className = props.className,
|
|
24956
25020
|
iconClassName = props.iconClassName,
|
|
24957
25021
|
testid = props.testid,
|
|
24958
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25022
|
+
otherProps = _objectWithoutProperties(props, _excluded$6N);
|
|
24959
25023
|
return /*#__PURE__*/React.createElement("span", {
|
|
24960
25024
|
role: "img",
|
|
24961
25025
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
24962
25026
|
}, /*#__PURE__*/React.createElement("style", {
|
|
24963
|
-
children: loadingCircleStyle$
|
|
25027
|
+
children: loadingCircleStyle$6N
|
|
24964
25028
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
24965
25029
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24966
25030
|
width: size,
|
|
@@ -25005,8 +25069,8 @@ TdLogo.defaultProps = {
|
|
|
25005
25069
|
size: '1em'
|
|
25006
25070
|
};
|
|
25007
25071
|
|
|
25008
|
-
var _excluded$
|
|
25009
|
-
var loadingCircleStyle$
|
|
25072
|
+
var _excluded$6O = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25073
|
+
var loadingCircleStyle$6O = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25010
25074
|
var Language = function Language(props) {
|
|
25011
25075
|
var color = props.color,
|
|
25012
25076
|
size = props.size,
|
|
@@ -25015,12 +25079,12 @@ var Language = function Language(props) {
|
|
|
25015
25079
|
className = props.className,
|
|
25016
25080
|
iconClassName = props.iconClassName,
|
|
25017
25081
|
testid = props.testid,
|
|
25018
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25082
|
+
otherProps = _objectWithoutProperties(props, _excluded$6O);
|
|
25019
25083
|
return /*#__PURE__*/React.createElement("span", {
|
|
25020
25084
|
role: "img",
|
|
25021
25085
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25022
25086
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25023
|
-
children: loadingCircleStyle$
|
|
25087
|
+
children: loadingCircleStyle$6O
|
|
25024
25088
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25025
25089
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25026
25090
|
width: size,
|
|
@@ -25057,8 +25121,8 @@ Language.defaultProps = {
|
|
|
25057
25121
|
size: '1em'
|
|
25058
25122
|
};
|
|
25059
25123
|
|
|
25060
|
-
var _excluded$
|
|
25061
|
-
var loadingCircleStyle$
|
|
25124
|
+
var _excluded$6P = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25125
|
+
var loadingCircleStyle$6P = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25062
25126
|
var Calendar = function Calendar(props) {
|
|
25063
25127
|
var color = props.color,
|
|
25064
25128
|
size = props.size,
|
|
@@ -25067,12 +25131,12 @@ var Calendar = function Calendar(props) {
|
|
|
25067
25131
|
className = props.className,
|
|
25068
25132
|
iconClassName = props.iconClassName,
|
|
25069
25133
|
testid = props.testid,
|
|
25070
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25134
|
+
otherProps = _objectWithoutProperties(props, _excluded$6P);
|
|
25071
25135
|
return /*#__PURE__*/React.createElement("span", {
|
|
25072
25136
|
role: "img",
|
|
25073
25137
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25074
25138
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25075
|
-
children: loadingCircleStyle$
|
|
25139
|
+
children: loadingCircleStyle$6P
|
|
25076
25140
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25077
25141
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25078
25142
|
width: size,
|
|
@@ -25109,8 +25173,8 @@ Calendar.defaultProps = {
|
|
|
25109
25173
|
size: '1em'
|
|
25110
25174
|
};
|
|
25111
25175
|
|
|
25112
|
-
var _excluded$
|
|
25113
|
-
var loadingCircleStyle$
|
|
25176
|
+
var _excluded$6Q = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25177
|
+
var loadingCircleStyle$6Q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25114
25178
|
var Server = function Server(props) {
|
|
25115
25179
|
var color = props.color,
|
|
25116
25180
|
size = props.size,
|
|
@@ -25119,12 +25183,12 @@ var Server = function Server(props) {
|
|
|
25119
25183
|
className = props.className,
|
|
25120
25184
|
iconClassName = props.iconClassName,
|
|
25121
25185
|
testid = props.testid,
|
|
25122
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25186
|
+
otherProps = _objectWithoutProperties(props, _excluded$6Q);
|
|
25123
25187
|
return /*#__PURE__*/React.createElement("span", {
|
|
25124
25188
|
role: "img",
|
|
25125
25189
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25126
25190
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25127
|
-
children: loadingCircleStyle$
|
|
25191
|
+
children: loadingCircleStyle$6Q
|
|
25128
25192
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25129
25193
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25130
25194
|
width: size,
|
|
@@ -25161,8 +25225,8 @@ Server.defaultProps = {
|
|
|
25161
25225
|
size: '1em'
|
|
25162
25226
|
};
|
|
25163
25227
|
|
|
25164
|
-
var _excluded$
|
|
25165
|
-
var loadingCircleStyle$
|
|
25228
|
+
var _excluded$6R = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25229
|
+
var loadingCircleStyle$6R = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25166
25230
|
var Desktop = function Desktop(props) {
|
|
25167
25231
|
var color = props.color,
|
|
25168
25232
|
size = props.size,
|
|
@@ -25171,12 +25235,12 @@ var Desktop = function Desktop(props) {
|
|
|
25171
25235
|
className = props.className,
|
|
25172
25236
|
iconClassName = props.iconClassName,
|
|
25173
25237
|
testid = props.testid,
|
|
25174
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25238
|
+
otherProps = _objectWithoutProperties(props, _excluded$6R);
|
|
25175
25239
|
return /*#__PURE__*/React.createElement("span", {
|
|
25176
25240
|
role: "img",
|
|
25177
25241
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25178
25242
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25179
|
-
children: loadingCircleStyle$
|
|
25243
|
+
children: loadingCircleStyle$6R
|
|
25180
25244
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25181
25245
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25182
25246
|
width: size,
|
|
@@ -25213,8 +25277,8 @@ Desktop.defaultProps = {
|
|
|
25213
25277
|
size: '1em'
|
|
25214
25278
|
};
|
|
25215
25279
|
|
|
25216
|
-
var _excluded$
|
|
25217
|
-
var loadingCircleStyle$
|
|
25280
|
+
var _excluded$6S = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25281
|
+
var loadingCircleStyle$6S = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25218
25282
|
var Demo = function Demo(props) {
|
|
25219
25283
|
var color = props.color,
|
|
25220
25284
|
size = props.size,
|
|
@@ -25223,12 +25287,12 @@ var Demo = function Demo(props) {
|
|
|
25223
25287
|
className = props.className,
|
|
25224
25288
|
iconClassName = props.iconClassName,
|
|
25225
25289
|
testid = props.testid,
|
|
25226
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25290
|
+
otherProps = _objectWithoutProperties(props, _excluded$6S);
|
|
25227
25291
|
return /*#__PURE__*/React.createElement("span", {
|
|
25228
25292
|
role: "img",
|
|
25229
25293
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25230
25294
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25231
|
-
children: loadingCircleStyle$
|
|
25295
|
+
children: loadingCircleStyle$6S
|
|
25232
25296
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25233
25297
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25234
25298
|
width: size,
|
|
@@ -25267,8 +25331,8 @@ Demo.defaultProps = {
|
|
|
25267
25331
|
size: '1em'
|
|
25268
25332
|
};
|
|
25269
25333
|
|
|
25270
|
-
var _excluded$
|
|
25271
|
-
var loadingCircleStyle$
|
|
25334
|
+
var _excluded$6T = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25335
|
+
var loadingCircleStyle$6T = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25272
25336
|
var Cellphone = function Cellphone(props) {
|
|
25273
25337
|
var color = props.color,
|
|
25274
25338
|
size = props.size,
|
|
@@ -25277,12 +25341,12 @@ var Cellphone = function Cellphone(props) {
|
|
|
25277
25341
|
className = props.className,
|
|
25278
25342
|
iconClassName = props.iconClassName,
|
|
25279
25343
|
testid = props.testid,
|
|
25280
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25344
|
+
otherProps = _objectWithoutProperties(props, _excluded$6T);
|
|
25281
25345
|
return /*#__PURE__*/React.createElement("span", {
|
|
25282
25346
|
role: "img",
|
|
25283
25347
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25284
25348
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25285
|
-
children: loadingCircleStyle$
|
|
25349
|
+
children: loadingCircleStyle$6T
|
|
25286
25350
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25287
25351
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25288
25352
|
width: size,
|
|
@@ -25321,8 +25385,8 @@ Cellphone.defaultProps = {
|
|
|
25321
25385
|
size: '1em'
|
|
25322
25386
|
};
|
|
25323
25387
|
|
|
25324
|
-
var _excluded$
|
|
25325
|
-
var loadingCircleStyle$
|
|
25388
|
+
var _excluded$6U = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25389
|
+
var loadingCircleStyle$6U = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25326
25390
|
var Landscape = function Landscape(props) {
|
|
25327
25391
|
var color = props.color,
|
|
25328
25392
|
size = props.size,
|
|
@@ -25331,12 +25395,12 @@ var Landscape = function Landscape(props) {
|
|
|
25331
25395
|
className = props.className,
|
|
25332
25396
|
iconClassName = props.iconClassName,
|
|
25333
25397
|
testid = props.testid,
|
|
25334
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25398
|
+
otherProps = _objectWithoutProperties(props, _excluded$6U);
|
|
25335
25399
|
return /*#__PURE__*/React.createElement("span", {
|
|
25336
25400
|
role: "img",
|
|
25337
25401
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25338
25402
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25339
|
-
children: loadingCircleStyle$
|
|
25403
|
+
children: loadingCircleStyle$6U
|
|
25340
25404
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25341
25405
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25342
25406
|
width: size,
|
|
@@ -25377,8 +25441,8 @@ Landscape.defaultProps = {
|
|
|
25377
25441
|
size: '1em'
|
|
25378
25442
|
};
|
|
25379
25443
|
|
|
25380
|
-
var _excluded$
|
|
25381
|
-
var loadingCircleStyle$
|
|
25444
|
+
var _excluded$6V = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25445
|
+
var loadingCircleStyle$6V = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25382
25446
|
var Email = function Email(props) {
|
|
25383
25447
|
var color = props.color,
|
|
25384
25448
|
size = props.size,
|
|
@@ -25387,12 +25451,12 @@ var Email = function Email(props) {
|
|
|
25387
25451
|
className = props.className,
|
|
25388
25452
|
iconClassName = props.iconClassName,
|
|
25389
25453
|
testid = props.testid,
|
|
25390
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25454
|
+
otherProps = _objectWithoutProperties(props, _excluded$6V);
|
|
25391
25455
|
return /*#__PURE__*/React.createElement("span", {
|
|
25392
25456
|
role: "img",
|
|
25393
25457
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25394
25458
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25395
|
-
children: loadingCircleStyle$
|
|
25459
|
+
children: loadingCircleStyle$6V
|
|
25396
25460
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25397
25461
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25398
25462
|
width: size,
|
|
@@ -25429,8 +25493,8 @@ Email.defaultProps = {
|
|
|
25429
25493
|
size: '1em'
|
|
25430
25494
|
};
|
|
25431
25495
|
|
|
25432
|
-
var _excluded$
|
|
25433
|
-
var loadingCircleStyle$
|
|
25496
|
+
var _excluded$6W = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25497
|
+
var loadingCircleStyle$6W = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25434
25498
|
var Clock = function Clock(props) {
|
|
25435
25499
|
var color = props.color,
|
|
25436
25500
|
size = props.size,
|
|
@@ -25439,12 +25503,12 @@ var Clock = function Clock(props) {
|
|
|
25439
25503
|
className = props.className,
|
|
25440
25504
|
iconClassName = props.iconClassName,
|
|
25441
25505
|
testid = props.testid,
|
|
25442
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25506
|
+
otherProps = _objectWithoutProperties(props, _excluded$6W);
|
|
25443
25507
|
return /*#__PURE__*/React.createElement("span", {
|
|
25444
25508
|
role: "img",
|
|
25445
25509
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25446
25510
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25447
|
-
children: loadingCircleStyle$
|
|
25511
|
+
children: loadingCircleStyle$6W
|
|
25448
25512
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25449
25513
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25450
25514
|
width: size,
|
|
@@ -25483,8 +25547,8 @@ Clock.defaultProps = {
|
|
|
25483
25547
|
size: '1em'
|
|
25484
25548
|
};
|
|
25485
25549
|
|
|
25486
|
-
var _excluded$
|
|
25487
|
-
var loadingCircleStyle$
|
|
25550
|
+
var _excluded$6X = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25551
|
+
var loadingCircleStyle$6X = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25488
25552
|
var Password = function Password(props) {
|
|
25489
25553
|
var color = props.color,
|
|
25490
25554
|
size = props.size,
|
|
@@ -25493,12 +25557,12 @@ var Password = function Password(props) {
|
|
|
25493
25557
|
className = props.className,
|
|
25494
25558
|
iconClassName = props.iconClassName,
|
|
25495
25559
|
testid = props.testid,
|
|
25496
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25560
|
+
otherProps = _objectWithoutProperties(props, _excluded$6X);
|
|
25497
25561
|
return /*#__PURE__*/React.createElement("span", {
|
|
25498
25562
|
role: "img",
|
|
25499
25563
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25500
25564
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25501
|
-
children: loadingCircleStyle$
|
|
25565
|
+
children: loadingCircleStyle$6X
|
|
25502
25566
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25503
25567
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25504
25568
|
width: size,
|
|
@@ -25535,8 +25599,8 @@ Password.defaultProps = {
|
|
|
25535
25599
|
size: '1em'
|
|
25536
25600
|
};
|
|
25537
25601
|
|
|
25538
|
-
var _excluded$
|
|
25539
|
-
var loadingCircleStyle$
|
|
25602
|
+
var _excluded$6Y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25603
|
+
var loadingCircleStyle$6Y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25540
25604
|
var ResetPassword = function ResetPassword(props) {
|
|
25541
25605
|
var color = props.color,
|
|
25542
25606
|
size = props.size,
|
|
@@ -25545,12 +25609,12 @@ var ResetPassword = function ResetPassword(props) {
|
|
|
25545
25609
|
className = props.className,
|
|
25546
25610
|
iconClassName = props.iconClassName,
|
|
25547
25611
|
testid = props.testid,
|
|
25548
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25612
|
+
otherProps = _objectWithoutProperties(props, _excluded$6Y);
|
|
25549
25613
|
return /*#__PURE__*/React.createElement("span", {
|
|
25550
25614
|
role: "img",
|
|
25551
25615
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25552
25616
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25553
|
-
children: loadingCircleStyle$
|
|
25617
|
+
children: loadingCircleStyle$6Y
|
|
25554
25618
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25555
25619
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25556
25620
|
width: size,
|
|
@@ -25587,8 +25651,8 @@ ResetPassword.defaultProps = {
|
|
|
25587
25651
|
size: '1em'
|
|
25588
25652
|
};
|
|
25589
25653
|
|
|
25590
|
-
var _excluded$
|
|
25591
|
-
var loadingCircleStyle$
|
|
25654
|
+
var _excluded$6Z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25655
|
+
var loadingCircleStyle$6Z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25592
25656
|
var Private = function Private(props) {
|
|
25593
25657
|
var color = props.color,
|
|
25594
25658
|
size = props.size,
|
|
@@ -25597,12 +25661,12 @@ var Private = function Private(props) {
|
|
|
25597
25661
|
className = props.className,
|
|
25598
25662
|
iconClassName = props.iconClassName,
|
|
25599
25663
|
testid = props.testid,
|
|
25600
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25664
|
+
otherProps = _objectWithoutProperties(props, _excluded$6Z);
|
|
25601
25665
|
return /*#__PURE__*/React.createElement("span", {
|
|
25602
25666
|
role: "img",
|
|
25603
25667
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25604
25668
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25605
|
-
children: loadingCircleStyle$
|
|
25669
|
+
children: loadingCircleStyle$6Z
|
|
25606
25670
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25607
25671
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25608
25672
|
width: size,
|
|
@@ -25639,8 +25703,8 @@ Private.defaultProps = {
|
|
|
25639
25703
|
size: '1em'
|
|
25640
25704
|
};
|
|
25641
25705
|
|
|
25642
|
-
var _excluded$
|
|
25643
|
-
var loadingCircleStyle$
|
|
25706
|
+
var _excluded$6_ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25707
|
+
var loadingCircleStyle$6_ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25644
25708
|
var Bell = function Bell(props) {
|
|
25645
25709
|
var color = props.color,
|
|
25646
25710
|
size = props.size,
|
|
@@ -25649,12 +25713,12 @@ var Bell = function Bell(props) {
|
|
|
25649
25713
|
className = props.className,
|
|
25650
25714
|
iconClassName = props.iconClassName,
|
|
25651
25715
|
testid = props.testid,
|
|
25652
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25716
|
+
otherProps = _objectWithoutProperties(props, _excluded$6_);
|
|
25653
25717
|
return /*#__PURE__*/React.createElement("span", {
|
|
25654
25718
|
role: "img",
|
|
25655
25719
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25656
25720
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25657
|
-
children: loadingCircleStyle$
|
|
25721
|
+
children: loadingCircleStyle$6_
|
|
25658
25722
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25659
25723
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25660
25724
|
width: size,
|
|
@@ -25693,8 +25757,8 @@ Bell.defaultProps = {
|
|
|
25693
25757
|
size: '1em'
|
|
25694
25758
|
};
|
|
25695
25759
|
|
|
25696
|
-
var _excluded$
|
|
25697
|
-
var loadingCircleStyle$
|
|
25760
|
+
var _excluded$6$ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25761
|
+
var loadingCircleStyle$6$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25698
25762
|
var Logout = function Logout(props) {
|
|
25699
25763
|
var color = props.color,
|
|
25700
25764
|
size = props.size,
|
|
@@ -25703,12 +25767,12 @@ var Logout = function Logout(props) {
|
|
|
25703
25767
|
className = props.className,
|
|
25704
25768
|
iconClassName = props.iconClassName,
|
|
25705
25769
|
testid = props.testid,
|
|
25706
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25770
|
+
otherProps = _objectWithoutProperties(props, _excluded$6$);
|
|
25707
25771
|
return /*#__PURE__*/React.createElement("span", {
|
|
25708
25772
|
role: "img",
|
|
25709
25773
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25710
25774
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25711
|
-
children: loadingCircleStyle$
|
|
25775
|
+
children: loadingCircleStyle$6$
|
|
25712
25776
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25713
25777
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25714
25778
|
width: size,
|
|
@@ -25747,8 +25811,8 @@ Logout.defaultProps = {
|
|
|
25747
25811
|
size: '1em'
|
|
25748
25812
|
};
|
|
25749
25813
|
|
|
25750
|
-
var _excluded$
|
|
25751
|
-
var loadingCircleStyle$
|
|
25814
|
+
var _excluded$70 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25815
|
+
var loadingCircleStyle$70 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25752
25816
|
var Speed = function Speed(props) {
|
|
25753
25817
|
var color = props.color,
|
|
25754
25818
|
size = props.size,
|
|
@@ -25757,12 +25821,12 @@ var Speed = function Speed(props) {
|
|
|
25757
25821
|
className = props.className,
|
|
25758
25822
|
iconClassName = props.iconClassName,
|
|
25759
25823
|
testid = props.testid,
|
|
25760
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25824
|
+
otherProps = _objectWithoutProperties(props, _excluded$70);
|
|
25761
25825
|
return /*#__PURE__*/React.createElement("span", {
|
|
25762
25826
|
role: "img",
|
|
25763
25827
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25764
25828
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25765
|
-
children: loadingCircleStyle$
|
|
25829
|
+
children: loadingCircleStyle$70
|
|
25766
25830
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25767
25831
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25768
25832
|
width: size,
|
|
@@ -25799,8 +25863,8 @@ Speed.defaultProps = {
|
|
|
25799
25863
|
size: '1em'
|
|
25800
25864
|
};
|
|
25801
25865
|
|
|
25802
|
-
var _excluded$
|
|
25803
|
-
var loadingCircleStyle$
|
|
25866
|
+
var _excluded$71 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25867
|
+
var loadingCircleStyle$71 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25804
25868
|
var Mfa = function Mfa(props) {
|
|
25805
25869
|
var color = props.color,
|
|
25806
25870
|
size = props.size,
|
|
@@ -25809,12 +25873,12 @@ var Mfa = function Mfa(props) {
|
|
|
25809
25873
|
className = props.className,
|
|
25810
25874
|
iconClassName = props.iconClassName,
|
|
25811
25875
|
testid = props.testid,
|
|
25812
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25876
|
+
otherProps = _objectWithoutProperties(props, _excluded$71);
|
|
25813
25877
|
return /*#__PURE__*/React.createElement("span", {
|
|
25814
25878
|
role: "img",
|
|
25815
25879
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25816
25880
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25817
|
-
children: loadingCircleStyle$
|
|
25881
|
+
children: loadingCircleStyle$71
|
|
25818
25882
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25819
25883
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25820
25884
|
width: size,
|
|
@@ -25851,8 +25915,8 @@ Mfa.defaultProps = {
|
|
|
25851
25915
|
size: '1em'
|
|
25852
25916
|
};
|
|
25853
25917
|
|
|
25854
|
-
var _excluded$
|
|
25855
|
-
var loadingCircleStyle$
|
|
25918
|
+
var _excluded$72 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25919
|
+
var loadingCircleStyle$72 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25856
25920
|
var Tracking = function Tracking(props) {
|
|
25857
25921
|
var color = props.color,
|
|
25858
25922
|
size = props.size,
|
|
@@ -25861,12 +25925,12 @@ var Tracking = function Tracking(props) {
|
|
|
25861
25925
|
className = props.className,
|
|
25862
25926
|
iconClassName = props.iconClassName,
|
|
25863
25927
|
testid = props.testid,
|
|
25864
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25928
|
+
otherProps = _objectWithoutProperties(props, _excluded$72);
|
|
25865
25929
|
return /*#__PURE__*/React.createElement("span", {
|
|
25866
25930
|
role: "img",
|
|
25867
25931
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25868
25932
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25869
|
-
children: loadingCircleStyle$
|
|
25933
|
+
children: loadingCircleStyle$72
|
|
25870
25934
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25871
25935
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25872
25936
|
width: size,
|
|
@@ -25913,8 +25977,8 @@ Tracking.defaultProps = {
|
|
|
25913
25977
|
size: '1em'
|
|
25914
25978
|
};
|
|
25915
25979
|
|
|
25916
|
-
var _excluded$
|
|
25917
|
-
var loadingCircleStyle$
|
|
25980
|
+
var _excluded$73 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
25981
|
+
var loadingCircleStyle$73 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25918
25982
|
var Forewarning = function Forewarning(props) {
|
|
25919
25983
|
var color = props.color,
|
|
25920
25984
|
size = props.size,
|
|
@@ -25923,12 +25987,12 @@ var Forewarning = function Forewarning(props) {
|
|
|
25923
25987
|
className = props.className,
|
|
25924
25988
|
iconClassName = props.iconClassName,
|
|
25925
25989
|
testid = props.testid,
|
|
25926
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
25990
|
+
otherProps = _objectWithoutProperties(props, _excluded$73);
|
|
25927
25991
|
return /*#__PURE__*/React.createElement("span", {
|
|
25928
25992
|
role: "img",
|
|
25929
25993
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25930
25994
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25931
|
-
children: loadingCircleStyle$
|
|
25995
|
+
children: loadingCircleStyle$73
|
|
25932
25996
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25933
25997
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25934
25998
|
width: size,
|
|
@@ -25969,8 +26033,8 @@ Forewarning.defaultProps = {
|
|
|
25969
26033
|
size: '1em'
|
|
25970
26034
|
};
|
|
25971
26035
|
|
|
25972
|
-
var _excluded$
|
|
25973
|
-
var loadingCircleStyle$
|
|
26036
|
+
var _excluded$74 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26037
|
+
var loadingCircleStyle$74 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
25974
26038
|
var SystemMgr = function SystemMgr(props) {
|
|
25975
26039
|
var color = props.color,
|
|
25976
26040
|
size = props.size,
|
|
@@ -25979,12 +26043,12 @@ var SystemMgr = function SystemMgr(props) {
|
|
|
25979
26043
|
className = props.className,
|
|
25980
26044
|
iconClassName = props.iconClassName,
|
|
25981
26045
|
testid = props.testid,
|
|
25982
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26046
|
+
otherProps = _objectWithoutProperties(props, _excluded$74);
|
|
25983
26047
|
return /*#__PURE__*/React.createElement("span", {
|
|
25984
26048
|
role: "img",
|
|
25985
26049
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25986
26050
|
}, /*#__PURE__*/React.createElement("style", {
|
|
25987
|
-
children: loadingCircleStyle$
|
|
26051
|
+
children: loadingCircleStyle$74
|
|
25988
26052
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
25989
26053
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25990
26054
|
width: size,
|
|
@@ -26025,8 +26089,8 @@ SystemMgr.defaultProps = {
|
|
|
26025
26089
|
size: '1em'
|
|
26026
26090
|
};
|
|
26027
26091
|
|
|
26028
|
-
var _excluded$
|
|
26029
|
-
var loadingCircleStyle$
|
|
26092
|
+
var _excluded$75 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26093
|
+
var loadingCircleStyle$75 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26030
26094
|
var Pattern = function Pattern(props) {
|
|
26031
26095
|
var color = props.color,
|
|
26032
26096
|
size = props.size,
|
|
@@ -26035,12 +26099,12 @@ var Pattern = function Pattern(props) {
|
|
|
26035
26099
|
className = props.className,
|
|
26036
26100
|
iconClassName = props.iconClassName,
|
|
26037
26101
|
testid = props.testid,
|
|
26038
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26102
|
+
otherProps = _objectWithoutProperties(props, _excluded$75);
|
|
26039
26103
|
return /*#__PURE__*/React.createElement("span", {
|
|
26040
26104
|
role: "img",
|
|
26041
26105
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26042
26106
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26043
|
-
children: loadingCircleStyle$
|
|
26107
|
+
children: loadingCircleStyle$75
|
|
26044
26108
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26045
26109
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26046
26110
|
width: size,
|
|
@@ -26085,8 +26149,8 @@ Pattern.defaultProps = {
|
|
|
26085
26149
|
size: '1em'
|
|
26086
26150
|
};
|
|
26087
26151
|
|
|
26088
|
-
var _excluded$
|
|
26089
|
-
var loadingCircleStyle$
|
|
26152
|
+
var _excluded$76 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26153
|
+
var loadingCircleStyle$76 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26090
26154
|
var Debug = function Debug(props) {
|
|
26091
26155
|
var color = props.color,
|
|
26092
26156
|
size = props.size,
|
|
@@ -26095,12 +26159,12 @@ var Debug = function Debug(props) {
|
|
|
26095
26159
|
className = props.className,
|
|
26096
26160
|
iconClassName = props.iconClassName,
|
|
26097
26161
|
testid = props.testid,
|
|
26098
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26162
|
+
otherProps = _objectWithoutProperties(props, _excluded$76);
|
|
26099
26163
|
return /*#__PURE__*/React.createElement("span", {
|
|
26100
26164
|
role: "img",
|
|
26101
26165
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26102
26166
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26103
|
-
children: loadingCircleStyle$
|
|
26167
|
+
children: loadingCircleStyle$76
|
|
26104
26168
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26105
26169
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26106
26170
|
width: size,
|
|
@@ -26137,8 +26201,8 @@ Debug.defaultProps = {
|
|
|
26137
26201
|
size: '1em'
|
|
26138
26202
|
};
|
|
26139
26203
|
|
|
26140
|
-
var _excluded$
|
|
26141
|
-
var loadingCircleStyle$
|
|
26204
|
+
var _excluded$77 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26205
|
+
var loadingCircleStyle$77 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26142
26206
|
var Live = function Live(props) {
|
|
26143
26207
|
var color = props.color,
|
|
26144
26208
|
size = props.size,
|
|
@@ -26147,12 +26211,12 @@ var Live = function Live(props) {
|
|
|
26147
26211
|
className = props.className,
|
|
26148
26212
|
iconClassName = props.iconClassName,
|
|
26149
26213
|
testid = props.testid,
|
|
26150
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26214
|
+
otherProps = _objectWithoutProperties(props, _excluded$77);
|
|
26151
26215
|
return /*#__PURE__*/React.createElement("span", {
|
|
26152
26216
|
role: "img",
|
|
26153
26217
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26154
26218
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26155
|
-
children: loadingCircleStyle$
|
|
26219
|
+
children: loadingCircleStyle$77
|
|
26156
26220
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26157
26221
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26158
26222
|
width: size,
|
|
@@ -26189,8 +26253,8 @@ Live.defaultProps = {
|
|
|
26189
26253
|
size: '1em'
|
|
26190
26254
|
};
|
|
26191
26255
|
|
|
26192
|
-
var _excluded$
|
|
26193
|
-
var loadingCircleStyle$
|
|
26256
|
+
var _excluded$78 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26257
|
+
var loadingCircleStyle$78 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26194
26258
|
var Plug = function Plug(props) {
|
|
26195
26259
|
var color = props.color,
|
|
26196
26260
|
size = props.size,
|
|
@@ -26199,12 +26263,12 @@ var Plug = function Plug(props) {
|
|
|
26199
26263
|
className = props.className,
|
|
26200
26264
|
iconClassName = props.iconClassName,
|
|
26201
26265
|
testid = props.testid,
|
|
26202
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26266
|
+
otherProps = _objectWithoutProperties(props, _excluded$78);
|
|
26203
26267
|
return /*#__PURE__*/React.createElement("span", {
|
|
26204
26268
|
role: "img",
|
|
26205
26269
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26206
26270
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26207
|
-
children: loadingCircleStyle$
|
|
26271
|
+
children: loadingCircleStyle$78
|
|
26208
26272
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26209
26273
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26210
26274
|
width: size,
|
|
@@ -26241,8 +26305,8 @@ Plug.defaultProps = {
|
|
|
26241
26305
|
size: '1em'
|
|
26242
26306
|
};
|
|
26243
26307
|
|
|
26244
|
-
var _excluded$
|
|
26245
|
-
var loadingCircleStyle$
|
|
26308
|
+
var _excluded$79 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26309
|
+
var loadingCircleStyle$79 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26246
26310
|
var Application = function Application(props) {
|
|
26247
26311
|
var color = props.color,
|
|
26248
26312
|
size = props.size,
|
|
@@ -26251,12 +26315,12 @@ var Application = function Application(props) {
|
|
|
26251
26315
|
className = props.className,
|
|
26252
26316
|
iconClassName = props.iconClassName,
|
|
26253
26317
|
testid = props.testid,
|
|
26254
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26318
|
+
otherProps = _objectWithoutProperties(props, _excluded$79);
|
|
26255
26319
|
return /*#__PURE__*/React.createElement("span", {
|
|
26256
26320
|
role: "img",
|
|
26257
26321
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26258
26322
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26259
|
-
children: loadingCircleStyle$
|
|
26323
|
+
children: loadingCircleStyle$79
|
|
26260
26324
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26261
26325
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26262
26326
|
width: size,
|
|
@@ -26303,8 +26367,8 @@ Application.defaultProps = {
|
|
|
26303
26367
|
size: '1em'
|
|
26304
26368
|
};
|
|
26305
26369
|
|
|
26306
|
-
var _excluded$
|
|
26307
|
-
var loadingCircleStyle$
|
|
26370
|
+
var _excluded$7a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26371
|
+
var loadingCircleStyle$7a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26308
26372
|
var Gift = function Gift(props) {
|
|
26309
26373
|
var color = props.color,
|
|
26310
26374
|
size = props.size,
|
|
@@ -26313,12 +26377,12 @@ var Gift = function Gift(props) {
|
|
|
26313
26377
|
className = props.className,
|
|
26314
26378
|
iconClassName = props.iconClassName,
|
|
26315
26379
|
testid = props.testid,
|
|
26316
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26380
|
+
otherProps = _objectWithoutProperties(props, _excluded$7a);
|
|
26317
26381
|
return /*#__PURE__*/React.createElement("span", {
|
|
26318
26382
|
role: "img",
|
|
26319
26383
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26320
26384
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26321
|
-
children: loadingCircleStyle$
|
|
26385
|
+
children: loadingCircleStyle$7a
|
|
26322
26386
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26323
26387
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26324
26388
|
width: size,
|
|
@@ -26355,8 +26419,8 @@ Gift.defaultProps = {
|
|
|
26355
26419
|
size: '1em'
|
|
26356
26420
|
};
|
|
26357
26421
|
|
|
26358
|
-
var _excluded$
|
|
26359
|
-
var loadingCircleStyle$
|
|
26422
|
+
var _excluded$7b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26423
|
+
var loadingCircleStyle$7b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26360
26424
|
var Tips = function Tips(props) {
|
|
26361
26425
|
var color = props.color,
|
|
26362
26426
|
size = props.size,
|
|
@@ -26365,12 +26429,12 @@ var Tips = function Tips(props) {
|
|
|
26365
26429
|
className = props.className,
|
|
26366
26430
|
iconClassName = props.iconClassName,
|
|
26367
26431
|
testid = props.testid,
|
|
26368
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26432
|
+
otherProps = _objectWithoutProperties(props, _excluded$7b);
|
|
26369
26433
|
return /*#__PURE__*/React.createElement("span", {
|
|
26370
26434
|
role: "img",
|
|
26371
26435
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26372
26436
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26373
|
-
children: loadingCircleStyle$
|
|
26437
|
+
children: loadingCircleStyle$7b
|
|
26374
26438
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26375
26439
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26376
26440
|
width: size,
|
|
@@ -26409,8 +26473,8 @@ Tips.defaultProps = {
|
|
|
26409
26473
|
size: '1em'
|
|
26410
26474
|
};
|
|
26411
26475
|
|
|
26412
|
-
var _excluded$
|
|
26413
|
-
var loadingCircleStyle$
|
|
26476
|
+
var _excluded$7c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26477
|
+
var loadingCircleStyle$7c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26414
26478
|
var Usb = function Usb(props) {
|
|
26415
26479
|
var color = props.color,
|
|
26416
26480
|
size = props.size,
|
|
@@ -26419,12 +26483,12 @@ var Usb = function Usb(props) {
|
|
|
26419
26483
|
className = props.className,
|
|
26420
26484
|
iconClassName = props.iconClassName,
|
|
26421
26485
|
testid = props.testid,
|
|
26422
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26486
|
+
otherProps = _objectWithoutProperties(props, _excluded$7c);
|
|
26423
26487
|
return /*#__PURE__*/React.createElement("span", {
|
|
26424
26488
|
role: "img",
|
|
26425
26489
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26426
26490
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26427
|
-
children: loadingCircleStyle$
|
|
26491
|
+
children: loadingCircleStyle$7c
|
|
26428
26492
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26429
26493
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26430
26494
|
width: size,
|
|
@@ -26461,8 +26525,8 @@ Usb.defaultProps = {
|
|
|
26461
26525
|
size: '1em'
|
|
26462
26526
|
};
|
|
26463
26527
|
|
|
26464
|
-
var _excluded$
|
|
26465
|
-
var loadingCircleStyle$
|
|
26528
|
+
var _excluded$7d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26529
|
+
var loadingCircleStyle$7d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26466
26530
|
var Location = function Location(props) {
|
|
26467
26531
|
var color = props.color,
|
|
26468
26532
|
size = props.size,
|
|
@@ -26471,12 +26535,12 @@ var Location = function Location(props) {
|
|
|
26471
26535
|
className = props.className,
|
|
26472
26536
|
iconClassName = props.iconClassName,
|
|
26473
26537
|
testid = props.testid,
|
|
26474
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26538
|
+
otherProps = _objectWithoutProperties(props, _excluded$7d);
|
|
26475
26539
|
return /*#__PURE__*/React.createElement("span", {
|
|
26476
26540
|
role: "img",
|
|
26477
26541
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26478
26542
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26479
|
-
children: loadingCircleStyle$
|
|
26543
|
+
children: loadingCircleStyle$7d
|
|
26480
26544
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26481
26545
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26482
26546
|
width: size,
|
|
@@ -26517,8 +26581,8 @@ Location.defaultProps = {
|
|
|
26517
26581
|
size: '1em'
|
|
26518
26582
|
};
|
|
26519
26583
|
|
|
26520
|
-
var _excluded$
|
|
26521
|
-
var loadingCircleStyle$
|
|
26584
|
+
var _excluded$7e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26585
|
+
var loadingCircleStyle$7e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26522
26586
|
var ShieldCheck = function ShieldCheck(props) {
|
|
26523
26587
|
var color = props.color,
|
|
26524
26588
|
size = props.size,
|
|
@@ -26527,12 +26591,12 @@ var ShieldCheck = function ShieldCheck(props) {
|
|
|
26527
26591
|
className = props.className,
|
|
26528
26592
|
iconClassName = props.iconClassName,
|
|
26529
26593
|
testid = props.testid,
|
|
26530
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26594
|
+
otherProps = _objectWithoutProperties(props, _excluded$7e);
|
|
26531
26595
|
return /*#__PURE__*/React.createElement("span", {
|
|
26532
26596
|
role: "img",
|
|
26533
26597
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26534
26598
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26535
|
-
children: loadingCircleStyle$
|
|
26599
|
+
children: loadingCircleStyle$7e
|
|
26536
26600
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26537
26601
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26538
26602
|
width: size,
|
|
@@ -26569,8 +26633,8 @@ ShieldCheck.defaultProps = {
|
|
|
26569
26633
|
size: '1em'
|
|
26570
26634
|
};
|
|
26571
26635
|
|
|
26572
|
-
var _excluded$
|
|
26573
|
-
var loadingCircleStyle$
|
|
26636
|
+
var _excluded$7f = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26637
|
+
var loadingCircleStyle$7f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26574
26638
|
var ShieldCross = function ShieldCross(props) {
|
|
26575
26639
|
var color = props.color,
|
|
26576
26640
|
size = props.size,
|
|
@@ -26579,12 +26643,12 @@ var ShieldCross = function ShieldCross(props) {
|
|
|
26579
26643
|
className = props.className,
|
|
26580
26644
|
iconClassName = props.iconClassName,
|
|
26581
26645
|
testid = props.testid,
|
|
26582
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26646
|
+
otherProps = _objectWithoutProperties(props, _excluded$7f);
|
|
26583
26647
|
return /*#__PURE__*/React.createElement("span", {
|
|
26584
26648
|
role: "img",
|
|
26585
26649
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26586
26650
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26587
|
-
children: loadingCircleStyle$
|
|
26651
|
+
children: loadingCircleStyle$7f
|
|
26588
26652
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26589
26653
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26590
26654
|
width: size,
|
|
@@ -26621,8 +26685,8 @@ ShieldCross.defaultProps = {
|
|
|
26621
26685
|
size: '1em'
|
|
26622
26686
|
};
|
|
26623
26687
|
|
|
26624
|
-
var _excluded$
|
|
26625
|
-
var loadingCircleStyle$
|
|
26688
|
+
var _excluded$7g = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26689
|
+
var loadingCircleStyle$7g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26626
26690
|
var ShieldKeyhole = function ShieldKeyhole(props) {
|
|
26627
26691
|
var color = props.color,
|
|
26628
26692
|
size = props.size,
|
|
@@ -26631,12 +26695,12 @@ var ShieldKeyhole = function ShieldKeyhole(props) {
|
|
|
26631
26695
|
className = props.className,
|
|
26632
26696
|
iconClassName = props.iconClassName,
|
|
26633
26697
|
testid = props.testid,
|
|
26634
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26698
|
+
otherProps = _objectWithoutProperties(props, _excluded$7g);
|
|
26635
26699
|
return /*#__PURE__*/React.createElement("span", {
|
|
26636
26700
|
role: "img",
|
|
26637
26701
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26638
26702
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26639
|
-
children: loadingCircleStyle$
|
|
26703
|
+
children: loadingCircleStyle$7g
|
|
26640
26704
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26641
26705
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26642
26706
|
width: size,
|
|
@@ -26673,8 +26737,8 @@ ShieldKeyhole.defaultProps = {
|
|
|
26673
26737
|
size: '1em'
|
|
26674
26738
|
};
|
|
26675
26739
|
|
|
26676
|
-
var _excluded$
|
|
26677
|
-
var loadingCircleStyle$
|
|
26740
|
+
var _excluded$7h = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26741
|
+
var loadingCircleStyle$7h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26678
26742
|
var Bell2Fill = function Bell2Fill(props) {
|
|
26679
26743
|
var color = props.color,
|
|
26680
26744
|
size = props.size,
|
|
@@ -26683,12 +26747,12 @@ var Bell2Fill = function Bell2Fill(props) {
|
|
|
26683
26747
|
className = props.className,
|
|
26684
26748
|
iconClassName = props.iconClassName,
|
|
26685
26749
|
testid = props.testid,
|
|
26686
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26750
|
+
otherProps = _objectWithoutProperties(props, _excluded$7h);
|
|
26687
26751
|
return /*#__PURE__*/React.createElement("span", {
|
|
26688
26752
|
role: "img",
|
|
26689
26753
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26690
26754
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26691
|
-
children: loadingCircleStyle$
|
|
26755
|
+
children: loadingCircleStyle$7h
|
|
26692
26756
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26693
26757
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26694
26758
|
width: size,
|
|
@@ -26725,8 +26789,8 @@ Bell2Fill.defaultProps = {
|
|
|
26725
26789
|
size: '1em'
|
|
26726
26790
|
};
|
|
26727
26791
|
|
|
26728
|
-
var _excluded$
|
|
26729
|
-
var loadingCircleStyle$
|
|
26792
|
+
var _excluded$7i = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26793
|
+
var loadingCircleStyle$7i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26730
26794
|
var Box = function Box(props) {
|
|
26731
26795
|
var color = props.color,
|
|
26732
26796
|
size = props.size,
|
|
@@ -26735,12 +26799,12 @@ var Box = function Box(props) {
|
|
|
26735
26799
|
className = props.className,
|
|
26736
26800
|
iconClassName = props.iconClassName,
|
|
26737
26801
|
testid = props.testid,
|
|
26738
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26802
|
+
otherProps = _objectWithoutProperties(props, _excluded$7i);
|
|
26739
26803
|
return /*#__PURE__*/React.createElement("span", {
|
|
26740
26804
|
role: "img",
|
|
26741
26805
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26742
26806
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26743
|
-
children: loadingCircleStyle$
|
|
26807
|
+
children: loadingCircleStyle$7i
|
|
26744
26808
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26745
26809
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26746
26810
|
width: size,
|
|
@@ -26777,8 +26841,8 @@ Box.defaultProps = {
|
|
|
26777
26841
|
size: '1em'
|
|
26778
26842
|
};
|
|
26779
26843
|
|
|
26780
|
-
var _excluded$
|
|
26781
|
-
var loadingCircleStyle$
|
|
26844
|
+
var _excluded$7j = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26845
|
+
var loadingCircleStyle$7j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26782
26846
|
var ShutDown = function ShutDown(props) {
|
|
26783
26847
|
var color = props.color,
|
|
26784
26848
|
size = props.size,
|
|
@@ -26787,12 +26851,12 @@ var ShutDown = function ShutDown(props) {
|
|
|
26787
26851
|
className = props.className,
|
|
26788
26852
|
iconClassName = props.iconClassName,
|
|
26789
26853
|
testid = props.testid,
|
|
26790
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26854
|
+
otherProps = _objectWithoutProperties(props, _excluded$7j);
|
|
26791
26855
|
return /*#__PURE__*/React.createElement("span", {
|
|
26792
26856
|
role: "img",
|
|
26793
26857
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26794
26858
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26795
|
-
children: loadingCircleStyle$
|
|
26859
|
+
children: loadingCircleStyle$7j
|
|
26796
26860
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26797
26861
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26798
26862
|
width: size,
|
|
@@ -26829,8 +26893,8 @@ ShutDown.defaultProps = {
|
|
|
26829
26893
|
size: '1em'
|
|
26830
26894
|
};
|
|
26831
26895
|
|
|
26832
|
-
var _excluded$
|
|
26833
|
-
var loadingCircleStyle$
|
|
26896
|
+
var _excluded$7k = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26897
|
+
var loadingCircleStyle$7k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26834
26898
|
var Database = function Database(props) {
|
|
26835
26899
|
var color = props.color,
|
|
26836
26900
|
size = props.size,
|
|
@@ -26839,12 +26903,12 @@ var Database = function Database(props) {
|
|
|
26839
26903
|
className = props.className,
|
|
26840
26904
|
iconClassName = props.iconClassName,
|
|
26841
26905
|
testid = props.testid,
|
|
26842
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26906
|
+
otherProps = _objectWithoutProperties(props, _excluded$7k);
|
|
26843
26907
|
return /*#__PURE__*/React.createElement("span", {
|
|
26844
26908
|
role: "img",
|
|
26845
26909
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26846
26910
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26847
|
-
children: loadingCircleStyle$
|
|
26911
|
+
children: loadingCircleStyle$7k
|
|
26848
26912
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26849
26913
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26850
26914
|
width: size,
|
|
@@ -26881,8 +26945,8 @@ Database.defaultProps = {
|
|
|
26881
26945
|
size: '1em'
|
|
26882
26946
|
};
|
|
26883
26947
|
|
|
26884
|
-
var _excluded$
|
|
26885
|
-
var loadingCircleStyle$
|
|
26948
|
+
var _excluded$7l = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
26949
|
+
var loadingCircleStyle$7l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
26886
26950
|
var Terminal = function Terminal(props) {
|
|
26887
26951
|
var color = props.color,
|
|
26888
26952
|
size = props.size,
|
|
@@ -26891,12 +26955,12 @@ var Terminal = function Terminal(props) {
|
|
|
26891
26955
|
className = props.className,
|
|
26892
26956
|
iconClassName = props.iconClassName,
|
|
26893
26957
|
testid = props.testid,
|
|
26894
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
26958
|
+
otherProps = _objectWithoutProperties(props, _excluded$7l);
|
|
26895
26959
|
return /*#__PURE__*/React.createElement("span", {
|
|
26896
26960
|
role: "img",
|
|
26897
26961
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26898
26962
|
}, /*#__PURE__*/React.createElement("style", {
|
|
26899
|
-
children: loadingCircleStyle$
|
|
26963
|
+
children: loadingCircleStyle$7l
|
|
26900
26964
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
26901
26965
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26902
26966
|
width: size,
|
|
@@ -26962,6 +27026,7 @@ exports.TaArrowUp = ArrowUp;
|
|
|
26962
27026
|
exports.TaArrowUp2 = ArrowUp2;
|
|
26963
27027
|
exports.TaAscent = Ascent;
|
|
26964
27028
|
exports.TaAttribution = Attribution;
|
|
27029
|
+
exports.TaAutoLayout = AutoLayout;
|
|
26965
27030
|
exports.TaAvatarGroupCl = AvatarGroupCl;
|
|
26966
27031
|
exports.TaAvatarProjectCl = AvatarProjectCl;
|
|
26967
27032
|
exports.TaBackup = Backup;
|