@tant/icons 1.21.60 → 1.21.61
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/pending.js +63 -0
- package/dist/es/index.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/lib/icons/pending.js +70 -0
- package/dist/lib/index.js +7 -0
- package/dist/tant-icons.cjs.js +394 -341
- package/dist/tant-icons.esm.js +394 -342
- package/package.json +1 -1
package/dist/tant-icons.cjs.js
CHANGED
|
@@ -29739,7 +29739,7 @@ ThumbDownOutline.defaultProps = {
|
|
|
29739
29739
|
|
|
29740
29740
|
var _excluded$7T = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
29741
29741
|
var loadingCircleStyle$7T = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
29742
|
-
var
|
|
29742
|
+
var Pending = function Pending(props) {
|
|
29743
29743
|
var color = props.color,
|
|
29744
29744
|
size = props.size,
|
|
29745
29745
|
spin = props.spin,
|
|
@@ -29772,6 +29772,58 @@ var TdLogo = function TdLogo(props) {
|
|
|
29772
29772
|
width: "24",
|
|
29773
29773
|
height: "24",
|
|
29774
29774
|
xmlns: "http://www.w3.org/2000/svg"
|
|
29775
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
29776
|
+
d: "M6 4H4V2h16v2h-2v2c0 1.615-.816 2.915-1.844 3.977-.703.726-1.558 1.395-2.425 2.023.867.628 1.722 1.297 2.425 2.023C17.184 15.085 18 16.385 18 18v2h2v2H4v-2h2v-2c0-1.615.816-2.915 1.844-3.977.703-.726 1.558-1.395 2.425-2.023-.867-.628-1.722-1.297-2.425-2.023C6.816 8.915 6 7.615 6 6V4zm2 0v2c0 .885.434 1.71 1.281 2.586.727.751 1.674 1.454 2.719 2.192 1.045-.738 1.992-1.441 2.719-2.192C15.566 7.71 16 6.885 16 6V4H8zm4 9.222c-1.045.738-1.992 1.441-2.719 2.192C8.434 16.29 8 17.115 8 18v2h8v-2c0-.885-.434-1.71-1.281-2.586-.727-.751-1.674-1.454-2.719-2.192z"
|
|
29777
|
+
}))));
|
|
29778
|
+
};
|
|
29779
|
+
Pending.propTypes = {
|
|
29780
|
+
iconClassName: PropTypes.string,
|
|
29781
|
+
spin: PropTypes.bool,
|
|
29782
|
+
color: PropTypes.string,
|
|
29783
|
+
testid: PropTypes.string,
|
|
29784
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
29785
|
+
};
|
|
29786
|
+
Pending.defaultProps = {
|
|
29787
|
+
spin: false,
|
|
29788
|
+
color: 'currentColor',
|
|
29789
|
+
size: '1em'
|
|
29790
|
+
};
|
|
29791
|
+
|
|
29792
|
+
var _excluded$7U = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
29793
|
+
var loadingCircleStyle$7U = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
29794
|
+
var TdLogo = function TdLogo(props) {
|
|
29795
|
+
var color = props.color,
|
|
29796
|
+
size = props.size,
|
|
29797
|
+
spin = props.spin,
|
|
29798
|
+
style = props.style,
|
|
29799
|
+
className = props.className,
|
|
29800
|
+
iconClassName = props.iconClassName,
|
|
29801
|
+
testid = props.testid,
|
|
29802
|
+
otherProps = _objectWithoutProperties(props, _excluded$7U);
|
|
29803
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
29804
|
+
role: "img",
|
|
29805
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
29806
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
29807
|
+
children: loadingCircleStyle$7U
|
|
29808
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29809
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29810
|
+
width: size,
|
|
29811
|
+
height: size,
|
|
29812
|
+
viewBox: "0 0 24 24",
|
|
29813
|
+
fill: color
|
|
29814
|
+
}, otherProps, {
|
|
29815
|
+
className: iconClassName,
|
|
29816
|
+
"data-testid": testid,
|
|
29817
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
29818
|
+
animationDuration: '1s',
|
|
29819
|
+
animationIterationCount: 'infinite',
|
|
29820
|
+
animationName: 'loadingCircle',
|
|
29821
|
+
animationTimingFunction: 'linear'
|
|
29822
|
+
} : {})
|
|
29823
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
29824
|
+
width: "24",
|
|
29825
|
+
height: "24",
|
|
29826
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
29775
29827
|
}, /*#__PURE__*/React.createElement("path", {
|
|
29776
29828
|
d: "M5.904 2h.978c.069 0 .124.055.124.123v.964a.124.124 0 01-.124.124h-.978a.124.124 0 01-.124-.124v-.964c0-.068.056-.123.124-.123z"
|
|
29777
29829
|
}), /*#__PURE__*/React.createElement("path", {
|
|
@@ -29797,8 +29849,8 @@ TdLogo.defaultProps = {
|
|
|
29797
29849
|
size: '1em'
|
|
29798
29850
|
};
|
|
29799
29851
|
|
|
29800
|
-
var _excluded$
|
|
29801
|
-
var loadingCircleStyle$
|
|
29852
|
+
var _excluded$7V = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
29853
|
+
var loadingCircleStyle$7V = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
29802
29854
|
var Language = function Language(props) {
|
|
29803
29855
|
var color = props.color,
|
|
29804
29856
|
size = props.size,
|
|
@@ -29807,12 +29859,12 @@ var Language = function Language(props) {
|
|
|
29807
29859
|
className = props.className,
|
|
29808
29860
|
iconClassName = props.iconClassName,
|
|
29809
29861
|
testid = props.testid,
|
|
29810
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
29862
|
+
otherProps = _objectWithoutProperties(props, _excluded$7V);
|
|
29811
29863
|
return /*#__PURE__*/React.createElement("span", {
|
|
29812
29864
|
role: "img",
|
|
29813
29865
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
29814
29866
|
}, /*#__PURE__*/React.createElement("style", {
|
|
29815
|
-
children: loadingCircleStyle$
|
|
29867
|
+
children: loadingCircleStyle$7V
|
|
29816
29868
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29817
29869
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29818
29870
|
width: size,
|
|
@@ -29849,8 +29901,8 @@ Language.defaultProps = {
|
|
|
29849
29901
|
size: '1em'
|
|
29850
29902
|
};
|
|
29851
29903
|
|
|
29852
|
-
var _excluded$
|
|
29853
|
-
var loadingCircleStyle$
|
|
29904
|
+
var _excluded$7W = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
29905
|
+
var loadingCircleStyle$7W = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
29854
29906
|
var Calendar = function Calendar(props) {
|
|
29855
29907
|
var color = props.color,
|
|
29856
29908
|
size = props.size,
|
|
@@ -29859,12 +29911,12 @@ var Calendar = function Calendar(props) {
|
|
|
29859
29911
|
className = props.className,
|
|
29860
29912
|
iconClassName = props.iconClassName,
|
|
29861
29913
|
testid = props.testid,
|
|
29862
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
29914
|
+
otherProps = _objectWithoutProperties(props, _excluded$7W);
|
|
29863
29915
|
return /*#__PURE__*/React.createElement("span", {
|
|
29864
29916
|
role: "img",
|
|
29865
29917
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
29866
29918
|
}, /*#__PURE__*/React.createElement("style", {
|
|
29867
|
-
children: loadingCircleStyle$
|
|
29919
|
+
children: loadingCircleStyle$7W
|
|
29868
29920
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29869
29921
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29870
29922
|
width: size,
|
|
@@ -29901,8 +29953,8 @@ Calendar.defaultProps = {
|
|
|
29901
29953
|
size: '1em'
|
|
29902
29954
|
};
|
|
29903
29955
|
|
|
29904
|
-
var _excluded$
|
|
29905
|
-
var loadingCircleStyle$
|
|
29956
|
+
var _excluded$7X = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
29957
|
+
var loadingCircleStyle$7X = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
29906
29958
|
var Server = function Server(props) {
|
|
29907
29959
|
var color = props.color,
|
|
29908
29960
|
size = props.size,
|
|
@@ -29911,12 +29963,12 @@ var Server = function Server(props) {
|
|
|
29911
29963
|
className = props.className,
|
|
29912
29964
|
iconClassName = props.iconClassName,
|
|
29913
29965
|
testid = props.testid,
|
|
29914
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
29966
|
+
otherProps = _objectWithoutProperties(props, _excluded$7X);
|
|
29915
29967
|
return /*#__PURE__*/React.createElement("span", {
|
|
29916
29968
|
role: "img",
|
|
29917
29969
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
29918
29970
|
}, /*#__PURE__*/React.createElement("style", {
|
|
29919
|
-
children: loadingCircleStyle$
|
|
29971
|
+
children: loadingCircleStyle$7X
|
|
29920
29972
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29921
29973
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29922
29974
|
width: size,
|
|
@@ -29953,8 +30005,8 @@ Server.defaultProps = {
|
|
|
29953
30005
|
size: '1em'
|
|
29954
30006
|
};
|
|
29955
30007
|
|
|
29956
|
-
var _excluded$
|
|
29957
|
-
var loadingCircleStyle$
|
|
30008
|
+
var _excluded$7Y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30009
|
+
var loadingCircleStyle$7Y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
29958
30010
|
var Desktop = function Desktop(props) {
|
|
29959
30011
|
var color = props.color,
|
|
29960
30012
|
size = props.size,
|
|
@@ -29963,12 +30015,12 @@ var Desktop = function Desktop(props) {
|
|
|
29963
30015
|
className = props.className,
|
|
29964
30016
|
iconClassName = props.iconClassName,
|
|
29965
30017
|
testid = props.testid,
|
|
29966
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30018
|
+
otherProps = _objectWithoutProperties(props, _excluded$7Y);
|
|
29967
30019
|
return /*#__PURE__*/React.createElement("span", {
|
|
29968
30020
|
role: "img",
|
|
29969
30021
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
29970
30022
|
}, /*#__PURE__*/React.createElement("style", {
|
|
29971
|
-
children: loadingCircleStyle$
|
|
30023
|
+
children: loadingCircleStyle$7Y
|
|
29972
30024
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29973
30025
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29974
30026
|
width: size,
|
|
@@ -30005,8 +30057,8 @@ Desktop.defaultProps = {
|
|
|
30005
30057
|
size: '1em'
|
|
30006
30058
|
};
|
|
30007
30059
|
|
|
30008
|
-
var _excluded$
|
|
30009
|
-
var loadingCircleStyle$
|
|
30060
|
+
var _excluded$7Z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30061
|
+
var loadingCircleStyle$7Z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30010
30062
|
var Demo = function Demo(props) {
|
|
30011
30063
|
var color = props.color,
|
|
30012
30064
|
size = props.size,
|
|
@@ -30015,12 +30067,12 @@ var Demo = function Demo(props) {
|
|
|
30015
30067
|
className = props.className,
|
|
30016
30068
|
iconClassName = props.iconClassName,
|
|
30017
30069
|
testid = props.testid,
|
|
30018
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30070
|
+
otherProps = _objectWithoutProperties(props, _excluded$7Z);
|
|
30019
30071
|
return /*#__PURE__*/React.createElement("span", {
|
|
30020
30072
|
role: "img",
|
|
30021
30073
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30022
30074
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30023
|
-
children: loadingCircleStyle$
|
|
30075
|
+
children: loadingCircleStyle$7Z
|
|
30024
30076
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30025
30077
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30026
30078
|
width: size,
|
|
@@ -30059,8 +30111,8 @@ Demo.defaultProps = {
|
|
|
30059
30111
|
size: '1em'
|
|
30060
30112
|
};
|
|
30061
30113
|
|
|
30062
|
-
var _excluded$
|
|
30063
|
-
var loadingCircleStyle$
|
|
30114
|
+
var _excluded$7_ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30115
|
+
var loadingCircleStyle$7_ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30064
30116
|
var Cellphone = function Cellphone(props) {
|
|
30065
30117
|
var color = props.color,
|
|
30066
30118
|
size = props.size,
|
|
@@ -30069,12 +30121,12 @@ var Cellphone = function Cellphone(props) {
|
|
|
30069
30121
|
className = props.className,
|
|
30070
30122
|
iconClassName = props.iconClassName,
|
|
30071
30123
|
testid = props.testid,
|
|
30072
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30124
|
+
otherProps = _objectWithoutProperties(props, _excluded$7_);
|
|
30073
30125
|
return /*#__PURE__*/React.createElement("span", {
|
|
30074
30126
|
role: "img",
|
|
30075
30127
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30076
30128
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30077
|
-
children: loadingCircleStyle$
|
|
30129
|
+
children: loadingCircleStyle$7_
|
|
30078
30130
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30079
30131
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30080
30132
|
width: size,
|
|
@@ -30113,8 +30165,8 @@ Cellphone.defaultProps = {
|
|
|
30113
30165
|
size: '1em'
|
|
30114
30166
|
};
|
|
30115
30167
|
|
|
30116
|
-
var _excluded$
|
|
30117
|
-
var loadingCircleStyle$
|
|
30168
|
+
var _excluded$7$ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30169
|
+
var loadingCircleStyle$7$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30118
30170
|
var Landscape = function Landscape(props) {
|
|
30119
30171
|
var color = props.color,
|
|
30120
30172
|
size = props.size,
|
|
@@ -30123,12 +30175,12 @@ var Landscape = function Landscape(props) {
|
|
|
30123
30175
|
className = props.className,
|
|
30124
30176
|
iconClassName = props.iconClassName,
|
|
30125
30177
|
testid = props.testid,
|
|
30126
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30178
|
+
otherProps = _objectWithoutProperties(props, _excluded$7$);
|
|
30127
30179
|
return /*#__PURE__*/React.createElement("span", {
|
|
30128
30180
|
role: "img",
|
|
30129
30181
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30130
30182
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30131
|
-
children: loadingCircleStyle$
|
|
30183
|
+
children: loadingCircleStyle$7$
|
|
30132
30184
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30133
30185
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30134
30186
|
width: size,
|
|
@@ -30169,8 +30221,8 @@ Landscape.defaultProps = {
|
|
|
30169
30221
|
size: '1em'
|
|
30170
30222
|
};
|
|
30171
30223
|
|
|
30172
|
-
var _excluded$
|
|
30173
|
-
var loadingCircleStyle$
|
|
30224
|
+
var _excluded$80 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30225
|
+
var loadingCircleStyle$80 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30174
30226
|
var Email = function Email(props) {
|
|
30175
30227
|
var color = props.color,
|
|
30176
30228
|
size = props.size,
|
|
@@ -30179,12 +30231,12 @@ var Email = function Email(props) {
|
|
|
30179
30231
|
className = props.className,
|
|
30180
30232
|
iconClassName = props.iconClassName,
|
|
30181
30233
|
testid = props.testid,
|
|
30182
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30234
|
+
otherProps = _objectWithoutProperties(props, _excluded$80);
|
|
30183
30235
|
return /*#__PURE__*/React.createElement("span", {
|
|
30184
30236
|
role: "img",
|
|
30185
30237
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30186
30238
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30187
|
-
children: loadingCircleStyle$
|
|
30239
|
+
children: loadingCircleStyle$80
|
|
30188
30240
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30189
30241
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30190
30242
|
width: size,
|
|
@@ -30221,8 +30273,8 @@ Email.defaultProps = {
|
|
|
30221
30273
|
size: '1em'
|
|
30222
30274
|
};
|
|
30223
30275
|
|
|
30224
|
-
var _excluded$
|
|
30225
|
-
var loadingCircleStyle$
|
|
30276
|
+
var _excluded$81 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30277
|
+
var loadingCircleStyle$81 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30226
30278
|
var Clock = function Clock(props) {
|
|
30227
30279
|
var color = props.color,
|
|
30228
30280
|
size = props.size,
|
|
@@ -30231,12 +30283,12 @@ var Clock = function Clock(props) {
|
|
|
30231
30283
|
className = props.className,
|
|
30232
30284
|
iconClassName = props.iconClassName,
|
|
30233
30285
|
testid = props.testid,
|
|
30234
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30286
|
+
otherProps = _objectWithoutProperties(props, _excluded$81);
|
|
30235
30287
|
return /*#__PURE__*/React.createElement("span", {
|
|
30236
30288
|
role: "img",
|
|
30237
30289
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30238
30290
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30239
|
-
children: loadingCircleStyle$
|
|
30291
|
+
children: loadingCircleStyle$81
|
|
30240
30292
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30241
30293
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30242
30294
|
width: size,
|
|
@@ -30275,8 +30327,8 @@ Clock.defaultProps = {
|
|
|
30275
30327
|
size: '1em'
|
|
30276
30328
|
};
|
|
30277
30329
|
|
|
30278
|
-
var _excluded$
|
|
30279
|
-
var loadingCircleStyle$
|
|
30330
|
+
var _excluded$82 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30331
|
+
var loadingCircleStyle$82 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30280
30332
|
var Password = function Password(props) {
|
|
30281
30333
|
var color = props.color,
|
|
30282
30334
|
size = props.size,
|
|
@@ -30285,12 +30337,12 @@ var Password = function Password(props) {
|
|
|
30285
30337
|
className = props.className,
|
|
30286
30338
|
iconClassName = props.iconClassName,
|
|
30287
30339
|
testid = props.testid,
|
|
30288
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30340
|
+
otherProps = _objectWithoutProperties(props, _excluded$82);
|
|
30289
30341
|
return /*#__PURE__*/React.createElement("span", {
|
|
30290
30342
|
role: "img",
|
|
30291
30343
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30292
30344
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30293
|
-
children: loadingCircleStyle$
|
|
30345
|
+
children: loadingCircleStyle$82
|
|
30294
30346
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30295
30347
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30296
30348
|
width: size,
|
|
@@ -30327,8 +30379,8 @@ Password.defaultProps = {
|
|
|
30327
30379
|
size: '1em'
|
|
30328
30380
|
};
|
|
30329
30381
|
|
|
30330
|
-
var _excluded$
|
|
30331
|
-
var loadingCircleStyle$
|
|
30382
|
+
var _excluded$83 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30383
|
+
var loadingCircleStyle$83 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30332
30384
|
var ResetPassword = function ResetPassword(props) {
|
|
30333
30385
|
var color = props.color,
|
|
30334
30386
|
size = props.size,
|
|
@@ -30337,12 +30389,12 @@ var ResetPassword = function ResetPassword(props) {
|
|
|
30337
30389
|
className = props.className,
|
|
30338
30390
|
iconClassName = props.iconClassName,
|
|
30339
30391
|
testid = props.testid,
|
|
30340
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30392
|
+
otherProps = _objectWithoutProperties(props, _excluded$83);
|
|
30341
30393
|
return /*#__PURE__*/React.createElement("span", {
|
|
30342
30394
|
role: "img",
|
|
30343
30395
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30344
30396
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30345
|
-
children: loadingCircleStyle$
|
|
30397
|
+
children: loadingCircleStyle$83
|
|
30346
30398
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30347
30399
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30348
30400
|
width: size,
|
|
@@ -30379,8 +30431,8 @@ ResetPassword.defaultProps = {
|
|
|
30379
30431
|
size: '1em'
|
|
30380
30432
|
};
|
|
30381
30433
|
|
|
30382
|
-
var _excluded$
|
|
30383
|
-
var loadingCircleStyle$
|
|
30434
|
+
var _excluded$84 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30435
|
+
var loadingCircleStyle$84 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30384
30436
|
var Private = function Private(props) {
|
|
30385
30437
|
var color = props.color,
|
|
30386
30438
|
size = props.size,
|
|
@@ -30389,12 +30441,12 @@ var Private = function Private(props) {
|
|
|
30389
30441
|
className = props.className,
|
|
30390
30442
|
iconClassName = props.iconClassName,
|
|
30391
30443
|
testid = props.testid,
|
|
30392
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30444
|
+
otherProps = _objectWithoutProperties(props, _excluded$84);
|
|
30393
30445
|
return /*#__PURE__*/React.createElement("span", {
|
|
30394
30446
|
role: "img",
|
|
30395
30447
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30396
30448
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30397
|
-
children: loadingCircleStyle$
|
|
30449
|
+
children: loadingCircleStyle$84
|
|
30398
30450
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30399
30451
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30400
30452
|
width: size,
|
|
@@ -30431,8 +30483,8 @@ Private.defaultProps = {
|
|
|
30431
30483
|
size: '1em'
|
|
30432
30484
|
};
|
|
30433
30485
|
|
|
30434
|
-
var _excluded$
|
|
30435
|
-
var loadingCircleStyle$
|
|
30486
|
+
var _excluded$85 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30487
|
+
var loadingCircleStyle$85 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30436
30488
|
var Bell = function Bell(props) {
|
|
30437
30489
|
var color = props.color,
|
|
30438
30490
|
size = props.size,
|
|
@@ -30441,12 +30493,12 @@ var Bell = function Bell(props) {
|
|
|
30441
30493
|
className = props.className,
|
|
30442
30494
|
iconClassName = props.iconClassName,
|
|
30443
30495
|
testid = props.testid,
|
|
30444
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30496
|
+
otherProps = _objectWithoutProperties(props, _excluded$85);
|
|
30445
30497
|
return /*#__PURE__*/React.createElement("span", {
|
|
30446
30498
|
role: "img",
|
|
30447
30499
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30448
30500
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30449
|
-
children: loadingCircleStyle$
|
|
30501
|
+
children: loadingCircleStyle$85
|
|
30450
30502
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30451
30503
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30452
30504
|
width: size,
|
|
@@ -30485,8 +30537,8 @@ Bell.defaultProps = {
|
|
|
30485
30537
|
size: '1em'
|
|
30486
30538
|
};
|
|
30487
30539
|
|
|
30488
|
-
var _excluded$
|
|
30489
|
-
var loadingCircleStyle$
|
|
30540
|
+
var _excluded$86 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30541
|
+
var loadingCircleStyle$86 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30490
30542
|
var Logout = function Logout(props) {
|
|
30491
30543
|
var color = props.color,
|
|
30492
30544
|
size = props.size,
|
|
@@ -30495,12 +30547,12 @@ var Logout = function Logout(props) {
|
|
|
30495
30547
|
className = props.className,
|
|
30496
30548
|
iconClassName = props.iconClassName,
|
|
30497
30549
|
testid = props.testid,
|
|
30498
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30550
|
+
otherProps = _objectWithoutProperties(props, _excluded$86);
|
|
30499
30551
|
return /*#__PURE__*/React.createElement("span", {
|
|
30500
30552
|
role: "img",
|
|
30501
30553
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30502
30554
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30503
|
-
children: loadingCircleStyle$
|
|
30555
|
+
children: loadingCircleStyle$86
|
|
30504
30556
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30505
30557
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30506
30558
|
width: size,
|
|
@@ -30539,8 +30591,8 @@ Logout.defaultProps = {
|
|
|
30539
30591
|
size: '1em'
|
|
30540
30592
|
};
|
|
30541
30593
|
|
|
30542
|
-
var _excluded$
|
|
30543
|
-
var loadingCircleStyle$
|
|
30594
|
+
var _excluded$87 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30595
|
+
var loadingCircleStyle$87 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30544
30596
|
var Speed = function Speed(props) {
|
|
30545
30597
|
var color = props.color,
|
|
30546
30598
|
size = props.size,
|
|
@@ -30549,12 +30601,12 @@ var Speed = function Speed(props) {
|
|
|
30549
30601
|
className = props.className,
|
|
30550
30602
|
iconClassName = props.iconClassName,
|
|
30551
30603
|
testid = props.testid,
|
|
30552
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30604
|
+
otherProps = _objectWithoutProperties(props, _excluded$87);
|
|
30553
30605
|
return /*#__PURE__*/React.createElement("span", {
|
|
30554
30606
|
role: "img",
|
|
30555
30607
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30556
30608
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30557
|
-
children: loadingCircleStyle$
|
|
30609
|
+
children: loadingCircleStyle$87
|
|
30558
30610
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30559
30611
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30560
30612
|
width: size,
|
|
@@ -30591,8 +30643,8 @@ Speed.defaultProps = {
|
|
|
30591
30643
|
size: '1em'
|
|
30592
30644
|
};
|
|
30593
30645
|
|
|
30594
|
-
var _excluded$
|
|
30595
|
-
var loadingCircleStyle$
|
|
30646
|
+
var _excluded$88 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30647
|
+
var loadingCircleStyle$88 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30596
30648
|
var Mfa = function Mfa(props) {
|
|
30597
30649
|
var color = props.color,
|
|
30598
30650
|
size = props.size,
|
|
@@ -30601,12 +30653,12 @@ var Mfa = function Mfa(props) {
|
|
|
30601
30653
|
className = props.className,
|
|
30602
30654
|
iconClassName = props.iconClassName,
|
|
30603
30655
|
testid = props.testid,
|
|
30604
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30656
|
+
otherProps = _objectWithoutProperties(props, _excluded$88);
|
|
30605
30657
|
return /*#__PURE__*/React.createElement("span", {
|
|
30606
30658
|
role: "img",
|
|
30607
30659
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30608
30660
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30609
|
-
children: loadingCircleStyle$
|
|
30661
|
+
children: loadingCircleStyle$88
|
|
30610
30662
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30611
30663
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30612
30664
|
width: size,
|
|
@@ -30643,8 +30695,8 @@ Mfa.defaultProps = {
|
|
|
30643
30695
|
size: '1em'
|
|
30644
30696
|
};
|
|
30645
30697
|
|
|
30646
|
-
var _excluded$
|
|
30647
|
-
var loadingCircleStyle$
|
|
30698
|
+
var _excluded$89 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30699
|
+
var loadingCircleStyle$89 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30648
30700
|
var Tracking = function Tracking(props) {
|
|
30649
30701
|
var color = props.color,
|
|
30650
30702
|
size = props.size,
|
|
@@ -30653,12 +30705,12 @@ var Tracking = function Tracking(props) {
|
|
|
30653
30705
|
className = props.className,
|
|
30654
30706
|
iconClassName = props.iconClassName,
|
|
30655
30707
|
testid = props.testid,
|
|
30656
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30708
|
+
otherProps = _objectWithoutProperties(props, _excluded$89);
|
|
30657
30709
|
return /*#__PURE__*/React.createElement("span", {
|
|
30658
30710
|
role: "img",
|
|
30659
30711
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30660
30712
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30661
|
-
children: loadingCircleStyle$
|
|
30713
|
+
children: loadingCircleStyle$89
|
|
30662
30714
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30663
30715
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30664
30716
|
width: size,
|
|
@@ -30705,8 +30757,8 @@ Tracking.defaultProps = {
|
|
|
30705
30757
|
size: '1em'
|
|
30706
30758
|
};
|
|
30707
30759
|
|
|
30708
|
-
var _excluded$
|
|
30709
|
-
var loadingCircleStyle$
|
|
30760
|
+
var _excluded$8a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30761
|
+
var loadingCircleStyle$8a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30710
30762
|
var Forewarning = function Forewarning(props) {
|
|
30711
30763
|
var color = props.color,
|
|
30712
30764
|
size = props.size,
|
|
@@ -30715,12 +30767,12 @@ var Forewarning = function Forewarning(props) {
|
|
|
30715
30767
|
className = props.className,
|
|
30716
30768
|
iconClassName = props.iconClassName,
|
|
30717
30769
|
testid = props.testid,
|
|
30718
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30770
|
+
otherProps = _objectWithoutProperties(props, _excluded$8a);
|
|
30719
30771
|
return /*#__PURE__*/React.createElement("span", {
|
|
30720
30772
|
role: "img",
|
|
30721
30773
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30722
30774
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30723
|
-
children: loadingCircleStyle$
|
|
30775
|
+
children: loadingCircleStyle$8a
|
|
30724
30776
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30725
30777
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30726
30778
|
width: size,
|
|
@@ -30761,8 +30813,8 @@ Forewarning.defaultProps = {
|
|
|
30761
30813
|
size: '1em'
|
|
30762
30814
|
};
|
|
30763
30815
|
|
|
30764
|
-
var _excluded$
|
|
30765
|
-
var loadingCircleStyle$
|
|
30816
|
+
var _excluded$8b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30817
|
+
var loadingCircleStyle$8b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30766
30818
|
var SystemMgr = function SystemMgr(props) {
|
|
30767
30819
|
var color = props.color,
|
|
30768
30820
|
size = props.size,
|
|
@@ -30771,12 +30823,12 @@ var SystemMgr = function SystemMgr(props) {
|
|
|
30771
30823
|
className = props.className,
|
|
30772
30824
|
iconClassName = props.iconClassName,
|
|
30773
30825
|
testid = props.testid,
|
|
30774
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30826
|
+
otherProps = _objectWithoutProperties(props, _excluded$8b);
|
|
30775
30827
|
return /*#__PURE__*/React.createElement("span", {
|
|
30776
30828
|
role: "img",
|
|
30777
30829
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30778
30830
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30779
|
-
children: loadingCircleStyle$
|
|
30831
|
+
children: loadingCircleStyle$8b
|
|
30780
30832
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30781
30833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30782
30834
|
width: size,
|
|
@@ -30817,8 +30869,8 @@ SystemMgr.defaultProps = {
|
|
|
30817
30869
|
size: '1em'
|
|
30818
30870
|
};
|
|
30819
30871
|
|
|
30820
|
-
var _excluded$
|
|
30821
|
-
var loadingCircleStyle$
|
|
30872
|
+
var _excluded$8c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30873
|
+
var loadingCircleStyle$8c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30822
30874
|
var Pattern = function Pattern(props) {
|
|
30823
30875
|
var color = props.color,
|
|
30824
30876
|
size = props.size,
|
|
@@ -30827,12 +30879,12 @@ var Pattern = function Pattern(props) {
|
|
|
30827
30879
|
className = props.className,
|
|
30828
30880
|
iconClassName = props.iconClassName,
|
|
30829
30881
|
testid = props.testid,
|
|
30830
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30882
|
+
otherProps = _objectWithoutProperties(props, _excluded$8c);
|
|
30831
30883
|
return /*#__PURE__*/React.createElement("span", {
|
|
30832
30884
|
role: "img",
|
|
30833
30885
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30834
30886
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30835
|
-
children: loadingCircleStyle$
|
|
30887
|
+
children: loadingCircleStyle$8c
|
|
30836
30888
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30837
30889
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30838
30890
|
width: size,
|
|
@@ -30877,8 +30929,8 @@ Pattern.defaultProps = {
|
|
|
30877
30929
|
size: '1em'
|
|
30878
30930
|
};
|
|
30879
30931
|
|
|
30880
|
-
var _excluded$
|
|
30881
|
-
var loadingCircleStyle$
|
|
30932
|
+
var _excluded$8d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30933
|
+
var loadingCircleStyle$8d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30882
30934
|
var Debug = function Debug(props) {
|
|
30883
30935
|
var color = props.color,
|
|
30884
30936
|
size = props.size,
|
|
@@ -30887,12 +30939,12 @@ var Debug = function Debug(props) {
|
|
|
30887
30939
|
className = props.className,
|
|
30888
30940
|
iconClassName = props.iconClassName,
|
|
30889
30941
|
testid = props.testid,
|
|
30890
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30942
|
+
otherProps = _objectWithoutProperties(props, _excluded$8d);
|
|
30891
30943
|
return /*#__PURE__*/React.createElement("span", {
|
|
30892
30944
|
role: "img",
|
|
30893
30945
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30894
30946
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30895
|
-
children: loadingCircleStyle$
|
|
30947
|
+
children: loadingCircleStyle$8d
|
|
30896
30948
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30897
30949
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30898
30950
|
width: size,
|
|
@@ -30929,8 +30981,8 @@ Debug.defaultProps = {
|
|
|
30929
30981
|
size: '1em'
|
|
30930
30982
|
};
|
|
30931
30983
|
|
|
30932
|
-
var _excluded$
|
|
30933
|
-
var loadingCircleStyle$
|
|
30984
|
+
var _excluded$8e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30985
|
+
var loadingCircleStyle$8e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30934
30986
|
var Live = function Live(props) {
|
|
30935
30987
|
var color = props.color,
|
|
30936
30988
|
size = props.size,
|
|
@@ -30939,12 +30991,12 @@ var Live = function Live(props) {
|
|
|
30939
30991
|
className = props.className,
|
|
30940
30992
|
iconClassName = props.iconClassName,
|
|
30941
30993
|
testid = props.testid,
|
|
30942
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30994
|
+
otherProps = _objectWithoutProperties(props, _excluded$8e);
|
|
30943
30995
|
return /*#__PURE__*/React.createElement("span", {
|
|
30944
30996
|
role: "img",
|
|
30945
30997
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30946
30998
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30947
|
-
children: loadingCircleStyle$
|
|
30999
|
+
children: loadingCircleStyle$8e
|
|
30948
31000
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30949
31001
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30950
31002
|
width: size,
|
|
@@ -30981,8 +31033,8 @@ Live.defaultProps = {
|
|
|
30981
31033
|
size: '1em'
|
|
30982
31034
|
};
|
|
30983
31035
|
|
|
30984
|
-
var _excluded$
|
|
30985
|
-
var loadingCircleStyle$
|
|
31036
|
+
var _excluded$8f = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31037
|
+
var loadingCircleStyle$8f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30986
31038
|
var Plug = function Plug(props) {
|
|
30987
31039
|
var color = props.color,
|
|
30988
31040
|
size = props.size,
|
|
@@ -30991,12 +31043,12 @@ var Plug = function Plug(props) {
|
|
|
30991
31043
|
className = props.className,
|
|
30992
31044
|
iconClassName = props.iconClassName,
|
|
30993
31045
|
testid = props.testid,
|
|
30994
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31046
|
+
otherProps = _objectWithoutProperties(props, _excluded$8f);
|
|
30995
31047
|
return /*#__PURE__*/React.createElement("span", {
|
|
30996
31048
|
role: "img",
|
|
30997
31049
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30998
31050
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30999
|
-
children: loadingCircleStyle$
|
|
31051
|
+
children: loadingCircleStyle$8f
|
|
31000
31052
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31001
31053
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31002
31054
|
width: size,
|
|
@@ -31033,8 +31085,8 @@ Plug.defaultProps = {
|
|
|
31033
31085
|
size: '1em'
|
|
31034
31086
|
};
|
|
31035
31087
|
|
|
31036
|
-
var _excluded$
|
|
31037
|
-
var loadingCircleStyle$
|
|
31088
|
+
var _excluded$8g = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31089
|
+
var loadingCircleStyle$8g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31038
31090
|
var Application = function Application(props) {
|
|
31039
31091
|
var color = props.color,
|
|
31040
31092
|
size = props.size,
|
|
@@ -31043,12 +31095,12 @@ var Application = function Application(props) {
|
|
|
31043
31095
|
className = props.className,
|
|
31044
31096
|
iconClassName = props.iconClassName,
|
|
31045
31097
|
testid = props.testid,
|
|
31046
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31098
|
+
otherProps = _objectWithoutProperties(props, _excluded$8g);
|
|
31047
31099
|
return /*#__PURE__*/React.createElement("span", {
|
|
31048
31100
|
role: "img",
|
|
31049
31101
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31050
31102
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31051
|
-
children: loadingCircleStyle$
|
|
31103
|
+
children: loadingCircleStyle$8g
|
|
31052
31104
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31053
31105
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31054
31106
|
width: size,
|
|
@@ -31095,8 +31147,8 @@ Application.defaultProps = {
|
|
|
31095
31147
|
size: '1em'
|
|
31096
31148
|
};
|
|
31097
31149
|
|
|
31098
|
-
var _excluded$
|
|
31099
|
-
var loadingCircleStyle$
|
|
31150
|
+
var _excluded$8h = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31151
|
+
var loadingCircleStyle$8h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31100
31152
|
var Gift = function Gift(props) {
|
|
31101
31153
|
var color = props.color,
|
|
31102
31154
|
size = props.size,
|
|
@@ -31105,12 +31157,12 @@ var Gift = function Gift(props) {
|
|
|
31105
31157
|
className = props.className,
|
|
31106
31158
|
iconClassName = props.iconClassName,
|
|
31107
31159
|
testid = props.testid,
|
|
31108
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31160
|
+
otherProps = _objectWithoutProperties(props, _excluded$8h);
|
|
31109
31161
|
return /*#__PURE__*/React.createElement("span", {
|
|
31110
31162
|
role: "img",
|
|
31111
31163
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31112
31164
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31113
|
-
children: loadingCircleStyle$
|
|
31165
|
+
children: loadingCircleStyle$8h
|
|
31114
31166
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31115
31167
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31116
31168
|
width: size,
|
|
@@ -31147,8 +31199,8 @@ Gift.defaultProps = {
|
|
|
31147
31199
|
size: '1em'
|
|
31148
31200
|
};
|
|
31149
31201
|
|
|
31150
|
-
var _excluded$
|
|
31151
|
-
var loadingCircleStyle$
|
|
31202
|
+
var _excluded$8i = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31203
|
+
var loadingCircleStyle$8i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31152
31204
|
var Tips = function Tips(props) {
|
|
31153
31205
|
var color = props.color,
|
|
31154
31206
|
size = props.size,
|
|
@@ -31157,12 +31209,12 @@ var Tips = function Tips(props) {
|
|
|
31157
31209
|
className = props.className,
|
|
31158
31210
|
iconClassName = props.iconClassName,
|
|
31159
31211
|
testid = props.testid,
|
|
31160
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31212
|
+
otherProps = _objectWithoutProperties(props, _excluded$8i);
|
|
31161
31213
|
return /*#__PURE__*/React.createElement("span", {
|
|
31162
31214
|
role: "img",
|
|
31163
31215
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31164
31216
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31165
|
-
children: loadingCircleStyle$
|
|
31217
|
+
children: loadingCircleStyle$8i
|
|
31166
31218
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31167
31219
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31168
31220
|
width: size,
|
|
@@ -31201,8 +31253,8 @@ Tips.defaultProps = {
|
|
|
31201
31253
|
size: '1em'
|
|
31202
31254
|
};
|
|
31203
31255
|
|
|
31204
|
-
var _excluded$
|
|
31205
|
-
var loadingCircleStyle$
|
|
31256
|
+
var _excluded$8j = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31257
|
+
var loadingCircleStyle$8j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31206
31258
|
var Usb = function Usb(props) {
|
|
31207
31259
|
var color = props.color,
|
|
31208
31260
|
size = props.size,
|
|
@@ -31211,12 +31263,12 @@ var Usb = function Usb(props) {
|
|
|
31211
31263
|
className = props.className,
|
|
31212
31264
|
iconClassName = props.iconClassName,
|
|
31213
31265
|
testid = props.testid,
|
|
31214
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31266
|
+
otherProps = _objectWithoutProperties(props, _excluded$8j);
|
|
31215
31267
|
return /*#__PURE__*/React.createElement("span", {
|
|
31216
31268
|
role: "img",
|
|
31217
31269
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31218
31270
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31219
|
-
children: loadingCircleStyle$
|
|
31271
|
+
children: loadingCircleStyle$8j
|
|
31220
31272
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31221
31273
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31222
31274
|
width: size,
|
|
@@ -31253,8 +31305,8 @@ Usb.defaultProps = {
|
|
|
31253
31305
|
size: '1em'
|
|
31254
31306
|
};
|
|
31255
31307
|
|
|
31256
|
-
var _excluded$
|
|
31257
|
-
var loadingCircleStyle$
|
|
31308
|
+
var _excluded$8k = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31309
|
+
var loadingCircleStyle$8k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31258
31310
|
var Location = function Location(props) {
|
|
31259
31311
|
var color = props.color,
|
|
31260
31312
|
size = props.size,
|
|
@@ -31263,12 +31315,12 @@ var Location = function Location(props) {
|
|
|
31263
31315
|
className = props.className,
|
|
31264
31316
|
iconClassName = props.iconClassName,
|
|
31265
31317
|
testid = props.testid,
|
|
31266
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31318
|
+
otherProps = _objectWithoutProperties(props, _excluded$8k);
|
|
31267
31319
|
return /*#__PURE__*/React.createElement("span", {
|
|
31268
31320
|
role: "img",
|
|
31269
31321
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31270
31322
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31271
|
-
children: loadingCircleStyle$
|
|
31323
|
+
children: loadingCircleStyle$8k
|
|
31272
31324
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31273
31325
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31274
31326
|
width: size,
|
|
@@ -31309,8 +31361,8 @@ Location.defaultProps = {
|
|
|
31309
31361
|
size: '1em'
|
|
31310
31362
|
};
|
|
31311
31363
|
|
|
31312
|
-
var _excluded$
|
|
31313
|
-
var loadingCircleStyle$
|
|
31364
|
+
var _excluded$8l = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31365
|
+
var loadingCircleStyle$8l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31314
31366
|
var ShieldCheck = function ShieldCheck(props) {
|
|
31315
31367
|
var color = props.color,
|
|
31316
31368
|
size = props.size,
|
|
@@ -31319,12 +31371,12 @@ var ShieldCheck = function ShieldCheck(props) {
|
|
|
31319
31371
|
className = props.className,
|
|
31320
31372
|
iconClassName = props.iconClassName,
|
|
31321
31373
|
testid = props.testid,
|
|
31322
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31374
|
+
otherProps = _objectWithoutProperties(props, _excluded$8l);
|
|
31323
31375
|
return /*#__PURE__*/React.createElement("span", {
|
|
31324
31376
|
role: "img",
|
|
31325
31377
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31326
31378
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31327
|
-
children: loadingCircleStyle$
|
|
31379
|
+
children: loadingCircleStyle$8l
|
|
31328
31380
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31329
31381
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31330
31382
|
width: size,
|
|
@@ -31361,8 +31413,8 @@ ShieldCheck.defaultProps = {
|
|
|
31361
31413
|
size: '1em'
|
|
31362
31414
|
};
|
|
31363
31415
|
|
|
31364
|
-
var _excluded$
|
|
31365
|
-
var loadingCircleStyle$
|
|
31416
|
+
var _excluded$8m = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31417
|
+
var loadingCircleStyle$8m = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31366
31418
|
var ShieldCross = function ShieldCross(props) {
|
|
31367
31419
|
var color = props.color,
|
|
31368
31420
|
size = props.size,
|
|
@@ -31371,12 +31423,12 @@ var ShieldCross = function ShieldCross(props) {
|
|
|
31371
31423
|
className = props.className,
|
|
31372
31424
|
iconClassName = props.iconClassName,
|
|
31373
31425
|
testid = props.testid,
|
|
31374
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31426
|
+
otherProps = _objectWithoutProperties(props, _excluded$8m);
|
|
31375
31427
|
return /*#__PURE__*/React.createElement("span", {
|
|
31376
31428
|
role: "img",
|
|
31377
31429
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31378
31430
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31379
|
-
children: loadingCircleStyle$
|
|
31431
|
+
children: loadingCircleStyle$8m
|
|
31380
31432
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31381
31433
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31382
31434
|
width: size,
|
|
@@ -31413,8 +31465,8 @@ ShieldCross.defaultProps = {
|
|
|
31413
31465
|
size: '1em'
|
|
31414
31466
|
};
|
|
31415
31467
|
|
|
31416
|
-
var _excluded$
|
|
31417
|
-
var loadingCircleStyle$
|
|
31468
|
+
var _excluded$8n = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31469
|
+
var loadingCircleStyle$8n = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31418
31470
|
var ShieldKeyhole = function ShieldKeyhole(props) {
|
|
31419
31471
|
var color = props.color,
|
|
31420
31472
|
size = props.size,
|
|
@@ -31423,12 +31475,12 @@ var ShieldKeyhole = function ShieldKeyhole(props) {
|
|
|
31423
31475
|
className = props.className,
|
|
31424
31476
|
iconClassName = props.iconClassName,
|
|
31425
31477
|
testid = props.testid,
|
|
31426
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31478
|
+
otherProps = _objectWithoutProperties(props, _excluded$8n);
|
|
31427
31479
|
return /*#__PURE__*/React.createElement("span", {
|
|
31428
31480
|
role: "img",
|
|
31429
31481
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31430
31482
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31431
|
-
children: loadingCircleStyle$
|
|
31483
|
+
children: loadingCircleStyle$8n
|
|
31432
31484
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31433
31485
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31434
31486
|
width: size,
|
|
@@ -31465,8 +31517,8 @@ ShieldKeyhole.defaultProps = {
|
|
|
31465
31517
|
size: '1em'
|
|
31466
31518
|
};
|
|
31467
31519
|
|
|
31468
|
-
var _excluded$
|
|
31469
|
-
var loadingCircleStyle$
|
|
31520
|
+
var _excluded$8o = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31521
|
+
var loadingCircleStyle$8o = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31470
31522
|
var Bell2Fill = function Bell2Fill(props) {
|
|
31471
31523
|
var color = props.color,
|
|
31472
31524
|
size = props.size,
|
|
@@ -31475,12 +31527,12 @@ var Bell2Fill = function Bell2Fill(props) {
|
|
|
31475
31527
|
className = props.className,
|
|
31476
31528
|
iconClassName = props.iconClassName,
|
|
31477
31529
|
testid = props.testid,
|
|
31478
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31530
|
+
otherProps = _objectWithoutProperties(props, _excluded$8o);
|
|
31479
31531
|
return /*#__PURE__*/React.createElement("span", {
|
|
31480
31532
|
role: "img",
|
|
31481
31533
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31482
31534
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31483
|
-
children: loadingCircleStyle$
|
|
31535
|
+
children: loadingCircleStyle$8o
|
|
31484
31536
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31485
31537
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31486
31538
|
width: size,
|
|
@@ -31517,8 +31569,8 @@ Bell2Fill.defaultProps = {
|
|
|
31517
31569
|
size: '1em'
|
|
31518
31570
|
};
|
|
31519
31571
|
|
|
31520
|
-
var _excluded$
|
|
31521
|
-
var loadingCircleStyle$
|
|
31572
|
+
var _excluded$8p = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31573
|
+
var loadingCircleStyle$8p = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31522
31574
|
var Box = function Box(props) {
|
|
31523
31575
|
var color = props.color,
|
|
31524
31576
|
size = props.size,
|
|
@@ -31527,12 +31579,12 @@ var Box = function Box(props) {
|
|
|
31527
31579
|
className = props.className,
|
|
31528
31580
|
iconClassName = props.iconClassName,
|
|
31529
31581
|
testid = props.testid,
|
|
31530
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31582
|
+
otherProps = _objectWithoutProperties(props, _excluded$8p);
|
|
31531
31583
|
return /*#__PURE__*/React.createElement("span", {
|
|
31532
31584
|
role: "img",
|
|
31533
31585
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31534
31586
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31535
|
-
children: loadingCircleStyle$
|
|
31587
|
+
children: loadingCircleStyle$8p
|
|
31536
31588
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31537
31589
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31538
31590
|
width: size,
|
|
@@ -31569,8 +31621,8 @@ Box.defaultProps = {
|
|
|
31569
31621
|
size: '1em'
|
|
31570
31622
|
};
|
|
31571
31623
|
|
|
31572
|
-
var _excluded$
|
|
31573
|
-
var loadingCircleStyle$
|
|
31624
|
+
var _excluded$8q = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31625
|
+
var loadingCircleStyle$8q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31574
31626
|
var ShutDown = function ShutDown(props) {
|
|
31575
31627
|
var color = props.color,
|
|
31576
31628
|
size = props.size,
|
|
@@ -31579,12 +31631,12 @@ var ShutDown = function ShutDown(props) {
|
|
|
31579
31631
|
className = props.className,
|
|
31580
31632
|
iconClassName = props.iconClassName,
|
|
31581
31633
|
testid = props.testid,
|
|
31582
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31634
|
+
otherProps = _objectWithoutProperties(props, _excluded$8q);
|
|
31583
31635
|
return /*#__PURE__*/React.createElement("span", {
|
|
31584
31636
|
role: "img",
|
|
31585
31637
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31586
31638
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31587
|
-
children: loadingCircleStyle$
|
|
31639
|
+
children: loadingCircleStyle$8q
|
|
31588
31640
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31589
31641
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31590
31642
|
width: size,
|
|
@@ -31621,8 +31673,8 @@ ShutDown.defaultProps = {
|
|
|
31621
31673
|
size: '1em'
|
|
31622
31674
|
};
|
|
31623
31675
|
|
|
31624
|
-
var _excluded$
|
|
31625
|
-
var loadingCircleStyle$
|
|
31676
|
+
var _excluded$8r = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31677
|
+
var loadingCircleStyle$8r = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31626
31678
|
var Database = function Database(props) {
|
|
31627
31679
|
var color = props.color,
|
|
31628
31680
|
size = props.size,
|
|
@@ -31631,12 +31683,12 @@ var Database = function Database(props) {
|
|
|
31631
31683
|
className = props.className,
|
|
31632
31684
|
iconClassName = props.iconClassName,
|
|
31633
31685
|
testid = props.testid,
|
|
31634
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31686
|
+
otherProps = _objectWithoutProperties(props, _excluded$8r);
|
|
31635
31687
|
return /*#__PURE__*/React.createElement("span", {
|
|
31636
31688
|
role: "img",
|
|
31637
31689
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31638
31690
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31639
|
-
children: loadingCircleStyle$
|
|
31691
|
+
children: loadingCircleStyle$8r
|
|
31640
31692
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31641
31693
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31642
31694
|
width: size,
|
|
@@ -31673,8 +31725,8 @@ Database.defaultProps = {
|
|
|
31673
31725
|
size: '1em'
|
|
31674
31726
|
};
|
|
31675
31727
|
|
|
31676
|
-
var _excluded$
|
|
31677
|
-
var loadingCircleStyle$
|
|
31728
|
+
var _excluded$8s = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31729
|
+
var loadingCircleStyle$8s = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31678
31730
|
var Terminal = function Terminal(props) {
|
|
31679
31731
|
var color = props.color,
|
|
31680
31732
|
size = props.size,
|
|
@@ -31683,12 +31735,12 @@ var Terminal = function Terminal(props) {
|
|
|
31683
31735
|
className = props.className,
|
|
31684
31736
|
iconClassName = props.iconClassName,
|
|
31685
31737
|
testid = props.testid,
|
|
31686
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31738
|
+
otherProps = _objectWithoutProperties(props, _excluded$8s);
|
|
31687
31739
|
return /*#__PURE__*/React.createElement("span", {
|
|
31688
31740
|
role: "img",
|
|
31689
31741
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31690
31742
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31691
|
-
children: loadingCircleStyle$
|
|
31743
|
+
children: loadingCircleStyle$8s
|
|
31692
31744
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31693
31745
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31694
31746
|
width: size,
|
|
@@ -31725,8 +31777,8 @@ Terminal.defaultProps = {
|
|
|
31725
31777
|
size: '1em'
|
|
31726
31778
|
};
|
|
31727
31779
|
|
|
31728
|
-
var _excluded$
|
|
31729
|
-
var loadingCircleStyle$
|
|
31780
|
+
var _excluded$8t = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31781
|
+
var loadingCircleStyle$8t = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31730
31782
|
var SatelliteDish = function SatelliteDish(props) {
|
|
31731
31783
|
var color = props.color,
|
|
31732
31784
|
size = props.size,
|
|
@@ -31735,12 +31787,12 @@ var SatelliteDish = function SatelliteDish(props) {
|
|
|
31735
31787
|
className = props.className,
|
|
31736
31788
|
iconClassName = props.iconClassName,
|
|
31737
31789
|
testid = props.testid,
|
|
31738
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31790
|
+
otherProps = _objectWithoutProperties(props, _excluded$8t);
|
|
31739
31791
|
return /*#__PURE__*/React.createElement("span", {
|
|
31740
31792
|
role: "img",
|
|
31741
31793
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31742
31794
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31743
|
-
children: loadingCircleStyle$
|
|
31795
|
+
children: loadingCircleStyle$8t
|
|
31744
31796
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31745
31797
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31746
31798
|
width: size,
|
|
@@ -31783,8 +31835,8 @@ SatelliteDish.defaultProps = {
|
|
|
31783
31835
|
size: '1em'
|
|
31784
31836
|
};
|
|
31785
31837
|
|
|
31786
|
-
var _excluded$
|
|
31787
|
-
var loadingCircleStyle$
|
|
31838
|
+
var _excluded$8u = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31839
|
+
var loadingCircleStyle$8u = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31788
31840
|
var Post = function Post(props) {
|
|
31789
31841
|
var color = props.color,
|
|
31790
31842
|
size = props.size,
|
|
@@ -31793,12 +31845,12 @@ var Post = function Post(props) {
|
|
|
31793
31845
|
className = props.className,
|
|
31794
31846
|
iconClassName = props.iconClassName,
|
|
31795
31847
|
testid = props.testid,
|
|
31796
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31848
|
+
otherProps = _objectWithoutProperties(props, _excluded$8u);
|
|
31797
31849
|
return /*#__PURE__*/React.createElement("span", {
|
|
31798
31850
|
role: "img",
|
|
31799
31851
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31800
31852
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31801
|
-
children: loadingCircleStyle$
|
|
31853
|
+
children: loadingCircleStyle$8u
|
|
31802
31854
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31803
31855
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31804
31856
|
width: size,
|
|
@@ -31835,8 +31887,8 @@ Post.defaultProps = {
|
|
|
31835
31887
|
size: '1em'
|
|
31836
31888
|
};
|
|
31837
31889
|
|
|
31838
|
-
var _excluded$
|
|
31839
|
-
var loadingCircleStyle$
|
|
31890
|
+
var _excluded$8v = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31891
|
+
var loadingCircleStyle$8v = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31840
31892
|
var Phrase = function Phrase(props) {
|
|
31841
31893
|
var color = props.color,
|
|
31842
31894
|
size = props.size,
|
|
@@ -31845,12 +31897,12 @@ var Phrase = function Phrase(props) {
|
|
|
31845
31897
|
className = props.className,
|
|
31846
31898
|
iconClassName = props.iconClassName,
|
|
31847
31899
|
testid = props.testid,
|
|
31848
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31900
|
+
otherProps = _objectWithoutProperties(props, _excluded$8v);
|
|
31849
31901
|
return /*#__PURE__*/React.createElement("span", {
|
|
31850
31902
|
role: "img",
|
|
31851
31903
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31852
31904
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31853
|
-
children: loadingCircleStyle$
|
|
31905
|
+
children: loadingCircleStyle$8v
|
|
31854
31906
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31855
31907
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31856
31908
|
width: size,
|
|
@@ -31887,8 +31939,8 @@ Phrase.defaultProps = {
|
|
|
31887
31939
|
size: '1em'
|
|
31888
31940
|
};
|
|
31889
31941
|
|
|
31890
|
-
var _excluded$
|
|
31891
|
-
var loadingCircleStyle$
|
|
31942
|
+
var _excluded$8w = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31943
|
+
var loadingCircleStyle$8w = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31892
31944
|
var Hashtag = function Hashtag(props) {
|
|
31893
31945
|
var color = props.color,
|
|
31894
31946
|
size = props.size,
|
|
@@ -31897,12 +31949,12 @@ var Hashtag = function Hashtag(props) {
|
|
|
31897
31949
|
className = props.className,
|
|
31898
31950
|
iconClassName = props.iconClassName,
|
|
31899
31951
|
testid = props.testid,
|
|
31900
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31952
|
+
otherProps = _objectWithoutProperties(props, _excluded$8w);
|
|
31901
31953
|
return /*#__PURE__*/React.createElement("span", {
|
|
31902
31954
|
role: "img",
|
|
31903
31955
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31904
31956
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31905
|
-
children: loadingCircleStyle$
|
|
31957
|
+
children: loadingCircleStyle$8w
|
|
31906
31958
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31907
31959
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31908
31960
|
width: size,
|
|
@@ -31939,8 +31991,8 @@ Hashtag.defaultProps = {
|
|
|
31939
31991
|
size: '1em'
|
|
31940
31992
|
};
|
|
31941
31993
|
|
|
31942
|
-
var _excluded$
|
|
31943
|
-
var loadingCircleStyle$
|
|
31994
|
+
var _excluded$8x = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31995
|
+
var loadingCircleStyle$8x = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31944
31996
|
var CalendarCheck = function CalendarCheck(props) {
|
|
31945
31997
|
var color = props.color,
|
|
31946
31998
|
size = props.size,
|
|
@@ -31949,12 +32001,12 @@ var CalendarCheck = function CalendarCheck(props) {
|
|
|
31949
32001
|
className = props.className,
|
|
31950
32002
|
iconClassName = props.iconClassName,
|
|
31951
32003
|
testid = props.testid,
|
|
31952
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32004
|
+
otherProps = _objectWithoutProperties(props, _excluded$8x);
|
|
31953
32005
|
return /*#__PURE__*/React.createElement("span", {
|
|
31954
32006
|
role: "img",
|
|
31955
32007
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31956
32008
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31957
|
-
children: loadingCircleStyle$
|
|
32009
|
+
children: loadingCircleStyle$8x
|
|
31958
32010
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31959
32011
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31960
32012
|
width: size,
|
|
@@ -31991,8 +32043,8 @@ CalendarCheck.defaultProps = {
|
|
|
31991
32043
|
size: '1em'
|
|
31992
32044
|
};
|
|
31993
32045
|
|
|
31994
|
-
var _excluded$
|
|
31995
|
-
var loadingCircleStyle$
|
|
32046
|
+
var _excluded$8y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32047
|
+
var loadingCircleStyle$8y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31996
32048
|
var BiTargetPlayerCl = function BiTargetPlayerCl(props) {
|
|
31997
32049
|
var color = props.color,
|
|
31998
32050
|
size = props.size,
|
|
@@ -32001,12 +32053,12 @@ var BiTargetPlayerCl = function BiTargetPlayerCl(props) {
|
|
|
32001
32053
|
className = props.className,
|
|
32002
32054
|
iconClassName = props.iconClassName,
|
|
32003
32055
|
testid = props.testid,
|
|
32004
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32056
|
+
otherProps = _objectWithoutProperties(props, _excluded$8y);
|
|
32005
32057
|
return /*#__PURE__*/React.createElement("span", {
|
|
32006
32058
|
role: "img",
|
|
32007
32059
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32008
32060
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32009
|
-
children: loadingCircleStyle$
|
|
32061
|
+
children: loadingCircleStyle$8y
|
|
32010
32062
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32011
32063
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32012
32064
|
width: size,
|
|
@@ -32103,8 +32155,8 @@ BiTargetPlayerCl.defaultProps = {
|
|
|
32103
32155
|
size: '1em'
|
|
32104
32156
|
};
|
|
32105
32157
|
|
|
32106
|
-
var _excluded$
|
|
32107
|
-
var loadingCircleStyle$
|
|
32158
|
+
var _excluded$8z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32159
|
+
var loadingCircleStyle$8z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32108
32160
|
var BiChannelReachCl = function BiChannelReachCl(props) {
|
|
32109
32161
|
var color = props.color,
|
|
32110
32162
|
size = props.size,
|
|
@@ -32113,12 +32165,12 @@ var BiChannelReachCl = function BiChannelReachCl(props) {
|
|
|
32113
32165
|
className = props.className,
|
|
32114
32166
|
iconClassName = props.iconClassName,
|
|
32115
32167
|
testid = props.testid,
|
|
32116
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32168
|
+
otherProps = _objectWithoutProperties(props, _excluded$8z);
|
|
32117
32169
|
return /*#__PURE__*/React.createElement("span", {
|
|
32118
32170
|
role: "img",
|
|
32119
32171
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32120
32172
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32121
|
-
children: loadingCircleStyle$
|
|
32173
|
+
children: loadingCircleStyle$8z
|
|
32122
32174
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32123
32175
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32124
32176
|
width: size,
|
|
@@ -32210,8 +32262,8 @@ BiChannelReachCl.defaultProps = {
|
|
|
32210
32262
|
size: '1em'
|
|
32211
32263
|
};
|
|
32212
32264
|
|
|
32213
|
-
var _excluded$
|
|
32214
|
-
var loadingCircleStyle$
|
|
32265
|
+
var _excluded$8A = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32266
|
+
var loadingCircleStyle$8A = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32215
32267
|
var BiOperationAnalysisCl = function BiOperationAnalysisCl(props) {
|
|
32216
32268
|
var color = props.color,
|
|
32217
32269
|
size = props.size,
|
|
@@ -32220,12 +32272,12 @@ var BiOperationAnalysisCl = function BiOperationAnalysisCl(props) {
|
|
|
32220
32272
|
className = props.className,
|
|
32221
32273
|
iconClassName = props.iconClassName,
|
|
32222
32274
|
testid = props.testid,
|
|
32223
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32275
|
+
otherProps = _objectWithoutProperties(props, _excluded$8A);
|
|
32224
32276
|
return /*#__PURE__*/React.createElement("span", {
|
|
32225
32277
|
role: "img",
|
|
32226
32278
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32227
32279
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32228
|
-
children: loadingCircleStyle$
|
|
32280
|
+
children: loadingCircleStyle$8A
|
|
32229
32281
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32230
32282
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32231
32283
|
width: size,
|
|
@@ -32315,8 +32367,8 @@ BiOperationAnalysisCl.defaultProps = {
|
|
|
32315
32367
|
size: '1em'
|
|
32316
32368
|
};
|
|
32317
32369
|
|
|
32318
|
-
var _excluded$
|
|
32319
|
-
var loadingCircleStyle$
|
|
32370
|
+
var _excluded$8B = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32371
|
+
var loadingCircleStyle$8B = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32320
32372
|
var BiOperationPolicyCl = function BiOperationPolicyCl(props) {
|
|
32321
32373
|
var color = props.color,
|
|
32322
32374
|
size = props.size,
|
|
@@ -32325,12 +32377,12 @@ var BiOperationPolicyCl = function BiOperationPolicyCl(props) {
|
|
|
32325
32377
|
className = props.className,
|
|
32326
32378
|
iconClassName = props.iconClassName,
|
|
32327
32379
|
testid = props.testid,
|
|
32328
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32380
|
+
otherProps = _objectWithoutProperties(props, _excluded$8B);
|
|
32329
32381
|
return /*#__PURE__*/React.createElement("span", {
|
|
32330
32382
|
role: "img",
|
|
32331
32383
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32332
32384
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32333
|
-
children: loadingCircleStyle$
|
|
32385
|
+
children: loadingCircleStyle$8B
|
|
32334
32386
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32335
32387
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32336
32388
|
width: size,
|
|
@@ -32425,8 +32477,8 @@ BiOperationPolicyCl.defaultProps = {
|
|
|
32425
32477
|
size: '1em'
|
|
32426
32478
|
};
|
|
32427
32479
|
|
|
32428
|
-
var _excluded$
|
|
32429
|
-
var loadingCircleStyle$
|
|
32480
|
+
var _excluded$8C = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32481
|
+
var loadingCircleStyle$8C = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32430
32482
|
var BiAiCl = function BiAiCl(props) {
|
|
32431
32483
|
var color = props.color,
|
|
32432
32484
|
size = props.size,
|
|
@@ -32435,12 +32487,12 @@ var BiAiCl = function BiAiCl(props) {
|
|
|
32435
32487
|
className = props.className,
|
|
32436
32488
|
iconClassName = props.iconClassName,
|
|
32437
32489
|
testid = props.testid,
|
|
32438
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32490
|
+
otherProps = _objectWithoutProperties(props, _excluded$8C);
|
|
32439
32491
|
return /*#__PURE__*/React.createElement("span", {
|
|
32440
32492
|
role: "img",
|
|
32441
32493
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32442
32494
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32443
|
-
children: loadingCircleStyle$
|
|
32495
|
+
children: loadingCircleStyle$8C
|
|
32444
32496
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32445
32497
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32446
32498
|
width: size,
|
|
@@ -32530,8 +32582,8 @@ BiAiCl.defaultProps = {
|
|
|
32530
32582
|
size: '1em'
|
|
32531
32583
|
};
|
|
32532
32584
|
|
|
32533
|
-
var _excluded$
|
|
32534
|
-
var loadingCircleStyle$
|
|
32585
|
+
var _excluded$8D = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32586
|
+
var loadingCircleStyle$8D = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32535
32587
|
var BiQuickStartCl = function BiQuickStartCl(props) {
|
|
32536
32588
|
var color = props.color,
|
|
32537
32589
|
size = props.size,
|
|
@@ -32540,12 +32592,12 @@ var BiQuickStartCl = function BiQuickStartCl(props) {
|
|
|
32540
32592
|
className = props.className,
|
|
32541
32593
|
iconClassName = props.iconClassName,
|
|
32542
32594
|
testid = props.testid,
|
|
32543
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32595
|
+
otherProps = _objectWithoutProperties(props, _excluded$8D);
|
|
32544
32596
|
return /*#__PURE__*/React.createElement("span", {
|
|
32545
32597
|
role: "img",
|
|
32546
32598
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32547
32599
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32548
|
-
children: loadingCircleStyle$
|
|
32600
|
+
children: loadingCircleStyle$8D
|
|
32549
32601
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32550
32602
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32551
32603
|
width: size,
|
|
@@ -32635,8 +32687,8 @@ BiQuickStartCl.defaultProps = {
|
|
|
32635
32687
|
size: '1em'
|
|
32636
32688
|
};
|
|
32637
32689
|
|
|
32638
|
-
var _excluded$
|
|
32639
|
-
var loadingCircleStyle$
|
|
32690
|
+
var _excluded$8E = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32691
|
+
var loadingCircleStyle$8E = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32640
32692
|
var BiAlertCl = function BiAlertCl(props) {
|
|
32641
32693
|
var color = props.color,
|
|
32642
32694
|
size = props.size,
|
|
@@ -32645,12 +32697,12 @@ var BiAlertCl = function BiAlertCl(props) {
|
|
|
32645
32697
|
className = props.className,
|
|
32646
32698
|
iconClassName = props.iconClassName,
|
|
32647
32699
|
testid = props.testid,
|
|
32648
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32700
|
+
otherProps = _objectWithoutProperties(props, _excluded$8E);
|
|
32649
32701
|
return /*#__PURE__*/React.createElement("span", {
|
|
32650
32702
|
role: "img",
|
|
32651
32703
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32652
32704
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32653
|
-
children: loadingCircleStyle$
|
|
32705
|
+
children: loadingCircleStyle$8E
|
|
32654
32706
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32655
32707
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32656
32708
|
width: size,
|
|
@@ -32740,8 +32792,8 @@ BiAlertCl.defaultProps = {
|
|
|
32740
32792
|
size: '1em'
|
|
32741
32793
|
};
|
|
32742
32794
|
|
|
32743
|
-
var _excluded$
|
|
32744
|
-
var loadingCircleStyle$
|
|
32795
|
+
var _excluded$8F = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32796
|
+
var loadingCircleStyle$8F = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32745
32797
|
var BiQueryCl = function BiQueryCl(props) {
|
|
32746
32798
|
var color = props.color,
|
|
32747
32799
|
size = props.size,
|
|
@@ -32750,12 +32802,12 @@ var BiQueryCl = function BiQueryCl(props) {
|
|
|
32750
32802
|
className = props.className,
|
|
32751
32803
|
iconClassName = props.iconClassName,
|
|
32752
32804
|
testid = props.testid,
|
|
32753
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32805
|
+
otherProps = _objectWithoutProperties(props, _excluded$8F);
|
|
32754
32806
|
return /*#__PURE__*/React.createElement("span", {
|
|
32755
32807
|
role: "img",
|
|
32756
32808
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32757
32809
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32758
|
-
children: loadingCircleStyle$
|
|
32810
|
+
children: loadingCircleStyle$8F
|
|
32759
32811
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32760
32812
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32761
32813
|
width: size,
|
|
@@ -32845,8 +32897,8 @@ BiQueryCl.defaultProps = {
|
|
|
32845
32897
|
size: '1em'
|
|
32846
32898
|
};
|
|
32847
32899
|
|
|
32848
|
-
var _excluded$
|
|
32849
|
-
var loadingCircleStyle$
|
|
32900
|
+
var _excluded$8G = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32901
|
+
var loadingCircleStyle$8G = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32850
32902
|
var BiUserOperationCl = function BiUserOperationCl(props) {
|
|
32851
32903
|
var color = props.color,
|
|
32852
32904
|
size = props.size,
|
|
@@ -32855,12 +32907,12 @@ var BiUserOperationCl = function BiUserOperationCl(props) {
|
|
|
32855
32907
|
className = props.className,
|
|
32856
32908
|
iconClassName = props.iconClassName,
|
|
32857
32909
|
testid = props.testid,
|
|
32858
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32910
|
+
otherProps = _objectWithoutProperties(props, _excluded$8G);
|
|
32859
32911
|
return /*#__PURE__*/React.createElement("span", {
|
|
32860
32912
|
role: "img",
|
|
32861
32913
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32862
32914
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32863
|
-
children: loadingCircleStyle$
|
|
32915
|
+
children: loadingCircleStyle$8G
|
|
32864
32916
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32865
32917
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32866
32918
|
width: size,
|
|
@@ -32950,8 +33002,8 @@ BiUserOperationCl.defaultProps = {
|
|
|
32950
33002
|
size: '1em'
|
|
32951
33003
|
};
|
|
32952
33004
|
|
|
32953
|
-
var _excluded$
|
|
32954
|
-
var loadingCircleStyle$
|
|
33005
|
+
var _excluded$8H = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33006
|
+
var loadingCircleStyle$8H = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32955
33007
|
var BiUserIdentificationCl = function BiUserIdentificationCl(props) {
|
|
32956
33008
|
var color = props.color,
|
|
32957
33009
|
size = props.size,
|
|
@@ -32960,12 +33012,12 @@ var BiUserIdentificationCl = function BiUserIdentificationCl(props) {
|
|
|
32960
33012
|
className = props.className,
|
|
32961
33013
|
iconClassName = props.iconClassName,
|
|
32962
33014
|
testid = props.testid,
|
|
32963
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33015
|
+
otherProps = _objectWithoutProperties(props, _excluded$8H);
|
|
32964
33016
|
return /*#__PURE__*/React.createElement("span", {
|
|
32965
33017
|
role: "img",
|
|
32966
33018
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32967
33019
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32968
|
-
children: loadingCircleStyle$
|
|
33020
|
+
children: loadingCircleStyle$8H
|
|
32969
33021
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32970
33022
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32971
33023
|
width: size,
|
|
@@ -33055,8 +33107,8 @@ BiUserIdentificationCl.defaultProps = {
|
|
|
33055
33107
|
size: '1em'
|
|
33056
33108
|
};
|
|
33057
33109
|
|
|
33058
|
-
var _excluded$
|
|
33059
|
-
var loadingCircleStyle$
|
|
33110
|
+
var _excluded$8I = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33111
|
+
var loadingCircleStyle$8I = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33060
33112
|
var BiSocialAnalysisCl = function BiSocialAnalysisCl(props) {
|
|
33061
33113
|
var color = props.color,
|
|
33062
33114
|
size = props.size,
|
|
@@ -33065,12 +33117,12 @@ var BiSocialAnalysisCl = function BiSocialAnalysisCl(props) {
|
|
|
33065
33117
|
className = props.className,
|
|
33066
33118
|
iconClassName = props.iconClassName,
|
|
33067
33119
|
testid = props.testid,
|
|
33068
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33120
|
+
otherProps = _objectWithoutProperties(props, _excluded$8I);
|
|
33069
33121
|
return /*#__PURE__*/React.createElement("span", {
|
|
33070
33122
|
role: "img",
|
|
33071
33123
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33072
33124
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33073
|
-
children: loadingCircleStyle$
|
|
33125
|
+
children: loadingCircleStyle$8I
|
|
33074
33126
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33075
33127
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33076
33128
|
width: size,
|
|
@@ -33160,8 +33212,8 @@ BiSocialAnalysisCl.defaultProps = {
|
|
|
33160
33212
|
size: '1em'
|
|
33161
33213
|
};
|
|
33162
33214
|
|
|
33163
|
-
var _excluded$
|
|
33164
|
-
var loadingCircleStyle$
|
|
33215
|
+
var _excluded$8J = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33216
|
+
var loadingCircleStyle$8J = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33165
33217
|
var BiBeginnerGuideCl = function BiBeginnerGuideCl(props) {
|
|
33166
33218
|
var color = props.color,
|
|
33167
33219
|
size = props.size,
|
|
@@ -33170,12 +33222,12 @@ var BiBeginnerGuideCl = function BiBeginnerGuideCl(props) {
|
|
|
33170
33222
|
className = props.className,
|
|
33171
33223
|
iconClassName = props.iconClassName,
|
|
33172
33224
|
testid = props.testid,
|
|
33173
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33225
|
+
otherProps = _objectWithoutProperties(props, _excluded$8J);
|
|
33174
33226
|
return /*#__PURE__*/React.createElement("span", {
|
|
33175
33227
|
role: "img",
|
|
33176
33228
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33177
33229
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33178
|
-
children: loadingCircleStyle$
|
|
33230
|
+
children: loadingCircleStyle$8J
|
|
33179
33231
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33180
33232
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33181
33233
|
width: size,
|
|
@@ -33265,8 +33317,8 @@ BiBeginnerGuideCl.defaultProps = {
|
|
|
33265
33317
|
size: '1em'
|
|
33266
33318
|
};
|
|
33267
33319
|
|
|
33268
|
-
var _excluded$
|
|
33269
|
-
var loadingCircleStyle$
|
|
33320
|
+
var _excluded$8K = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33321
|
+
var loadingCircleStyle$8K = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33270
33322
|
var BiCommercialAdaptationCl = function BiCommercialAdaptationCl(props) {
|
|
33271
33323
|
var color = props.color,
|
|
33272
33324
|
size = props.size,
|
|
@@ -33275,12 +33327,12 @@ var BiCommercialAdaptationCl = function BiCommercialAdaptationCl(props) {
|
|
|
33275
33327
|
className = props.className,
|
|
33276
33328
|
iconClassName = props.iconClassName,
|
|
33277
33329
|
testid = props.testid,
|
|
33278
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33330
|
+
otherProps = _objectWithoutProperties(props, _excluded$8K);
|
|
33279
33331
|
return /*#__PURE__*/React.createElement("span", {
|
|
33280
33332
|
role: "img",
|
|
33281
33333
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33282
33334
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33283
|
-
children: loadingCircleStyle$
|
|
33335
|
+
children: loadingCircleStyle$8K
|
|
33284
33336
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33285
33337
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33286
33338
|
width: size,
|
|
@@ -33370,8 +33422,8 @@ BiCommercialAdaptationCl.defaultProps = {
|
|
|
33370
33422
|
size: '1em'
|
|
33371
33423
|
};
|
|
33372
33424
|
|
|
33373
|
-
var _excluded$
|
|
33374
|
-
var loadingCircleStyle$
|
|
33425
|
+
var _excluded$8L = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33426
|
+
var loadingCircleStyle$8L = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33375
33427
|
var BiOperationalEmpowermentCl = function BiOperationalEmpowermentCl(props) {
|
|
33376
33428
|
var color = props.color,
|
|
33377
33429
|
size = props.size,
|
|
@@ -33380,12 +33432,12 @@ var BiOperationalEmpowermentCl = function BiOperationalEmpowermentCl(props) {
|
|
|
33380
33432
|
className = props.className,
|
|
33381
33433
|
iconClassName = props.iconClassName,
|
|
33382
33434
|
testid = props.testid,
|
|
33383
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33435
|
+
otherProps = _objectWithoutProperties(props, _excluded$8L);
|
|
33384
33436
|
return /*#__PURE__*/React.createElement("span", {
|
|
33385
33437
|
role: "img",
|
|
33386
33438
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33387
33439
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33388
|
-
children: loadingCircleStyle$
|
|
33440
|
+
children: loadingCircleStyle$8L
|
|
33389
33441
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33390
33442
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33391
33443
|
width: size,
|
|
@@ -33475,8 +33527,8 @@ BiOperationalEmpowermentCl.defaultProps = {
|
|
|
33475
33527
|
size: '1em'
|
|
33476
33528
|
};
|
|
33477
33529
|
|
|
33478
|
-
var _excluded$
|
|
33479
|
-
var loadingCircleStyle$
|
|
33530
|
+
var _excluded$8M = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33531
|
+
var loadingCircleStyle$8M = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33480
33532
|
var BiPersonalizedDeploymentCl = function BiPersonalizedDeploymentCl(props) {
|
|
33481
33533
|
var color = props.color,
|
|
33482
33534
|
size = props.size,
|
|
@@ -33485,12 +33537,12 @@ var BiPersonalizedDeploymentCl = function BiPersonalizedDeploymentCl(props) {
|
|
|
33485
33537
|
className = props.className,
|
|
33486
33538
|
iconClassName = props.iconClassName,
|
|
33487
33539
|
testid = props.testid,
|
|
33488
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33540
|
+
otherProps = _objectWithoutProperties(props, _excluded$8M);
|
|
33489
33541
|
return /*#__PURE__*/React.createElement("span", {
|
|
33490
33542
|
role: "img",
|
|
33491
33543
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33492
33544
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33493
|
-
children: loadingCircleStyle$
|
|
33545
|
+
children: loadingCircleStyle$8M
|
|
33494
33546
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33495
33547
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33496
33548
|
width: size,
|
|
@@ -33580,8 +33632,8 @@ BiPersonalizedDeploymentCl.defaultProps = {
|
|
|
33580
33632
|
size: '1em'
|
|
33581
33633
|
};
|
|
33582
33634
|
|
|
33583
|
-
var _excluded$
|
|
33584
|
-
var loadingCircleStyle$
|
|
33635
|
+
var _excluded$8N = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33636
|
+
var loadingCircleStyle$8N = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33585
33637
|
var BiPathCl = function BiPathCl(props) {
|
|
33586
33638
|
var color = props.color,
|
|
33587
33639
|
size = props.size,
|
|
@@ -33590,12 +33642,12 @@ var BiPathCl = function BiPathCl(props) {
|
|
|
33590
33642
|
className = props.className,
|
|
33591
33643
|
iconClassName = props.iconClassName,
|
|
33592
33644
|
testid = props.testid,
|
|
33593
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33645
|
+
otherProps = _objectWithoutProperties(props, _excluded$8N);
|
|
33594
33646
|
return /*#__PURE__*/React.createElement("span", {
|
|
33595
33647
|
role: "img",
|
|
33596
33648
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33597
33649
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33598
|
-
children: loadingCircleStyle$
|
|
33650
|
+
children: loadingCircleStyle$8N
|
|
33599
33651
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33600
33652
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33601
33653
|
width: size,
|
|
@@ -33685,8 +33737,8 @@ BiPathCl.defaultProps = {
|
|
|
33685
33737
|
size: '1em'
|
|
33686
33738
|
};
|
|
33687
33739
|
|
|
33688
|
-
var _excluded$
|
|
33689
|
-
var loadingCircleStyle$
|
|
33740
|
+
var _excluded$8O = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33741
|
+
var loadingCircleStyle$8O = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33690
33742
|
var BiDisassemblyCl = function BiDisassemblyCl(props) {
|
|
33691
33743
|
var color = props.color,
|
|
33692
33744
|
size = props.size,
|
|
@@ -33695,12 +33747,12 @@ var BiDisassemblyCl = function BiDisassemblyCl(props) {
|
|
|
33695
33747
|
className = props.className,
|
|
33696
33748
|
iconClassName = props.iconClassName,
|
|
33697
33749
|
testid = props.testid,
|
|
33698
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33750
|
+
otherProps = _objectWithoutProperties(props, _excluded$8O);
|
|
33699
33751
|
return /*#__PURE__*/React.createElement("span", {
|
|
33700
33752
|
role: "img",
|
|
33701
33753
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33702
33754
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33703
|
-
children: loadingCircleStyle$
|
|
33755
|
+
children: loadingCircleStyle$8O
|
|
33704
33756
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33705
33757
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33706
33758
|
width: size,
|
|
@@ -33801,8 +33853,8 @@ BiDisassemblyCl.defaultProps = {
|
|
|
33801
33853
|
size: '1em'
|
|
33802
33854
|
};
|
|
33803
33855
|
|
|
33804
|
-
var _excluded$
|
|
33805
|
-
var loadingCircleStyle$
|
|
33856
|
+
var _excluded$8P = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33857
|
+
var loadingCircleStyle$8P = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33806
33858
|
var BiGuideCl = function BiGuideCl(props) {
|
|
33807
33859
|
var color = props.color,
|
|
33808
33860
|
size = props.size,
|
|
@@ -33811,12 +33863,12 @@ var BiGuideCl = function BiGuideCl(props) {
|
|
|
33811
33863
|
className = props.className,
|
|
33812
33864
|
iconClassName = props.iconClassName,
|
|
33813
33865
|
testid = props.testid,
|
|
33814
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33866
|
+
otherProps = _objectWithoutProperties(props, _excluded$8P);
|
|
33815
33867
|
return /*#__PURE__*/React.createElement("span", {
|
|
33816
33868
|
role: "img",
|
|
33817
33869
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33818
33870
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33819
|
-
children: loadingCircleStyle$
|
|
33871
|
+
children: loadingCircleStyle$8P
|
|
33820
33872
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33821
33873
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33822
33874
|
width: size,
|
|
@@ -33909,8 +33961,8 @@ BiGuideCl.defaultProps = {
|
|
|
33909
33961
|
size: '1em'
|
|
33910
33962
|
};
|
|
33911
33963
|
|
|
33912
|
-
var _excluded$
|
|
33913
|
-
var loadingCircleStyle$
|
|
33964
|
+
var _excluded$8Q = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33965
|
+
var loadingCircleStyle$8Q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33914
33966
|
var BiStratificationCl = function BiStratificationCl(props) {
|
|
33915
33967
|
var color = props.color,
|
|
33916
33968
|
size = props.size,
|
|
@@ -33919,12 +33971,12 @@ var BiStratificationCl = function BiStratificationCl(props) {
|
|
|
33919
33971
|
className = props.className,
|
|
33920
33972
|
iconClassName = props.iconClassName,
|
|
33921
33973
|
testid = props.testid,
|
|
33922
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33974
|
+
otherProps = _objectWithoutProperties(props, _excluded$8Q);
|
|
33923
33975
|
return /*#__PURE__*/React.createElement("span", {
|
|
33924
33976
|
role: "img",
|
|
33925
33977
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33926
33978
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33927
|
-
children: loadingCircleStyle$
|
|
33979
|
+
children: loadingCircleStyle$8Q
|
|
33928
33980
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33929
33981
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33930
33982
|
width: size,
|
|
@@ -34014,8 +34066,8 @@ BiStratificationCl.defaultProps = {
|
|
|
34014
34066
|
size: '1em'
|
|
34015
34067
|
};
|
|
34016
34068
|
|
|
34017
|
-
var _excluded$
|
|
34018
|
-
var loadingCircleStyle$
|
|
34069
|
+
var _excluded$8R = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34070
|
+
var loadingCircleStyle$8R = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34019
34071
|
var BiControlCl = function BiControlCl(props) {
|
|
34020
34072
|
var color = props.color,
|
|
34021
34073
|
size = props.size,
|
|
@@ -34024,12 +34076,12 @@ var BiControlCl = function BiControlCl(props) {
|
|
|
34024
34076
|
className = props.className,
|
|
34025
34077
|
iconClassName = props.iconClassName,
|
|
34026
34078
|
testid = props.testid,
|
|
34027
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34079
|
+
otherProps = _objectWithoutProperties(props, _excluded$8R);
|
|
34028
34080
|
return /*#__PURE__*/React.createElement("span", {
|
|
34029
34081
|
role: "img",
|
|
34030
34082
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34031
34083
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34032
|
-
children: loadingCircleStyle$
|
|
34084
|
+
children: loadingCircleStyle$8R
|
|
34033
34085
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34034
34086
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34035
34087
|
width: size,
|
|
@@ -34119,8 +34171,8 @@ BiControlCl.defaultProps = {
|
|
|
34119
34171
|
size: '1em'
|
|
34120
34172
|
};
|
|
34121
34173
|
|
|
34122
|
-
var _excluded$
|
|
34123
|
-
var loadingCircleStyle$
|
|
34174
|
+
var _excluded$8S = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34175
|
+
var loadingCircleStyle$8S = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34124
34176
|
var BiClosedLoopCl = function BiClosedLoopCl(props) {
|
|
34125
34177
|
var color = props.color,
|
|
34126
34178
|
size = props.size,
|
|
@@ -34129,12 +34181,12 @@ var BiClosedLoopCl = function BiClosedLoopCl(props) {
|
|
|
34129
34181
|
className = props.className,
|
|
34130
34182
|
iconClassName = props.iconClassName,
|
|
34131
34183
|
testid = props.testid,
|
|
34132
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34184
|
+
otherProps = _objectWithoutProperties(props, _excluded$8S);
|
|
34133
34185
|
return /*#__PURE__*/React.createElement("span", {
|
|
34134
34186
|
role: "img",
|
|
34135
34187
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34136
34188
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34137
|
-
children: loadingCircleStyle$
|
|
34189
|
+
children: loadingCircleStyle$8S
|
|
34138
34190
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34139
34191
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34140
34192
|
width: size,
|
|
@@ -34226,8 +34278,8 @@ BiClosedLoopCl.defaultProps = {
|
|
|
34226
34278
|
size: '1em'
|
|
34227
34279
|
};
|
|
34228
34280
|
|
|
34229
|
-
var _excluded$
|
|
34230
|
-
var loadingCircleStyle$
|
|
34281
|
+
var _excluded$8T = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34282
|
+
var loadingCircleStyle$8T = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34231
34283
|
var BiDataClosedLoopCl = function BiDataClosedLoopCl(props) {
|
|
34232
34284
|
var color = props.color,
|
|
34233
34285
|
size = props.size,
|
|
@@ -34236,12 +34288,12 @@ var BiDataClosedLoopCl = function BiDataClosedLoopCl(props) {
|
|
|
34236
34288
|
className = props.className,
|
|
34237
34289
|
iconClassName = props.iconClassName,
|
|
34238
34290
|
testid = props.testid,
|
|
34239
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34291
|
+
otherProps = _objectWithoutProperties(props, _excluded$8T);
|
|
34240
34292
|
return /*#__PURE__*/React.createElement("span", {
|
|
34241
34293
|
role: "img",
|
|
34242
34294
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34243
34295
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34244
|
-
children: loadingCircleStyle$
|
|
34296
|
+
children: loadingCircleStyle$8T
|
|
34245
34297
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34246
34298
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34247
34299
|
width: size,
|
|
@@ -34331,8 +34383,8 @@ BiDataClosedLoopCl.defaultProps = {
|
|
|
34331
34383
|
size: '1em'
|
|
34332
34384
|
};
|
|
34333
34385
|
|
|
34334
|
-
var _excluded$
|
|
34335
|
-
var loadingCircleStyle$
|
|
34386
|
+
var _excluded$8U = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34387
|
+
var loadingCircleStyle$8U = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34336
34388
|
var BiReachCl = function BiReachCl(props) {
|
|
34337
34389
|
var color = props.color,
|
|
34338
34390
|
size = props.size,
|
|
@@ -34341,12 +34393,12 @@ var BiReachCl = function BiReachCl(props) {
|
|
|
34341
34393
|
className = props.className,
|
|
34342
34394
|
iconClassName = props.iconClassName,
|
|
34343
34395
|
testid = props.testid,
|
|
34344
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34396
|
+
otherProps = _objectWithoutProperties(props, _excluded$8U);
|
|
34345
34397
|
return /*#__PURE__*/React.createElement("span", {
|
|
34346
34398
|
role: "img",
|
|
34347
34399
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34348
34400
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34349
|
-
children: loadingCircleStyle$
|
|
34401
|
+
children: loadingCircleStyle$8U
|
|
34350
34402
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34351
34403
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34352
34404
|
width: size,
|
|
@@ -34442,8 +34494,8 @@ BiReachCl.defaultProps = {
|
|
|
34442
34494
|
size: '1em'
|
|
34443
34495
|
};
|
|
34444
34496
|
|
|
34445
|
-
var _excluded$
|
|
34446
|
-
var loadingCircleStyle$
|
|
34497
|
+
var _excluded$8V = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34498
|
+
var loadingCircleStyle$8V = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34447
34499
|
var BiIndicatorCl = function BiIndicatorCl(props) {
|
|
34448
34500
|
var color = props.color,
|
|
34449
34501
|
size = props.size,
|
|
@@ -34452,12 +34504,12 @@ var BiIndicatorCl = function BiIndicatorCl(props) {
|
|
|
34452
34504
|
className = props.className,
|
|
34453
34505
|
iconClassName = props.iconClassName,
|
|
34454
34506
|
testid = props.testid,
|
|
34455
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34507
|
+
otherProps = _objectWithoutProperties(props, _excluded$8V);
|
|
34456
34508
|
return /*#__PURE__*/React.createElement("span", {
|
|
34457
34509
|
role: "img",
|
|
34458
34510
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34459
34511
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34460
|
-
children: loadingCircleStyle$
|
|
34512
|
+
children: loadingCircleStyle$8V
|
|
34461
34513
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34462
34514
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34463
34515
|
width: size,
|
|
@@ -34547,8 +34599,8 @@ BiIndicatorCl.defaultProps = {
|
|
|
34547
34599
|
size: '1em'
|
|
34548
34600
|
};
|
|
34549
34601
|
|
|
34550
|
-
var _excluded$
|
|
34551
|
-
var loadingCircleStyle$
|
|
34602
|
+
var _excluded$8W = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34603
|
+
var loadingCircleStyle$8W = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34552
34604
|
var BiSupportCl = function BiSupportCl(props) {
|
|
34553
34605
|
var color = props.color,
|
|
34554
34606
|
size = props.size,
|
|
@@ -34557,12 +34609,12 @@ var BiSupportCl = function BiSupportCl(props) {
|
|
|
34557
34609
|
className = props.className,
|
|
34558
34610
|
iconClassName = props.iconClassName,
|
|
34559
34611
|
testid = props.testid,
|
|
34560
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34612
|
+
otherProps = _objectWithoutProperties(props, _excluded$8W);
|
|
34561
34613
|
return /*#__PURE__*/React.createElement("span", {
|
|
34562
34614
|
role: "img",
|
|
34563
34615
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34564
34616
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34565
|
-
children: loadingCircleStyle$
|
|
34617
|
+
children: loadingCircleStyle$8W
|
|
34566
34618
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34567
34619
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34568
34620
|
width: size,
|
|
@@ -34652,8 +34704,8 @@ BiSupportCl.defaultProps = {
|
|
|
34652
34704
|
size: '1em'
|
|
34653
34705
|
};
|
|
34654
34706
|
|
|
34655
|
-
var _excluded$
|
|
34656
|
-
var loadingCircleStyle$
|
|
34707
|
+
var _excluded$8X = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34708
|
+
var loadingCircleStyle$8X = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34657
34709
|
var BiGiftCl = function BiGiftCl(props) {
|
|
34658
34710
|
var color = props.color,
|
|
34659
34711
|
size = props.size,
|
|
@@ -34662,12 +34714,12 @@ var BiGiftCl = function BiGiftCl(props) {
|
|
|
34662
34714
|
className = props.className,
|
|
34663
34715
|
iconClassName = props.iconClassName,
|
|
34664
34716
|
testid = props.testid,
|
|
34665
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34717
|
+
otherProps = _objectWithoutProperties(props, _excluded$8X);
|
|
34666
34718
|
return /*#__PURE__*/React.createElement("span", {
|
|
34667
34719
|
role: "img",
|
|
34668
34720
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34669
34721
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34670
|
-
children: loadingCircleStyle$
|
|
34722
|
+
children: loadingCircleStyle$8X
|
|
34671
34723
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34672
34724
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34673
34725
|
width: size,
|
|
@@ -34757,8 +34809,8 @@ BiGiftCl.defaultProps = {
|
|
|
34757
34809
|
size: '1em'
|
|
34758
34810
|
};
|
|
34759
34811
|
|
|
34760
|
-
var _excluded$
|
|
34761
|
-
var loadingCircleStyle$
|
|
34812
|
+
var _excluded$8Y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34813
|
+
var loadingCircleStyle$8Y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34762
34814
|
var BiModelCl = function BiModelCl(props) {
|
|
34763
34815
|
var color = props.color,
|
|
34764
34816
|
size = props.size,
|
|
@@ -34767,12 +34819,12 @@ var BiModelCl = function BiModelCl(props) {
|
|
|
34767
34819
|
className = props.className,
|
|
34768
34820
|
iconClassName = props.iconClassName,
|
|
34769
34821
|
testid = props.testid,
|
|
34770
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34822
|
+
otherProps = _objectWithoutProperties(props, _excluded$8Y);
|
|
34771
34823
|
return /*#__PURE__*/React.createElement("span", {
|
|
34772
34824
|
role: "img",
|
|
34773
34825
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34774
34826
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34775
|
-
children: loadingCircleStyle$
|
|
34827
|
+
children: loadingCircleStyle$8Y
|
|
34776
34828
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34777
34829
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34778
34830
|
width: size,
|
|
@@ -34862,8 +34914,8 @@ BiModelCl.defaultProps = {
|
|
|
34862
34914
|
size: '1em'
|
|
34863
34915
|
};
|
|
34864
34916
|
|
|
34865
|
-
var _excluded$
|
|
34866
|
-
var loadingCircleStyle$
|
|
34917
|
+
var _excluded$8Z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34918
|
+
var loadingCircleStyle$8Z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34867
34919
|
var BiAnalysisCl = function BiAnalysisCl(props) {
|
|
34868
34920
|
var color = props.color,
|
|
34869
34921
|
size = props.size,
|
|
@@ -34872,12 +34924,12 @@ var BiAnalysisCl = function BiAnalysisCl(props) {
|
|
|
34872
34924
|
className = props.className,
|
|
34873
34925
|
iconClassName = props.iconClassName,
|
|
34874
34926
|
testid = props.testid,
|
|
34875
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34927
|
+
otherProps = _objectWithoutProperties(props, _excluded$8Z);
|
|
34876
34928
|
return /*#__PURE__*/React.createElement("span", {
|
|
34877
34929
|
role: "img",
|
|
34878
34930
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34879
34931
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34880
|
-
children: loadingCircleStyle$
|
|
34932
|
+
children: loadingCircleStyle$8Z
|
|
34881
34933
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34882
34934
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34883
34935
|
width: size,
|
|
@@ -34967,8 +35019,8 @@ BiAnalysisCl.defaultProps = {
|
|
|
34967
35019
|
size: '1em'
|
|
34968
35020
|
};
|
|
34969
35021
|
|
|
34970
|
-
var _excluded$
|
|
34971
|
-
var loadingCircleStyle$
|
|
35022
|
+
var _excluded$8_ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
35023
|
+
var loadingCircleStyle$8_ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34972
35024
|
var BiGameplayCl = function BiGameplayCl(props) {
|
|
34973
35025
|
var color = props.color,
|
|
34974
35026
|
size = props.size,
|
|
@@ -34977,12 +35029,12 @@ var BiGameplayCl = function BiGameplayCl(props) {
|
|
|
34977
35029
|
className = props.className,
|
|
34978
35030
|
iconClassName = props.iconClassName,
|
|
34979
35031
|
testid = props.testid,
|
|
34980
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
35032
|
+
otherProps = _objectWithoutProperties(props, _excluded$8_);
|
|
34981
35033
|
return /*#__PURE__*/React.createElement("span", {
|
|
34982
35034
|
role: "img",
|
|
34983
35035
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34984
35036
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34985
|
-
children: loadingCircleStyle$
|
|
35037
|
+
children: loadingCircleStyle$8_
|
|
34986
35038
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34987
35039
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34988
35040
|
width: size,
|
|
@@ -35072,8 +35124,8 @@ BiGameplayCl.defaultProps = {
|
|
|
35072
35124
|
size: '1em'
|
|
35073
35125
|
};
|
|
35074
35126
|
|
|
35075
|
-
var _excluded$
|
|
35076
|
-
var loadingCircleStyle$
|
|
35127
|
+
var _excluded$8$ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
35128
|
+
var loadingCircleStyle$8$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
35077
35129
|
var BiPathAnalysisCl = function BiPathAnalysisCl(props) {
|
|
35078
35130
|
var color = props.color,
|
|
35079
35131
|
size = props.size,
|
|
@@ -35082,12 +35134,12 @@ var BiPathAnalysisCl = function BiPathAnalysisCl(props) {
|
|
|
35082
35134
|
className = props.className,
|
|
35083
35135
|
iconClassName = props.iconClassName,
|
|
35084
35136
|
testid = props.testid,
|
|
35085
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
35137
|
+
otherProps = _objectWithoutProperties(props, _excluded$8$);
|
|
35086
35138
|
return /*#__PURE__*/React.createElement("span", {
|
|
35087
35139
|
role: "img",
|
|
35088
35140
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
35089
35141
|
}, /*#__PURE__*/React.createElement("style", {
|
|
35090
|
-
children: loadingCircleStyle$
|
|
35142
|
+
children: loadingCircleStyle$8$
|
|
35091
35143
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
35092
35144
|
xmlns: "http://www.w3.org/2000/svg",
|
|
35093
35145
|
width: size,
|
|
@@ -35177,8 +35229,8 @@ BiPathAnalysisCl.defaultProps = {
|
|
|
35177
35229
|
size: '1em'
|
|
35178
35230
|
};
|
|
35179
35231
|
|
|
35180
|
-
var _excluded$
|
|
35181
|
-
var loadingCircleStyle$
|
|
35232
|
+
var _excluded$90 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
35233
|
+
var loadingCircleStyle$90 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
35182
35234
|
var BiGroupCl = function BiGroupCl(props) {
|
|
35183
35235
|
var color = props.color,
|
|
35184
35236
|
size = props.size,
|
|
@@ -35187,12 +35239,12 @@ var BiGroupCl = function BiGroupCl(props) {
|
|
|
35187
35239
|
className = props.className,
|
|
35188
35240
|
iconClassName = props.iconClassName,
|
|
35189
35241
|
testid = props.testid,
|
|
35190
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
35242
|
+
otherProps = _objectWithoutProperties(props, _excluded$90);
|
|
35191
35243
|
return /*#__PURE__*/React.createElement("span", {
|
|
35192
35244
|
role: "img",
|
|
35193
35245
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
35194
35246
|
}, /*#__PURE__*/React.createElement("style", {
|
|
35195
|
-
children: loadingCircleStyle$
|
|
35247
|
+
children: loadingCircleStyle$90
|
|
35196
35248
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
35197
35249
|
xmlns: "http://www.w3.org/2000/svg",
|
|
35198
35250
|
width: size,
|
|
@@ -35282,8 +35334,8 @@ BiGroupCl.defaultProps = {
|
|
|
35282
35334
|
size: '1em'
|
|
35283
35335
|
};
|
|
35284
35336
|
|
|
35285
|
-
var _excluded$
|
|
35286
|
-
var loadingCircleStyle$
|
|
35337
|
+
var _excluded$91 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
35338
|
+
var loadingCircleStyle$91 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
35287
35339
|
var BiCrowdCl = function BiCrowdCl(props) {
|
|
35288
35340
|
var color = props.color,
|
|
35289
35341
|
size = props.size,
|
|
@@ -35292,12 +35344,12 @@ var BiCrowdCl = function BiCrowdCl(props) {
|
|
|
35292
35344
|
className = props.className,
|
|
35293
35345
|
iconClassName = props.iconClassName,
|
|
35294
35346
|
testid = props.testid,
|
|
35295
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
35347
|
+
otherProps = _objectWithoutProperties(props, _excluded$91);
|
|
35296
35348
|
return /*#__PURE__*/React.createElement("span", {
|
|
35297
35349
|
role: "img",
|
|
35298
35350
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
35299
35351
|
}, /*#__PURE__*/React.createElement("style", {
|
|
35300
|
-
children: loadingCircleStyle$
|
|
35352
|
+
children: loadingCircleStyle$91
|
|
35301
35353
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
35302
35354
|
xmlns: "http://www.w3.org/2000/svg",
|
|
35303
35355
|
width: size,
|
|
@@ -35387,8 +35439,8 @@ BiCrowdCl.defaultProps = {
|
|
|
35387
35439
|
size: '1em'
|
|
35388
35440
|
};
|
|
35389
35441
|
|
|
35390
|
-
var _excluded$
|
|
35391
|
-
var loadingCircleStyle$
|
|
35442
|
+
var _excluded$92 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
35443
|
+
var loadingCircleStyle$92 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
35392
35444
|
var BiMmoGameCl = function BiMmoGameCl(props) {
|
|
35393
35445
|
var color = props.color,
|
|
35394
35446
|
size = props.size,
|
|
@@ -35397,12 +35449,12 @@ var BiMmoGameCl = function BiMmoGameCl(props) {
|
|
|
35397
35449
|
className = props.className,
|
|
35398
35450
|
iconClassName = props.iconClassName,
|
|
35399
35451
|
testid = props.testid,
|
|
35400
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
35452
|
+
otherProps = _objectWithoutProperties(props, _excluded$92);
|
|
35401
35453
|
return /*#__PURE__*/React.createElement("span", {
|
|
35402
35454
|
role: "img",
|
|
35403
35455
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
35404
35456
|
}, /*#__PURE__*/React.createElement("style", {
|
|
35405
|
-
children: loadingCircleStyle$
|
|
35457
|
+
children: loadingCircleStyle$92
|
|
35406
35458
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
35407
35459
|
xmlns: "http://www.w3.org/2000/svg",
|
|
35408
35460
|
width: size,
|
|
@@ -35691,8 +35743,8 @@ BiMmoGameCl.defaultProps = {
|
|
|
35691
35743
|
size: '1em'
|
|
35692
35744
|
};
|
|
35693
35745
|
|
|
35694
|
-
var _excluded$
|
|
35695
|
-
var loadingCircleStyle$
|
|
35746
|
+
var _excluded$93 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
35747
|
+
var loadingCircleStyle$93 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
35696
35748
|
var BiCardGameCl = function BiCardGameCl(props) {
|
|
35697
35749
|
var color = props.color,
|
|
35698
35750
|
size = props.size,
|
|
@@ -35701,12 +35753,12 @@ var BiCardGameCl = function BiCardGameCl(props) {
|
|
|
35701
35753
|
className = props.className,
|
|
35702
35754
|
iconClassName = props.iconClassName,
|
|
35703
35755
|
testid = props.testid,
|
|
35704
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
35756
|
+
otherProps = _objectWithoutProperties(props, _excluded$93);
|
|
35705
35757
|
return /*#__PURE__*/React.createElement("span", {
|
|
35706
35758
|
role: "img",
|
|
35707
35759
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
35708
35760
|
}, /*#__PURE__*/React.createElement("style", {
|
|
35709
|
-
children: loadingCircleStyle$
|
|
35761
|
+
children: loadingCircleStyle$93
|
|
35710
35762
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
35711
35763
|
xmlns: "http://www.w3.org/2000/svg",
|
|
35712
35764
|
width: size,
|
|
@@ -36101,8 +36153,8 @@ BiCardGameCl.defaultProps = {
|
|
|
36101
36153
|
size: '1em'
|
|
36102
36154
|
};
|
|
36103
36155
|
|
|
36104
|
-
var _excluded$
|
|
36105
|
-
var loadingCircleStyle$
|
|
36156
|
+
var _excluded$94 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
36157
|
+
var loadingCircleStyle$94 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
36106
36158
|
var BiSlgGameCl = function BiSlgGameCl(props) {
|
|
36107
36159
|
var color = props.color,
|
|
36108
36160
|
size = props.size,
|
|
@@ -36111,12 +36163,12 @@ var BiSlgGameCl = function BiSlgGameCl(props) {
|
|
|
36111
36163
|
className = props.className,
|
|
36112
36164
|
iconClassName = props.iconClassName,
|
|
36113
36165
|
testid = props.testid,
|
|
36114
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
36166
|
+
otherProps = _objectWithoutProperties(props, _excluded$94);
|
|
36115
36167
|
return /*#__PURE__*/React.createElement("span", {
|
|
36116
36168
|
role: "img",
|
|
36117
36169
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
36118
36170
|
}, /*#__PURE__*/React.createElement("style", {
|
|
36119
|
-
children: loadingCircleStyle$
|
|
36171
|
+
children: loadingCircleStyle$94
|
|
36120
36172
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
36121
36173
|
xmlns: "http://www.w3.org/2000/svg",
|
|
36122
36174
|
width: size,
|
|
@@ -36393,8 +36445,8 @@ BiSlgGameCl.defaultProps = {
|
|
|
36393
36445
|
size: '1em'
|
|
36394
36446
|
};
|
|
36395
36447
|
|
|
36396
|
-
var _excluded$
|
|
36397
|
-
var loadingCircleStyle$
|
|
36448
|
+
var _excluded$95 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
36449
|
+
var loadingCircleStyle$95 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
36398
36450
|
var BiCasuaGameCl = function BiCasuaGameCl(props) {
|
|
36399
36451
|
var color = props.color,
|
|
36400
36452
|
size = props.size,
|
|
@@ -36403,12 +36455,12 @@ var BiCasuaGameCl = function BiCasuaGameCl(props) {
|
|
|
36403
36455
|
className = props.className,
|
|
36404
36456
|
iconClassName = props.iconClassName,
|
|
36405
36457
|
testid = props.testid,
|
|
36406
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
36458
|
+
otherProps = _objectWithoutProperties(props, _excluded$95);
|
|
36407
36459
|
return /*#__PURE__*/React.createElement("span", {
|
|
36408
36460
|
role: "img",
|
|
36409
36461
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
36410
36462
|
}, /*#__PURE__*/React.createElement("style", {
|
|
36411
|
-
children: loadingCircleStyle$
|
|
36463
|
+
children: loadingCircleStyle$95
|
|
36412
36464
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
36413
36465
|
xmlns: "http://www.w3.org/2000/svg",
|
|
36414
36466
|
width: size,
|
|
@@ -36928,8 +36980,8 @@ BiCasuaGameCl.defaultProps = {
|
|
|
36928
36980
|
size: '1em'
|
|
36929
36981
|
};
|
|
36930
36982
|
|
|
36931
|
-
var _excluded$
|
|
36932
|
-
var loadingCircleStyle$
|
|
36983
|
+
var _excluded$96 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
36984
|
+
var loadingCircleStyle$96 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
36933
36985
|
var BiSimulatedOperationCl = function BiSimulatedOperationCl(props) {
|
|
36934
36986
|
var color = props.color,
|
|
36935
36987
|
size = props.size,
|
|
@@ -36938,12 +36990,12 @@ var BiSimulatedOperationCl = function BiSimulatedOperationCl(props) {
|
|
|
36938
36990
|
className = props.className,
|
|
36939
36991
|
iconClassName = props.iconClassName,
|
|
36940
36992
|
testid = props.testid,
|
|
36941
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
36993
|
+
otherProps = _objectWithoutProperties(props, _excluded$96);
|
|
36942
36994
|
return /*#__PURE__*/React.createElement("span", {
|
|
36943
36995
|
role: "img",
|
|
36944
36996
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
36945
36997
|
}, /*#__PURE__*/React.createElement("style", {
|
|
36946
|
-
children: loadingCircleStyle$
|
|
36998
|
+
children: loadingCircleStyle$96
|
|
36947
36999
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
36948
37000
|
xmlns: "http://www.w3.org/2000/svg",
|
|
36949
37001
|
width: size,
|
|
@@ -37595,8 +37647,8 @@ BiSimulatedOperationCl.defaultProps = {
|
|
|
37595
37647
|
size: '1em'
|
|
37596
37648
|
};
|
|
37597
37649
|
|
|
37598
|
-
var _excluded$
|
|
37599
|
-
var loadingCircleStyle$
|
|
37650
|
+
var _excluded$97 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
37651
|
+
var loadingCircleStyle$97 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
37600
37652
|
var BiMiniGameCl = function BiMiniGameCl(props) {
|
|
37601
37653
|
var color = props.color,
|
|
37602
37654
|
size = props.size,
|
|
@@ -37605,12 +37657,12 @@ var BiMiniGameCl = function BiMiniGameCl(props) {
|
|
|
37605
37657
|
className = props.className,
|
|
37606
37658
|
iconClassName = props.iconClassName,
|
|
37607
37659
|
testid = props.testid,
|
|
37608
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
37660
|
+
otherProps = _objectWithoutProperties(props, _excluded$97);
|
|
37609
37661
|
return /*#__PURE__*/React.createElement("span", {
|
|
37610
37662
|
role: "img",
|
|
37611
37663
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
37612
37664
|
}, /*#__PURE__*/React.createElement("style", {
|
|
37613
|
-
children: loadingCircleStyle$
|
|
37665
|
+
children: loadingCircleStyle$97
|
|
37614
37666
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
37615
37667
|
xmlns: "http://www.w3.org/2000/svg",
|
|
37616
37668
|
width: size,
|
|
@@ -38078,8 +38130,8 @@ BiMiniGameCl.defaultProps = {
|
|
|
38078
38130
|
size: '1em'
|
|
38079
38131
|
};
|
|
38080
38132
|
|
|
38081
|
-
var _excluded$
|
|
38082
|
-
var loadingCircleStyle$
|
|
38133
|
+
var _excluded$98 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
38134
|
+
var loadingCircleStyle$98 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
38083
38135
|
var BiSocialApplicationCl = function BiSocialApplicationCl(props) {
|
|
38084
38136
|
var color = props.color,
|
|
38085
38137
|
size = props.size,
|
|
@@ -38088,12 +38140,12 @@ var BiSocialApplicationCl = function BiSocialApplicationCl(props) {
|
|
|
38088
38140
|
className = props.className,
|
|
38089
38141
|
iconClassName = props.iconClassName,
|
|
38090
38142
|
testid = props.testid,
|
|
38091
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
38143
|
+
otherProps = _objectWithoutProperties(props, _excluded$98);
|
|
38092
38144
|
return /*#__PURE__*/React.createElement("span", {
|
|
38093
38145
|
role: "img",
|
|
38094
38146
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
38095
38147
|
}, /*#__PURE__*/React.createElement("style", {
|
|
38096
|
-
children: loadingCircleStyle$
|
|
38148
|
+
children: loadingCircleStyle$98
|
|
38097
38149
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
38098
38150
|
xmlns: "http://www.w3.org/2000/svg",
|
|
38099
38151
|
width: size,
|
|
@@ -38483,8 +38535,8 @@ BiSocialApplicationCl.defaultProps = {
|
|
|
38483
38535
|
size: '1em'
|
|
38484
38536
|
};
|
|
38485
38537
|
|
|
38486
|
-
var _excluded$
|
|
38487
|
-
var loadingCircleStyle$
|
|
38538
|
+
var _excluded$99 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
38539
|
+
var loadingCircleStyle$99 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
38488
38540
|
var BiAiApplicationCl = function BiAiApplicationCl(props) {
|
|
38489
38541
|
var color = props.color,
|
|
38490
38542
|
size = props.size,
|
|
@@ -38493,12 +38545,12 @@ var BiAiApplicationCl = function BiAiApplicationCl(props) {
|
|
|
38493
38545
|
className = props.className,
|
|
38494
38546
|
iconClassName = props.iconClassName,
|
|
38495
38547
|
testid = props.testid,
|
|
38496
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
38548
|
+
otherProps = _objectWithoutProperties(props, _excluded$99);
|
|
38497
38549
|
return /*#__PURE__*/React.createElement("span", {
|
|
38498
38550
|
role: "img",
|
|
38499
38551
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
38500
38552
|
}, /*#__PURE__*/React.createElement("style", {
|
|
38501
|
-
children: loadingCircleStyle$
|
|
38553
|
+
children: loadingCircleStyle$99
|
|
38502
38554
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
38503
38555
|
xmlns: "http://www.w3.org/2000/svg",
|
|
38504
38556
|
width: size,
|
|
@@ -38793,8 +38845,8 @@ BiAiApplicationCl.defaultProps = {
|
|
|
38793
38845
|
size: '1em'
|
|
38794
38846
|
};
|
|
38795
38847
|
|
|
38796
|
-
var _excluded$
|
|
38797
|
-
var loadingCircleStyle$
|
|
38848
|
+
var _excluded$9a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
38849
|
+
var loadingCircleStyle$9a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
38798
38850
|
var BiShortPlayCl = function BiShortPlayCl(props) {
|
|
38799
38851
|
var color = props.color,
|
|
38800
38852
|
size = props.size,
|
|
@@ -38803,12 +38855,12 @@ var BiShortPlayCl = function BiShortPlayCl(props) {
|
|
|
38803
38855
|
className = props.className,
|
|
38804
38856
|
iconClassName = props.iconClassName,
|
|
38805
38857
|
testid = props.testid,
|
|
38806
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
38858
|
+
otherProps = _objectWithoutProperties(props, _excluded$9a);
|
|
38807
38859
|
return /*#__PURE__*/React.createElement("span", {
|
|
38808
38860
|
role: "img",
|
|
38809
38861
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
38810
38862
|
}, /*#__PURE__*/React.createElement("style", {
|
|
38811
|
-
children: loadingCircleStyle$
|
|
38863
|
+
children: loadingCircleStyle$9a
|
|
38812
38864
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
38813
38865
|
xmlns: "http://www.w3.org/2000/svg",
|
|
38814
38866
|
width: size,
|
|
@@ -39089,8 +39141,8 @@ BiShortPlayCl.defaultProps = {
|
|
|
39089
39141
|
size: '1em'
|
|
39090
39142
|
};
|
|
39091
39143
|
|
|
39092
|
-
var _excluded$
|
|
39093
|
-
var loadingCircleStyle$
|
|
39144
|
+
var _excluded$9b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
39145
|
+
var loadingCircleStyle$9b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
39094
39146
|
var BiNovelCl = function BiNovelCl(props) {
|
|
39095
39147
|
var color = props.color,
|
|
39096
39148
|
size = props.size,
|
|
@@ -39099,12 +39151,12 @@ var BiNovelCl = function BiNovelCl(props) {
|
|
|
39099
39151
|
className = props.className,
|
|
39100
39152
|
iconClassName = props.iconClassName,
|
|
39101
39153
|
testid = props.testid,
|
|
39102
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
39154
|
+
otherProps = _objectWithoutProperties(props, _excluded$9b);
|
|
39103
39155
|
return /*#__PURE__*/React.createElement("span", {
|
|
39104
39156
|
role: "img",
|
|
39105
39157
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
39106
39158
|
}, /*#__PURE__*/React.createElement("style", {
|
|
39107
|
-
children: loadingCircleStyle$
|
|
39159
|
+
children: loadingCircleStyle$9b
|
|
39108
39160
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
39109
39161
|
xmlns: "http://www.w3.org/2000/svg",
|
|
39110
39162
|
width: size,
|
|
@@ -39632,8 +39684,8 @@ BiNovelCl.defaultProps = {
|
|
|
39632
39684
|
size: '1em'
|
|
39633
39685
|
};
|
|
39634
39686
|
|
|
39635
|
-
var _excluded$
|
|
39636
|
-
var loadingCircleStyle$
|
|
39687
|
+
var _excluded$9c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
39688
|
+
var loadingCircleStyle$9c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
39637
39689
|
var BiEducationCl = function BiEducationCl(props) {
|
|
39638
39690
|
var color = props.color,
|
|
39639
39691
|
size = props.size,
|
|
@@ -39642,12 +39694,12 @@ var BiEducationCl = function BiEducationCl(props) {
|
|
|
39642
39694
|
className = props.className,
|
|
39643
39695
|
iconClassName = props.iconClassName,
|
|
39644
39696
|
testid = props.testid,
|
|
39645
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
39697
|
+
otherProps = _objectWithoutProperties(props, _excluded$9c);
|
|
39646
39698
|
return /*#__PURE__*/React.createElement("span", {
|
|
39647
39699
|
role: "img",
|
|
39648
39700
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
39649
39701
|
}, /*#__PURE__*/React.createElement("style", {
|
|
39650
|
-
children: loadingCircleStyle$
|
|
39702
|
+
children: loadingCircleStyle$9c
|
|
39651
39703
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
39652
39704
|
xmlns: "http://www.w3.org/2000/svg",
|
|
39653
39705
|
width: size,
|
|
@@ -40036,8 +40088,8 @@ BiEducationCl.defaultProps = {
|
|
|
40036
40088
|
size: '1em'
|
|
40037
40089
|
};
|
|
40038
40090
|
|
|
40039
|
-
var _excluded$
|
|
40040
|
-
var loadingCircleStyle$
|
|
40091
|
+
var _excluded$9d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
40092
|
+
var loadingCircleStyle$9d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
40041
40093
|
var BiShoppingCartCl = function BiShoppingCartCl(props) {
|
|
40042
40094
|
var color = props.color,
|
|
40043
40095
|
size = props.size,
|
|
@@ -40046,12 +40098,12 @@ var BiShoppingCartCl = function BiShoppingCartCl(props) {
|
|
|
40046
40098
|
className = props.className,
|
|
40047
40099
|
iconClassName = props.iconClassName,
|
|
40048
40100
|
testid = props.testid,
|
|
40049
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
40101
|
+
otherProps = _objectWithoutProperties(props, _excluded$9d);
|
|
40050
40102
|
return /*#__PURE__*/React.createElement("span", {
|
|
40051
40103
|
role: "img",
|
|
40052
40104
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
40053
40105
|
}, /*#__PURE__*/React.createElement("style", {
|
|
40054
|
-
children: loadingCircleStyle$
|
|
40106
|
+
children: loadingCircleStyle$9d
|
|
40055
40107
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
40056
40108
|
xmlns: "http://www.w3.org/2000/svg",
|
|
40057
40109
|
width: size,
|
|
@@ -40841,6 +40893,7 @@ exports.TaPaste2 = Paste2;
|
|
|
40841
40893
|
exports.TaPattern = Pattern;
|
|
40842
40894
|
exports.TaPause2 = Pause2;
|
|
40843
40895
|
exports.TaPauseCircle = PauseCircle;
|
|
40896
|
+
exports.TaPending = Pending;
|
|
40844
40897
|
exports.TaPhrase = Phrase;
|
|
40845
40898
|
exports.TaPin = Pin;
|
|
40846
40899
|
exports.TaPin2 = Pin2;
|