@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.esm.js
CHANGED
|
@@ -29733,7 +29733,7 @@ ThumbDownOutline.defaultProps = {
|
|
|
29733
29733
|
|
|
29734
29734
|
var _excluded$7T = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
29735
29735
|
var loadingCircleStyle$7T = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
29736
|
-
var
|
|
29736
|
+
var Pending = function Pending(props) {
|
|
29737
29737
|
var color = props.color,
|
|
29738
29738
|
size = props.size,
|
|
29739
29739
|
spin = props.spin,
|
|
@@ -29766,6 +29766,58 @@ var TdLogo = function TdLogo(props) {
|
|
|
29766
29766
|
width: "24",
|
|
29767
29767
|
height: "24",
|
|
29768
29768
|
xmlns: "http://www.w3.org/2000/svg"
|
|
29769
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
29770
|
+
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"
|
|
29771
|
+
}))));
|
|
29772
|
+
};
|
|
29773
|
+
Pending.propTypes = {
|
|
29774
|
+
iconClassName: PropTypes.string,
|
|
29775
|
+
spin: PropTypes.bool,
|
|
29776
|
+
color: PropTypes.string,
|
|
29777
|
+
testid: PropTypes.string,
|
|
29778
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
29779
|
+
};
|
|
29780
|
+
Pending.defaultProps = {
|
|
29781
|
+
spin: false,
|
|
29782
|
+
color: 'currentColor',
|
|
29783
|
+
size: '1em'
|
|
29784
|
+
};
|
|
29785
|
+
|
|
29786
|
+
var _excluded$7U = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
29787
|
+
var loadingCircleStyle$7U = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
29788
|
+
var TdLogo = function TdLogo(props) {
|
|
29789
|
+
var color = props.color,
|
|
29790
|
+
size = props.size,
|
|
29791
|
+
spin = props.spin,
|
|
29792
|
+
style = props.style,
|
|
29793
|
+
className = props.className,
|
|
29794
|
+
iconClassName = props.iconClassName,
|
|
29795
|
+
testid = props.testid,
|
|
29796
|
+
otherProps = _objectWithoutProperties(props, _excluded$7U);
|
|
29797
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
29798
|
+
role: "img",
|
|
29799
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
29800
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
29801
|
+
children: loadingCircleStyle$7U
|
|
29802
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29803
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29804
|
+
width: size,
|
|
29805
|
+
height: size,
|
|
29806
|
+
viewBox: "0 0 24 24",
|
|
29807
|
+
fill: color
|
|
29808
|
+
}, otherProps, {
|
|
29809
|
+
className: iconClassName,
|
|
29810
|
+
"data-testid": testid,
|
|
29811
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
29812
|
+
animationDuration: '1s',
|
|
29813
|
+
animationIterationCount: 'infinite',
|
|
29814
|
+
animationName: 'loadingCircle',
|
|
29815
|
+
animationTimingFunction: 'linear'
|
|
29816
|
+
} : {})
|
|
29817
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
29818
|
+
width: "24",
|
|
29819
|
+
height: "24",
|
|
29820
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
29769
29821
|
}, /*#__PURE__*/React.createElement("path", {
|
|
29770
29822
|
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"
|
|
29771
29823
|
}), /*#__PURE__*/React.createElement("path", {
|
|
@@ -29791,8 +29843,8 @@ TdLogo.defaultProps = {
|
|
|
29791
29843
|
size: '1em'
|
|
29792
29844
|
};
|
|
29793
29845
|
|
|
29794
|
-
var _excluded$
|
|
29795
|
-
var loadingCircleStyle$
|
|
29846
|
+
var _excluded$7V = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
29847
|
+
var loadingCircleStyle$7V = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
29796
29848
|
var Language = function Language(props) {
|
|
29797
29849
|
var color = props.color,
|
|
29798
29850
|
size = props.size,
|
|
@@ -29801,12 +29853,12 @@ var Language = function Language(props) {
|
|
|
29801
29853
|
className = props.className,
|
|
29802
29854
|
iconClassName = props.iconClassName,
|
|
29803
29855
|
testid = props.testid,
|
|
29804
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
29856
|
+
otherProps = _objectWithoutProperties(props, _excluded$7V);
|
|
29805
29857
|
return /*#__PURE__*/React.createElement("span", {
|
|
29806
29858
|
role: "img",
|
|
29807
29859
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
29808
29860
|
}, /*#__PURE__*/React.createElement("style", {
|
|
29809
|
-
children: loadingCircleStyle$
|
|
29861
|
+
children: loadingCircleStyle$7V
|
|
29810
29862
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29811
29863
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29812
29864
|
width: size,
|
|
@@ -29843,8 +29895,8 @@ Language.defaultProps = {
|
|
|
29843
29895
|
size: '1em'
|
|
29844
29896
|
};
|
|
29845
29897
|
|
|
29846
|
-
var _excluded$
|
|
29847
|
-
var loadingCircleStyle$
|
|
29898
|
+
var _excluded$7W = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
29899
|
+
var loadingCircleStyle$7W = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
29848
29900
|
var Calendar = function Calendar(props) {
|
|
29849
29901
|
var color = props.color,
|
|
29850
29902
|
size = props.size,
|
|
@@ -29853,12 +29905,12 @@ var Calendar = function Calendar(props) {
|
|
|
29853
29905
|
className = props.className,
|
|
29854
29906
|
iconClassName = props.iconClassName,
|
|
29855
29907
|
testid = props.testid,
|
|
29856
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
29908
|
+
otherProps = _objectWithoutProperties(props, _excluded$7W);
|
|
29857
29909
|
return /*#__PURE__*/React.createElement("span", {
|
|
29858
29910
|
role: "img",
|
|
29859
29911
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
29860
29912
|
}, /*#__PURE__*/React.createElement("style", {
|
|
29861
|
-
children: loadingCircleStyle$
|
|
29913
|
+
children: loadingCircleStyle$7W
|
|
29862
29914
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29863
29915
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29864
29916
|
width: size,
|
|
@@ -29895,8 +29947,8 @@ Calendar.defaultProps = {
|
|
|
29895
29947
|
size: '1em'
|
|
29896
29948
|
};
|
|
29897
29949
|
|
|
29898
|
-
var _excluded$
|
|
29899
|
-
var loadingCircleStyle$
|
|
29950
|
+
var _excluded$7X = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
29951
|
+
var loadingCircleStyle$7X = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
29900
29952
|
var Server = function Server(props) {
|
|
29901
29953
|
var color = props.color,
|
|
29902
29954
|
size = props.size,
|
|
@@ -29905,12 +29957,12 @@ var Server = function Server(props) {
|
|
|
29905
29957
|
className = props.className,
|
|
29906
29958
|
iconClassName = props.iconClassName,
|
|
29907
29959
|
testid = props.testid,
|
|
29908
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
29960
|
+
otherProps = _objectWithoutProperties(props, _excluded$7X);
|
|
29909
29961
|
return /*#__PURE__*/React.createElement("span", {
|
|
29910
29962
|
role: "img",
|
|
29911
29963
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
29912
29964
|
}, /*#__PURE__*/React.createElement("style", {
|
|
29913
|
-
children: loadingCircleStyle$
|
|
29965
|
+
children: loadingCircleStyle$7X
|
|
29914
29966
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29915
29967
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29916
29968
|
width: size,
|
|
@@ -29947,8 +29999,8 @@ Server.defaultProps = {
|
|
|
29947
29999
|
size: '1em'
|
|
29948
30000
|
};
|
|
29949
30001
|
|
|
29950
|
-
var _excluded$
|
|
29951
|
-
var loadingCircleStyle$
|
|
30002
|
+
var _excluded$7Y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30003
|
+
var loadingCircleStyle$7Y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
29952
30004
|
var Desktop = function Desktop(props) {
|
|
29953
30005
|
var color = props.color,
|
|
29954
30006
|
size = props.size,
|
|
@@ -29957,12 +30009,12 @@ var Desktop = function Desktop(props) {
|
|
|
29957
30009
|
className = props.className,
|
|
29958
30010
|
iconClassName = props.iconClassName,
|
|
29959
30011
|
testid = props.testid,
|
|
29960
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30012
|
+
otherProps = _objectWithoutProperties(props, _excluded$7Y);
|
|
29961
30013
|
return /*#__PURE__*/React.createElement("span", {
|
|
29962
30014
|
role: "img",
|
|
29963
30015
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
29964
30016
|
}, /*#__PURE__*/React.createElement("style", {
|
|
29965
|
-
children: loadingCircleStyle$
|
|
30017
|
+
children: loadingCircleStyle$7Y
|
|
29966
30018
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29967
30019
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29968
30020
|
width: size,
|
|
@@ -29999,8 +30051,8 @@ Desktop.defaultProps = {
|
|
|
29999
30051
|
size: '1em'
|
|
30000
30052
|
};
|
|
30001
30053
|
|
|
30002
|
-
var _excluded$
|
|
30003
|
-
var loadingCircleStyle$
|
|
30054
|
+
var _excluded$7Z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30055
|
+
var loadingCircleStyle$7Z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30004
30056
|
var Demo = function Demo(props) {
|
|
30005
30057
|
var color = props.color,
|
|
30006
30058
|
size = props.size,
|
|
@@ -30009,12 +30061,12 @@ var Demo = function Demo(props) {
|
|
|
30009
30061
|
className = props.className,
|
|
30010
30062
|
iconClassName = props.iconClassName,
|
|
30011
30063
|
testid = props.testid,
|
|
30012
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30064
|
+
otherProps = _objectWithoutProperties(props, _excluded$7Z);
|
|
30013
30065
|
return /*#__PURE__*/React.createElement("span", {
|
|
30014
30066
|
role: "img",
|
|
30015
30067
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30016
30068
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30017
|
-
children: loadingCircleStyle$
|
|
30069
|
+
children: loadingCircleStyle$7Z
|
|
30018
30070
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30019
30071
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30020
30072
|
width: size,
|
|
@@ -30053,8 +30105,8 @@ Demo.defaultProps = {
|
|
|
30053
30105
|
size: '1em'
|
|
30054
30106
|
};
|
|
30055
30107
|
|
|
30056
|
-
var _excluded$
|
|
30057
|
-
var loadingCircleStyle$
|
|
30108
|
+
var _excluded$7_ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30109
|
+
var loadingCircleStyle$7_ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30058
30110
|
var Cellphone = function Cellphone(props) {
|
|
30059
30111
|
var color = props.color,
|
|
30060
30112
|
size = props.size,
|
|
@@ -30063,12 +30115,12 @@ var Cellphone = function Cellphone(props) {
|
|
|
30063
30115
|
className = props.className,
|
|
30064
30116
|
iconClassName = props.iconClassName,
|
|
30065
30117
|
testid = props.testid,
|
|
30066
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30118
|
+
otherProps = _objectWithoutProperties(props, _excluded$7_);
|
|
30067
30119
|
return /*#__PURE__*/React.createElement("span", {
|
|
30068
30120
|
role: "img",
|
|
30069
30121
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30070
30122
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30071
|
-
children: loadingCircleStyle$
|
|
30123
|
+
children: loadingCircleStyle$7_
|
|
30072
30124
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30073
30125
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30074
30126
|
width: size,
|
|
@@ -30107,8 +30159,8 @@ Cellphone.defaultProps = {
|
|
|
30107
30159
|
size: '1em'
|
|
30108
30160
|
};
|
|
30109
30161
|
|
|
30110
|
-
var _excluded$
|
|
30111
|
-
var loadingCircleStyle$
|
|
30162
|
+
var _excluded$7$ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30163
|
+
var loadingCircleStyle$7$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30112
30164
|
var Landscape = function Landscape(props) {
|
|
30113
30165
|
var color = props.color,
|
|
30114
30166
|
size = props.size,
|
|
@@ -30117,12 +30169,12 @@ var Landscape = function Landscape(props) {
|
|
|
30117
30169
|
className = props.className,
|
|
30118
30170
|
iconClassName = props.iconClassName,
|
|
30119
30171
|
testid = props.testid,
|
|
30120
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30172
|
+
otherProps = _objectWithoutProperties(props, _excluded$7$);
|
|
30121
30173
|
return /*#__PURE__*/React.createElement("span", {
|
|
30122
30174
|
role: "img",
|
|
30123
30175
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30124
30176
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30125
|
-
children: loadingCircleStyle$
|
|
30177
|
+
children: loadingCircleStyle$7$
|
|
30126
30178
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30127
30179
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30128
30180
|
width: size,
|
|
@@ -30163,8 +30215,8 @@ Landscape.defaultProps = {
|
|
|
30163
30215
|
size: '1em'
|
|
30164
30216
|
};
|
|
30165
30217
|
|
|
30166
|
-
var _excluded$
|
|
30167
|
-
var loadingCircleStyle$
|
|
30218
|
+
var _excluded$80 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30219
|
+
var loadingCircleStyle$80 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30168
30220
|
var Email = function Email(props) {
|
|
30169
30221
|
var color = props.color,
|
|
30170
30222
|
size = props.size,
|
|
@@ -30173,12 +30225,12 @@ var Email = function Email(props) {
|
|
|
30173
30225
|
className = props.className,
|
|
30174
30226
|
iconClassName = props.iconClassName,
|
|
30175
30227
|
testid = props.testid,
|
|
30176
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30228
|
+
otherProps = _objectWithoutProperties(props, _excluded$80);
|
|
30177
30229
|
return /*#__PURE__*/React.createElement("span", {
|
|
30178
30230
|
role: "img",
|
|
30179
30231
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30180
30232
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30181
|
-
children: loadingCircleStyle$
|
|
30233
|
+
children: loadingCircleStyle$80
|
|
30182
30234
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30183
30235
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30184
30236
|
width: size,
|
|
@@ -30215,8 +30267,8 @@ Email.defaultProps = {
|
|
|
30215
30267
|
size: '1em'
|
|
30216
30268
|
};
|
|
30217
30269
|
|
|
30218
|
-
var _excluded$
|
|
30219
|
-
var loadingCircleStyle$
|
|
30270
|
+
var _excluded$81 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30271
|
+
var loadingCircleStyle$81 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30220
30272
|
var Clock = function Clock(props) {
|
|
30221
30273
|
var color = props.color,
|
|
30222
30274
|
size = props.size,
|
|
@@ -30225,12 +30277,12 @@ var Clock = function Clock(props) {
|
|
|
30225
30277
|
className = props.className,
|
|
30226
30278
|
iconClassName = props.iconClassName,
|
|
30227
30279
|
testid = props.testid,
|
|
30228
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30280
|
+
otherProps = _objectWithoutProperties(props, _excluded$81);
|
|
30229
30281
|
return /*#__PURE__*/React.createElement("span", {
|
|
30230
30282
|
role: "img",
|
|
30231
30283
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30232
30284
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30233
|
-
children: loadingCircleStyle$
|
|
30285
|
+
children: loadingCircleStyle$81
|
|
30234
30286
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30235
30287
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30236
30288
|
width: size,
|
|
@@ -30269,8 +30321,8 @@ Clock.defaultProps = {
|
|
|
30269
30321
|
size: '1em'
|
|
30270
30322
|
};
|
|
30271
30323
|
|
|
30272
|
-
var _excluded$
|
|
30273
|
-
var loadingCircleStyle$
|
|
30324
|
+
var _excluded$82 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30325
|
+
var loadingCircleStyle$82 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30274
30326
|
var Password = function Password(props) {
|
|
30275
30327
|
var color = props.color,
|
|
30276
30328
|
size = props.size,
|
|
@@ -30279,12 +30331,12 @@ var Password = function Password(props) {
|
|
|
30279
30331
|
className = props.className,
|
|
30280
30332
|
iconClassName = props.iconClassName,
|
|
30281
30333
|
testid = props.testid,
|
|
30282
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30334
|
+
otherProps = _objectWithoutProperties(props, _excluded$82);
|
|
30283
30335
|
return /*#__PURE__*/React.createElement("span", {
|
|
30284
30336
|
role: "img",
|
|
30285
30337
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30286
30338
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30287
|
-
children: loadingCircleStyle$
|
|
30339
|
+
children: loadingCircleStyle$82
|
|
30288
30340
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30289
30341
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30290
30342
|
width: size,
|
|
@@ -30321,8 +30373,8 @@ Password.defaultProps = {
|
|
|
30321
30373
|
size: '1em'
|
|
30322
30374
|
};
|
|
30323
30375
|
|
|
30324
|
-
var _excluded$
|
|
30325
|
-
var loadingCircleStyle$
|
|
30376
|
+
var _excluded$83 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30377
|
+
var loadingCircleStyle$83 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30326
30378
|
var ResetPassword = function ResetPassword(props) {
|
|
30327
30379
|
var color = props.color,
|
|
30328
30380
|
size = props.size,
|
|
@@ -30331,12 +30383,12 @@ var ResetPassword = function ResetPassword(props) {
|
|
|
30331
30383
|
className = props.className,
|
|
30332
30384
|
iconClassName = props.iconClassName,
|
|
30333
30385
|
testid = props.testid,
|
|
30334
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30386
|
+
otherProps = _objectWithoutProperties(props, _excluded$83);
|
|
30335
30387
|
return /*#__PURE__*/React.createElement("span", {
|
|
30336
30388
|
role: "img",
|
|
30337
30389
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30338
30390
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30339
|
-
children: loadingCircleStyle$
|
|
30391
|
+
children: loadingCircleStyle$83
|
|
30340
30392
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30341
30393
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30342
30394
|
width: size,
|
|
@@ -30373,8 +30425,8 @@ ResetPassword.defaultProps = {
|
|
|
30373
30425
|
size: '1em'
|
|
30374
30426
|
};
|
|
30375
30427
|
|
|
30376
|
-
var _excluded$
|
|
30377
|
-
var loadingCircleStyle$
|
|
30428
|
+
var _excluded$84 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30429
|
+
var loadingCircleStyle$84 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30378
30430
|
var Private = function Private(props) {
|
|
30379
30431
|
var color = props.color,
|
|
30380
30432
|
size = props.size,
|
|
@@ -30383,12 +30435,12 @@ var Private = function Private(props) {
|
|
|
30383
30435
|
className = props.className,
|
|
30384
30436
|
iconClassName = props.iconClassName,
|
|
30385
30437
|
testid = props.testid,
|
|
30386
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30438
|
+
otherProps = _objectWithoutProperties(props, _excluded$84);
|
|
30387
30439
|
return /*#__PURE__*/React.createElement("span", {
|
|
30388
30440
|
role: "img",
|
|
30389
30441
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30390
30442
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30391
|
-
children: loadingCircleStyle$
|
|
30443
|
+
children: loadingCircleStyle$84
|
|
30392
30444
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30393
30445
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30394
30446
|
width: size,
|
|
@@ -30425,8 +30477,8 @@ Private.defaultProps = {
|
|
|
30425
30477
|
size: '1em'
|
|
30426
30478
|
};
|
|
30427
30479
|
|
|
30428
|
-
var _excluded$
|
|
30429
|
-
var loadingCircleStyle$
|
|
30480
|
+
var _excluded$85 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30481
|
+
var loadingCircleStyle$85 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30430
30482
|
var Bell = function Bell(props) {
|
|
30431
30483
|
var color = props.color,
|
|
30432
30484
|
size = props.size,
|
|
@@ -30435,12 +30487,12 @@ var Bell = function Bell(props) {
|
|
|
30435
30487
|
className = props.className,
|
|
30436
30488
|
iconClassName = props.iconClassName,
|
|
30437
30489
|
testid = props.testid,
|
|
30438
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30490
|
+
otherProps = _objectWithoutProperties(props, _excluded$85);
|
|
30439
30491
|
return /*#__PURE__*/React.createElement("span", {
|
|
30440
30492
|
role: "img",
|
|
30441
30493
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30442
30494
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30443
|
-
children: loadingCircleStyle$
|
|
30495
|
+
children: loadingCircleStyle$85
|
|
30444
30496
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30445
30497
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30446
30498
|
width: size,
|
|
@@ -30479,8 +30531,8 @@ Bell.defaultProps = {
|
|
|
30479
30531
|
size: '1em'
|
|
30480
30532
|
};
|
|
30481
30533
|
|
|
30482
|
-
var _excluded$
|
|
30483
|
-
var loadingCircleStyle$
|
|
30534
|
+
var _excluded$86 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30535
|
+
var loadingCircleStyle$86 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30484
30536
|
var Logout = function Logout(props) {
|
|
30485
30537
|
var color = props.color,
|
|
30486
30538
|
size = props.size,
|
|
@@ -30489,12 +30541,12 @@ var Logout = function Logout(props) {
|
|
|
30489
30541
|
className = props.className,
|
|
30490
30542
|
iconClassName = props.iconClassName,
|
|
30491
30543
|
testid = props.testid,
|
|
30492
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30544
|
+
otherProps = _objectWithoutProperties(props, _excluded$86);
|
|
30493
30545
|
return /*#__PURE__*/React.createElement("span", {
|
|
30494
30546
|
role: "img",
|
|
30495
30547
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30496
30548
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30497
|
-
children: loadingCircleStyle$
|
|
30549
|
+
children: loadingCircleStyle$86
|
|
30498
30550
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30499
30551
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30500
30552
|
width: size,
|
|
@@ -30533,8 +30585,8 @@ Logout.defaultProps = {
|
|
|
30533
30585
|
size: '1em'
|
|
30534
30586
|
};
|
|
30535
30587
|
|
|
30536
|
-
var _excluded$
|
|
30537
|
-
var loadingCircleStyle$
|
|
30588
|
+
var _excluded$87 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30589
|
+
var loadingCircleStyle$87 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30538
30590
|
var Speed = function Speed(props) {
|
|
30539
30591
|
var color = props.color,
|
|
30540
30592
|
size = props.size,
|
|
@@ -30543,12 +30595,12 @@ var Speed = function Speed(props) {
|
|
|
30543
30595
|
className = props.className,
|
|
30544
30596
|
iconClassName = props.iconClassName,
|
|
30545
30597
|
testid = props.testid,
|
|
30546
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30598
|
+
otherProps = _objectWithoutProperties(props, _excluded$87);
|
|
30547
30599
|
return /*#__PURE__*/React.createElement("span", {
|
|
30548
30600
|
role: "img",
|
|
30549
30601
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30550
30602
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30551
|
-
children: loadingCircleStyle$
|
|
30603
|
+
children: loadingCircleStyle$87
|
|
30552
30604
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30553
30605
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30554
30606
|
width: size,
|
|
@@ -30585,8 +30637,8 @@ Speed.defaultProps = {
|
|
|
30585
30637
|
size: '1em'
|
|
30586
30638
|
};
|
|
30587
30639
|
|
|
30588
|
-
var _excluded$
|
|
30589
|
-
var loadingCircleStyle$
|
|
30640
|
+
var _excluded$88 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30641
|
+
var loadingCircleStyle$88 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30590
30642
|
var Mfa = function Mfa(props) {
|
|
30591
30643
|
var color = props.color,
|
|
30592
30644
|
size = props.size,
|
|
@@ -30595,12 +30647,12 @@ var Mfa = function Mfa(props) {
|
|
|
30595
30647
|
className = props.className,
|
|
30596
30648
|
iconClassName = props.iconClassName,
|
|
30597
30649
|
testid = props.testid,
|
|
30598
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30650
|
+
otherProps = _objectWithoutProperties(props, _excluded$88);
|
|
30599
30651
|
return /*#__PURE__*/React.createElement("span", {
|
|
30600
30652
|
role: "img",
|
|
30601
30653
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30602
30654
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30603
|
-
children: loadingCircleStyle$
|
|
30655
|
+
children: loadingCircleStyle$88
|
|
30604
30656
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30605
30657
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30606
30658
|
width: size,
|
|
@@ -30637,8 +30689,8 @@ Mfa.defaultProps = {
|
|
|
30637
30689
|
size: '1em'
|
|
30638
30690
|
};
|
|
30639
30691
|
|
|
30640
|
-
var _excluded$
|
|
30641
|
-
var loadingCircleStyle$
|
|
30692
|
+
var _excluded$89 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30693
|
+
var loadingCircleStyle$89 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30642
30694
|
var Tracking = function Tracking(props) {
|
|
30643
30695
|
var color = props.color,
|
|
30644
30696
|
size = props.size,
|
|
@@ -30647,12 +30699,12 @@ var Tracking = function Tracking(props) {
|
|
|
30647
30699
|
className = props.className,
|
|
30648
30700
|
iconClassName = props.iconClassName,
|
|
30649
30701
|
testid = props.testid,
|
|
30650
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30702
|
+
otherProps = _objectWithoutProperties(props, _excluded$89);
|
|
30651
30703
|
return /*#__PURE__*/React.createElement("span", {
|
|
30652
30704
|
role: "img",
|
|
30653
30705
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30654
30706
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30655
|
-
children: loadingCircleStyle$
|
|
30707
|
+
children: loadingCircleStyle$89
|
|
30656
30708
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30657
30709
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30658
30710
|
width: size,
|
|
@@ -30699,8 +30751,8 @@ Tracking.defaultProps = {
|
|
|
30699
30751
|
size: '1em'
|
|
30700
30752
|
};
|
|
30701
30753
|
|
|
30702
|
-
var _excluded$
|
|
30703
|
-
var loadingCircleStyle$
|
|
30754
|
+
var _excluded$8a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30755
|
+
var loadingCircleStyle$8a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30704
30756
|
var Forewarning = function Forewarning(props) {
|
|
30705
30757
|
var color = props.color,
|
|
30706
30758
|
size = props.size,
|
|
@@ -30709,12 +30761,12 @@ var Forewarning = function Forewarning(props) {
|
|
|
30709
30761
|
className = props.className,
|
|
30710
30762
|
iconClassName = props.iconClassName,
|
|
30711
30763
|
testid = props.testid,
|
|
30712
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30764
|
+
otherProps = _objectWithoutProperties(props, _excluded$8a);
|
|
30713
30765
|
return /*#__PURE__*/React.createElement("span", {
|
|
30714
30766
|
role: "img",
|
|
30715
30767
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30716
30768
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30717
|
-
children: loadingCircleStyle$
|
|
30769
|
+
children: loadingCircleStyle$8a
|
|
30718
30770
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30719
30771
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30720
30772
|
width: size,
|
|
@@ -30755,8 +30807,8 @@ Forewarning.defaultProps = {
|
|
|
30755
30807
|
size: '1em'
|
|
30756
30808
|
};
|
|
30757
30809
|
|
|
30758
|
-
var _excluded$
|
|
30759
|
-
var loadingCircleStyle$
|
|
30810
|
+
var _excluded$8b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30811
|
+
var loadingCircleStyle$8b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30760
30812
|
var SystemMgr = function SystemMgr(props) {
|
|
30761
30813
|
var color = props.color,
|
|
30762
30814
|
size = props.size,
|
|
@@ -30765,12 +30817,12 @@ var SystemMgr = function SystemMgr(props) {
|
|
|
30765
30817
|
className = props.className,
|
|
30766
30818
|
iconClassName = props.iconClassName,
|
|
30767
30819
|
testid = props.testid,
|
|
30768
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30820
|
+
otherProps = _objectWithoutProperties(props, _excluded$8b);
|
|
30769
30821
|
return /*#__PURE__*/React.createElement("span", {
|
|
30770
30822
|
role: "img",
|
|
30771
30823
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30772
30824
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30773
|
-
children: loadingCircleStyle$
|
|
30825
|
+
children: loadingCircleStyle$8b
|
|
30774
30826
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30775
30827
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30776
30828
|
width: size,
|
|
@@ -30811,8 +30863,8 @@ SystemMgr.defaultProps = {
|
|
|
30811
30863
|
size: '1em'
|
|
30812
30864
|
};
|
|
30813
30865
|
|
|
30814
|
-
var _excluded$
|
|
30815
|
-
var loadingCircleStyle$
|
|
30866
|
+
var _excluded$8c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30867
|
+
var loadingCircleStyle$8c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30816
30868
|
var Pattern = function Pattern(props) {
|
|
30817
30869
|
var color = props.color,
|
|
30818
30870
|
size = props.size,
|
|
@@ -30821,12 +30873,12 @@ var Pattern = function Pattern(props) {
|
|
|
30821
30873
|
className = props.className,
|
|
30822
30874
|
iconClassName = props.iconClassName,
|
|
30823
30875
|
testid = props.testid,
|
|
30824
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30876
|
+
otherProps = _objectWithoutProperties(props, _excluded$8c);
|
|
30825
30877
|
return /*#__PURE__*/React.createElement("span", {
|
|
30826
30878
|
role: "img",
|
|
30827
30879
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30828
30880
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30829
|
-
children: loadingCircleStyle$
|
|
30881
|
+
children: loadingCircleStyle$8c
|
|
30830
30882
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30831
30883
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30832
30884
|
width: size,
|
|
@@ -30871,8 +30923,8 @@ Pattern.defaultProps = {
|
|
|
30871
30923
|
size: '1em'
|
|
30872
30924
|
};
|
|
30873
30925
|
|
|
30874
|
-
var _excluded$
|
|
30875
|
-
var loadingCircleStyle$
|
|
30926
|
+
var _excluded$8d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30927
|
+
var loadingCircleStyle$8d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30876
30928
|
var Debug = function Debug(props) {
|
|
30877
30929
|
var color = props.color,
|
|
30878
30930
|
size = props.size,
|
|
@@ -30881,12 +30933,12 @@ var Debug = function Debug(props) {
|
|
|
30881
30933
|
className = props.className,
|
|
30882
30934
|
iconClassName = props.iconClassName,
|
|
30883
30935
|
testid = props.testid,
|
|
30884
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30936
|
+
otherProps = _objectWithoutProperties(props, _excluded$8d);
|
|
30885
30937
|
return /*#__PURE__*/React.createElement("span", {
|
|
30886
30938
|
role: "img",
|
|
30887
30939
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30888
30940
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30889
|
-
children: loadingCircleStyle$
|
|
30941
|
+
children: loadingCircleStyle$8d
|
|
30890
30942
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30891
30943
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30892
30944
|
width: size,
|
|
@@ -30923,8 +30975,8 @@ Debug.defaultProps = {
|
|
|
30923
30975
|
size: '1em'
|
|
30924
30976
|
};
|
|
30925
30977
|
|
|
30926
|
-
var _excluded$
|
|
30927
|
-
var loadingCircleStyle$
|
|
30978
|
+
var _excluded$8e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
30979
|
+
var loadingCircleStyle$8e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30928
30980
|
var Live = function Live(props) {
|
|
30929
30981
|
var color = props.color,
|
|
30930
30982
|
size = props.size,
|
|
@@ -30933,12 +30985,12 @@ var Live = function Live(props) {
|
|
|
30933
30985
|
className = props.className,
|
|
30934
30986
|
iconClassName = props.iconClassName,
|
|
30935
30987
|
testid = props.testid,
|
|
30936
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
30988
|
+
otherProps = _objectWithoutProperties(props, _excluded$8e);
|
|
30937
30989
|
return /*#__PURE__*/React.createElement("span", {
|
|
30938
30990
|
role: "img",
|
|
30939
30991
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30940
30992
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30941
|
-
children: loadingCircleStyle$
|
|
30993
|
+
children: loadingCircleStyle$8e
|
|
30942
30994
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30943
30995
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30944
30996
|
width: size,
|
|
@@ -30975,8 +31027,8 @@ Live.defaultProps = {
|
|
|
30975
31027
|
size: '1em'
|
|
30976
31028
|
};
|
|
30977
31029
|
|
|
30978
|
-
var _excluded$
|
|
30979
|
-
var loadingCircleStyle$
|
|
31030
|
+
var _excluded$8f = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31031
|
+
var loadingCircleStyle$8f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
30980
31032
|
var Plug = function Plug(props) {
|
|
30981
31033
|
var color = props.color,
|
|
30982
31034
|
size = props.size,
|
|
@@ -30985,12 +31037,12 @@ var Plug = function Plug(props) {
|
|
|
30985
31037
|
className = props.className,
|
|
30986
31038
|
iconClassName = props.iconClassName,
|
|
30987
31039
|
testid = props.testid,
|
|
30988
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31040
|
+
otherProps = _objectWithoutProperties(props, _excluded$8f);
|
|
30989
31041
|
return /*#__PURE__*/React.createElement("span", {
|
|
30990
31042
|
role: "img",
|
|
30991
31043
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
30992
31044
|
}, /*#__PURE__*/React.createElement("style", {
|
|
30993
|
-
children: loadingCircleStyle$
|
|
31045
|
+
children: loadingCircleStyle$8f
|
|
30994
31046
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
30995
31047
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30996
31048
|
width: size,
|
|
@@ -31027,8 +31079,8 @@ Plug.defaultProps = {
|
|
|
31027
31079
|
size: '1em'
|
|
31028
31080
|
};
|
|
31029
31081
|
|
|
31030
|
-
var _excluded$
|
|
31031
|
-
var loadingCircleStyle$
|
|
31082
|
+
var _excluded$8g = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31083
|
+
var loadingCircleStyle$8g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31032
31084
|
var Application = function Application(props) {
|
|
31033
31085
|
var color = props.color,
|
|
31034
31086
|
size = props.size,
|
|
@@ -31037,12 +31089,12 @@ var Application = function Application(props) {
|
|
|
31037
31089
|
className = props.className,
|
|
31038
31090
|
iconClassName = props.iconClassName,
|
|
31039
31091
|
testid = props.testid,
|
|
31040
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31092
|
+
otherProps = _objectWithoutProperties(props, _excluded$8g);
|
|
31041
31093
|
return /*#__PURE__*/React.createElement("span", {
|
|
31042
31094
|
role: "img",
|
|
31043
31095
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31044
31096
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31045
|
-
children: loadingCircleStyle$
|
|
31097
|
+
children: loadingCircleStyle$8g
|
|
31046
31098
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31047
31099
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31048
31100
|
width: size,
|
|
@@ -31089,8 +31141,8 @@ Application.defaultProps = {
|
|
|
31089
31141
|
size: '1em'
|
|
31090
31142
|
};
|
|
31091
31143
|
|
|
31092
|
-
var _excluded$
|
|
31093
|
-
var loadingCircleStyle$
|
|
31144
|
+
var _excluded$8h = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31145
|
+
var loadingCircleStyle$8h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31094
31146
|
var Gift = function Gift(props) {
|
|
31095
31147
|
var color = props.color,
|
|
31096
31148
|
size = props.size,
|
|
@@ -31099,12 +31151,12 @@ var Gift = function Gift(props) {
|
|
|
31099
31151
|
className = props.className,
|
|
31100
31152
|
iconClassName = props.iconClassName,
|
|
31101
31153
|
testid = props.testid,
|
|
31102
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31154
|
+
otherProps = _objectWithoutProperties(props, _excluded$8h);
|
|
31103
31155
|
return /*#__PURE__*/React.createElement("span", {
|
|
31104
31156
|
role: "img",
|
|
31105
31157
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31106
31158
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31107
|
-
children: loadingCircleStyle$
|
|
31159
|
+
children: loadingCircleStyle$8h
|
|
31108
31160
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31109
31161
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31110
31162
|
width: size,
|
|
@@ -31141,8 +31193,8 @@ Gift.defaultProps = {
|
|
|
31141
31193
|
size: '1em'
|
|
31142
31194
|
};
|
|
31143
31195
|
|
|
31144
|
-
var _excluded$
|
|
31145
|
-
var loadingCircleStyle$
|
|
31196
|
+
var _excluded$8i = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31197
|
+
var loadingCircleStyle$8i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31146
31198
|
var Tips = function Tips(props) {
|
|
31147
31199
|
var color = props.color,
|
|
31148
31200
|
size = props.size,
|
|
@@ -31151,12 +31203,12 @@ var Tips = function Tips(props) {
|
|
|
31151
31203
|
className = props.className,
|
|
31152
31204
|
iconClassName = props.iconClassName,
|
|
31153
31205
|
testid = props.testid,
|
|
31154
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31206
|
+
otherProps = _objectWithoutProperties(props, _excluded$8i);
|
|
31155
31207
|
return /*#__PURE__*/React.createElement("span", {
|
|
31156
31208
|
role: "img",
|
|
31157
31209
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31158
31210
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31159
|
-
children: loadingCircleStyle$
|
|
31211
|
+
children: loadingCircleStyle$8i
|
|
31160
31212
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31161
31213
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31162
31214
|
width: size,
|
|
@@ -31195,8 +31247,8 @@ Tips.defaultProps = {
|
|
|
31195
31247
|
size: '1em'
|
|
31196
31248
|
};
|
|
31197
31249
|
|
|
31198
|
-
var _excluded$
|
|
31199
|
-
var loadingCircleStyle$
|
|
31250
|
+
var _excluded$8j = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31251
|
+
var loadingCircleStyle$8j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31200
31252
|
var Usb = function Usb(props) {
|
|
31201
31253
|
var color = props.color,
|
|
31202
31254
|
size = props.size,
|
|
@@ -31205,12 +31257,12 @@ var Usb = function Usb(props) {
|
|
|
31205
31257
|
className = props.className,
|
|
31206
31258
|
iconClassName = props.iconClassName,
|
|
31207
31259
|
testid = props.testid,
|
|
31208
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31260
|
+
otherProps = _objectWithoutProperties(props, _excluded$8j);
|
|
31209
31261
|
return /*#__PURE__*/React.createElement("span", {
|
|
31210
31262
|
role: "img",
|
|
31211
31263
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31212
31264
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31213
|
-
children: loadingCircleStyle$
|
|
31265
|
+
children: loadingCircleStyle$8j
|
|
31214
31266
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31215
31267
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31216
31268
|
width: size,
|
|
@@ -31247,8 +31299,8 @@ Usb.defaultProps = {
|
|
|
31247
31299
|
size: '1em'
|
|
31248
31300
|
};
|
|
31249
31301
|
|
|
31250
|
-
var _excluded$
|
|
31251
|
-
var loadingCircleStyle$
|
|
31302
|
+
var _excluded$8k = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31303
|
+
var loadingCircleStyle$8k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31252
31304
|
var Location = function Location(props) {
|
|
31253
31305
|
var color = props.color,
|
|
31254
31306
|
size = props.size,
|
|
@@ -31257,12 +31309,12 @@ var Location = function Location(props) {
|
|
|
31257
31309
|
className = props.className,
|
|
31258
31310
|
iconClassName = props.iconClassName,
|
|
31259
31311
|
testid = props.testid,
|
|
31260
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31312
|
+
otherProps = _objectWithoutProperties(props, _excluded$8k);
|
|
31261
31313
|
return /*#__PURE__*/React.createElement("span", {
|
|
31262
31314
|
role: "img",
|
|
31263
31315
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31264
31316
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31265
|
-
children: loadingCircleStyle$
|
|
31317
|
+
children: loadingCircleStyle$8k
|
|
31266
31318
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31267
31319
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31268
31320
|
width: size,
|
|
@@ -31303,8 +31355,8 @@ Location.defaultProps = {
|
|
|
31303
31355
|
size: '1em'
|
|
31304
31356
|
};
|
|
31305
31357
|
|
|
31306
|
-
var _excluded$
|
|
31307
|
-
var loadingCircleStyle$
|
|
31358
|
+
var _excluded$8l = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31359
|
+
var loadingCircleStyle$8l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31308
31360
|
var ShieldCheck = function ShieldCheck(props) {
|
|
31309
31361
|
var color = props.color,
|
|
31310
31362
|
size = props.size,
|
|
@@ -31313,12 +31365,12 @@ var ShieldCheck = function ShieldCheck(props) {
|
|
|
31313
31365
|
className = props.className,
|
|
31314
31366
|
iconClassName = props.iconClassName,
|
|
31315
31367
|
testid = props.testid,
|
|
31316
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31368
|
+
otherProps = _objectWithoutProperties(props, _excluded$8l);
|
|
31317
31369
|
return /*#__PURE__*/React.createElement("span", {
|
|
31318
31370
|
role: "img",
|
|
31319
31371
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31320
31372
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31321
|
-
children: loadingCircleStyle$
|
|
31373
|
+
children: loadingCircleStyle$8l
|
|
31322
31374
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31323
31375
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31324
31376
|
width: size,
|
|
@@ -31355,8 +31407,8 @@ ShieldCheck.defaultProps = {
|
|
|
31355
31407
|
size: '1em'
|
|
31356
31408
|
};
|
|
31357
31409
|
|
|
31358
|
-
var _excluded$
|
|
31359
|
-
var loadingCircleStyle$
|
|
31410
|
+
var _excluded$8m = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31411
|
+
var loadingCircleStyle$8m = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31360
31412
|
var ShieldCross = function ShieldCross(props) {
|
|
31361
31413
|
var color = props.color,
|
|
31362
31414
|
size = props.size,
|
|
@@ -31365,12 +31417,12 @@ var ShieldCross = function ShieldCross(props) {
|
|
|
31365
31417
|
className = props.className,
|
|
31366
31418
|
iconClassName = props.iconClassName,
|
|
31367
31419
|
testid = props.testid,
|
|
31368
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31420
|
+
otherProps = _objectWithoutProperties(props, _excluded$8m);
|
|
31369
31421
|
return /*#__PURE__*/React.createElement("span", {
|
|
31370
31422
|
role: "img",
|
|
31371
31423
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31372
31424
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31373
|
-
children: loadingCircleStyle$
|
|
31425
|
+
children: loadingCircleStyle$8m
|
|
31374
31426
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31375
31427
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31376
31428
|
width: size,
|
|
@@ -31407,8 +31459,8 @@ ShieldCross.defaultProps = {
|
|
|
31407
31459
|
size: '1em'
|
|
31408
31460
|
};
|
|
31409
31461
|
|
|
31410
|
-
var _excluded$
|
|
31411
|
-
var loadingCircleStyle$
|
|
31462
|
+
var _excluded$8n = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31463
|
+
var loadingCircleStyle$8n = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31412
31464
|
var ShieldKeyhole = function ShieldKeyhole(props) {
|
|
31413
31465
|
var color = props.color,
|
|
31414
31466
|
size = props.size,
|
|
@@ -31417,12 +31469,12 @@ var ShieldKeyhole = function ShieldKeyhole(props) {
|
|
|
31417
31469
|
className = props.className,
|
|
31418
31470
|
iconClassName = props.iconClassName,
|
|
31419
31471
|
testid = props.testid,
|
|
31420
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31472
|
+
otherProps = _objectWithoutProperties(props, _excluded$8n);
|
|
31421
31473
|
return /*#__PURE__*/React.createElement("span", {
|
|
31422
31474
|
role: "img",
|
|
31423
31475
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31424
31476
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31425
|
-
children: loadingCircleStyle$
|
|
31477
|
+
children: loadingCircleStyle$8n
|
|
31426
31478
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31427
31479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31428
31480
|
width: size,
|
|
@@ -31459,8 +31511,8 @@ ShieldKeyhole.defaultProps = {
|
|
|
31459
31511
|
size: '1em'
|
|
31460
31512
|
};
|
|
31461
31513
|
|
|
31462
|
-
var _excluded$
|
|
31463
|
-
var loadingCircleStyle$
|
|
31514
|
+
var _excluded$8o = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31515
|
+
var loadingCircleStyle$8o = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31464
31516
|
var Bell2Fill = function Bell2Fill(props) {
|
|
31465
31517
|
var color = props.color,
|
|
31466
31518
|
size = props.size,
|
|
@@ -31469,12 +31521,12 @@ var Bell2Fill = function Bell2Fill(props) {
|
|
|
31469
31521
|
className = props.className,
|
|
31470
31522
|
iconClassName = props.iconClassName,
|
|
31471
31523
|
testid = props.testid,
|
|
31472
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31524
|
+
otherProps = _objectWithoutProperties(props, _excluded$8o);
|
|
31473
31525
|
return /*#__PURE__*/React.createElement("span", {
|
|
31474
31526
|
role: "img",
|
|
31475
31527
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31476
31528
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31477
|
-
children: loadingCircleStyle$
|
|
31529
|
+
children: loadingCircleStyle$8o
|
|
31478
31530
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31479
31531
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31480
31532
|
width: size,
|
|
@@ -31511,8 +31563,8 @@ Bell2Fill.defaultProps = {
|
|
|
31511
31563
|
size: '1em'
|
|
31512
31564
|
};
|
|
31513
31565
|
|
|
31514
|
-
var _excluded$
|
|
31515
|
-
var loadingCircleStyle$
|
|
31566
|
+
var _excluded$8p = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31567
|
+
var loadingCircleStyle$8p = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31516
31568
|
var Box = function Box(props) {
|
|
31517
31569
|
var color = props.color,
|
|
31518
31570
|
size = props.size,
|
|
@@ -31521,12 +31573,12 @@ var Box = function Box(props) {
|
|
|
31521
31573
|
className = props.className,
|
|
31522
31574
|
iconClassName = props.iconClassName,
|
|
31523
31575
|
testid = props.testid,
|
|
31524
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31576
|
+
otherProps = _objectWithoutProperties(props, _excluded$8p);
|
|
31525
31577
|
return /*#__PURE__*/React.createElement("span", {
|
|
31526
31578
|
role: "img",
|
|
31527
31579
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31528
31580
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31529
|
-
children: loadingCircleStyle$
|
|
31581
|
+
children: loadingCircleStyle$8p
|
|
31530
31582
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31531
31583
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31532
31584
|
width: size,
|
|
@@ -31563,8 +31615,8 @@ Box.defaultProps = {
|
|
|
31563
31615
|
size: '1em'
|
|
31564
31616
|
};
|
|
31565
31617
|
|
|
31566
|
-
var _excluded$
|
|
31567
|
-
var loadingCircleStyle$
|
|
31618
|
+
var _excluded$8q = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31619
|
+
var loadingCircleStyle$8q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31568
31620
|
var ShutDown = function ShutDown(props) {
|
|
31569
31621
|
var color = props.color,
|
|
31570
31622
|
size = props.size,
|
|
@@ -31573,12 +31625,12 @@ var ShutDown = function ShutDown(props) {
|
|
|
31573
31625
|
className = props.className,
|
|
31574
31626
|
iconClassName = props.iconClassName,
|
|
31575
31627
|
testid = props.testid,
|
|
31576
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31628
|
+
otherProps = _objectWithoutProperties(props, _excluded$8q);
|
|
31577
31629
|
return /*#__PURE__*/React.createElement("span", {
|
|
31578
31630
|
role: "img",
|
|
31579
31631
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31580
31632
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31581
|
-
children: loadingCircleStyle$
|
|
31633
|
+
children: loadingCircleStyle$8q
|
|
31582
31634
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31583
31635
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31584
31636
|
width: size,
|
|
@@ -31615,8 +31667,8 @@ ShutDown.defaultProps = {
|
|
|
31615
31667
|
size: '1em'
|
|
31616
31668
|
};
|
|
31617
31669
|
|
|
31618
|
-
var _excluded$
|
|
31619
|
-
var loadingCircleStyle$
|
|
31670
|
+
var _excluded$8r = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31671
|
+
var loadingCircleStyle$8r = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31620
31672
|
var Database = function Database(props) {
|
|
31621
31673
|
var color = props.color,
|
|
31622
31674
|
size = props.size,
|
|
@@ -31625,12 +31677,12 @@ var Database = function Database(props) {
|
|
|
31625
31677
|
className = props.className,
|
|
31626
31678
|
iconClassName = props.iconClassName,
|
|
31627
31679
|
testid = props.testid,
|
|
31628
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31680
|
+
otherProps = _objectWithoutProperties(props, _excluded$8r);
|
|
31629
31681
|
return /*#__PURE__*/React.createElement("span", {
|
|
31630
31682
|
role: "img",
|
|
31631
31683
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31632
31684
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31633
|
-
children: loadingCircleStyle$
|
|
31685
|
+
children: loadingCircleStyle$8r
|
|
31634
31686
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31635
31687
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31636
31688
|
width: size,
|
|
@@ -31667,8 +31719,8 @@ Database.defaultProps = {
|
|
|
31667
31719
|
size: '1em'
|
|
31668
31720
|
};
|
|
31669
31721
|
|
|
31670
|
-
var _excluded$
|
|
31671
|
-
var loadingCircleStyle$
|
|
31722
|
+
var _excluded$8s = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31723
|
+
var loadingCircleStyle$8s = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31672
31724
|
var Terminal = function Terminal(props) {
|
|
31673
31725
|
var color = props.color,
|
|
31674
31726
|
size = props.size,
|
|
@@ -31677,12 +31729,12 @@ var Terminal = function Terminal(props) {
|
|
|
31677
31729
|
className = props.className,
|
|
31678
31730
|
iconClassName = props.iconClassName,
|
|
31679
31731
|
testid = props.testid,
|
|
31680
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31732
|
+
otherProps = _objectWithoutProperties(props, _excluded$8s);
|
|
31681
31733
|
return /*#__PURE__*/React.createElement("span", {
|
|
31682
31734
|
role: "img",
|
|
31683
31735
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31684
31736
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31685
|
-
children: loadingCircleStyle$
|
|
31737
|
+
children: loadingCircleStyle$8s
|
|
31686
31738
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31687
31739
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31688
31740
|
width: size,
|
|
@@ -31719,8 +31771,8 @@ Terminal.defaultProps = {
|
|
|
31719
31771
|
size: '1em'
|
|
31720
31772
|
};
|
|
31721
31773
|
|
|
31722
|
-
var _excluded$
|
|
31723
|
-
var loadingCircleStyle$
|
|
31774
|
+
var _excluded$8t = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31775
|
+
var loadingCircleStyle$8t = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31724
31776
|
var SatelliteDish = function SatelliteDish(props) {
|
|
31725
31777
|
var color = props.color,
|
|
31726
31778
|
size = props.size,
|
|
@@ -31729,12 +31781,12 @@ var SatelliteDish = function SatelliteDish(props) {
|
|
|
31729
31781
|
className = props.className,
|
|
31730
31782
|
iconClassName = props.iconClassName,
|
|
31731
31783
|
testid = props.testid,
|
|
31732
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31784
|
+
otherProps = _objectWithoutProperties(props, _excluded$8t);
|
|
31733
31785
|
return /*#__PURE__*/React.createElement("span", {
|
|
31734
31786
|
role: "img",
|
|
31735
31787
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31736
31788
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31737
|
-
children: loadingCircleStyle$
|
|
31789
|
+
children: loadingCircleStyle$8t
|
|
31738
31790
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31739
31791
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31740
31792
|
width: size,
|
|
@@ -31777,8 +31829,8 @@ SatelliteDish.defaultProps = {
|
|
|
31777
31829
|
size: '1em'
|
|
31778
31830
|
};
|
|
31779
31831
|
|
|
31780
|
-
var _excluded$
|
|
31781
|
-
var loadingCircleStyle$
|
|
31832
|
+
var _excluded$8u = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31833
|
+
var loadingCircleStyle$8u = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31782
31834
|
var Post = function Post(props) {
|
|
31783
31835
|
var color = props.color,
|
|
31784
31836
|
size = props.size,
|
|
@@ -31787,12 +31839,12 @@ var Post = function Post(props) {
|
|
|
31787
31839
|
className = props.className,
|
|
31788
31840
|
iconClassName = props.iconClassName,
|
|
31789
31841
|
testid = props.testid,
|
|
31790
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31842
|
+
otherProps = _objectWithoutProperties(props, _excluded$8u);
|
|
31791
31843
|
return /*#__PURE__*/React.createElement("span", {
|
|
31792
31844
|
role: "img",
|
|
31793
31845
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31794
31846
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31795
|
-
children: loadingCircleStyle$
|
|
31847
|
+
children: loadingCircleStyle$8u
|
|
31796
31848
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31797
31849
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31798
31850
|
width: size,
|
|
@@ -31829,8 +31881,8 @@ Post.defaultProps = {
|
|
|
31829
31881
|
size: '1em'
|
|
31830
31882
|
};
|
|
31831
31883
|
|
|
31832
|
-
var _excluded$
|
|
31833
|
-
var loadingCircleStyle$
|
|
31884
|
+
var _excluded$8v = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31885
|
+
var loadingCircleStyle$8v = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31834
31886
|
var Phrase = function Phrase(props) {
|
|
31835
31887
|
var color = props.color,
|
|
31836
31888
|
size = props.size,
|
|
@@ -31839,12 +31891,12 @@ var Phrase = function Phrase(props) {
|
|
|
31839
31891
|
className = props.className,
|
|
31840
31892
|
iconClassName = props.iconClassName,
|
|
31841
31893
|
testid = props.testid,
|
|
31842
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31894
|
+
otherProps = _objectWithoutProperties(props, _excluded$8v);
|
|
31843
31895
|
return /*#__PURE__*/React.createElement("span", {
|
|
31844
31896
|
role: "img",
|
|
31845
31897
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31846
31898
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31847
|
-
children: loadingCircleStyle$
|
|
31899
|
+
children: loadingCircleStyle$8v
|
|
31848
31900
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31849
31901
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31850
31902
|
width: size,
|
|
@@ -31881,8 +31933,8 @@ Phrase.defaultProps = {
|
|
|
31881
31933
|
size: '1em'
|
|
31882
31934
|
};
|
|
31883
31935
|
|
|
31884
|
-
var _excluded$
|
|
31885
|
-
var loadingCircleStyle$
|
|
31936
|
+
var _excluded$8w = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31937
|
+
var loadingCircleStyle$8w = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31886
31938
|
var Hashtag = function Hashtag(props) {
|
|
31887
31939
|
var color = props.color,
|
|
31888
31940
|
size = props.size,
|
|
@@ -31891,12 +31943,12 @@ var Hashtag = function Hashtag(props) {
|
|
|
31891
31943
|
className = props.className,
|
|
31892
31944
|
iconClassName = props.iconClassName,
|
|
31893
31945
|
testid = props.testid,
|
|
31894
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31946
|
+
otherProps = _objectWithoutProperties(props, _excluded$8w);
|
|
31895
31947
|
return /*#__PURE__*/React.createElement("span", {
|
|
31896
31948
|
role: "img",
|
|
31897
31949
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31898
31950
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31899
|
-
children: loadingCircleStyle$
|
|
31951
|
+
children: loadingCircleStyle$8w
|
|
31900
31952
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31901
31953
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31902
31954
|
width: size,
|
|
@@ -31933,8 +31985,8 @@ Hashtag.defaultProps = {
|
|
|
31933
31985
|
size: '1em'
|
|
31934
31986
|
};
|
|
31935
31987
|
|
|
31936
|
-
var _excluded$
|
|
31937
|
-
var loadingCircleStyle$
|
|
31988
|
+
var _excluded$8x = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
31989
|
+
var loadingCircleStyle$8x = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31938
31990
|
var CalendarCheck = function CalendarCheck(props) {
|
|
31939
31991
|
var color = props.color,
|
|
31940
31992
|
size = props.size,
|
|
@@ -31943,12 +31995,12 @@ var CalendarCheck = function CalendarCheck(props) {
|
|
|
31943
31995
|
className = props.className,
|
|
31944
31996
|
iconClassName = props.iconClassName,
|
|
31945
31997
|
testid = props.testid,
|
|
31946
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
31998
|
+
otherProps = _objectWithoutProperties(props, _excluded$8x);
|
|
31947
31999
|
return /*#__PURE__*/React.createElement("span", {
|
|
31948
32000
|
role: "img",
|
|
31949
32001
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31950
32002
|
}, /*#__PURE__*/React.createElement("style", {
|
|
31951
|
-
children: loadingCircleStyle$
|
|
32003
|
+
children: loadingCircleStyle$8x
|
|
31952
32004
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
31953
32005
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31954
32006
|
width: size,
|
|
@@ -31985,8 +32037,8 @@ CalendarCheck.defaultProps = {
|
|
|
31985
32037
|
size: '1em'
|
|
31986
32038
|
};
|
|
31987
32039
|
|
|
31988
|
-
var _excluded$
|
|
31989
|
-
var loadingCircleStyle$
|
|
32040
|
+
var _excluded$8y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32041
|
+
var loadingCircleStyle$8y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
31990
32042
|
var BiTargetPlayerCl = function BiTargetPlayerCl(props) {
|
|
31991
32043
|
var color = props.color,
|
|
31992
32044
|
size = props.size,
|
|
@@ -31995,12 +32047,12 @@ var BiTargetPlayerCl = function BiTargetPlayerCl(props) {
|
|
|
31995
32047
|
className = props.className,
|
|
31996
32048
|
iconClassName = props.iconClassName,
|
|
31997
32049
|
testid = props.testid,
|
|
31998
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32050
|
+
otherProps = _objectWithoutProperties(props, _excluded$8y);
|
|
31999
32051
|
return /*#__PURE__*/React.createElement("span", {
|
|
32000
32052
|
role: "img",
|
|
32001
32053
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32002
32054
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32003
|
-
children: loadingCircleStyle$
|
|
32055
|
+
children: loadingCircleStyle$8y
|
|
32004
32056
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32005
32057
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32006
32058
|
width: size,
|
|
@@ -32097,8 +32149,8 @@ BiTargetPlayerCl.defaultProps = {
|
|
|
32097
32149
|
size: '1em'
|
|
32098
32150
|
};
|
|
32099
32151
|
|
|
32100
|
-
var _excluded$
|
|
32101
|
-
var loadingCircleStyle$
|
|
32152
|
+
var _excluded$8z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32153
|
+
var loadingCircleStyle$8z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32102
32154
|
var BiChannelReachCl = function BiChannelReachCl(props) {
|
|
32103
32155
|
var color = props.color,
|
|
32104
32156
|
size = props.size,
|
|
@@ -32107,12 +32159,12 @@ var BiChannelReachCl = function BiChannelReachCl(props) {
|
|
|
32107
32159
|
className = props.className,
|
|
32108
32160
|
iconClassName = props.iconClassName,
|
|
32109
32161
|
testid = props.testid,
|
|
32110
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32162
|
+
otherProps = _objectWithoutProperties(props, _excluded$8z);
|
|
32111
32163
|
return /*#__PURE__*/React.createElement("span", {
|
|
32112
32164
|
role: "img",
|
|
32113
32165
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32114
32166
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32115
|
-
children: loadingCircleStyle$
|
|
32167
|
+
children: loadingCircleStyle$8z
|
|
32116
32168
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32117
32169
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32118
32170
|
width: size,
|
|
@@ -32204,8 +32256,8 @@ BiChannelReachCl.defaultProps = {
|
|
|
32204
32256
|
size: '1em'
|
|
32205
32257
|
};
|
|
32206
32258
|
|
|
32207
|
-
var _excluded$
|
|
32208
|
-
var loadingCircleStyle$
|
|
32259
|
+
var _excluded$8A = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32260
|
+
var loadingCircleStyle$8A = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32209
32261
|
var BiOperationAnalysisCl = function BiOperationAnalysisCl(props) {
|
|
32210
32262
|
var color = props.color,
|
|
32211
32263
|
size = props.size,
|
|
@@ -32214,12 +32266,12 @@ var BiOperationAnalysisCl = function BiOperationAnalysisCl(props) {
|
|
|
32214
32266
|
className = props.className,
|
|
32215
32267
|
iconClassName = props.iconClassName,
|
|
32216
32268
|
testid = props.testid,
|
|
32217
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32269
|
+
otherProps = _objectWithoutProperties(props, _excluded$8A);
|
|
32218
32270
|
return /*#__PURE__*/React.createElement("span", {
|
|
32219
32271
|
role: "img",
|
|
32220
32272
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32221
32273
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32222
|
-
children: loadingCircleStyle$
|
|
32274
|
+
children: loadingCircleStyle$8A
|
|
32223
32275
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32224
32276
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32225
32277
|
width: size,
|
|
@@ -32309,8 +32361,8 @@ BiOperationAnalysisCl.defaultProps = {
|
|
|
32309
32361
|
size: '1em'
|
|
32310
32362
|
};
|
|
32311
32363
|
|
|
32312
|
-
var _excluded$
|
|
32313
|
-
var loadingCircleStyle$
|
|
32364
|
+
var _excluded$8B = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32365
|
+
var loadingCircleStyle$8B = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32314
32366
|
var BiOperationPolicyCl = function BiOperationPolicyCl(props) {
|
|
32315
32367
|
var color = props.color,
|
|
32316
32368
|
size = props.size,
|
|
@@ -32319,12 +32371,12 @@ var BiOperationPolicyCl = function BiOperationPolicyCl(props) {
|
|
|
32319
32371
|
className = props.className,
|
|
32320
32372
|
iconClassName = props.iconClassName,
|
|
32321
32373
|
testid = props.testid,
|
|
32322
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32374
|
+
otherProps = _objectWithoutProperties(props, _excluded$8B);
|
|
32323
32375
|
return /*#__PURE__*/React.createElement("span", {
|
|
32324
32376
|
role: "img",
|
|
32325
32377
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32326
32378
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32327
|
-
children: loadingCircleStyle$
|
|
32379
|
+
children: loadingCircleStyle$8B
|
|
32328
32380
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32329
32381
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32330
32382
|
width: size,
|
|
@@ -32419,8 +32471,8 @@ BiOperationPolicyCl.defaultProps = {
|
|
|
32419
32471
|
size: '1em'
|
|
32420
32472
|
};
|
|
32421
32473
|
|
|
32422
|
-
var _excluded$
|
|
32423
|
-
var loadingCircleStyle$
|
|
32474
|
+
var _excluded$8C = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32475
|
+
var loadingCircleStyle$8C = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32424
32476
|
var BiAiCl = function BiAiCl(props) {
|
|
32425
32477
|
var color = props.color,
|
|
32426
32478
|
size = props.size,
|
|
@@ -32429,12 +32481,12 @@ var BiAiCl = function BiAiCl(props) {
|
|
|
32429
32481
|
className = props.className,
|
|
32430
32482
|
iconClassName = props.iconClassName,
|
|
32431
32483
|
testid = props.testid,
|
|
32432
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32484
|
+
otherProps = _objectWithoutProperties(props, _excluded$8C);
|
|
32433
32485
|
return /*#__PURE__*/React.createElement("span", {
|
|
32434
32486
|
role: "img",
|
|
32435
32487
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32436
32488
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32437
|
-
children: loadingCircleStyle$
|
|
32489
|
+
children: loadingCircleStyle$8C
|
|
32438
32490
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32439
32491
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32440
32492
|
width: size,
|
|
@@ -32524,8 +32576,8 @@ BiAiCl.defaultProps = {
|
|
|
32524
32576
|
size: '1em'
|
|
32525
32577
|
};
|
|
32526
32578
|
|
|
32527
|
-
var _excluded$
|
|
32528
|
-
var loadingCircleStyle$
|
|
32579
|
+
var _excluded$8D = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32580
|
+
var loadingCircleStyle$8D = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32529
32581
|
var BiQuickStartCl = function BiQuickStartCl(props) {
|
|
32530
32582
|
var color = props.color,
|
|
32531
32583
|
size = props.size,
|
|
@@ -32534,12 +32586,12 @@ var BiQuickStartCl = function BiQuickStartCl(props) {
|
|
|
32534
32586
|
className = props.className,
|
|
32535
32587
|
iconClassName = props.iconClassName,
|
|
32536
32588
|
testid = props.testid,
|
|
32537
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32589
|
+
otherProps = _objectWithoutProperties(props, _excluded$8D);
|
|
32538
32590
|
return /*#__PURE__*/React.createElement("span", {
|
|
32539
32591
|
role: "img",
|
|
32540
32592
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32541
32593
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32542
|
-
children: loadingCircleStyle$
|
|
32594
|
+
children: loadingCircleStyle$8D
|
|
32543
32595
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32544
32596
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32545
32597
|
width: size,
|
|
@@ -32629,8 +32681,8 @@ BiQuickStartCl.defaultProps = {
|
|
|
32629
32681
|
size: '1em'
|
|
32630
32682
|
};
|
|
32631
32683
|
|
|
32632
|
-
var _excluded$
|
|
32633
|
-
var loadingCircleStyle$
|
|
32684
|
+
var _excluded$8E = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32685
|
+
var loadingCircleStyle$8E = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32634
32686
|
var BiAlertCl = function BiAlertCl(props) {
|
|
32635
32687
|
var color = props.color,
|
|
32636
32688
|
size = props.size,
|
|
@@ -32639,12 +32691,12 @@ var BiAlertCl = function BiAlertCl(props) {
|
|
|
32639
32691
|
className = props.className,
|
|
32640
32692
|
iconClassName = props.iconClassName,
|
|
32641
32693
|
testid = props.testid,
|
|
32642
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32694
|
+
otherProps = _objectWithoutProperties(props, _excluded$8E);
|
|
32643
32695
|
return /*#__PURE__*/React.createElement("span", {
|
|
32644
32696
|
role: "img",
|
|
32645
32697
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32646
32698
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32647
|
-
children: loadingCircleStyle$
|
|
32699
|
+
children: loadingCircleStyle$8E
|
|
32648
32700
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32649
32701
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32650
32702
|
width: size,
|
|
@@ -32734,8 +32786,8 @@ BiAlertCl.defaultProps = {
|
|
|
32734
32786
|
size: '1em'
|
|
32735
32787
|
};
|
|
32736
32788
|
|
|
32737
|
-
var _excluded$
|
|
32738
|
-
var loadingCircleStyle$
|
|
32789
|
+
var _excluded$8F = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32790
|
+
var loadingCircleStyle$8F = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32739
32791
|
var BiQueryCl = function BiQueryCl(props) {
|
|
32740
32792
|
var color = props.color,
|
|
32741
32793
|
size = props.size,
|
|
@@ -32744,12 +32796,12 @@ var BiQueryCl = function BiQueryCl(props) {
|
|
|
32744
32796
|
className = props.className,
|
|
32745
32797
|
iconClassName = props.iconClassName,
|
|
32746
32798
|
testid = props.testid,
|
|
32747
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32799
|
+
otherProps = _objectWithoutProperties(props, _excluded$8F);
|
|
32748
32800
|
return /*#__PURE__*/React.createElement("span", {
|
|
32749
32801
|
role: "img",
|
|
32750
32802
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32751
32803
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32752
|
-
children: loadingCircleStyle$
|
|
32804
|
+
children: loadingCircleStyle$8F
|
|
32753
32805
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32754
32806
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32755
32807
|
width: size,
|
|
@@ -32839,8 +32891,8 @@ BiQueryCl.defaultProps = {
|
|
|
32839
32891
|
size: '1em'
|
|
32840
32892
|
};
|
|
32841
32893
|
|
|
32842
|
-
var _excluded$
|
|
32843
|
-
var loadingCircleStyle$
|
|
32894
|
+
var _excluded$8G = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
32895
|
+
var loadingCircleStyle$8G = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32844
32896
|
var BiUserOperationCl = function BiUserOperationCl(props) {
|
|
32845
32897
|
var color = props.color,
|
|
32846
32898
|
size = props.size,
|
|
@@ -32849,12 +32901,12 @@ var BiUserOperationCl = function BiUserOperationCl(props) {
|
|
|
32849
32901
|
className = props.className,
|
|
32850
32902
|
iconClassName = props.iconClassName,
|
|
32851
32903
|
testid = props.testid,
|
|
32852
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
32904
|
+
otherProps = _objectWithoutProperties(props, _excluded$8G);
|
|
32853
32905
|
return /*#__PURE__*/React.createElement("span", {
|
|
32854
32906
|
role: "img",
|
|
32855
32907
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32856
32908
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32857
|
-
children: loadingCircleStyle$
|
|
32909
|
+
children: loadingCircleStyle$8G
|
|
32858
32910
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32859
32911
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32860
32912
|
width: size,
|
|
@@ -32944,8 +32996,8 @@ BiUserOperationCl.defaultProps = {
|
|
|
32944
32996
|
size: '1em'
|
|
32945
32997
|
};
|
|
32946
32998
|
|
|
32947
|
-
var _excluded$
|
|
32948
|
-
var loadingCircleStyle$
|
|
32999
|
+
var _excluded$8H = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33000
|
+
var loadingCircleStyle$8H = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
32949
33001
|
var BiUserIdentificationCl = function BiUserIdentificationCl(props) {
|
|
32950
33002
|
var color = props.color,
|
|
32951
33003
|
size = props.size,
|
|
@@ -32954,12 +33006,12 @@ var BiUserIdentificationCl = function BiUserIdentificationCl(props) {
|
|
|
32954
33006
|
className = props.className,
|
|
32955
33007
|
iconClassName = props.iconClassName,
|
|
32956
33008
|
testid = props.testid,
|
|
32957
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33009
|
+
otherProps = _objectWithoutProperties(props, _excluded$8H);
|
|
32958
33010
|
return /*#__PURE__*/React.createElement("span", {
|
|
32959
33011
|
role: "img",
|
|
32960
33012
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32961
33013
|
}, /*#__PURE__*/React.createElement("style", {
|
|
32962
|
-
children: loadingCircleStyle$
|
|
33014
|
+
children: loadingCircleStyle$8H
|
|
32963
33015
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
32964
33016
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32965
33017
|
width: size,
|
|
@@ -33049,8 +33101,8 @@ BiUserIdentificationCl.defaultProps = {
|
|
|
33049
33101
|
size: '1em'
|
|
33050
33102
|
};
|
|
33051
33103
|
|
|
33052
|
-
var _excluded$
|
|
33053
|
-
var loadingCircleStyle$
|
|
33104
|
+
var _excluded$8I = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33105
|
+
var loadingCircleStyle$8I = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33054
33106
|
var BiSocialAnalysisCl = function BiSocialAnalysisCl(props) {
|
|
33055
33107
|
var color = props.color,
|
|
33056
33108
|
size = props.size,
|
|
@@ -33059,12 +33111,12 @@ var BiSocialAnalysisCl = function BiSocialAnalysisCl(props) {
|
|
|
33059
33111
|
className = props.className,
|
|
33060
33112
|
iconClassName = props.iconClassName,
|
|
33061
33113
|
testid = props.testid,
|
|
33062
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33114
|
+
otherProps = _objectWithoutProperties(props, _excluded$8I);
|
|
33063
33115
|
return /*#__PURE__*/React.createElement("span", {
|
|
33064
33116
|
role: "img",
|
|
33065
33117
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33066
33118
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33067
|
-
children: loadingCircleStyle$
|
|
33119
|
+
children: loadingCircleStyle$8I
|
|
33068
33120
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33069
33121
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33070
33122
|
width: size,
|
|
@@ -33154,8 +33206,8 @@ BiSocialAnalysisCl.defaultProps = {
|
|
|
33154
33206
|
size: '1em'
|
|
33155
33207
|
};
|
|
33156
33208
|
|
|
33157
|
-
var _excluded$
|
|
33158
|
-
var loadingCircleStyle$
|
|
33209
|
+
var _excluded$8J = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33210
|
+
var loadingCircleStyle$8J = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33159
33211
|
var BiBeginnerGuideCl = function BiBeginnerGuideCl(props) {
|
|
33160
33212
|
var color = props.color,
|
|
33161
33213
|
size = props.size,
|
|
@@ -33164,12 +33216,12 @@ var BiBeginnerGuideCl = function BiBeginnerGuideCl(props) {
|
|
|
33164
33216
|
className = props.className,
|
|
33165
33217
|
iconClassName = props.iconClassName,
|
|
33166
33218
|
testid = props.testid,
|
|
33167
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33219
|
+
otherProps = _objectWithoutProperties(props, _excluded$8J);
|
|
33168
33220
|
return /*#__PURE__*/React.createElement("span", {
|
|
33169
33221
|
role: "img",
|
|
33170
33222
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33171
33223
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33172
|
-
children: loadingCircleStyle$
|
|
33224
|
+
children: loadingCircleStyle$8J
|
|
33173
33225
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33174
33226
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33175
33227
|
width: size,
|
|
@@ -33259,8 +33311,8 @@ BiBeginnerGuideCl.defaultProps = {
|
|
|
33259
33311
|
size: '1em'
|
|
33260
33312
|
};
|
|
33261
33313
|
|
|
33262
|
-
var _excluded$
|
|
33263
|
-
var loadingCircleStyle$
|
|
33314
|
+
var _excluded$8K = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33315
|
+
var loadingCircleStyle$8K = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33264
33316
|
var BiCommercialAdaptationCl = function BiCommercialAdaptationCl(props) {
|
|
33265
33317
|
var color = props.color,
|
|
33266
33318
|
size = props.size,
|
|
@@ -33269,12 +33321,12 @@ var BiCommercialAdaptationCl = function BiCommercialAdaptationCl(props) {
|
|
|
33269
33321
|
className = props.className,
|
|
33270
33322
|
iconClassName = props.iconClassName,
|
|
33271
33323
|
testid = props.testid,
|
|
33272
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33324
|
+
otherProps = _objectWithoutProperties(props, _excluded$8K);
|
|
33273
33325
|
return /*#__PURE__*/React.createElement("span", {
|
|
33274
33326
|
role: "img",
|
|
33275
33327
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33276
33328
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33277
|
-
children: loadingCircleStyle$
|
|
33329
|
+
children: loadingCircleStyle$8K
|
|
33278
33330
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33279
33331
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33280
33332
|
width: size,
|
|
@@ -33364,8 +33416,8 @@ BiCommercialAdaptationCl.defaultProps = {
|
|
|
33364
33416
|
size: '1em'
|
|
33365
33417
|
};
|
|
33366
33418
|
|
|
33367
|
-
var _excluded$
|
|
33368
|
-
var loadingCircleStyle$
|
|
33419
|
+
var _excluded$8L = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33420
|
+
var loadingCircleStyle$8L = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33369
33421
|
var BiOperationalEmpowermentCl = function BiOperationalEmpowermentCl(props) {
|
|
33370
33422
|
var color = props.color,
|
|
33371
33423
|
size = props.size,
|
|
@@ -33374,12 +33426,12 @@ var BiOperationalEmpowermentCl = function BiOperationalEmpowermentCl(props) {
|
|
|
33374
33426
|
className = props.className,
|
|
33375
33427
|
iconClassName = props.iconClassName,
|
|
33376
33428
|
testid = props.testid,
|
|
33377
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33429
|
+
otherProps = _objectWithoutProperties(props, _excluded$8L);
|
|
33378
33430
|
return /*#__PURE__*/React.createElement("span", {
|
|
33379
33431
|
role: "img",
|
|
33380
33432
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33381
33433
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33382
|
-
children: loadingCircleStyle$
|
|
33434
|
+
children: loadingCircleStyle$8L
|
|
33383
33435
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33384
33436
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33385
33437
|
width: size,
|
|
@@ -33469,8 +33521,8 @@ BiOperationalEmpowermentCl.defaultProps = {
|
|
|
33469
33521
|
size: '1em'
|
|
33470
33522
|
};
|
|
33471
33523
|
|
|
33472
|
-
var _excluded$
|
|
33473
|
-
var loadingCircleStyle$
|
|
33524
|
+
var _excluded$8M = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33525
|
+
var loadingCircleStyle$8M = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33474
33526
|
var BiPersonalizedDeploymentCl = function BiPersonalizedDeploymentCl(props) {
|
|
33475
33527
|
var color = props.color,
|
|
33476
33528
|
size = props.size,
|
|
@@ -33479,12 +33531,12 @@ var BiPersonalizedDeploymentCl = function BiPersonalizedDeploymentCl(props) {
|
|
|
33479
33531
|
className = props.className,
|
|
33480
33532
|
iconClassName = props.iconClassName,
|
|
33481
33533
|
testid = props.testid,
|
|
33482
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33534
|
+
otherProps = _objectWithoutProperties(props, _excluded$8M);
|
|
33483
33535
|
return /*#__PURE__*/React.createElement("span", {
|
|
33484
33536
|
role: "img",
|
|
33485
33537
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33486
33538
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33487
|
-
children: loadingCircleStyle$
|
|
33539
|
+
children: loadingCircleStyle$8M
|
|
33488
33540
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33489
33541
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33490
33542
|
width: size,
|
|
@@ -33574,8 +33626,8 @@ BiPersonalizedDeploymentCl.defaultProps = {
|
|
|
33574
33626
|
size: '1em'
|
|
33575
33627
|
};
|
|
33576
33628
|
|
|
33577
|
-
var _excluded$
|
|
33578
|
-
var loadingCircleStyle$
|
|
33629
|
+
var _excluded$8N = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33630
|
+
var loadingCircleStyle$8N = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33579
33631
|
var BiPathCl = function BiPathCl(props) {
|
|
33580
33632
|
var color = props.color,
|
|
33581
33633
|
size = props.size,
|
|
@@ -33584,12 +33636,12 @@ var BiPathCl = function BiPathCl(props) {
|
|
|
33584
33636
|
className = props.className,
|
|
33585
33637
|
iconClassName = props.iconClassName,
|
|
33586
33638
|
testid = props.testid,
|
|
33587
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33639
|
+
otherProps = _objectWithoutProperties(props, _excluded$8N);
|
|
33588
33640
|
return /*#__PURE__*/React.createElement("span", {
|
|
33589
33641
|
role: "img",
|
|
33590
33642
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33591
33643
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33592
|
-
children: loadingCircleStyle$
|
|
33644
|
+
children: loadingCircleStyle$8N
|
|
33593
33645
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33594
33646
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33595
33647
|
width: size,
|
|
@@ -33679,8 +33731,8 @@ BiPathCl.defaultProps = {
|
|
|
33679
33731
|
size: '1em'
|
|
33680
33732
|
};
|
|
33681
33733
|
|
|
33682
|
-
var _excluded$
|
|
33683
|
-
var loadingCircleStyle$
|
|
33734
|
+
var _excluded$8O = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33735
|
+
var loadingCircleStyle$8O = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33684
33736
|
var BiDisassemblyCl = function BiDisassemblyCl(props) {
|
|
33685
33737
|
var color = props.color,
|
|
33686
33738
|
size = props.size,
|
|
@@ -33689,12 +33741,12 @@ var BiDisassemblyCl = function BiDisassemblyCl(props) {
|
|
|
33689
33741
|
className = props.className,
|
|
33690
33742
|
iconClassName = props.iconClassName,
|
|
33691
33743
|
testid = props.testid,
|
|
33692
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33744
|
+
otherProps = _objectWithoutProperties(props, _excluded$8O);
|
|
33693
33745
|
return /*#__PURE__*/React.createElement("span", {
|
|
33694
33746
|
role: "img",
|
|
33695
33747
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33696
33748
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33697
|
-
children: loadingCircleStyle$
|
|
33749
|
+
children: loadingCircleStyle$8O
|
|
33698
33750
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33699
33751
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33700
33752
|
width: size,
|
|
@@ -33795,8 +33847,8 @@ BiDisassemblyCl.defaultProps = {
|
|
|
33795
33847
|
size: '1em'
|
|
33796
33848
|
};
|
|
33797
33849
|
|
|
33798
|
-
var _excluded$
|
|
33799
|
-
var loadingCircleStyle$
|
|
33850
|
+
var _excluded$8P = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33851
|
+
var loadingCircleStyle$8P = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33800
33852
|
var BiGuideCl = function BiGuideCl(props) {
|
|
33801
33853
|
var color = props.color,
|
|
33802
33854
|
size = props.size,
|
|
@@ -33805,12 +33857,12 @@ var BiGuideCl = function BiGuideCl(props) {
|
|
|
33805
33857
|
className = props.className,
|
|
33806
33858
|
iconClassName = props.iconClassName,
|
|
33807
33859
|
testid = props.testid,
|
|
33808
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33860
|
+
otherProps = _objectWithoutProperties(props, _excluded$8P);
|
|
33809
33861
|
return /*#__PURE__*/React.createElement("span", {
|
|
33810
33862
|
role: "img",
|
|
33811
33863
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33812
33864
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33813
|
-
children: loadingCircleStyle$
|
|
33865
|
+
children: loadingCircleStyle$8P
|
|
33814
33866
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33815
33867
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33816
33868
|
width: size,
|
|
@@ -33903,8 +33955,8 @@ BiGuideCl.defaultProps = {
|
|
|
33903
33955
|
size: '1em'
|
|
33904
33956
|
};
|
|
33905
33957
|
|
|
33906
|
-
var _excluded$
|
|
33907
|
-
var loadingCircleStyle$
|
|
33958
|
+
var _excluded$8Q = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
33959
|
+
var loadingCircleStyle$8Q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
33908
33960
|
var BiStratificationCl = function BiStratificationCl(props) {
|
|
33909
33961
|
var color = props.color,
|
|
33910
33962
|
size = props.size,
|
|
@@ -33913,12 +33965,12 @@ var BiStratificationCl = function BiStratificationCl(props) {
|
|
|
33913
33965
|
className = props.className,
|
|
33914
33966
|
iconClassName = props.iconClassName,
|
|
33915
33967
|
testid = props.testid,
|
|
33916
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
33968
|
+
otherProps = _objectWithoutProperties(props, _excluded$8Q);
|
|
33917
33969
|
return /*#__PURE__*/React.createElement("span", {
|
|
33918
33970
|
role: "img",
|
|
33919
33971
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33920
33972
|
}, /*#__PURE__*/React.createElement("style", {
|
|
33921
|
-
children: loadingCircleStyle$
|
|
33973
|
+
children: loadingCircleStyle$8Q
|
|
33922
33974
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
33923
33975
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33924
33976
|
width: size,
|
|
@@ -34008,8 +34060,8 @@ BiStratificationCl.defaultProps = {
|
|
|
34008
34060
|
size: '1em'
|
|
34009
34061
|
};
|
|
34010
34062
|
|
|
34011
|
-
var _excluded$
|
|
34012
|
-
var loadingCircleStyle$
|
|
34063
|
+
var _excluded$8R = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34064
|
+
var loadingCircleStyle$8R = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34013
34065
|
var BiControlCl = function BiControlCl(props) {
|
|
34014
34066
|
var color = props.color,
|
|
34015
34067
|
size = props.size,
|
|
@@ -34018,12 +34070,12 @@ var BiControlCl = function BiControlCl(props) {
|
|
|
34018
34070
|
className = props.className,
|
|
34019
34071
|
iconClassName = props.iconClassName,
|
|
34020
34072
|
testid = props.testid,
|
|
34021
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34073
|
+
otherProps = _objectWithoutProperties(props, _excluded$8R);
|
|
34022
34074
|
return /*#__PURE__*/React.createElement("span", {
|
|
34023
34075
|
role: "img",
|
|
34024
34076
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34025
34077
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34026
|
-
children: loadingCircleStyle$
|
|
34078
|
+
children: loadingCircleStyle$8R
|
|
34027
34079
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34028
34080
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34029
34081
|
width: size,
|
|
@@ -34113,8 +34165,8 @@ BiControlCl.defaultProps = {
|
|
|
34113
34165
|
size: '1em'
|
|
34114
34166
|
};
|
|
34115
34167
|
|
|
34116
|
-
var _excluded$
|
|
34117
|
-
var loadingCircleStyle$
|
|
34168
|
+
var _excluded$8S = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34169
|
+
var loadingCircleStyle$8S = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34118
34170
|
var BiClosedLoopCl = function BiClosedLoopCl(props) {
|
|
34119
34171
|
var color = props.color,
|
|
34120
34172
|
size = props.size,
|
|
@@ -34123,12 +34175,12 @@ var BiClosedLoopCl = function BiClosedLoopCl(props) {
|
|
|
34123
34175
|
className = props.className,
|
|
34124
34176
|
iconClassName = props.iconClassName,
|
|
34125
34177
|
testid = props.testid,
|
|
34126
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34178
|
+
otherProps = _objectWithoutProperties(props, _excluded$8S);
|
|
34127
34179
|
return /*#__PURE__*/React.createElement("span", {
|
|
34128
34180
|
role: "img",
|
|
34129
34181
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34130
34182
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34131
|
-
children: loadingCircleStyle$
|
|
34183
|
+
children: loadingCircleStyle$8S
|
|
34132
34184
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34133
34185
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34134
34186
|
width: size,
|
|
@@ -34220,8 +34272,8 @@ BiClosedLoopCl.defaultProps = {
|
|
|
34220
34272
|
size: '1em'
|
|
34221
34273
|
};
|
|
34222
34274
|
|
|
34223
|
-
var _excluded$
|
|
34224
|
-
var loadingCircleStyle$
|
|
34275
|
+
var _excluded$8T = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34276
|
+
var loadingCircleStyle$8T = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34225
34277
|
var BiDataClosedLoopCl = function BiDataClosedLoopCl(props) {
|
|
34226
34278
|
var color = props.color,
|
|
34227
34279
|
size = props.size,
|
|
@@ -34230,12 +34282,12 @@ var BiDataClosedLoopCl = function BiDataClosedLoopCl(props) {
|
|
|
34230
34282
|
className = props.className,
|
|
34231
34283
|
iconClassName = props.iconClassName,
|
|
34232
34284
|
testid = props.testid,
|
|
34233
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34285
|
+
otherProps = _objectWithoutProperties(props, _excluded$8T);
|
|
34234
34286
|
return /*#__PURE__*/React.createElement("span", {
|
|
34235
34287
|
role: "img",
|
|
34236
34288
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34237
34289
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34238
|
-
children: loadingCircleStyle$
|
|
34290
|
+
children: loadingCircleStyle$8T
|
|
34239
34291
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34240
34292
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34241
34293
|
width: size,
|
|
@@ -34325,8 +34377,8 @@ BiDataClosedLoopCl.defaultProps = {
|
|
|
34325
34377
|
size: '1em'
|
|
34326
34378
|
};
|
|
34327
34379
|
|
|
34328
|
-
var _excluded$
|
|
34329
|
-
var loadingCircleStyle$
|
|
34380
|
+
var _excluded$8U = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34381
|
+
var loadingCircleStyle$8U = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34330
34382
|
var BiReachCl = function BiReachCl(props) {
|
|
34331
34383
|
var color = props.color,
|
|
34332
34384
|
size = props.size,
|
|
@@ -34335,12 +34387,12 @@ var BiReachCl = function BiReachCl(props) {
|
|
|
34335
34387
|
className = props.className,
|
|
34336
34388
|
iconClassName = props.iconClassName,
|
|
34337
34389
|
testid = props.testid,
|
|
34338
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34390
|
+
otherProps = _objectWithoutProperties(props, _excluded$8U);
|
|
34339
34391
|
return /*#__PURE__*/React.createElement("span", {
|
|
34340
34392
|
role: "img",
|
|
34341
34393
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34342
34394
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34343
|
-
children: loadingCircleStyle$
|
|
34395
|
+
children: loadingCircleStyle$8U
|
|
34344
34396
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34345
34397
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34346
34398
|
width: size,
|
|
@@ -34436,8 +34488,8 @@ BiReachCl.defaultProps = {
|
|
|
34436
34488
|
size: '1em'
|
|
34437
34489
|
};
|
|
34438
34490
|
|
|
34439
|
-
var _excluded$
|
|
34440
|
-
var loadingCircleStyle$
|
|
34491
|
+
var _excluded$8V = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34492
|
+
var loadingCircleStyle$8V = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34441
34493
|
var BiIndicatorCl = function BiIndicatorCl(props) {
|
|
34442
34494
|
var color = props.color,
|
|
34443
34495
|
size = props.size,
|
|
@@ -34446,12 +34498,12 @@ var BiIndicatorCl = function BiIndicatorCl(props) {
|
|
|
34446
34498
|
className = props.className,
|
|
34447
34499
|
iconClassName = props.iconClassName,
|
|
34448
34500
|
testid = props.testid,
|
|
34449
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34501
|
+
otherProps = _objectWithoutProperties(props, _excluded$8V);
|
|
34450
34502
|
return /*#__PURE__*/React.createElement("span", {
|
|
34451
34503
|
role: "img",
|
|
34452
34504
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34453
34505
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34454
|
-
children: loadingCircleStyle$
|
|
34506
|
+
children: loadingCircleStyle$8V
|
|
34455
34507
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34456
34508
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34457
34509
|
width: size,
|
|
@@ -34541,8 +34593,8 @@ BiIndicatorCl.defaultProps = {
|
|
|
34541
34593
|
size: '1em'
|
|
34542
34594
|
};
|
|
34543
34595
|
|
|
34544
|
-
var _excluded$
|
|
34545
|
-
var loadingCircleStyle$
|
|
34596
|
+
var _excluded$8W = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34597
|
+
var loadingCircleStyle$8W = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34546
34598
|
var BiSupportCl = function BiSupportCl(props) {
|
|
34547
34599
|
var color = props.color,
|
|
34548
34600
|
size = props.size,
|
|
@@ -34551,12 +34603,12 @@ var BiSupportCl = function BiSupportCl(props) {
|
|
|
34551
34603
|
className = props.className,
|
|
34552
34604
|
iconClassName = props.iconClassName,
|
|
34553
34605
|
testid = props.testid,
|
|
34554
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34606
|
+
otherProps = _objectWithoutProperties(props, _excluded$8W);
|
|
34555
34607
|
return /*#__PURE__*/React.createElement("span", {
|
|
34556
34608
|
role: "img",
|
|
34557
34609
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34558
34610
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34559
|
-
children: loadingCircleStyle$
|
|
34611
|
+
children: loadingCircleStyle$8W
|
|
34560
34612
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34561
34613
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34562
34614
|
width: size,
|
|
@@ -34646,8 +34698,8 @@ BiSupportCl.defaultProps = {
|
|
|
34646
34698
|
size: '1em'
|
|
34647
34699
|
};
|
|
34648
34700
|
|
|
34649
|
-
var _excluded$
|
|
34650
|
-
var loadingCircleStyle$
|
|
34701
|
+
var _excluded$8X = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34702
|
+
var loadingCircleStyle$8X = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34651
34703
|
var BiGiftCl = function BiGiftCl(props) {
|
|
34652
34704
|
var color = props.color,
|
|
34653
34705
|
size = props.size,
|
|
@@ -34656,12 +34708,12 @@ var BiGiftCl = function BiGiftCl(props) {
|
|
|
34656
34708
|
className = props.className,
|
|
34657
34709
|
iconClassName = props.iconClassName,
|
|
34658
34710
|
testid = props.testid,
|
|
34659
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34711
|
+
otherProps = _objectWithoutProperties(props, _excluded$8X);
|
|
34660
34712
|
return /*#__PURE__*/React.createElement("span", {
|
|
34661
34713
|
role: "img",
|
|
34662
34714
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34663
34715
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34664
|
-
children: loadingCircleStyle$
|
|
34716
|
+
children: loadingCircleStyle$8X
|
|
34665
34717
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34666
34718
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34667
34719
|
width: size,
|
|
@@ -34751,8 +34803,8 @@ BiGiftCl.defaultProps = {
|
|
|
34751
34803
|
size: '1em'
|
|
34752
34804
|
};
|
|
34753
34805
|
|
|
34754
|
-
var _excluded$
|
|
34755
|
-
var loadingCircleStyle$
|
|
34806
|
+
var _excluded$8Y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34807
|
+
var loadingCircleStyle$8Y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34756
34808
|
var BiModelCl = function BiModelCl(props) {
|
|
34757
34809
|
var color = props.color,
|
|
34758
34810
|
size = props.size,
|
|
@@ -34761,12 +34813,12 @@ var BiModelCl = function BiModelCl(props) {
|
|
|
34761
34813
|
className = props.className,
|
|
34762
34814
|
iconClassName = props.iconClassName,
|
|
34763
34815
|
testid = props.testid,
|
|
34764
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34816
|
+
otherProps = _objectWithoutProperties(props, _excluded$8Y);
|
|
34765
34817
|
return /*#__PURE__*/React.createElement("span", {
|
|
34766
34818
|
role: "img",
|
|
34767
34819
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34768
34820
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34769
|
-
children: loadingCircleStyle$
|
|
34821
|
+
children: loadingCircleStyle$8Y
|
|
34770
34822
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34771
34823
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34772
34824
|
width: size,
|
|
@@ -34856,8 +34908,8 @@ BiModelCl.defaultProps = {
|
|
|
34856
34908
|
size: '1em'
|
|
34857
34909
|
};
|
|
34858
34910
|
|
|
34859
|
-
var _excluded$
|
|
34860
|
-
var loadingCircleStyle$
|
|
34911
|
+
var _excluded$8Z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
34912
|
+
var loadingCircleStyle$8Z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34861
34913
|
var BiAnalysisCl = function BiAnalysisCl(props) {
|
|
34862
34914
|
var color = props.color,
|
|
34863
34915
|
size = props.size,
|
|
@@ -34866,12 +34918,12 @@ var BiAnalysisCl = function BiAnalysisCl(props) {
|
|
|
34866
34918
|
className = props.className,
|
|
34867
34919
|
iconClassName = props.iconClassName,
|
|
34868
34920
|
testid = props.testid,
|
|
34869
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
34921
|
+
otherProps = _objectWithoutProperties(props, _excluded$8Z);
|
|
34870
34922
|
return /*#__PURE__*/React.createElement("span", {
|
|
34871
34923
|
role: "img",
|
|
34872
34924
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34873
34925
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34874
|
-
children: loadingCircleStyle$
|
|
34926
|
+
children: loadingCircleStyle$8Z
|
|
34875
34927
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34876
34928
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34877
34929
|
width: size,
|
|
@@ -34961,8 +35013,8 @@ BiAnalysisCl.defaultProps = {
|
|
|
34961
35013
|
size: '1em'
|
|
34962
35014
|
};
|
|
34963
35015
|
|
|
34964
|
-
var _excluded$
|
|
34965
|
-
var loadingCircleStyle$
|
|
35016
|
+
var _excluded$8_ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
35017
|
+
var loadingCircleStyle$8_ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
34966
35018
|
var BiGameplayCl = function BiGameplayCl(props) {
|
|
34967
35019
|
var color = props.color,
|
|
34968
35020
|
size = props.size,
|
|
@@ -34971,12 +35023,12 @@ var BiGameplayCl = function BiGameplayCl(props) {
|
|
|
34971
35023
|
className = props.className,
|
|
34972
35024
|
iconClassName = props.iconClassName,
|
|
34973
35025
|
testid = props.testid,
|
|
34974
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
35026
|
+
otherProps = _objectWithoutProperties(props, _excluded$8_);
|
|
34975
35027
|
return /*#__PURE__*/React.createElement("span", {
|
|
34976
35028
|
role: "img",
|
|
34977
35029
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
34978
35030
|
}, /*#__PURE__*/React.createElement("style", {
|
|
34979
|
-
children: loadingCircleStyle$
|
|
35031
|
+
children: loadingCircleStyle$8_
|
|
34980
35032
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34981
35033
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34982
35034
|
width: size,
|
|
@@ -35066,8 +35118,8 @@ BiGameplayCl.defaultProps = {
|
|
|
35066
35118
|
size: '1em'
|
|
35067
35119
|
};
|
|
35068
35120
|
|
|
35069
|
-
var _excluded$
|
|
35070
|
-
var loadingCircleStyle$
|
|
35121
|
+
var _excluded$8$ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
35122
|
+
var loadingCircleStyle$8$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
35071
35123
|
var BiPathAnalysisCl = function BiPathAnalysisCl(props) {
|
|
35072
35124
|
var color = props.color,
|
|
35073
35125
|
size = props.size,
|
|
@@ -35076,12 +35128,12 @@ var BiPathAnalysisCl = function BiPathAnalysisCl(props) {
|
|
|
35076
35128
|
className = props.className,
|
|
35077
35129
|
iconClassName = props.iconClassName,
|
|
35078
35130
|
testid = props.testid,
|
|
35079
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
35131
|
+
otherProps = _objectWithoutProperties(props, _excluded$8$);
|
|
35080
35132
|
return /*#__PURE__*/React.createElement("span", {
|
|
35081
35133
|
role: "img",
|
|
35082
35134
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
35083
35135
|
}, /*#__PURE__*/React.createElement("style", {
|
|
35084
|
-
children: loadingCircleStyle$
|
|
35136
|
+
children: loadingCircleStyle$8$
|
|
35085
35137
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
35086
35138
|
xmlns: "http://www.w3.org/2000/svg",
|
|
35087
35139
|
width: size,
|
|
@@ -35171,8 +35223,8 @@ BiPathAnalysisCl.defaultProps = {
|
|
|
35171
35223
|
size: '1em'
|
|
35172
35224
|
};
|
|
35173
35225
|
|
|
35174
|
-
var _excluded$
|
|
35175
|
-
var loadingCircleStyle$
|
|
35226
|
+
var _excluded$90 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
35227
|
+
var loadingCircleStyle$90 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
35176
35228
|
var BiGroupCl = function BiGroupCl(props) {
|
|
35177
35229
|
var color = props.color,
|
|
35178
35230
|
size = props.size,
|
|
@@ -35181,12 +35233,12 @@ var BiGroupCl = function BiGroupCl(props) {
|
|
|
35181
35233
|
className = props.className,
|
|
35182
35234
|
iconClassName = props.iconClassName,
|
|
35183
35235
|
testid = props.testid,
|
|
35184
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
35236
|
+
otherProps = _objectWithoutProperties(props, _excluded$90);
|
|
35185
35237
|
return /*#__PURE__*/React.createElement("span", {
|
|
35186
35238
|
role: "img",
|
|
35187
35239
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
35188
35240
|
}, /*#__PURE__*/React.createElement("style", {
|
|
35189
|
-
children: loadingCircleStyle$
|
|
35241
|
+
children: loadingCircleStyle$90
|
|
35190
35242
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
35191
35243
|
xmlns: "http://www.w3.org/2000/svg",
|
|
35192
35244
|
width: size,
|
|
@@ -35276,8 +35328,8 @@ BiGroupCl.defaultProps = {
|
|
|
35276
35328
|
size: '1em'
|
|
35277
35329
|
};
|
|
35278
35330
|
|
|
35279
|
-
var _excluded$
|
|
35280
|
-
var loadingCircleStyle$
|
|
35331
|
+
var _excluded$91 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
35332
|
+
var loadingCircleStyle$91 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
35281
35333
|
var BiCrowdCl = function BiCrowdCl(props) {
|
|
35282
35334
|
var color = props.color,
|
|
35283
35335
|
size = props.size,
|
|
@@ -35286,12 +35338,12 @@ var BiCrowdCl = function BiCrowdCl(props) {
|
|
|
35286
35338
|
className = props.className,
|
|
35287
35339
|
iconClassName = props.iconClassName,
|
|
35288
35340
|
testid = props.testid,
|
|
35289
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
35341
|
+
otherProps = _objectWithoutProperties(props, _excluded$91);
|
|
35290
35342
|
return /*#__PURE__*/React.createElement("span", {
|
|
35291
35343
|
role: "img",
|
|
35292
35344
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
35293
35345
|
}, /*#__PURE__*/React.createElement("style", {
|
|
35294
|
-
children: loadingCircleStyle$
|
|
35346
|
+
children: loadingCircleStyle$91
|
|
35295
35347
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
35296
35348
|
xmlns: "http://www.w3.org/2000/svg",
|
|
35297
35349
|
width: size,
|
|
@@ -35381,8 +35433,8 @@ BiCrowdCl.defaultProps = {
|
|
|
35381
35433
|
size: '1em'
|
|
35382
35434
|
};
|
|
35383
35435
|
|
|
35384
|
-
var _excluded$
|
|
35385
|
-
var loadingCircleStyle$
|
|
35436
|
+
var _excluded$92 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
35437
|
+
var loadingCircleStyle$92 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
35386
35438
|
var BiMmoGameCl = function BiMmoGameCl(props) {
|
|
35387
35439
|
var color = props.color,
|
|
35388
35440
|
size = props.size,
|
|
@@ -35391,12 +35443,12 @@ var BiMmoGameCl = function BiMmoGameCl(props) {
|
|
|
35391
35443
|
className = props.className,
|
|
35392
35444
|
iconClassName = props.iconClassName,
|
|
35393
35445
|
testid = props.testid,
|
|
35394
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
35446
|
+
otherProps = _objectWithoutProperties(props, _excluded$92);
|
|
35395
35447
|
return /*#__PURE__*/React.createElement("span", {
|
|
35396
35448
|
role: "img",
|
|
35397
35449
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
35398
35450
|
}, /*#__PURE__*/React.createElement("style", {
|
|
35399
|
-
children: loadingCircleStyle$
|
|
35451
|
+
children: loadingCircleStyle$92
|
|
35400
35452
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
35401
35453
|
xmlns: "http://www.w3.org/2000/svg",
|
|
35402
35454
|
width: size,
|
|
@@ -35685,8 +35737,8 @@ BiMmoGameCl.defaultProps = {
|
|
|
35685
35737
|
size: '1em'
|
|
35686
35738
|
};
|
|
35687
35739
|
|
|
35688
|
-
var _excluded$
|
|
35689
|
-
var loadingCircleStyle$
|
|
35740
|
+
var _excluded$93 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
35741
|
+
var loadingCircleStyle$93 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
35690
35742
|
var BiCardGameCl = function BiCardGameCl(props) {
|
|
35691
35743
|
var color = props.color,
|
|
35692
35744
|
size = props.size,
|
|
@@ -35695,12 +35747,12 @@ var BiCardGameCl = function BiCardGameCl(props) {
|
|
|
35695
35747
|
className = props.className,
|
|
35696
35748
|
iconClassName = props.iconClassName,
|
|
35697
35749
|
testid = props.testid,
|
|
35698
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
35750
|
+
otherProps = _objectWithoutProperties(props, _excluded$93);
|
|
35699
35751
|
return /*#__PURE__*/React.createElement("span", {
|
|
35700
35752
|
role: "img",
|
|
35701
35753
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
35702
35754
|
}, /*#__PURE__*/React.createElement("style", {
|
|
35703
|
-
children: loadingCircleStyle$
|
|
35755
|
+
children: loadingCircleStyle$93
|
|
35704
35756
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
35705
35757
|
xmlns: "http://www.w3.org/2000/svg",
|
|
35706
35758
|
width: size,
|
|
@@ -36095,8 +36147,8 @@ BiCardGameCl.defaultProps = {
|
|
|
36095
36147
|
size: '1em'
|
|
36096
36148
|
};
|
|
36097
36149
|
|
|
36098
|
-
var _excluded$
|
|
36099
|
-
var loadingCircleStyle$
|
|
36150
|
+
var _excluded$94 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
36151
|
+
var loadingCircleStyle$94 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
36100
36152
|
var BiSlgGameCl = function BiSlgGameCl(props) {
|
|
36101
36153
|
var color = props.color,
|
|
36102
36154
|
size = props.size,
|
|
@@ -36105,12 +36157,12 @@ var BiSlgGameCl = function BiSlgGameCl(props) {
|
|
|
36105
36157
|
className = props.className,
|
|
36106
36158
|
iconClassName = props.iconClassName,
|
|
36107
36159
|
testid = props.testid,
|
|
36108
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
36160
|
+
otherProps = _objectWithoutProperties(props, _excluded$94);
|
|
36109
36161
|
return /*#__PURE__*/React.createElement("span", {
|
|
36110
36162
|
role: "img",
|
|
36111
36163
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
36112
36164
|
}, /*#__PURE__*/React.createElement("style", {
|
|
36113
|
-
children: loadingCircleStyle$
|
|
36165
|
+
children: loadingCircleStyle$94
|
|
36114
36166
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
36115
36167
|
xmlns: "http://www.w3.org/2000/svg",
|
|
36116
36168
|
width: size,
|
|
@@ -36387,8 +36439,8 @@ BiSlgGameCl.defaultProps = {
|
|
|
36387
36439
|
size: '1em'
|
|
36388
36440
|
};
|
|
36389
36441
|
|
|
36390
|
-
var _excluded$
|
|
36391
|
-
var loadingCircleStyle$
|
|
36442
|
+
var _excluded$95 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
36443
|
+
var loadingCircleStyle$95 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
36392
36444
|
var BiCasuaGameCl = function BiCasuaGameCl(props) {
|
|
36393
36445
|
var color = props.color,
|
|
36394
36446
|
size = props.size,
|
|
@@ -36397,12 +36449,12 @@ var BiCasuaGameCl = function BiCasuaGameCl(props) {
|
|
|
36397
36449
|
className = props.className,
|
|
36398
36450
|
iconClassName = props.iconClassName,
|
|
36399
36451
|
testid = props.testid,
|
|
36400
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
36452
|
+
otherProps = _objectWithoutProperties(props, _excluded$95);
|
|
36401
36453
|
return /*#__PURE__*/React.createElement("span", {
|
|
36402
36454
|
role: "img",
|
|
36403
36455
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
36404
36456
|
}, /*#__PURE__*/React.createElement("style", {
|
|
36405
|
-
children: loadingCircleStyle$
|
|
36457
|
+
children: loadingCircleStyle$95
|
|
36406
36458
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
36407
36459
|
xmlns: "http://www.w3.org/2000/svg",
|
|
36408
36460
|
width: size,
|
|
@@ -36922,8 +36974,8 @@ BiCasuaGameCl.defaultProps = {
|
|
|
36922
36974
|
size: '1em'
|
|
36923
36975
|
};
|
|
36924
36976
|
|
|
36925
|
-
var _excluded$
|
|
36926
|
-
var loadingCircleStyle$
|
|
36977
|
+
var _excluded$96 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
36978
|
+
var loadingCircleStyle$96 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
36927
36979
|
var BiSimulatedOperationCl = function BiSimulatedOperationCl(props) {
|
|
36928
36980
|
var color = props.color,
|
|
36929
36981
|
size = props.size,
|
|
@@ -36932,12 +36984,12 @@ var BiSimulatedOperationCl = function BiSimulatedOperationCl(props) {
|
|
|
36932
36984
|
className = props.className,
|
|
36933
36985
|
iconClassName = props.iconClassName,
|
|
36934
36986
|
testid = props.testid,
|
|
36935
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
36987
|
+
otherProps = _objectWithoutProperties(props, _excluded$96);
|
|
36936
36988
|
return /*#__PURE__*/React.createElement("span", {
|
|
36937
36989
|
role: "img",
|
|
36938
36990
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
36939
36991
|
}, /*#__PURE__*/React.createElement("style", {
|
|
36940
|
-
children: loadingCircleStyle$
|
|
36992
|
+
children: loadingCircleStyle$96
|
|
36941
36993
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
36942
36994
|
xmlns: "http://www.w3.org/2000/svg",
|
|
36943
36995
|
width: size,
|
|
@@ -37589,8 +37641,8 @@ BiSimulatedOperationCl.defaultProps = {
|
|
|
37589
37641
|
size: '1em'
|
|
37590
37642
|
};
|
|
37591
37643
|
|
|
37592
|
-
var _excluded$
|
|
37593
|
-
var loadingCircleStyle$
|
|
37644
|
+
var _excluded$97 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
37645
|
+
var loadingCircleStyle$97 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
37594
37646
|
var BiMiniGameCl = function BiMiniGameCl(props) {
|
|
37595
37647
|
var color = props.color,
|
|
37596
37648
|
size = props.size,
|
|
@@ -37599,12 +37651,12 @@ var BiMiniGameCl = function BiMiniGameCl(props) {
|
|
|
37599
37651
|
className = props.className,
|
|
37600
37652
|
iconClassName = props.iconClassName,
|
|
37601
37653
|
testid = props.testid,
|
|
37602
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
37654
|
+
otherProps = _objectWithoutProperties(props, _excluded$97);
|
|
37603
37655
|
return /*#__PURE__*/React.createElement("span", {
|
|
37604
37656
|
role: "img",
|
|
37605
37657
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
37606
37658
|
}, /*#__PURE__*/React.createElement("style", {
|
|
37607
|
-
children: loadingCircleStyle$
|
|
37659
|
+
children: loadingCircleStyle$97
|
|
37608
37660
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
37609
37661
|
xmlns: "http://www.w3.org/2000/svg",
|
|
37610
37662
|
width: size,
|
|
@@ -38072,8 +38124,8 @@ BiMiniGameCl.defaultProps = {
|
|
|
38072
38124
|
size: '1em'
|
|
38073
38125
|
};
|
|
38074
38126
|
|
|
38075
|
-
var _excluded$
|
|
38076
|
-
var loadingCircleStyle$
|
|
38127
|
+
var _excluded$98 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
38128
|
+
var loadingCircleStyle$98 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
38077
38129
|
var BiSocialApplicationCl = function BiSocialApplicationCl(props) {
|
|
38078
38130
|
var color = props.color,
|
|
38079
38131
|
size = props.size,
|
|
@@ -38082,12 +38134,12 @@ var BiSocialApplicationCl = function BiSocialApplicationCl(props) {
|
|
|
38082
38134
|
className = props.className,
|
|
38083
38135
|
iconClassName = props.iconClassName,
|
|
38084
38136
|
testid = props.testid,
|
|
38085
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
38137
|
+
otherProps = _objectWithoutProperties(props, _excluded$98);
|
|
38086
38138
|
return /*#__PURE__*/React.createElement("span", {
|
|
38087
38139
|
role: "img",
|
|
38088
38140
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
38089
38141
|
}, /*#__PURE__*/React.createElement("style", {
|
|
38090
|
-
children: loadingCircleStyle$
|
|
38142
|
+
children: loadingCircleStyle$98
|
|
38091
38143
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
38092
38144
|
xmlns: "http://www.w3.org/2000/svg",
|
|
38093
38145
|
width: size,
|
|
@@ -38477,8 +38529,8 @@ BiSocialApplicationCl.defaultProps = {
|
|
|
38477
38529
|
size: '1em'
|
|
38478
38530
|
};
|
|
38479
38531
|
|
|
38480
|
-
var _excluded$
|
|
38481
|
-
var loadingCircleStyle$
|
|
38532
|
+
var _excluded$99 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
38533
|
+
var loadingCircleStyle$99 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
38482
38534
|
var BiAiApplicationCl = function BiAiApplicationCl(props) {
|
|
38483
38535
|
var color = props.color,
|
|
38484
38536
|
size = props.size,
|
|
@@ -38487,12 +38539,12 @@ var BiAiApplicationCl = function BiAiApplicationCl(props) {
|
|
|
38487
38539
|
className = props.className,
|
|
38488
38540
|
iconClassName = props.iconClassName,
|
|
38489
38541
|
testid = props.testid,
|
|
38490
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
38542
|
+
otherProps = _objectWithoutProperties(props, _excluded$99);
|
|
38491
38543
|
return /*#__PURE__*/React.createElement("span", {
|
|
38492
38544
|
role: "img",
|
|
38493
38545
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
38494
38546
|
}, /*#__PURE__*/React.createElement("style", {
|
|
38495
|
-
children: loadingCircleStyle$
|
|
38547
|
+
children: loadingCircleStyle$99
|
|
38496
38548
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
38497
38549
|
xmlns: "http://www.w3.org/2000/svg",
|
|
38498
38550
|
width: size,
|
|
@@ -38787,8 +38839,8 @@ BiAiApplicationCl.defaultProps = {
|
|
|
38787
38839
|
size: '1em'
|
|
38788
38840
|
};
|
|
38789
38841
|
|
|
38790
|
-
var _excluded$
|
|
38791
|
-
var loadingCircleStyle$
|
|
38842
|
+
var _excluded$9a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
38843
|
+
var loadingCircleStyle$9a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
38792
38844
|
var BiShortPlayCl = function BiShortPlayCl(props) {
|
|
38793
38845
|
var color = props.color,
|
|
38794
38846
|
size = props.size,
|
|
@@ -38797,12 +38849,12 @@ var BiShortPlayCl = function BiShortPlayCl(props) {
|
|
|
38797
38849
|
className = props.className,
|
|
38798
38850
|
iconClassName = props.iconClassName,
|
|
38799
38851
|
testid = props.testid,
|
|
38800
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
38852
|
+
otherProps = _objectWithoutProperties(props, _excluded$9a);
|
|
38801
38853
|
return /*#__PURE__*/React.createElement("span", {
|
|
38802
38854
|
role: "img",
|
|
38803
38855
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
38804
38856
|
}, /*#__PURE__*/React.createElement("style", {
|
|
38805
|
-
children: loadingCircleStyle$
|
|
38857
|
+
children: loadingCircleStyle$9a
|
|
38806
38858
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
38807
38859
|
xmlns: "http://www.w3.org/2000/svg",
|
|
38808
38860
|
width: size,
|
|
@@ -39083,8 +39135,8 @@ BiShortPlayCl.defaultProps = {
|
|
|
39083
39135
|
size: '1em'
|
|
39084
39136
|
};
|
|
39085
39137
|
|
|
39086
|
-
var _excluded$
|
|
39087
|
-
var loadingCircleStyle$
|
|
39138
|
+
var _excluded$9b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
39139
|
+
var loadingCircleStyle$9b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
39088
39140
|
var BiNovelCl = function BiNovelCl(props) {
|
|
39089
39141
|
var color = props.color,
|
|
39090
39142
|
size = props.size,
|
|
@@ -39093,12 +39145,12 @@ var BiNovelCl = function BiNovelCl(props) {
|
|
|
39093
39145
|
className = props.className,
|
|
39094
39146
|
iconClassName = props.iconClassName,
|
|
39095
39147
|
testid = props.testid,
|
|
39096
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
39148
|
+
otherProps = _objectWithoutProperties(props, _excluded$9b);
|
|
39097
39149
|
return /*#__PURE__*/React.createElement("span", {
|
|
39098
39150
|
role: "img",
|
|
39099
39151
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
39100
39152
|
}, /*#__PURE__*/React.createElement("style", {
|
|
39101
|
-
children: loadingCircleStyle$
|
|
39153
|
+
children: loadingCircleStyle$9b
|
|
39102
39154
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
39103
39155
|
xmlns: "http://www.w3.org/2000/svg",
|
|
39104
39156
|
width: size,
|
|
@@ -39626,8 +39678,8 @@ BiNovelCl.defaultProps = {
|
|
|
39626
39678
|
size: '1em'
|
|
39627
39679
|
};
|
|
39628
39680
|
|
|
39629
|
-
var _excluded$
|
|
39630
|
-
var loadingCircleStyle$
|
|
39681
|
+
var _excluded$9c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
39682
|
+
var loadingCircleStyle$9c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
39631
39683
|
var BiEducationCl = function BiEducationCl(props) {
|
|
39632
39684
|
var color = props.color,
|
|
39633
39685
|
size = props.size,
|
|
@@ -39636,12 +39688,12 @@ var BiEducationCl = function BiEducationCl(props) {
|
|
|
39636
39688
|
className = props.className,
|
|
39637
39689
|
iconClassName = props.iconClassName,
|
|
39638
39690
|
testid = props.testid,
|
|
39639
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
39691
|
+
otherProps = _objectWithoutProperties(props, _excluded$9c);
|
|
39640
39692
|
return /*#__PURE__*/React.createElement("span", {
|
|
39641
39693
|
role: "img",
|
|
39642
39694
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
39643
39695
|
}, /*#__PURE__*/React.createElement("style", {
|
|
39644
|
-
children: loadingCircleStyle$
|
|
39696
|
+
children: loadingCircleStyle$9c
|
|
39645
39697
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
39646
39698
|
xmlns: "http://www.w3.org/2000/svg",
|
|
39647
39699
|
width: size,
|
|
@@ -40030,8 +40082,8 @@ BiEducationCl.defaultProps = {
|
|
|
40030
40082
|
size: '1em'
|
|
40031
40083
|
};
|
|
40032
40084
|
|
|
40033
|
-
var _excluded$
|
|
40034
|
-
var loadingCircleStyle$
|
|
40085
|
+
var _excluded$9d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
40086
|
+
var loadingCircleStyle$9d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
40035
40087
|
var BiShoppingCartCl = function BiShoppingCartCl(props) {
|
|
40036
40088
|
var color = props.color,
|
|
40037
40089
|
size = props.size,
|
|
@@ -40040,12 +40092,12 @@ var BiShoppingCartCl = function BiShoppingCartCl(props) {
|
|
|
40040
40092
|
className = props.className,
|
|
40041
40093
|
iconClassName = props.iconClassName,
|
|
40042
40094
|
testid = props.testid,
|
|
40043
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
40095
|
+
otherProps = _objectWithoutProperties(props, _excluded$9d);
|
|
40044
40096
|
return /*#__PURE__*/React.createElement("span", {
|
|
40045
40097
|
role: "img",
|
|
40046
40098
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
40047
40099
|
}, /*#__PURE__*/React.createElement("style", {
|
|
40048
|
-
children: loadingCircleStyle$
|
|
40100
|
+
children: loadingCircleStyle$9d
|
|
40049
40101
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
40050
40102
|
xmlns: "http://www.w3.org/2000/svg",
|
|
40051
40103
|
width: size,
|
|
@@ -40413,4 +40465,4 @@ BiShoppingCartCl.defaultProps = {
|
|
|
40413
40465
|
size: '1em'
|
|
40414
40466
|
};
|
|
40415
40467
|
|
|
40416
|
-
export { Add1 as TaAdd1, Add2 as TaAdd2, Add3 as TaAdd3, Add3Fill as TaAdd3Fill, AddIndexCl as TaAddIndexCl, AddToPage as TaAddToPage, Alert as TaAlert, AlertCl as TaAlertCl, AlignCenter as TaAlignCenter, AlignLeft as TaAlignLeft, AlignLegendBottom as TaAlignLegendBottom, AlignLegendLeft as TaAlignLegendLeft, AlignLegendRight as TaAlignLegendRight, AlignLegendTop as TaAlignLegendTop, AlignRight as TaAlignRight, AllGroupSm as TaAllGroupSm, Analysis as TaAnalysis, Anchor as TaAnchor, Application as TaApplication, Approve as TaApprove, ArrayRowsSm as TaArrayRowsSm, ArrowClose as TaArrowClose, ArrowDown as TaArrowDown, ArrowDown2 as TaArrowDown2, ArrowExpand as TaArrowExpand, ArrowGoBack as TaArrowGoBack, ArrowGoForward as TaArrowGoForward, ArrowLeft as TaArrowLeft, ArrowLeft2 as TaArrowLeft2, ArrowLeftDown as TaArrowLeftDown, ArrowRight as TaArrowRight, ArrowRight2 as TaArrowRight2, ArrowRightup as TaArrowRightup, ArrowUp as TaArrowUp, ArrowUp2 as TaArrowUp2, Ascent as TaAscent, Attachment as TaAttachment, Attribution as TaAttribution, AutoLayout as TaAutoLayout, AvatarGroupCl as TaAvatarGroupCl, AvatarProjectCl as TaAvatarProjectCl, Backup as TaBackup, Bell as TaBell, Bell2Fill as TaBell2Fill, BiAiApplicationCl as TaBiAiApplicationCl, BiAiCl as TaBiAiCl, BiAlertCl as TaBiAlertCl, BiAnalysisCl as TaBiAnalysisCl, BiBeginnerGuideCl as TaBiBeginnerGuideCl, BiCardGameCl as TaBiCardGameCl, BiCasuaGameCl as TaBiCasuaGameCl, BiChannelReachCl as TaBiChannelReachCl, BiClosedLoopCl as TaBiClosedLoopCl, BiCommercialAdaptationCl as TaBiCommercialAdaptationCl, BiControlCl as TaBiControlCl, BiCrowdCl as TaBiCrowdCl, BiDataClosedLoopCl as TaBiDataClosedLoopCl, BiDisassemblyCl as TaBiDisassemblyCl, BiEducationCl as TaBiEducationCl, BiGameplayCl as TaBiGameplayCl, BiGiftCl as TaBiGiftCl, BiGroupCl as TaBiGroupCl, BiGuideCl as TaBiGuideCl, BiIndicatorCl as TaBiIndicatorCl, BiMiniGameCl as TaBiMiniGameCl, BiMmoGameCl as TaBiMmoGameCl, BiModelCl as TaBiModelCl, BiNovelCl as TaBiNovelCl, BiOperationAnalysisCl as TaBiOperationAnalysisCl, BiOperationPolicyCl as TaBiOperationPolicyCl, BiOperationalEmpowermentCl as TaBiOperationalEmpowermentCl, BiPathAnalysisCl as TaBiPathAnalysisCl, BiPathCl as TaBiPathCl, BiPersonalizedDeploymentCl as TaBiPersonalizedDeploymentCl, BiQueryCl as TaBiQueryCl, BiQuickStartCl as TaBiQuickStartCl, BiReachCl as TaBiReachCl, BiShoppingCartCl as TaBiShoppingCartCl, BiShortPlayCl as TaBiShortPlayCl, BiSimulatedOperationCl as TaBiSimulatedOperationCl, BiSlgGameCl as TaBiSlgGameCl, BiSocialAnalysisCl as TaBiSocialAnalysisCl, BiSocialApplicationCl as TaBiSocialApplicationCl, BiStratificationCl as TaBiStratificationCl, BiSupportCl as TaBiSupportCl, BiTargetPlayerCl as TaBiTargetPlayerCl, BiUserIdentificationCl as TaBiUserIdentificationCl, BiUserOperationCl as TaBiUserOperationCl, BiVendor as TaBiVendor, BiVendorFillCl as TaBiVendorFillCl, Book as TaBook, Book2 as TaBook2, Bookmark as TaBookmark, Bookmark2 as TaBookmark2, BooleanSm as TaBooleanSm, Box as TaBox, BoxOpen as TaBoxOpen, Branch as TaBranch, Bring as TaBring, BuildMode as TaBuildMode, BuiltIn as TaBuiltIn, Calendar as TaCalendar, CalendarCheck as TaCalendarCheck, CalendarSm as TaCalendarSm, Card as TaCard, Cellphone as TaCellphone, Certified as TaCertified, ChartBar as TaChartBar, ChartBarTable as TaChartBarTable, ChartCombinedTable as TaChartCombinedTable, ChartComplex as TaChartComplex, ChartCum as TaChartCum, ChartDNRe as TaChartDNRe, ChartDRe as TaChartDRe, ChartDistTable as TaChartDistTable, ChartFieldlist as TaChartFieldlist, ChartFunnel as TaChartFunnel, ChartGantt as TaChartGantt, ChartHistogram as TaChartHistogram, ChartInterval as TaChartInterval, ChartLine as TaChartLine, ChartLineTable as TaChartLineTable, ChartPercentageBar as TaChartPercentageBar, ChartPie as TaChartPie, ChartScatter as TaChartScatter, ChartScorecard as TaChartScorecard, ChartSqltable as TaChartSqltable, ChartStack as TaChartStack, ChartStackPerc as TaChartStackPerc, ChartStackedBar as TaChartStackedBar, ChartStackn as TaChartStackn, ChartTable as TaChartTable, ChartTrophy as TaChartTrophy, ChartWordcloud as TaChartWordcloud, CircularProgressCl as TaCircularProgressCl, Clean as TaClean, Click as TaClick, Clock as TaClock, Close as TaClose, Code as TaCode, CodeVariable as TaCodeVariable, Comment as TaComment, Compass as TaCompass, Config as TaConfig, Consent as TaConsent, Contrast as TaContrast, Copy as TaCopy, Copy2 as TaCopy2, CopyDdl as TaCopyDdl, CopyQuery as TaCopyQuery, CopywritingAiCl as TaCopywritingAiCl, Cost as TaCost, Currency as TaCurrency, CustomPartition as TaCustomPartition, DArrowB as TaDArrowB, DArrowL as TaDArrowL, DArrowR as TaDArrowR, DArrowT as TaDArrowT, DAssetsCl as TaDAssetsCl, DIntegrationCl as TaDIntegrationCl, DManageCl as TaDManageCl, DTrackingCl as TaDTrackingCl, Dag as TaDag, Dashboard as TaDashboard, DashboardAiCl as TaDashboardAiCl, DashboardCl as TaDashboardCl, DashboardGenerateCl as TaDashboardGenerateCl, DashboardMgr as TaDashboardMgr, DashboardPlan as TaDashboardPlan, DashboardReadingCl as TaDashboardReadingCl, DataInput as TaDataInput, DataOpsAiCl as TaDataOpsAiCl, DataOutput as TaDataOutput, Database as TaDatabase, DateMarkCl as TaDateMarkCl, Debug as TaDebug, DebugPlay as TaDebugPlay, Delete1 as TaDelete1, Delete2 as TaDelete2, Delete2Fill as TaDelete2Fill, Demo as TaDemo, Descent as TaDescent, Desktop as TaDesktop, Detail as TaDetail, DirectConnect as TaDirectConnect, Disable as TaDisable, DisplayS as TaDisplayS, Done as TaDone, Dot as TaDot, DoubleList as TaDoubleList, Download as TaDownload, Drag as TaDrag, Drag2 as TaDrag2, DrillDown as TaDrillDown, DropDown as TaDropDown, DropUp as TaDropUp, ECampaignCl as TaECampaignCl, EChartsCl as TaEChartsCl, EConfigCl as TaEConfigCl, EFlowCl as TaEFlowCl, EPropertySm as TaEPropertySm, ESettingCl as TaESettingCl, ETaskCl as TaETaskCl, Earth as TaEarth, Edit as TaEdit, EditFill as TaEditFill, Education as TaEducation, EducationFill as TaEducationFill, Email as TaEmail, EndTask as TaEndTask, EngageAiCl as TaEngageAiCl, Error as TaError, Error2 as TaError2, Error2Fill as TaError2Fill, ErrorFill as TaErrorFill, EventMgr as TaEventMgr, EventModify as TaEventModify, EventPropMgr as TaEventPropMgr, EventShunt as TaEventShunt, EventSm as TaEventSm, EventTree as TaEventTree, Exchange as TaExchange, Expand as TaExpand, Export as TaExport, Exposure as TaExposure, Expression as TaExpression, Expression2 as TaExpression2, External as TaExternal, EyeOff as TaEyeOff, EyeOffFill as TaEyeOffFill, EyeOn as TaEyeOn, EyeOnFill as TaEyeOnFill, FileAdd as TaFileAdd, FileConvert as TaFileConvert, FileExport as TaFileExport, FileImport as TaFileImport, FileInfo as TaFileInfo, FileLock as TaFileLock, FileMove as TaFileMove, FilePdf as TaFilePdf, FileRemove as TaFileRemove, FileSqlFill as TaFileSqlFill, Filter as TaFilter, Filter2 as TaFilter2, Find as TaFind, FirstLast as TaFirstLast, FlagCn as TaFlagCn, FlagJp as TaFlagJp, FlagKr as TaFlagKr, FlagUs as TaFlagUs, Flash as TaFlash, Folder as TaFolder, FolderLine as TaFolderLine, FolderOpen as TaFolderOpen, FolderOpenLine as TaFolderOpenLine, FontBgColor as TaFontBgColor, FontBold as TaFontBold, FontColor as TaFontColor, FontItalic as TaFontItalic, FontSize as TaFontSize, Forewarning as TaForewarning, Format as TaFormat, FullDownload as TaFullDownload, Fullscreen as TaFullscreen, Function as TaFunction, Game as TaGame, GameFill as TaGameFill, Gift as TaGift, Goal as TaGoal, GoalFill as TaGoalFill, Grid as TaGrid, Group as TaGroup, GroupA2b as TaGroupA2b, GroupAddFill as TaGroupAddFill, GroupAddSm as TaGroupAddSm, GroupCl as TaGroupCl, GroupFill as TaGroupFill, GroupFill2 as TaGroupFill2, Groups as TaGroups, Hand as TaHand, Hashtag as TaHashtag, Heart as TaHeart, Heat as TaHeat, Help as TaHelp, History as TaHistory, IdFreeze as TaIdFreeze, Image as TaImage, Import as TaImport, Index as TaIndex, IndexFill as TaIndexFill, Indicator as TaIndicator, IndicatorSm as TaIndicatorSm, Info as TaInfo, InfoFill as TaInfoFill, Insert as TaInsert, Install as TaInstall, Interval as TaInterval, JsonSm as TaJsonSm, Lab as TaLab, Landscape as TaLandscape, Language as TaLanguage, LayoutFocus as TaLayoutFocus, LayoutSide as TaLayoutSide, LineCircle as TaLineCircle, LineDiamond as TaLineDiamond, LineSquare as TaLineSquare, Link as TaLink, Link2 as TaLink2, List as TaList, ListNested as TaListNested, ListOrdered as TaListOrdered, ListSm as TaListSm, ListUnordered as TaListUnordered, Live as TaLive, Location as TaLocation, LockClose as TaLockClose, LockCloseFill as TaLockCloseFill, LockOpen as TaLockOpen, LockOpenFill as TaLockOpenFill, LogoAndroidGray as TaLogoAndroidGray, LogoApiGray as TaLogoApiGray, LogoAppPushGray as TaLogoAppPushGray, LogoAppleGray as TaLogoAppleGray, LogoBitkeepCl as TaLogoBitkeepCl, LogoClientsideGray as TaLogoClientsideGray, LogoCurrencylayerCl as TaLogoCurrencylayerCl, LogoDingdingCl as TaLogoDingdingCl, LogoDingdingGray as TaLogoDingdingGray, LogoDouyinGray as TaLogoDouyinGray, LogoFcmCl as TaLogoFcmCl, LogoFeishuCl as TaLogoFeishuCl, LogoFlinkCl as TaLogoFlinkCl, LogoFutuCl as TaLogoFutuCl, LogoGarenaCl as TaLogoGarenaCl, LogoHappyelementCl as TaLogoHappyelementCl, LogoIggCl as TaLogoIggCl, LogoJiguangCl as TaLogoJiguangCl, LogoKingCl as TaLogoKingCl, LogoLitmatchCl as TaLogoLitmatchCl, LogoSparkCl as TaLogoSparkCl, LogoStarrocksCl as TaLogoStarrocksCl, LogoTrinoCl as TaLogoTrinoCl, LogoWebhookGray as TaLogoWebhookGray, LogoWechatCl as TaLogoWechatCl, LogoWechatGray as TaLogoWechatGray, LogoWecomCl as TaLogoWecomCl, LogoWecomGray as TaLogoWecomGray, LogoWepieCl as TaLogoWepieCl, LogoXiaomiCl as TaLogoXiaomiCl, LogoYaojiCl as TaLogoYaojiCl, Logout as TaLogout, MAttributionCl as TaMAttributionCl, MDistribution as TaMDistribution, MDistributionCl as TaMDistributionCl, MEvent as TaMEvent, MEventCl as TaMEventCl, MFlow as TaMFlow, MFlowCl as TaMFlowCl, MFunnel as TaMFunnel, MFunnelCl as TaMFunnelCl, MHeatmapCl as TaMHeatmapCl, MInterval as TaMInterval, MIntervalCl as TaMIntervalCl, MPropCl as TaMPropCl, MProperty as TaMProperty, MRetention as TaMRetention, MRetentionCl as TaMRetentionCl, MSql as TaMSql, MSqlCl as TaMSqlCl, MTrophyCl as TaMTrophyCl, MagicWand as TaMagicWand, ManageQuery as TaManageQuery, Manual as TaManual, ManualVerification as TaManualVerification, Map as TaMap, MenuFold as TaMenuFold, MenuUnfold as TaMenuUnfold, MessageCenter as TaMessageCenter, Mfa as TaMfa, More1 as TaMore1, More2 as TaMore2, Mute as TaMute, Name as TaName, Neutral as TaNeutral, NewIndicator as TaNewIndicator, NewTask as TaNewTask, Notice as TaNotice, Null as TaNull, NumSm as TaNumSm, Official as TaOfficial, Offline as TaOffline, OfflineSync as TaOfflineSync, OneTime as TaOneTime, Online as TaOnline, OperatorBigger as TaOperatorBigger, OperatorDivide as TaOperatorDivide, OperatorEqual as TaOperatorEqual, OperatorFalse as TaOperatorFalse, OperatorHasValue as TaOperatorHasValue, OperatorInclude as TaOperatorInclude, OperatorInside as TaOperatorInside, OperatorLess as TaOperatorLess, OperatorNoBigger as TaOperatorNoBigger, OperatorNoLess as TaOperatorNoLess, OperatorNoRegex as TaOperatorNoRegex, OperatorNoValue as TaOperatorNoValue, OperatorNotInclude as TaOperatorNotInclude, OperatorRegex as TaOperatorRegex, OperatorTrue as TaOperatorTrue, OperatorUnequal as TaOperatorUnequal, PageLine as TaPageLine, PageOpenCl as TaPageOpenCl, Palette as TaPalette, ParallelFilter as TaParallelFilter, Parameter as TaParameter, Partition as TaPartition, Password as TaPassword, Paste as TaPaste, Paste2 as TaPaste2, Pattern as TaPattern, Pause2 as TaPause2, PauseCircle as TaPauseCircle, Phrase as TaPhrase, Pin as TaPin, Pin2 as TaPin2, PinFill as TaPinFill, PinUnsave as TaPinUnsave, Pinch as TaPinch, PlanetCl as TaPlanetCl, PlatformAnalyticsCl as TaPlatformAnalyticsCl, PlatformDataopsCl as TaPlatformDataopsCl, PlatformSystemCl as TaPlatformSystemCl, Play as TaPlay, PlayCircle as TaPlayCircle, Plug as TaPlug, Post as TaPost, Private as TaPrivate, Processing as TaProcessing, Processing2 as TaProcessing2, Progress as TaProgress, Project as TaProject, ProjectMgr as TaProjectMgr, Property as TaProperty, Pulse as TaPulse, Recurring as TaRecurring, Recycle as TaRecycle, Reject as TaReject, RelatedProp as TaRelatedProp, Rename as TaRename, Renew as TaRenew, Report as TaReport, ReportCl as TaReportCl, ReportReadingCl as TaReportReadingCl, ReportRemoval as TaReportRemoval, ResetPassword as TaResetPassword, Resizer as TaResizer, Result as TaResult, Revert as TaRevert, Ripple as TaRipple, Robot as TaRobot, RowsSm as TaRowsSm, Ruler as TaRuler, SAdministrator as TaSAdministrator, SSpace as TaSSpace, SWorkspace as TaSWorkspace, Sad as TaSad, SatelliteDish as TaSatelliteDish, Save as TaSave, Schedule as TaSchedule, Search as TaSearch, Send as TaSend, Server as TaServer, Setting as TaSetting, Share as TaShare, ShieldCheck as TaShieldCheck, ShieldCross as TaShieldCross, ShieldKeyhole as TaShieldKeyhole, Shop as TaShop, ShopFill as TaShopFill, ShutDown as TaShutDown, Smile as TaSmile, Sort as TaSort, SortA2z as TaSortA2z, SortDown as TaSortDown, SortDrop as TaSortDrop, SortResult as TaSortResult, SortRise as TaSortRise, SortUp as TaSortUp, SortZ2a as TaSortZ2a, Space as TaSpace, SpaceLine as TaSpaceLine, SpaceOpen as TaSpaceOpen, SpaceOpenLine as TaSpaceOpenLine, Speed as TaSpeed, Split as TaSplit, Sql1 as TaSql1, Sql2 as TaSql2, Sql3 as TaSql3, SqlTableView as TaSqlTableView, StarFill as TaStarFill, StarOutline as TaStarOutline, Sticker as TaSticker, StickerFill as TaStickerFill, Sticky as TaSticky, StopCircle as TaStopCircle, StringSm as TaStringSm, Submit as TaSubmit, Subtract as TaSubtract, Subtract2 as TaSubtract2, Subtract3 as TaSubtract3, Success as TaSuccess, SuccessFill as TaSuccessFill, SvipFill as TaSvipFill, SwapFill as TaSwapFill, Switch as TaSwitch, SystemBuild as TaSystemBuild, SystemMgr as TaSystemMgr, SystemMsg as TaSystemMsg, TA2b as TaTA2b, TX2y as TaTX2y, Table1dtable as TaTable1dtable, TableClassic as TaTableClassic, TableCol as TaTableCol, TableKey as TaTableKey, TableRow as TaTableRow, TableSimple as TaTableSimple, TableStriped as TaTableStriped, Task as TaTask, TaskFlow as TaTaskFlow, TdLogo as TaTdLogo, TemplateCl as TaTemplateCl, Terminal as TaTerminal, TestRace as TaTestRace, TestSplit as TaTestSplit, TextCase as TaTextCase, TextWholeMatch as TaTextWholeMatch, ThumbDown as TaThumbDown, ThumbDownOutline as TaThumbDownOutline, ThumbUp as TaThumbUp, ThumbUpOutline as TaThumbUpOutline, TimeLock as TaTimeLock, TimeSm as TaTimeSm, Tips as TaTips, Tracking as TaTracking, TransferOwnership as TaTransferOwnership, Translation as TaTranslation, TriDown as TaTriDown, TriLeft as TaTriLeft, TriRight as TaTriRight, TriUp as TaTriUp, UCohortCl as TaUCohortCl, UGroup as TaUGroup, UGroupSm as TaUGroupSm, UPropMgr as TaUPropMgr, UPropertyShunt as TaUPropertyShunt, UPropertySm as TaUPropertySm, USearchCl as TaUSearchCl, UTag as TaUTag, UTagCl as TaUTagCl, UTagSm as TaUTagSm, Uncertified as TaUncertified, Undo as TaUndo, UndoApproval as TaUndoApproval, Unlink as TaUnlink, Unpin as TaUnpin, Unsave as TaUnsave, Update as TaUpdate, UpdateData as TaUpdateData, Upload as TaUpload, UploadId as TaUploadId, Usb as TaUsb, User1 as TaUser1, User1Fill as TaUser1Fill, User2 as TaUser2, UserAddFill as TaUserAddFill, UserSettings as TaUserSettings, UserTagCl as TaUserTagCl, Usertag as TaUsertag, VDashboardCl as TaVDashboardCl, VManageDashboardCl as TaVManageDashboardCl, VPropCl as TaVPropCl, VProperty as TaVProperty, VPropertySm as TaVPropertySm, Validate as TaValidate, Video as TaVideo, ViewOriginal as TaViewOriginal, Vip as TaVip, VipFill as TaVipFill, Warehouse as TaWarehouse };
|
|
40468
|
+
export { Add1 as TaAdd1, Add2 as TaAdd2, Add3 as TaAdd3, Add3Fill as TaAdd3Fill, AddIndexCl as TaAddIndexCl, AddToPage as TaAddToPage, Alert as TaAlert, AlertCl as TaAlertCl, AlignCenter as TaAlignCenter, AlignLeft as TaAlignLeft, AlignLegendBottom as TaAlignLegendBottom, AlignLegendLeft as TaAlignLegendLeft, AlignLegendRight as TaAlignLegendRight, AlignLegendTop as TaAlignLegendTop, AlignRight as TaAlignRight, AllGroupSm as TaAllGroupSm, Analysis as TaAnalysis, Anchor as TaAnchor, Application as TaApplication, Approve as TaApprove, ArrayRowsSm as TaArrayRowsSm, ArrowClose as TaArrowClose, ArrowDown as TaArrowDown, ArrowDown2 as TaArrowDown2, ArrowExpand as TaArrowExpand, ArrowGoBack as TaArrowGoBack, ArrowGoForward as TaArrowGoForward, ArrowLeft as TaArrowLeft, ArrowLeft2 as TaArrowLeft2, ArrowLeftDown as TaArrowLeftDown, ArrowRight as TaArrowRight, ArrowRight2 as TaArrowRight2, ArrowRightup as TaArrowRightup, ArrowUp as TaArrowUp, ArrowUp2 as TaArrowUp2, Ascent as TaAscent, Attachment as TaAttachment, Attribution as TaAttribution, AutoLayout as TaAutoLayout, AvatarGroupCl as TaAvatarGroupCl, AvatarProjectCl as TaAvatarProjectCl, Backup as TaBackup, Bell as TaBell, Bell2Fill as TaBell2Fill, BiAiApplicationCl as TaBiAiApplicationCl, BiAiCl as TaBiAiCl, BiAlertCl as TaBiAlertCl, BiAnalysisCl as TaBiAnalysisCl, BiBeginnerGuideCl as TaBiBeginnerGuideCl, BiCardGameCl as TaBiCardGameCl, BiCasuaGameCl as TaBiCasuaGameCl, BiChannelReachCl as TaBiChannelReachCl, BiClosedLoopCl as TaBiClosedLoopCl, BiCommercialAdaptationCl as TaBiCommercialAdaptationCl, BiControlCl as TaBiControlCl, BiCrowdCl as TaBiCrowdCl, BiDataClosedLoopCl as TaBiDataClosedLoopCl, BiDisassemblyCl as TaBiDisassemblyCl, BiEducationCl as TaBiEducationCl, BiGameplayCl as TaBiGameplayCl, BiGiftCl as TaBiGiftCl, BiGroupCl as TaBiGroupCl, BiGuideCl as TaBiGuideCl, BiIndicatorCl as TaBiIndicatorCl, BiMiniGameCl as TaBiMiniGameCl, BiMmoGameCl as TaBiMmoGameCl, BiModelCl as TaBiModelCl, BiNovelCl as TaBiNovelCl, BiOperationAnalysisCl as TaBiOperationAnalysisCl, BiOperationPolicyCl as TaBiOperationPolicyCl, BiOperationalEmpowermentCl as TaBiOperationalEmpowermentCl, BiPathAnalysisCl as TaBiPathAnalysisCl, BiPathCl as TaBiPathCl, BiPersonalizedDeploymentCl as TaBiPersonalizedDeploymentCl, BiQueryCl as TaBiQueryCl, BiQuickStartCl as TaBiQuickStartCl, BiReachCl as TaBiReachCl, BiShoppingCartCl as TaBiShoppingCartCl, BiShortPlayCl as TaBiShortPlayCl, BiSimulatedOperationCl as TaBiSimulatedOperationCl, BiSlgGameCl as TaBiSlgGameCl, BiSocialAnalysisCl as TaBiSocialAnalysisCl, BiSocialApplicationCl as TaBiSocialApplicationCl, BiStratificationCl as TaBiStratificationCl, BiSupportCl as TaBiSupportCl, BiTargetPlayerCl as TaBiTargetPlayerCl, BiUserIdentificationCl as TaBiUserIdentificationCl, BiUserOperationCl as TaBiUserOperationCl, BiVendor as TaBiVendor, BiVendorFillCl as TaBiVendorFillCl, Book as TaBook, Book2 as TaBook2, Bookmark as TaBookmark, Bookmark2 as TaBookmark2, BooleanSm as TaBooleanSm, Box as TaBox, BoxOpen as TaBoxOpen, Branch as TaBranch, Bring as TaBring, BuildMode as TaBuildMode, BuiltIn as TaBuiltIn, Calendar as TaCalendar, CalendarCheck as TaCalendarCheck, CalendarSm as TaCalendarSm, Card as TaCard, Cellphone as TaCellphone, Certified as TaCertified, ChartBar as TaChartBar, ChartBarTable as TaChartBarTable, ChartCombinedTable as TaChartCombinedTable, ChartComplex as TaChartComplex, ChartCum as TaChartCum, ChartDNRe as TaChartDNRe, ChartDRe as TaChartDRe, ChartDistTable as TaChartDistTable, ChartFieldlist as TaChartFieldlist, ChartFunnel as TaChartFunnel, ChartGantt as TaChartGantt, ChartHistogram as TaChartHistogram, ChartInterval as TaChartInterval, ChartLine as TaChartLine, ChartLineTable as TaChartLineTable, ChartPercentageBar as TaChartPercentageBar, ChartPie as TaChartPie, ChartScatter as TaChartScatter, ChartScorecard as TaChartScorecard, ChartSqltable as TaChartSqltable, ChartStack as TaChartStack, ChartStackPerc as TaChartStackPerc, ChartStackedBar as TaChartStackedBar, ChartStackn as TaChartStackn, ChartTable as TaChartTable, ChartTrophy as TaChartTrophy, ChartWordcloud as TaChartWordcloud, CircularProgressCl as TaCircularProgressCl, Clean as TaClean, Click as TaClick, Clock as TaClock, Close as TaClose, Code as TaCode, CodeVariable as TaCodeVariable, Comment as TaComment, Compass as TaCompass, Config as TaConfig, Consent as TaConsent, Contrast as TaContrast, Copy as TaCopy, Copy2 as TaCopy2, CopyDdl as TaCopyDdl, CopyQuery as TaCopyQuery, CopywritingAiCl as TaCopywritingAiCl, Cost as TaCost, Currency as TaCurrency, CustomPartition as TaCustomPartition, DArrowB as TaDArrowB, DArrowL as TaDArrowL, DArrowR as TaDArrowR, DArrowT as TaDArrowT, DAssetsCl as TaDAssetsCl, DIntegrationCl as TaDIntegrationCl, DManageCl as TaDManageCl, DTrackingCl as TaDTrackingCl, Dag as TaDag, Dashboard as TaDashboard, DashboardAiCl as TaDashboardAiCl, DashboardCl as TaDashboardCl, DashboardGenerateCl as TaDashboardGenerateCl, DashboardMgr as TaDashboardMgr, DashboardPlan as TaDashboardPlan, DashboardReadingCl as TaDashboardReadingCl, DataInput as TaDataInput, DataOpsAiCl as TaDataOpsAiCl, DataOutput as TaDataOutput, Database as TaDatabase, DateMarkCl as TaDateMarkCl, Debug as TaDebug, DebugPlay as TaDebugPlay, Delete1 as TaDelete1, Delete2 as TaDelete2, Delete2Fill as TaDelete2Fill, Demo as TaDemo, Descent as TaDescent, Desktop as TaDesktop, Detail as TaDetail, DirectConnect as TaDirectConnect, Disable as TaDisable, DisplayS as TaDisplayS, Done as TaDone, Dot as TaDot, DoubleList as TaDoubleList, Download as TaDownload, Drag as TaDrag, Drag2 as TaDrag2, DrillDown as TaDrillDown, DropDown as TaDropDown, DropUp as TaDropUp, ECampaignCl as TaECampaignCl, EChartsCl as TaEChartsCl, EConfigCl as TaEConfigCl, EFlowCl as TaEFlowCl, EPropertySm as TaEPropertySm, ESettingCl as TaESettingCl, ETaskCl as TaETaskCl, Earth as TaEarth, Edit as TaEdit, EditFill as TaEditFill, Education as TaEducation, EducationFill as TaEducationFill, Email as TaEmail, EndTask as TaEndTask, EngageAiCl as TaEngageAiCl, Error as TaError, Error2 as TaError2, Error2Fill as TaError2Fill, ErrorFill as TaErrorFill, EventMgr as TaEventMgr, EventModify as TaEventModify, EventPropMgr as TaEventPropMgr, EventShunt as TaEventShunt, EventSm as TaEventSm, EventTree as TaEventTree, Exchange as TaExchange, Expand as TaExpand, Export as TaExport, Exposure as TaExposure, Expression as TaExpression, Expression2 as TaExpression2, External as TaExternal, EyeOff as TaEyeOff, EyeOffFill as TaEyeOffFill, EyeOn as TaEyeOn, EyeOnFill as TaEyeOnFill, FileAdd as TaFileAdd, FileConvert as TaFileConvert, FileExport as TaFileExport, FileImport as TaFileImport, FileInfo as TaFileInfo, FileLock as TaFileLock, FileMove as TaFileMove, FilePdf as TaFilePdf, FileRemove as TaFileRemove, FileSqlFill as TaFileSqlFill, Filter as TaFilter, Filter2 as TaFilter2, Find as TaFind, FirstLast as TaFirstLast, FlagCn as TaFlagCn, FlagJp as TaFlagJp, FlagKr as TaFlagKr, FlagUs as TaFlagUs, Flash as TaFlash, Folder as TaFolder, FolderLine as TaFolderLine, FolderOpen as TaFolderOpen, FolderOpenLine as TaFolderOpenLine, FontBgColor as TaFontBgColor, FontBold as TaFontBold, FontColor as TaFontColor, FontItalic as TaFontItalic, FontSize as TaFontSize, Forewarning as TaForewarning, Format as TaFormat, FullDownload as TaFullDownload, Fullscreen as TaFullscreen, Function as TaFunction, Game as TaGame, GameFill as TaGameFill, Gift as TaGift, Goal as TaGoal, GoalFill as TaGoalFill, Grid as TaGrid, Group as TaGroup, GroupA2b as TaGroupA2b, GroupAddFill as TaGroupAddFill, GroupAddSm as TaGroupAddSm, GroupCl as TaGroupCl, GroupFill as TaGroupFill, GroupFill2 as TaGroupFill2, Groups as TaGroups, Hand as TaHand, Hashtag as TaHashtag, Heart as TaHeart, Heat as TaHeat, Help as TaHelp, History as TaHistory, IdFreeze as TaIdFreeze, Image as TaImage, Import as TaImport, Index as TaIndex, IndexFill as TaIndexFill, Indicator as TaIndicator, IndicatorSm as TaIndicatorSm, Info as TaInfo, InfoFill as TaInfoFill, Insert as TaInsert, Install as TaInstall, Interval as TaInterval, JsonSm as TaJsonSm, Lab as TaLab, Landscape as TaLandscape, Language as TaLanguage, LayoutFocus as TaLayoutFocus, LayoutSide as TaLayoutSide, LineCircle as TaLineCircle, LineDiamond as TaLineDiamond, LineSquare as TaLineSquare, Link as TaLink, Link2 as TaLink2, List as TaList, ListNested as TaListNested, ListOrdered as TaListOrdered, ListSm as TaListSm, ListUnordered as TaListUnordered, Live as TaLive, Location as TaLocation, LockClose as TaLockClose, LockCloseFill as TaLockCloseFill, LockOpen as TaLockOpen, LockOpenFill as TaLockOpenFill, LogoAndroidGray as TaLogoAndroidGray, LogoApiGray as TaLogoApiGray, LogoAppPushGray as TaLogoAppPushGray, LogoAppleGray as TaLogoAppleGray, LogoBitkeepCl as TaLogoBitkeepCl, LogoClientsideGray as TaLogoClientsideGray, LogoCurrencylayerCl as TaLogoCurrencylayerCl, LogoDingdingCl as TaLogoDingdingCl, LogoDingdingGray as TaLogoDingdingGray, LogoDouyinGray as TaLogoDouyinGray, LogoFcmCl as TaLogoFcmCl, LogoFeishuCl as TaLogoFeishuCl, LogoFlinkCl as TaLogoFlinkCl, LogoFutuCl as TaLogoFutuCl, LogoGarenaCl as TaLogoGarenaCl, LogoHappyelementCl as TaLogoHappyelementCl, LogoIggCl as TaLogoIggCl, LogoJiguangCl as TaLogoJiguangCl, LogoKingCl as TaLogoKingCl, LogoLitmatchCl as TaLogoLitmatchCl, LogoSparkCl as TaLogoSparkCl, LogoStarrocksCl as TaLogoStarrocksCl, LogoTrinoCl as TaLogoTrinoCl, LogoWebhookGray as TaLogoWebhookGray, LogoWechatCl as TaLogoWechatCl, LogoWechatGray as TaLogoWechatGray, LogoWecomCl as TaLogoWecomCl, LogoWecomGray as TaLogoWecomGray, LogoWepieCl as TaLogoWepieCl, LogoXiaomiCl as TaLogoXiaomiCl, LogoYaojiCl as TaLogoYaojiCl, Logout as TaLogout, MAttributionCl as TaMAttributionCl, MDistribution as TaMDistribution, MDistributionCl as TaMDistributionCl, MEvent as TaMEvent, MEventCl as TaMEventCl, MFlow as TaMFlow, MFlowCl as TaMFlowCl, MFunnel as TaMFunnel, MFunnelCl as TaMFunnelCl, MHeatmapCl as TaMHeatmapCl, MInterval as TaMInterval, MIntervalCl as TaMIntervalCl, MPropCl as TaMPropCl, MProperty as TaMProperty, MRetention as TaMRetention, MRetentionCl as TaMRetentionCl, MSql as TaMSql, MSqlCl as TaMSqlCl, MTrophyCl as TaMTrophyCl, MagicWand as TaMagicWand, ManageQuery as TaManageQuery, Manual as TaManual, ManualVerification as TaManualVerification, Map as TaMap, MenuFold as TaMenuFold, MenuUnfold as TaMenuUnfold, MessageCenter as TaMessageCenter, Mfa as TaMfa, More1 as TaMore1, More2 as TaMore2, Mute as TaMute, Name as TaName, Neutral as TaNeutral, NewIndicator as TaNewIndicator, NewTask as TaNewTask, Notice as TaNotice, Null as TaNull, NumSm as TaNumSm, Official as TaOfficial, Offline as TaOffline, OfflineSync as TaOfflineSync, OneTime as TaOneTime, Online as TaOnline, OperatorBigger as TaOperatorBigger, OperatorDivide as TaOperatorDivide, OperatorEqual as TaOperatorEqual, OperatorFalse as TaOperatorFalse, OperatorHasValue as TaOperatorHasValue, OperatorInclude as TaOperatorInclude, OperatorInside as TaOperatorInside, OperatorLess as TaOperatorLess, OperatorNoBigger as TaOperatorNoBigger, OperatorNoLess as TaOperatorNoLess, OperatorNoRegex as TaOperatorNoRegex, OperatorNoValue as TaOperatorNoValue, OperatorNotInclude as TaOperatorNotInclude, OperatorRegex as TaOperatorRegex, OperatorTrue as TaOperatorTrue, OperatorUnequal as TaOperatorUnequal, PageLine as TaPageLine, PageOpenCl as TaPageOpenCl, Palette as TaPalette, ParallelFilter as TaParallelFilter, Parameter as TaParameter, Partition as TaPartition, Password as TaPassword, Paste as TaPaste, Paste2 as TaPaste2, Pattern as TaPattern, Pause2 as TaPause2, PauseCircle as TaPauseCircle, Pending as TaPending, Phrase as TaPhrase, Pin as TaPin, Pin2 as TaPin2, PinFill as TaPinFill, PinUnsave as TaPinUnsave, Pinch as TaPinch, PlanetCl as TaPlanetCl, PlatformAnalyticsCl as TaPlatformAnalyticsCl, PlatformDataopsCl as TaPlatformDataopsCl, PlatformSystemCl as TaPlatformSystemCl, Play as TaPlay, PlayCircle as TaPlayCircle, Plug as TaPlug, Post as TaPost, Private as TaPrivate, Processing as TaProcessing, Processing2 as TaProcessing2, Progress as TaProgress, Project as TaProject, ProjectMgr as TaProjectMgr, Property as TaProperty, Pulse as TaPulse, Recurring as TaRecurring, Recycle as TaRecycle, Reject as TaReject, RelatedProp as TaRelatedProp, Rename as TaRename, Renew as TaRenew, Report as TaReport, ReportCl as TaReportCl, ReportReadingCl as TaReportReadingCl, ReportRemoval as TaReportRemoval, ResetPassword as TaResetPassword, Resizer as TaResizer, Result as TaResult, Revert as TaRevert, Ripple as TaRipple, Robot as TaRobot, RowsSm as TaRowsSm, Ruler as TaRuler, SAdministrator as TaSAdministrator, SSpace as TaSSpace, SWorkspace as TaSWorkspace, Sad as TaSad, SatelliteDish as TaSatelliteDish, Save as TaSave, Schedule as TaSchedule, Search as TaSearch, Send as TaSend, Server as TaServer, Setting as TaSetting, Share as TaShare, ShieldCheck as TaShieldCheck, ShieldCross as TaShieldCross, ShieldKeyhole as TaShieldKeyhole, Shop as TaShop, ShopFill as TaShopFill, ShutDown as TaShutDown, Smile as TaSmile, Sort as TaSort, SortA2z as TaSortA2z, SortDown as TaSortDown, SortDrop as TaSortDrop, SortResult as TaSortResult, SortRise as TaSortRise, SortUp as TaSortUp, SortZ2a as TaSortZ2a, Space as TaSpace, SpaceLine as TaSpaceLine, SpaceOpen as TaSpaceOpen, SpaceOpenLine as TaSpaceOpenLine, Speed as TaSpeed, Split as TaSplit, Sql1 as TaSql1, Sql2 as TaSql2, Sql3 as TaSql3, SqlTableView as TaSqlTableView, StarFill as TaStarFill, StarOutline as TaStarOutline, Sticker as TaSticker, StickerFill as TaStickerFill, Sticky as TaSticky, StopCircle as TaStopCircle, StringSm as TaStringSm, Submit as TaSubmit, Subtract as TaSubtract, Subtract2 as TaSubtract2, Subtract3 as TaSubtract3, Success as TaSuccess, SuccessFill as TaSuccessFill, SvipFill as TaSvipFill, SwapFill as TaSwapFill, Switch as TaSwitch, SystemBuild as TaSystemBuild, SystemMgr as TaSystemMgr, SystemMsg as TaSystemMsg, TA2b as TaTA2b, TX2y as TaTX2y, Table1dtable as TaTable1dtable, TableClassic as TaTableClassic, TableCol as TaTableCol, TableKey as TaTableKey, TableRow as TaTableRow, TableSimple as TaTableSimple, TableStriped as TaTableStriped, Task as TaTask, TaskFlow as TaTaskFlow, TdLogo as TaTdLogo, TemplateCl as TaTemplateCl, Terminal as TaTerminal, TestRace as TaTestRace, TestSplit as TaTestSplit, TextCase as TaTextCase, TextWholeMatch as TaTextWholeMatch, ThumbDown as TaThumbDown, ThumbDownOutline as TaThumbDownOutline, ThumbUp as TaThumbUp, ThumbUpOutline as TaThumbUpOutline, TimeLock as TaTimeLock, TimeSm as TaTimeSm, Tips as TaTips, Tracking as TaTracking, TransferOwnership as TaTransferOwnership, Translation as TaTranslation, TriDown as TaTriDown, TriLeft as TaTriLeft, TriRight as TaTriRight, TriUp as TaTriUp, UCohortCl as TaUCohortCl, UGroup as TaUGroup, UGroupSm as TaUGroupSm, UPropMgr as TaUPropMgr, UPropertyShunt as TaUPropertyShunt, UPropertySm as TaUPropertySm, USearchCl as TaUSearchCl, UTag as TaUTag, UTagCl as TaUTagCl, UTagSm as TaUTagSm, Uncertified as TaUncertified, Undo as TaUndo, UndoApproval as TaUndoApproval, Unlink as TaUnlink, Unpin as TaUnpin, Unsave as TaUnsave, Update as TaUpdate, UpdateData as TaUpdateData, Upload as TaUpload, UploadId as TaUploadId, Usb as TaUsb, User1 as TaUser1, User1Fill as TaUser1Fill, User2 as TaUser2, UserAddFill as TaUserAddFill, UserSettings as TaUserSettings, UserTagCl as TaUserTagCl, Usertag as TaUsertag, VDashboardCl as TaVDashboardCl, VManageDashboardCl as TaVManageDashboardCl, VPropCl as TaVPropCl, VProperty as TaVProperty, VPropertySm as TaVPropertySm, Validate as TaValidate, Video as TaVideo, ViewOriginal as TaViewOriginal, Vip as TaVip, VipFill as TaVipFill, Warehouse as TaWarehouse };
|