@tant/icons 1.3.24 → 1.3.25
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/disable.js +62 -0
- package/dist/es/icons/e-charts-cl.js +79 -0
- package/dist/es/icons/e-setting-cl.js +1 -1
- package/dist/es/index.js +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/lib/icons/disable.js +70 -0
- package/dist/lib/icons/e-charts-cl.js +87 -0
- package/dist/lib/icons/e-setting-cl.js +1 -1
- package/dist/lib/index.js +14 -0
- package/dist/tant-icons.cjs.js +855 -734
- package/dist/tant-icons.esm.js +854 -735
- package/package.json +1 -1
package/dist/tant-icons.cjs.js
CHANGED
|
@@ -9740,7 +9740,7 @@ ETaskCl.defaultProps = {
|
|
|
9740
9740
|
|
|
9741
9741
|
var _excluded$2P = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
9742
9742
|
var loadingCircleStyle$2P = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
9743
|
-
var
|
|
9743
|
+
var EChartsCl = function EChartsCl(props) {
|
|
9744
9744
|
var color = props.color,
|
|
9745
9745
|
size = props.size,
|
|
9746
9746
|
spin = props.spin,
|
|
@@ -9772,6 +9772,74 @@ var ESettingCl = function ESettingCl(props) {
|
|
|
9772
9772
|
height: "24",
|
|
9773
9773
|
fill: "none",
|
|
9774
9774
|
xmlns: "http://www.w3.org/2000/svg"
|
|
9775
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
9776
|
+
x: "2",
|
|
9777
|
+
y: "2",
|
|
9778
|
+
width: "13",
|
|
9779
|
+
height: "20",
|
|
9780
|
+
fill: "#B3CFF8"
|
|
9781
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
9782
|
+
style: {
|
|
9783
|
+
mixBlendMode: 'multiply'
|
|
9784
|
+
}
|
|
9785
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
9786
|
+
d: "M22.39 10.53h-6.18V4c3.412 0 6.179 2.924 6.18 6.53z",
|
|
9787
|
+
fill: "#1E76F0"
|
|
9788
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
9789
|
+
style: {
|
|
9790
|
+
mixBlendMode: 'multiply'
|
|
9791
|
+
}
|
|
9792
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
9793
|
+
d: "M15.18 5.088C11.767 5.088 9 8.012 9 11.62c0 3.607 2.767 6.531 6.18 6.531s6.18-2.924 6.18-6.53h-6.18V5.088z",
|
|
9794
|
+
fill: "#1E76F0"
|
|
9795
|
+
})))));
|
|
9796
|
+
};
|
|
9797
|
+
EChartsCl.propTypes = {
|
|
9798
|
+
iconClassName: PropTypes.string,
|
|
9799
|
+
spin: PropTypes.bool,
|
|
9800
|
+
color: PropTypes.string,
|
|
9801
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
9802
|
+
};
|
|
9803
|
+
EChartsCl.defaultProps = {
|
|
9804
|
+
spin: false,
|
|
9805
|
+
color: 'currentColor',
|
|
9806
|
+
size: '1em'
|
|
9807
|
+
};
|
|
9808
|
+
|
|
9809
|
+
var _excluded$2Q = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
9810
|
+
var loadingCircleStyle$2Q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
9811
|
+
var ESettingCl = function ESettingCl(props) {
|
|
9812
|
+
var color = props.color,
|
|
9813
|
+
size = props.size,
|
|
9814
|
+
spin = props.spin,
|
|
9815
|
+
style = props.style,
|
|
9816
|
+
className = props.className,
|
|
9817
|
+
iconClassName = props.iconClassName,
|
|
9818
|
+
otherProps = _objectWithoutProperties(props, _excluded$2Q);
|
|
9819
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
9820
|
+
role: "img",
|
|
9821
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
9822
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
9823
|
+
children: loadingCircleStyle$2Q
|
|
9824
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
9825
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9826
|
+
width: size,
|
|
9827
|
+
height: size,
|
|
9828
|
+
viewBox: "0 0 24 24",
|
|
9829
|
+
fill: color
|
|
9830
|
+
}, otherProps, {
|
|
9831
|
+
className: iconClassName,
|
|
9832
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
9833
|
+
animationDuration: '1s',
|
|
9834
|
+
animationIterationCount: 'infinite',
|
|
9835
|
+
animationName: 'loadingCircle',
|
|
9836
|
+
animationTimingFunction: 'linear'
|
|
9837
|
+
} : {})
|
|
9838
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
9839
|
+
width: "24",
|
|
9840
|
+
height: "24",
|
|
9841
|
+
fill: "none",
|
|
9842
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
9775
9843
|
}, /*#__PURE__*/React.createElement("rect", {
|
|
9776
9844
|
x: "7",
|
|
9777
9845
|
y: "13",
|
|
@@ -9791,7 +9859,7 @@ var ESettingCl = function ESettingCl(props) {
|
|
|
9791
9859
|
}, /*#__PURE__*/React.createElement("path", {
|
|
9792
9860
|
fillRule: "evenodd",
|
|
9793
9861
|
clipRule: "evenodd",
|
|
9794
|
-
d: "
|
|
9862
|
+
d: "M12.5 22l3.5-6-3.5-6h-7L2 16l3.5 6h7zM9 17.98c1.104 0 2-.887 2-1.98a1.99 1.99 0 00-2-1.98c-1.105 0-2 .887-2 1.98a1.99 1.99 0 002 1.98z",
|
|
9795
9863
|
fill: "#1E76F0"
|
|
9796
9864
|
})))));
|
|
9797
9865
|
};
|
|
@@ -9807,8 +9875,8 @@ ESettingCl.defaultProps = {
|
|
|
9807
9875
|
size: '1em'
|
|
9808
9876
|
};
|
|
9809
9877
|
|
|
9810
|
-
var _excluded$
|
|
9811
|
-
var loadingCircleStyle$
|
|
9878
|
+
var _excluded$2R = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
9879
|
+
var loadingCircleStyle$2R = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
9812
9880
|
var DManageCl = function DManageCl(props) {
|
|
9813
9881
|
var color = props.color,
|
|
9814
9882
|
size = props.size,
|
|
@@ -9816,12 +9884,12 @@ var DManageCl = function DManageCl(props) {
|
|
|
9816
9884
|
style = props.style,
|
|
9817
9885
|
className = props.className,
|
|
9818
9886
|
iconClassName = props.iconClassName,
|
|
9819
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9887
|
+
otherProps = _objectWithoutProperties(props, _excluded$2R);
|
|
9820
9888
|
return /*#__PURE__*/React.createElement("span", {
|
|
9821
9889
|
role: "img",
|
|
9822
9890
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
9823
9891
|
}, /*#__PURE__*/React.createElement("style", {
|
|
9824
|
-
children: loadingCircleStyle$
|
|
9892
|
+
children: loadingCircleStyle$2R
|
|
9825
9893
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
9826
9894
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9827
9895
|
width: size,
|
|
@@ -9877,8 +9945,8 @@ DManageCl.defaultProps = {
|
|
|
9877
9945
|
size: '1em'
|
|
9878
9946
|
};
|
|
9879
9947
|
|
|
9880
|
-
var _excluded$
|
|
9881
|
-
var loadingCircleStyle$
|
|
9948
|
+
var _excluded$2S = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
9949
|
+
var loadingCircleStyle$2S = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
9882
9950
|
var DTrackingCl = function DTrackingCl(props) {
|
|
9883
9951
|
var color = props.color,
|
|
9884
9952
|
size = props.size,
|
|
@@ -9886,12 +9954,12 @@ var DTrackingCl = function DTrackingCl(props) {
|
|
|
9886
9954
|
style = props.style,
|
|
9887
9955
|
className = props.className,
|
|
9888
9956
|
iconClassName = props.iconClassName,
|
|
9889
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9957
|
+
otherProps = _objectWithoutProperties(props, _excluded$2S);
|
|
9890
9958
|
return /*#__PURE__*/React.createElement("span", {
|
|
9891
9959
|
role: "img",
|
|
9892
9960
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
9893
9961
|
}, /*#__PURE__*/React.createElement("style", {
|
|
9894
|
-
children: loadingCircleStyle$
|
|
9962
|
+
children: loadingCircleStyle$2S
|
|
9895
9963
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
9896
9964
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9897
9965
|
width: size,
|
|
@@ -9955,8 +10023,8 @@ DTrackingCl.defaultProps = {
|
|
|
9955
10023
|
size: '1em'
|
|
9956
10024
|
};
|
|
9957
10025
|
|
|
9958
|
-
var _excluded$
|
|
9959
|
-
var loadingCircleStyle$
|
|
10026
|
+
var _excluded$2T = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10027
|
+
var loadingCircleStyle$2T = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
9960
10028
|
var DIntegrationCl = function DIntegrationCl(props) {
|
|
9961
10029
|
var color = props.color,
|
|
9962
10030
|
size = props.size,
|
|
@@ -9964,12 +10032,12 @@ var DIntegrationCl = function DIntegrationCl(props) {
|
|
|
9964
10032
|
style = props.style,
|
|
9965
10033
|
className = props.className,
|
|
9966
10034
|
iconClassName = props.iconClassName,
|
|
9967
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10035
|
+
otherProps = _objectWithoutProperties(props, _excluded$2T);
|
|
9968
10036
|
return /*#__PURE__*/React.createElement("span", {
|
|
9969
10037
|
role: "img",
|
|
9970
10038
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
9971
10039
|
}, /*#__PURE__*/React.createElement("style", {
|
|
9972
|
-
children: loadingCircleStyle$
|
|
10040
|
+
children: loadingCircleStyle$2T
|
|
9973
10041
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
9974
10042
|
xmlns: "http://www.w3.org/2000/svg",
|
|
9975
10043
|
width: size,
|
|
@@ -10022,8 +10090,8 @@ DIntegrationCl.defaultProps = {
|
|
|
10022
10090
|
size: '1em'
|
|
10023
10091
|
};
|
|
10024
10092
|
|
|
10025
|
-
var _excluded$
|
|
10026
|
-
var loadingCircleStyle$
|
|
10093
|
+
var _excluded$2U = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10094
|
+
var loadingCircleStyle$2U = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10027
10095
|
var AlertCl = function AlertCl(props) {
|
|
10028
10096
|
var color = props.color,
|
|
10029
10097
|
size = props.size,
|
|
@@ -10031,12 +10099,12 @@ var AlertCl = function AlertCl(props) {
|
|
|
10031
10099
|
style = props.style,
|
|
10032
10100
|
className = props.className,
|
|
10033
10101
|
iconClassName = props.iconClassName,
|
|
10034
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10102
|
+
otherProps = _objectWithoutProperties(props, _excluded$2U);
|
|
10035
10103
|
return /*#__PURE__*/React.createElement("span", {
|
|
10036
10104
|
role: "img",
|
|
10037
10105
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10038
10106
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10039
|
-
children: loadingCircleStyle$
|
|
10107
|
+
children: loadingCircleStyle$2U
|
|
10040
10108
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10041
10109
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10042
10110
|
width: size,
|
|
@@ -10098,8 +10166,8 @@ AlertCl.defaultProps = {
|
|
|
10098
10166
|
size: '1em'
|
|
10099
10167
|
};
|
|
10100
10168
|
|
|
10101
|
-
var _excluded$
|
|
10102
|
-
var loadingCircleStyle$
|
|
10169
|
+
var _excluded$2V = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10170
|
+
var loadingCircleStyle$2V = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10103
10171
|
var TemplateCl = function TemplateCl(props) {
|
|
10104
10172
|
var color = props.color,
|
|
10105
10173
|
size = props.size,
|
|
@@ -10107,12 +10175,12 @@ var TemplateCl = function TemplateCl(props) {
|
|
|
10107
10175
|
style = props.style,
|
|
10108
10176
|
className = props.className,
|
|
10109
10177
|
iconClassName = props.iconClassName,
|
|
10110
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10178
|
+
otherProps = _objectWithoutProperties(props, _excluded$2V);
|
|
10111
10179
|
return /*#__PURE__*/React.createElement("span", {
|
|
10112
10180
|
role: "img",
|
|
10113
10181
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10114
10182
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10115
|
-
children: loadingCircleStyle$
|
|
10183
|
+
children: loadingCircleStyle$2V
|
|
10116
10184
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10117
10185
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10118
10186
|
width: size,
|
|
@@ -10159,8 +10227,8 @@ TemplateCl.defaultProps = {
|
|
|
10159
10227
|
size: '1em'
|
|
10160
10228
|
};
|
|
10161
10229
|
|
|
10162
|
-
var _excluded$
|
|
10163
|
-
var loadingCircleStyle$
|
|
10230
|
+
var _excluded$2W = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10231
|
+
var loadingCircleStyle$2W = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10164
10232
|
var DateMarkCl = function DateMarkCl(props) {
|
|
10165
10233
|
var color = props.color,
|
|
10166
10234
|
size = props.size,
|
|
@@ -10168,12 +10236,12 @@ var DateMarkCl = function DateMarkCl(props) {
|
|
|
10168
10236
|
style = props.style,
|
|
10169
10237
|
className = props.className,
|
|
10170
10238
|
iconClassName = props.iconClassName,
|
|
10171
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10239
|
+
otherProps = _objectWithoutProperties(props, _excluded$2W);
|
|
10172
10240
|
return /*#__PURE__*/React.createElement("span", {
|
|
10173
10241
|
role: "img",
|
|
10174
10242
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10175
10243
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10176
|
-
children: loadingCircleStyle$
|
|
10244
|
+
children: loadingCircleStyle$2W
|
|
10177
10245
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10178
10246
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10179
10247
|
width: size,
|
|
@@ -10219,8 +10287,8 @@ DateMarkCl.defaultProps = {
|
|
|
10219
10287
|
size: '1em'
|
|
10220
10288
|
};
|
|
10221
10289
|
|
|
10222
|
-
var _excluded$
|
|
10223
|
-
var loadingCircleStyle$
|
|
10290
|
+
var _excluded$2X = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10291
|
+
var loadingCircleStyle$2X = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10224
10292
|
var Info = function Info(props) {
|
|
10225
10293
|
var color = props.color,
|
|
10226
10294
|
size = props.size,
|
|
@@ -10228,12 +10296,12 @@ var Info = function Info(props) {
|
|
|
10228
10296
|
style = props.style,
|
|
10229
10297
|
className = props.className,
|
|
10230
10298
|
iconClassName = props.iconClassName,
|
|
10231
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10299
|
+
otherProps = _objectWithoutProperties(props, _excluded$2X);
|
|
10232
10300
|
return /*#__PURE__*/React.createElement("span", {
|
|
10233
10301
|
role: "img",
|
|
10234
10302
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10235
10303
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10236
|
-
children: loadingCircleStyle$
|
|
10304
|
+
children: loadingCircleStyle$2X
|
|
10237
10305
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10238
10306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10239
10307
|
width: size,
|
|
@@ -10272,8 +10340,8 @@ Info.defaultProps = {
|
|
|
10272
10340
|
size: '1em'
|
|
10273
10341
|
};
|
|
10274
10342
|
|
|
10275
|
-
var _excluded$
|
|
10276
|
-
var loadingCircleStyle$
|
|
10343
|
+
var _excluded$2Y = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10344
|
+
var loadingCircleStyle$2Y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10277
10345
|
var InfoFill = function InfoFill(props) {
|
|
10278
10346
|
var color = props.color,
|
|
10279
10347
|
size = props.size,
|
|
@@ -10281,12 +10349,12 @@ var InfoFill = function InfoFill(props) {
|
|
|
10281
10349
|
style = props.style,
|
|
10282
10350
|
className = props.className,
|
|
10283
10351
|
iconClassName = props.iconClassName,
|
|
10284
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10352
|
+
otherProps = _objectWithoutProperties(props, _excluded$2Y);
|
|
10285
10353
|
return /*#__PURE__*/React.createElement("span", {
|
|
10286
10354
|
role: "img",
|
|
10287
10355
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10288
10356
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10289
|
-
children: loadingCircleStyle$
|
|
10357
|
+
children: loadingCircleStyle$2Y
|
|
10290
10358
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10291
10359
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10292
10360
|
width: size,
|
|
@@ -10321,8 +10389,8 @@ InfoFill.defaultProps = {
|
|
|
10321
10389
|
size: '1em'
|
|
10322
10390
|
};
|
|
10323
10391
|
|
|
10324
|
-
var _excluded$
|
|
10325
|
-
var loadingCircleStyle$
|
|
10392
|
+
var _excluded$2Z = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10393
|
+
var loadingCircleStyle$2Z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10326
10394
|
var Help = function Help(props) {
|
|
10327
10395
|
var color = props.color,
|
|
10328
10396
|
size = props.size,
|
|
@@ -10330,12 +10398,12 @@ var Help = function Help(props) {
|
|
|
10330
10398
|
style = props.style,
|
|
10331
10399
|
className = props.className,
|
|
10332
10400
|
iconClassName = props.iconClassName,
|
|
10333
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10401
|
+
otherProps = _objectWithoutProperties(props, _excluded$2Z);
|
|
10334
10402
|
return /*#__PURE__*/React.createElement("span", {
|
|
10335
10403
|
role: "img",
|
|
10336
10404
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10337
10405
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10338
|
-
children: loadingCircleStyle$
|
|
10406
|
+
children: loadingCircleStyle$2Z
|
|
10339
10407
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10340
10408
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10341
10409
|
width: size,
|
|
@@ -10370,8 +10438,8 @@ Help.defaultProps = {
|
|
|
10370
10438
|
size: '1em'
|
|
10371
10439
|
};
|
|
10372
10440
|
|
|
10373
|
-
var _excluded$
|
|
10374
|
-
var loadingCircleStyle$
|
|
10441
|
+
var _excluded$2_ = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10442
|
+
var loadingCircleStyle$2_ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10375
10443
|
var History = function History(props) {
|
|
10376
10444
|
var color = props.color,
|
|
10377
10445
|
size = props.size,
|
|
@@ -10379,12 +10447,12 @@ var History = function History(props) {
|
|
|
10379
10447
|
style = props.style,
|
|
10380
10448
|
className = props.className,
|
|
10381
10449
|
iconClassName = props.iconClassName,
|
|
10382
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10450
|
+
otherProps = _objectWithoutProperties(props, _excluded$2_);
|
|
10383
10451
|
return /*#__PURE__*/React.createElement("span", {
|
|
10384
10452
|
role: "img",
|
|
10385
10453
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10386
10454
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10387
|
-
children: loadingCircleStyle$
|
|
10455
|
+
children: loadingCircleStyle$2_
|
|
10388
10456
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10389
10457
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10390
10458
|
width: size,
|
|
@@ -10419,8 +10487,8 @@ History.defaultProps = {
|
|
|
10419
10487
|
size: '1em'
|
|
10420
10488
|
};
|
|
10421
10489
|
|
|
10422
|
-
var _excluded$
|
|
10423
|
-
var loadingCircleStyle$
|
|
10490
|
+
var _excluded$2$ = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10491
|
+
var loadingCircleStyle$2$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10424
10492
|
var Backup = function Backup(props) {
|
|
10425
10493
|
var color = props.color,
|
|
10426
10494
|
size = props.size,
|
|
@@ -10428,12 +10496,12 @@ var Backup = function Backup(props) {
|
|
|
10428
10496
|
style = props.style,
|
|
10429
10497
|
className = props.className,
|
|
10430
10498
|
iconClassName = props.iconClassName,
|
|
10431
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10499
|
+
otherProps = _objectWithoutProperties(props, _excluded$2$);
|
|
10432
10500
|
return /*#__PURE__*/React.createElement("span", {
|
|
10433
10501
|
role: "img",
|
|
10434
10502
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10435
10503
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10436
|
-
children: loadingCircleStyle$
|
|
10504
|
+
children: loadingCircleStyle$2$
|
|
10437
10505
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10438
10506
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10439
10507
|
width: size,
|
|
@@ -10470,8 +10538,8 @@ Backup.defaultProps = {
|
|
|
10470
10538
|
size: '1em'
|
|
10471
10539
|
};
|
|
10472
10540
|
|
|
10473
|
-
var _excluded$
|
|
10474
|
-
var loadingCircleStyle$
|
|
10541
|
+
var _excluded$30 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10542
|
+
var loadingCircleStyle$30 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10475
10543
|
var Error = function Error(props) {
|
|
10476
10544
|
var color = props.color,
|
|
10477
10545
|
size = props.size,
|
|
@@ -10479,12 +10547,12 @@ var Error = function Error(props) {
|
|
|
10479
10547
|
style = props.style,
|
|
10480
10548
|
className = props.className,
|
|
10481
10549
|
iconClassName = props.iconClassName,
|
|
10482
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10550
|
+
otherProps = _objectWithoutProperties(props, _excluded$30);
|
|
10483
10551
|
return /*#__PURE__*/React.createElement("span", {
|
|
10484
10552
|
role: "img",
|
|
10485
10553
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10486
10554
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10487
|
-
children: loadingCircleStyle$
|
|
10555
|
+
children: loadingCircleStyle$30
|
|
10488
10556
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10489
10557
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10490
10558
|
width: size,
|
|
@@ -10523,8 +10591,8 @@ Error.defaultProps = {
|
|
|
10523
10591
|
size: '1em'
|
|
10524
10592
|
};
|
|
10525
10593
|
|
|
10526
|
-
var _excluded$
|
|
10527
|
-
var loadingCircleStyle$
|
|
10594
|
+
var _excluded$31 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10595
|
+
var loadingCircleStyle$31 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10528
10596
|
var ErrorFill = function ErrorFill(props) {
|
|
10529
10597
|
var color = props.color,
|
|
10530
10598
|
size = props.size,
|
|
@@ -10532,12 +10600,12 @@ var ErrorFill = function ErrorFill(props) {
|
|
|
10532
10600
|
style = props.style,
|
|
10533
10601
|
className = props.className,
|
|
10534
10602
|
iconClassName = props.iconClassName,
|
|
10535
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10603
|
+
otherProps = _objectWithoutProperties(props, _excluded$31);
|
|
10536
10604
|
return /*#__PURE__*/React.createElement("span", {
|
|
10537
10605
|
role: "img",
|
|
10538
10606
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10539
10607
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10540
|
-
children: loadingCircleStyle$
|
|
10608
|
+
children: loadingCircleStyle$31
|
|
10541
10609
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10542
10610
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10543
10611
|
width: size,
|
|
@@ -10572,8 +10640,8 @@ ErrorFill.defaultProps = {
|
|
|
10572
10640
|
size: '1em'
|
|
10573
10641
|
};
|
|
10574
10642
|
|
|
10575
|
-
var _excluded$
|
|
10576
|
-
var loadingCircleStyle$
|
|
10643
|
+
var _excluded$32 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10644
|
+
var loadingCircleStyle$32 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10577
10645
|
var Error2 = function Error2(props) {
|
|
10578
10646
|
var color = props.color,
|
|
10579
10647
|
size = props.size,
|
|
@@ -10581,12 +10649,12 @@ var Error2 = function Error2(props) {
|
|
|
10581
10649
|
style = props.style,
|
|
10582
10650
|
className = props.className,
|
|
10583
10651
|
iconClassName = props.iconClassName,
|
|
10584
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10652
|
+
otherProps = _objectWithoutProperties(props, _excluded$32);
|
|
10585
10653
|
return /*#__PURE__*/React.createElement("span", {
|
|
10586
10654
|
role: "img",
|
|
10587
10655
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10588
10656
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10589
|
-
children: loadingCircleStyle$
|
|
10657
|
+
children: loadingCircleStyle$32
|
|
10590
10658
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10591
10659
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10592
10660
|
width: size,
|
|
@@ -10623,8 +10691,8 @@ Error2.defaultProps = {
|
|
|
10623
10691
|
size: '1em'
|
|
10624
10692
|
};
|
|
10625
10693
|
|
|
10626
|
-
var _excluded$
|
|
10627
|
-
var loadingCircleStyle$
|
|
10694
|
+
var _excluded$33 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10695
|
+
var loadingCircleStyle$33 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10628
10696
|
var Error2Fill = function Error2Fill(props) {
|
|
10629
10697
|
var color = props.color,
|
|
10630
10698
|
size = props.size,
|
|
@@ -10632,12 +10700,12 @@ var Error2Fill = function Error2Fill(props) {
|
|
|
10632
10700
|
style = props.style,
|
|
10633
10701
|
className = props.className,
|
|
10634
10702
|
iconClassName = props.iconClassName,
|
|
10635
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10703
|
+
otherProps = _objectWithoutProperties(props, _excluded$33);
|
|
10636
10704
|
return /*#__PURE__*/React.createElement("span", {
|
|
10637
10705
|
role: "img",
|
|
10638
10706
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10639
10707
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10640
|
-
children: loadingCircleStyle$
|
|
10708
|
+
children: loadingCircleStyle$33
|
|
10641
10709
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10642
10710
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10643
10711
|
width: size,
|
|
@@ -10674,8 +10742,8 @@ Error2Fill.defaultProps = {
|
|
|
10674
10742
|
size: '1em'
|
|
10675
10743
|
};
|
|
10676
10744
|
|
|
10677
|
-
var _excluded$
|
|
10678
|
-
var loadingCircleStyle$
|
|
10745
|
+
var _excluded$34 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10746
|
+
var loadingCircleStyle$34 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10679
10747
|
var Success = function Success(props) {
|
|
10680
10748
|
var color = props.color,
|
|
10681
10749
|
size = props.size,
|
|
@@ -10683,12 +10751,12 @@ var Success = function Success(props) {
|
|
|
10683
10751
|
style = props.style,
|
|
10684
10752
|
className = props.className,
|
|
10685
10753
|
iconClassName = props.iconClassName,
|
|
10686
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10754
|
+
otherProps = _objectWithoutProperties(props, _excluded$34);
|
|
10687
10755
|
return /*#__PURE__*/React.createElement("span", {
|
|
10688
10756
|
role: "img",
|
|
10689
10757
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10690
10758
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10691
|
-
children: loadingCircleStyle$
|
|
10759
|
+
children: loadingCircleStyle$34
|
|
10692
10760
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10693
10761
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10694
10762
|
width: size,
|
|
@@ -10723,8 +10791,8 @@ Success.defaultProps = {
|
|
|
10723
10791
|
size: '1em'
|
|
10724
10792
|
};
|
|
10725
10793
|
|
|
10726
|
-
var _excluded$
|
|
10727
|
-
var loadingCircleStyle$
|
|
10794
|
+
var _excluded$35 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10795
|
+
var loadingCircleStyle$35 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10728
10796
|
var SuccessFill = function SuccessFill(props) {
|
|
10729
10797
|
var color = props.color,
|
|
10730
10798
|
size = props.size,
|
|
@@ -10732,12 +10800,12 @@ var SuccessFill = function SuccessFill(props) {
|
|
|
10732
10800
|
style = props.style,
|
|
10733
10801
|
className = props.className,
|
|
10734
10802
|
iconClassName = props.iconClassName,
|
|
10735
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10803
|
+
otherProps = _objectWithoutProperties(props, _excluded$35);
|
|
10736
10804
|
return /*#__PURE__*/React.createElement("span", {
|
|
10737
10805
|
role: "img",
|
|
10738
10806
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10739
10807
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10740
|
-
children: loadingCircleStyle$
|
|
10808
|
+
children: loadingCircleStyle$35
|
|
10741
10809
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10742
10810
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10743
10811
|
width: size,
|
|
@@ -10774,8 +10842,8 @@ SuccessFill.defaultProps = {
|
|
|
10774
10842
|
size: '1em'
|
|
10775
10843
|
};
|
|
10776
10844
|
|
|
10777
|
-
var _excluded$
|
|
10778
|
-
var loadingCircleStyle$
|
|
10845
|
+
var _excluded$36 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10846
|
+
var loadingCircleStyle$36 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10779
10847
|
var Delete2 = function Delete2(props) {
|
|
10780
10848
|
var color = props.color,
|
|
10781
10849
|
size = props.size,
|
|
@@ -10783,12 +10851,12 @@ var Delete2 = function Delete2(props) {
|
|
|
10783
10851
|
style = props.style,
|
|
10784
10852
|
className = props.className,
|
|
10785
10853
|
iconClassName = props.iconClassName,
|
|
10786
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10854
|
+
otherProps = _objectWithoutProperties(props, _excluded$36);
|
|
10787
10855
|
return /*#__PURE__*/React.createElement("span", {
|
|
10788
10856
|
role: "img",
|
|
10789
10857
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10790
10858
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10791
|
-
children: loadingCircleStyle$
|
|
10859
|
+
children: loadingCircleStyle$36
|
|
10792
10860
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10793
10861
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10794
10862
|
width: size,
|
|
@@ -10823,8 +10891,8 @@ Delete2.defaultProps = {
|
|
|
10823
10891
|
size: '1em'
|
|
10824
10892
|
};
|
|
10825
10893
|
|
|
10826
|
-
var _excluded$
|
|
10827
|
-
var loadingCircleStyle$
|
|
10894
|
+
var _excluded$37 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10895
|
+
var loadingCircleStyle$37 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10828
10896
|
var Delete2Fill = function Delete2Fill(props) {
|
|
10829
10897
|
var color = props.color,
|
|
10830
10898
|
size = props.size,
|
|
@@ -10832,12 +10900,12 @@ var Delete2Fill = function Delete2Fill(props) {
|
|
|
10832
10900
|
style = props.style,
|
|
10833
10901
|
className = props.className,
|
|
10834
10902
|
iconClassName = props.iconClassName,
|
|
10835
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10903
|
+
otherProps = _objectWithoutProperties(props, _excluded$37);
|
|
10836
10904
|
return /*#__PURE__*/React.createElement("span", {
|
|
10837
10905
|
role: "img",
|
|
10838
10906
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10839
10907
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10840
|
-
children: loadingCircleStyle$
|
|
10908
|
+
children: loadingCircleStyle$37
|
|
10841
10909
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10842
10910
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10843
10911
|
width: size,
|
|
@@ -10872,8 +10940,8 @@ Delete2Fill.defaultProps = {
|
|
|
10872
10940
|
size: '1em'
|
|
10873
10941
|
};
|
|
10874
10942
|
|
|
10875
|
-
var _excluded$
|
|
10876
|
-
var loadingCircleStyle$
|
|
10943
|
+
var _excluded$38 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10944
|
+
var loadingCircleStyle$38 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10877
10945
|
var Exchange = function Exchange(props) {
|
|
10878
10946
|
var color = props.color,
|
|
10879
10947
|
size = props.size,
|
|
@@ -10881,12 +10949,12 @@ var Exchange = function Exchange(props) {
|
|
|
10881
10949
|
style = props.style,
|
|
10882
10950
|
className = props.className,
|
|
10883
10951
|
iconClassName = props.iconClassName,
|
|
10884
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10952
|
+
otherProps = _objectWithoutProperties(props, _excluded$38);
|
|
10885
10953
|
return /*#__PURE__*/React.createElement("span", {
|
|
10886
10954
|
role: "img",
|
|
10887
10955
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10888
10956
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10889
|
-
children: loadingCircleStyle$
|
|
10957
|
+
children: loadingCircleStyle$38
|
|
10890
10958
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10891
10959
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10892
10960
|
width: size,
|
|
@@ -10921,8 +10989,8 @@ Exchange.defaultProps = {
|
|
|
10921
10989
|
size: '1em'
|
|
10922
10990
|
};
|
|
10923
10991
|
|
|
10924
|
-
var _excluded$
|
|
10925
|
-
var loadingCircleStyle$
|
|
10992
|
+
var _excluded$39 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
10993
|
+
var loadingCircleStyle$39 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10926
10994
|
var SwapFill = function SwapFill(props) {
|
|
10927
10995
|
var color = props.color,
|
|
10928
10996
|
size = props.size,
|
|
@@ -10930,12 +10998,12 @@ var SwapFill = function SwapFill(props) {
|
|
|
10930
10998
|
style = props.style,
|
|
10931
10999
|
className = props.className,
|
|
10932
11000
|
iconClassName = props.iconClassName,
|
|
10933
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11001
|
+
otherProps = _objectWithoutProperties(props, _excluded$39);
|
|
10934
11002
|
return /*#__PURE__*/React.createElement("span", {
|
|
10935
11003
|
role: "img",
|
|
10936
11004
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10937
11005
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10938
|
-
children: loadingCircleStyle$
|
|
11006
|
+
children: loadingCircleStyle$39
|
|
10939
11007
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10940
11008
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10941
11009
|
width: size,
|
|
@@ -10970,8 +11038,8 @@ SwapFill.defaultProps = {
|
|
|
10970
11038
|
size: '1em'
|
|
10971
11039
|
};
|
|
10972
11040
|
|
|
10973
|
-
var _excluded$
|
|
10974
|
-
var loadingCircleStyle$
|
|
11041
|
+
var _excluded$3a = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11042
|
+
var loadingCircleStyle$3a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
10975
11043
|
var Processing = function Processing(props) {
|
|
10976
11044
|
var color = props.color,
|
|
10977
11045
|
size = props.size,
|
|
@@ -10979,12 +11047,12 @@ var Processing = function Processing(props) {
|
|
|
10979
11047
|
style = props.style,
|
|
10980
11048
|
className = props.className,
|
|
10981
11049
|
iconClassName = props.iconClassName,
|
|
10982
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11050
|
+
otherProps = _objectWithoutProperties(props, _excluded$3a);
|
|
10983
11051
|
return /*#__PURE__*/React.createElement("span", {
|
|
10984
11052
|
role: "img",
|
|
10985
11053
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
10986
11054
|
}, /*#__PURE__*/React.createElement("style", {
|
|
10987
|
-
children: loadingCircleStyle$
|
|
11055
|
+
children: loadingCircleStyle$3a
|
|
10988
11056
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
10989
11057
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10990
11058
|
width: size,
|
|
@@ -11019,8 +11087,8 @@ Processing.defaultProps = {
|
|
|
11019
11087
|
size: '1em'
|
|
11020
11088
|
};
|
|
11021
11089
|
|
|
11022
|
-
var _excluded$
|
|
11023
|
-
var loadingCircleStyle$
|
|
11090
|
+
var _excluded$3b = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11091
|
+
var loadingCircleStyle$3b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11024
11092
|
var Processing2 = function Processing2(props) {
|
|
11025
11093
|
var color = props.color,
|
|
11026
11094
|
size = props.size,
|
|
@@ -11028,12 +11096,12 @@ var Processing2 = function Processing2(props) {
|
|
|
11028
11096
|
style = props.style,
|
|
11029
11097
|
className = props.className,
|
|
11030
11098
|
iconClassName = props.iconClassName,
|
|
11031
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11099
|
+
otherProps = _objectWithoutProperties(props, _excluded$3b);
|
|
11032
11100
|
return /*#__PURE__*/React.createElement("span", {
|
|
11033
11101
|
role: "img",
|
|
11034
11102
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11035
11103
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11036
|
-
children: loadingCircleStyle$
|
|
11104
|
+
children: loadingCircleStyle$3b
|
|
11037
11105
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11038
11106
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11039
11107
|
width: size,
|
|
@@ -11070,8 +11138,8 @@ Processing2.defaultProps = {
|
|
|
11070
11138
|
size: '1em'
|
|
11071
11139
|
};
|
|
11072
11140
|
|
|
11073
|
-
var _excluded$
|
|
11074
|
-
var loadingCircleStyle$
|
|
11141
|
+
var _excluded$3c = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11142
|
+
var loadingCircleStyle$3c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11075
11143
|
var Done = function Done(props) {
|
|
11076
11144
|
var color = props.color,
|
|
11077
11145
|
size = props.size,
|
|
@@ -11079,12 +11147,12 @@ var Done = function Done(props) {
|
|
|
11079
11147
|
style = props.style,
|
|
11080
11148
|
className = props.className,
|
|
11081
11149
|
iconClassName = props.iconClassName,
|
|
11082
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11150
|
+
otherProps = _objectWithoutProperties(props, _excluded$3c);
|
|
11083
11151
|
return /*#__PURE__*/React.createElement("span", {
|
|
11084
11152
|
role: "img",
|
|
11085
11153
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11086
11154
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11087
|
-
children: loadingCircleStyle$
|
|
11155
|
+
children: loadingCircleStyle$3c
|
|
11088
11156
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11089
11157
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11090
11158
|
width: size,
|
|
@@ -11119,8 +11187,8 @@ Done.defaultProps = {
|
|
|
11119
11187
|
size: '1em'
|
|
11120
11188
|
};
|
|
11121
11189
|
|
|
11122
|
-
var _excluded$
|
|
11123
|
-
var loadingCircleStyle$
|
|
11190
|
+
var _excluded$3d = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11191
|
+
var loadingCircleStyle$3d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11124
11192
|
var Close = function Close(props) {
|
|
11125
11193
|
var color = props.color,
|
|
11126
11194
|
size = props.size,
|
|
@@ -11128,12 +11196,12 @@ var Close = function Close(props) {
|
|
|
11128
11196
|
style = props.style,
|
|
11129
11197
|
className = props.className,
|
|
11130
11198
|
iconClassName = props.iconClassName,
|
|
11131
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11199
|
+
otherProps = _objectWithoutProperties(props, _excluded$3d);
|
|
11132
11200
|
return /*#__PURE__*/React.createElement("span", {
|
|
11133
11201
|
role: "img",
|
|
11134
11202
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11135
11203
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11136
|
-
children: loadingCircleStyle$
|
|
11204
|
+
children: loadingCircleStyle$3d
|
|
11137
11205
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11138
11206
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11139
11207
|
width: size,
|
|
@@ -11168,8 +11236,8 @@ Close.defaultProps = {
|
|
|
11168
11236
|
size: '1em'
|
|
11169
11237
|
};
|
|
11170
11238
|
|
|
11171
|
-
var _excluded$
|
|
11172
|
-
var loadingCircleStyle$
|
|
11239
|
+
var _excluded$3e = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11240
|
+
var loadingCircleStyle$3e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11173
11241
|
var StarOutline = function StarOutline(props) {
|
|
11174
11242
|
var color = props.color,
|
|
11175
11243
|
size = props.size,
|
|
@@ -11177,12 +11245,12 @@ var StarOutline = function StarOutline(props) {
|
|
|
11177
11245
|
style = props.style,
|
|
11178
11246
|
className = props.className,
|
|
11179
11247
|
iconClassName = props.iconClassName,
|
|
11180
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11248
|
+
otherProps = _objectWithoutProperties(props, _excluded$3e);
|
|
11181
11249
|
return /*#__PURE__*/React.createElement("span", {
|
|
11182
11250
|
role: "img",
|
|
11183
11251
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11184
11252
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11185
|
-
children: loadingCircleStyle$
|
|
11253
|
+
children: loadingCircleStyle$3e
|
|
11186
11254
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11187
11255
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11188
11256
|
width: size,
|
|
@@ -11217,8 +11285,8 @@ StarOutline.defaultProps = {
|
|
|
11217
11285
|
size: '1em'
|
|
11218
11286
|
};
|
|
11219
11287
|
|
|
11220
|
-
var _excluded$
|
|
11221
|
-
var loadingCircleStyle$
|
|
11288
|
+
var _excluded$3f = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11289
|
+
var loadingCircleStyle$3f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11222
11290
|
var StarFill = function StarFill(props) {
|
|
11223
11291
|
var color = props.color,
|
|
11224
11292
|
size = props.size,
|
|
@@ -11226,12 +11294,12 @@ var StarFill = function StarFill(props) {
|
|
|
11226
11294
|
style = props.style,
|
|
11227
11295
|
className = props.className,
|
|
11228
11296
|
iconClassName = props.iconClassName,
|
|
11229
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11297
|
+
otherProps = _objectWithoutProperties(props, _excluded$3f);
|
|
11230
11298
|
return /*#__PURE__*/React.createElement("span", {
|
|
11231
11299
|
role: "img",
|
|
11232
11300
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11233
11301
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11234
|
-
children: loadingCircleStyle$
|
|
11302
|
+
children: loadingCircleStyle$3f
|
|
11235
11303
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11236
11304
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11237
11305
|
width: size,
|
|
@@ -11266,8 +11334,8 @@ StarFill.defaultProps = {
|
|
|
11266
11334
|
size: '1em'
|
|
11267
11335
|
};
|
|
11268
11336
|
|
|
11269
|
-
var _excluded$
|
|
11270
|
-
var loadingCircleStyle$
|
|
11337
|
+
var _excluded$3g = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11338
|
+
var loadingCircleStyle$3g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11271
11339
|
var TimeLock = function TimeLock(props) {
|
|
11272
11340
|
var color = props.color,
|
|
11273
11341
|
size = props.size,
|
|
@@ -11275,12 +11343,12 @@ var TimeLock = function TimeLock(props) {
|
|
|
11275
11343
|
style = props.style,
|
|
11276
11344
|
className = props.className,
|
|
11277
11345
|
iconClassName = props.iconClassName,
|
|
11278
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11346
|
+
otherProps = _objectWithoutProperties(props, _excluded$3g);
|
|
11279
11347
|
return /*#__PURE__*/React.createElement("span", {
|
|
11280
11348
|
role: "img",
|
|
11281
11349
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11282
11350
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11283
|
-
children: loadingCircleStyle$
|
|
11351
|
+
children: loadingCircleStyle$3g
|
|
11284
11352
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11285
11353
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11286
11354
|
width: size,
|
|
@@ -11315,8 +11383,8 @@ TimeLock.defaultProps = {
|
|
|
11315
11383
|
size: '1em'
|
|
11316
11384
|
};
|
|
11317
11385
|
|
|
11318
|
-
var _excluded$
|
|
11319
|
-
var loadingCircleStyle$
|
|
11386
|
+
var _excluded$3h = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11387
|
+
var loadingCircleStyle$3h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11320
11388
|
var Heart = function Heart(props) {
|
|
11321
11389
|
var color = props.color,
|
|
11322
11390
|
size = props.size,
|
|
@@ -11324,12 +11392,12 @@ var Heart = function Heart(props) {
|
|
|
11324
11392
|
style = props.style,
|
|
11325
11393
|
className = props.className,
|
|
11326
11394
|
iconClassName = props.iconClassName,
|
|
11327
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11395
|
+
otherProps = _objectWithoutProperties(props, _excluded$3h);
|
|
11328
11396
|
return /*#__PURE__*/React.createElement("span", {
|
|
11329
11397
|
role: "img",
|
|
11330
11398
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11331
11399
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11332
|
-
children: loadingCircleStyle$
|
|
11400
|
+
children: loadingCircleStyle$3h
|
|
11333
11401
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11334
11402
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11335
11403
|
width: size,
|
|
@@ -11364,8 +11432,8 @@ Heart.defaultProps = {
|
|
|
11364
11432
|
size: '1em'
|
|
11365
11433
|
};
|
|
11366
11434
|
|
|
11367
|
-
var _excluded$
|
|
11368
|
-
var loadingCircleStyle$
|
|
11435
|
+
var _excluded$3i = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11436
|
+
var loadingCircleStyle$3i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11369
11437
|
var Bookmark = function Bookmark(props) {
|
|
11370
11438
|
var color = props.color,
|
|
11371
11439
|
size = props.size,
|
|
@@ -11373,12 +11441,12 @@ var Bookmark = function Bookmark(props) {
|
|
|
11373
11441
|
style = props.style,
|
|
11374
11442
|
className = props.className,
|
|
11375
11443
|
iconClassName = props.iconClassName,
|
|
11376
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11444
|
+
otherProps = _objectWithoutProperties(props, _excluded$3i);
|
|
11377
11445
|
return /*#__PURE__*/React.createElement("span", {
|
|
11378
11446
|
role: "img",
|
|
11379
11447
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11380
11448
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11381
|
-
children: loadingCircleStyle$
|
|
11449
|
+
children: loadingCircleStyle$3i
|
|
11382
11450
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11383
11451
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11384
11452
|
width: size,
|
|
@@ -11413,8 +11481,8 @@ Bookmark.defaultProps = {
|
|
|
11413
11481
|
size: '1em'
|
|
11414
11482
|
};
|
|
11415
11483
|
|
|
11416
|
-
var _excluded$
|
|
11417
|
-
var loadingCircleStyle$
|
|
11484
|
+
var _excluded$3j = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11485
|
+
var loadingCircleStyle$3j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11418
11486
|
var Bookmark2 = function Bookmark2(props) {
|
|
11419
11487
|
var color = props.color,
|
|
11420
11488
|
size = props.size,
|
|
@@ -11422,12 +11490,12 @@ var Bookmark2 = function Bookmark2(props) {
|
|
|
11422
11490
|
style = props.style,
|
|
11423
11491
|
className = props.className,
|
|
11424
11492
|
iconClassName = props.iconClassName,
|
|
11425
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11493
|
+
otherProps = _objectWithoutProperties(props, _excluded$3j);
|
|
11426
11494
|
return /*#__PURE__*/React.createElement("span", {
|
|
11427
11495
|
role: "img",
|
|
11428
11496
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11429
11497
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11430
|
-
children: loadingCircleStyle$
|
|
11498
|
+
children: loadingCircleStyle$3j
|
|
11431
11499
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11432
11500
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11433
11501
|
width: size,
|
|
@@ -11462,8 +11530,8 @@ Bookmark2.defaultProps = {
|
|
|
11462
11530
|
size: '1em'
|
|
11463
11531
|
};
|
|
11464
11532
|
|
|
11465
|
-
var _excluded$
|
|
11466
|
-
var loadingCircleStyle$
|
|
11533
|
+
var _excluded$3k = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11534
|
+
var loadingCircleStyle$3k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11467
11535
|
var LockClose = function LockClose(props) {
|
|
11468
11536
|
var color = props.color,
|
|
11469
11537
|
size = props.size,
|
|
@@ -11471,12 +11539,12 @@ var LockClose = function LockClose(props) {
|
|
|
11471
11539
|
style = props.style,
|
|
11472
11540
|
className = props.className,
|
|
11473
11541
|
iconClassName = props.iconClassName,
|
|
11474
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11542
|
+
otherProps = _objectWithoutProperties(props, _excluded$3k);
|
|
11475
11543
|
return /*#__PURE__*/React.createElement("span", {
|
|
11476
11544
|
role: "img",
|
|
11477
11545
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11478
11546
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11479
|
-
children: loadingCircleStyle$
|
|
11547
|
+
children: loadingCircleStyle$3k
|
|
11480
11548
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11481
11549
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11482
11550
|
width: size,
|
|
@@ -11515,8 +11583,8 @@ LockClose.defaultProps = {
|
|
|
11515
11583
|
size: '1em'
|
|
11516
11584
|
};
|
|
11517
11585
|
|
|
11518
|
-
var _excluded$
|
|
11519
|
-
var loadingCircleStyle$
|
|
11586
|
+
var _excluded$3l = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11587
|
+
var loadingCircleStyle$3l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11520
11588
|
var LockCloseFill = function LockCloseFill(props) {
|
|
11521
11589
|
var color = props.color,
|
|
11522
11590
|
size = props.size,
|
|
@@ -11524,12 +11592,12 @@ var LockCloseFill = function LockCloseFill(props) {
|
|
|
11524
11592
|
style = props.style,
|
|
11525
11593
|
className = props.className,
|
|
11526
11594
|
iconClassName = props.iconClassName,
|
|
11527
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11595
|
+
otherProps = _objectWithoutProperties(props, _excluded$3l);
|
|
11528
11596
|
return /*#__PURE__*/React.createElement("span", {
|
|
11529
11597
|
role: "img",
|
|
11530
11598
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11531
11599
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11532
|
-
children: loadingCircleStyle$
|
|
11600
|
+
children: loadingCircleStyle$3l
|
|
11533
11601
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11534
11602
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11535
11603
|
width: size,
|
|
@@ -11564,8 +11632,8 @@ LockCloseFill.defaultProps = {
|
|
|
11564
11632
|
size: '1em'
|
|
11565
11633
|
};
|
|
11566
11634
|
|
|
11567
|
-
var _excluded$
|
|
11568
|
-
var loadingCircleStyle$
|
|
11635
|
+
var _excluded$3m = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11636
|
+
var loadingCircleStyle$3m = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11569
11637
|
var LockOpen = function LockOpen(props) {
|
|
11570
11638
|
var color = props.color,
|
|
11571
11639
|
size = props.size,
|
|
@@ -11573,12 +11641,12 @@ var LockOpen = function LockOpen(props) {
|
|
|
11573
11641
|
style = props.style,
|
|
11574
11642
|
className = props.className,
|
|
11575
11643
|
iconClassName = props.iconClassName,
|
|
11576
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11644
|
+
otherProps = _objectWithoutProperties(props, _excluded$3m);
|
|
11577
11645
|
return /*#__PURE__*/React.createElement("span", {
|
|
11578
11646
|
role: "img",
|
|
11579
11647
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11580
11648
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11581
|
-
children: loadingCircleStyle$
|
|
11649
|
+
children: loadingCircleStyle$3m
|
|
11582
11650
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11583
11651
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11584
11652
|
width: size,
|
|
@@ -11613,8 +11681,8 @@ LockOpen.defaultProps = {
|
|
|
11613
11681
|
size: '1em'
|
|
11614
11682
|
};
|
|
11615
11683
|
|
|
11616
|
-
var _excluded$
|
|
11617
|
-
var loadingCircleStyle$
|
|
11684
|
+
var _excluded$3n = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11685
|
+
var loadingCircleStyle$3n = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11618
11686
|
var LockOpenFill = function LockOpenFill(props) {
|
|
11619
11687
|
var color = props.color,
|
|
11620
11688
|
size = props.size,
|
|
@@ -11622,12 +11690,12 @@ var LockOpenFill = function LockOpenFill(props) {
|
|
|
11622
11690
|
style = props.style,
|
|
11623
11691
|
className = props.className,
|
|
11624
11692
|
iconClassName = props.iconClassName,
|
|
11625
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11693
|
+
otherProps = _objectWithoutProperties(props, _excluded$3n);
|
|
11626
11694
|
return /*#__PURE__*/React.createElement("span", {
|
|
11627
11695
|
role: "img",
|
|
11628
11696
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11629
11697
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11630
|
-
children: loadingCircleStyle$
|
|
11698
|
+
children: loadingCircleStyle$3n
|
|
11631
11699
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11632
11700
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11633
11701
|
width: size,
|
|
@@ -11662,8 +11730,8 @@ LockOpenFill.defaultProps = {
|
|
|
11662
11730
|
size: '1em'
|
|
11663
11731
|
};
|
|
11664
11732
|
|
|
11665
|
-
var _excluded$
|
|
11666
|
-
var loadingCircleStyle$
|
|
11733
|
+
var _excluded$3o = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11734
|
+
var loadingCircleStyle$3o = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11667
11735
|
var EyeOn = function EyeOn(props) {
|
|
11668
11736
|
var color = props.color,
|
|
11669
11737
|
size = props.size,
|
|
@@ -11671,12 +11739,12 @@ var EyeOn = function EyeOn(props) {
|
|
|
11671
11739
|
style = props.style,
|
|
11672
11740
|
className = props.className,
|
|
11673
11741
|
iconClassName = props.iconClassName,
|
|
11674
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11742
|
+
otherProps = _objectWithoutProperties(props, _excluded$3o);
|
|
11675
11743
|
return /*#__PURE__*/React.createElement("span", {
|
|
11676
11744
|
role: "img",
|
|
11677
11745
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11678
11746
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11679
|
-
children: loadingCircleStyle$
|
|
11747
|
+
children: loadingCircleStyle$3o
|
|
11680
11748
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11681
11749
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11682
11750
|
width: size,
|
|
@@ -11711,8 +11779,8 @@ EyeOn.defaultProps = {
|
|
|
11711
11779
|
size: '1em'
|
|
11712
11780
|
};
|
|
11713
11781
|
|
|
11714
|
-
var _excluded$
|
|
11715
|
-
var loadingCircleStyle$
|
|
11782
|
+
var _excluded$3p = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11783
|
+
var loadingCircleStyle$3p = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11716
11784
|
var EyeOnFill = function EyeOnFill(props) {
|
|
11717
11785
|
var color = props.color,
|
|
11718
11786
|
size = props.size,
|
|
@@ -11720,12 +11788,12 @@ var EyeOnFill = function EyeOnFill(props) {
|
|
|
11720
11788
|
style = props.style,
|
|
11721
11789
|
className = props.className,
|
|
11722
11790
|
iconClassName = props.iconClassName,
|
|
11723
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11791
|
+
otherProps = _objectWithoutProperties(props, _excluded$3p);
|
|
11724
11792
|
return /*#__PURE__*/React.createElement("span", {
|
|
11725
11793
|
role: "img",
|
|
11726
11794
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11727
11795
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11728
|
-
children: loadingCircleStyle$
|
|
11796
|
+
children: loadingCircleStyle$3p
|
|
11729
11797
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11730
11798
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11731
11799
|
width: size,
|
|
@@ -11762,8 +11830,8 @@ EyeOnFill.defaultProps = {
|
|
|
11762
11830
|
size: '1em'
|
|
11763
11831
|
};
|
|
11764
11832
|
|
|
11765
|
-
var _excluded$
|
|
11766
|
-
var loadingCircleStyle$
|
|
11833
|
+
var _excluded$3q = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11834
|
+
var loadingCircleStyle$3q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11767
11835
|
var EyeOff = function EyeOff(props) {
|
|
11768
11836
|
var color = props.color,
|
|
11769
11837
|
size = props.size,
|
|
@@ -11771,12 +11839,12 @@ var EyeOff = function EyeOff(props) {
|
|
|
11771
11839
|
style = props.style,
|
|
11772
11840
|
className = props.className,
|
|
11773
11841
|
iconClassName = props.iconClassName,
|
|
11774
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11842
|
+
otherProps = _objectWithoutProperties(props, _excluded$3q);
|
|
11775
11843
|
return /*#__PURE__*/React.createElement("span", {
|
|
11776
11844
|
role: "img",
|
|
11777
11845
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11778
11846
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11779
|
-
children: loadingCircleStyle$
|
|
11847
|
+
children: loadingCircleStyle$3q
|
|
11780
11848
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11781
11849
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11782
11850
|
width: size,
|
|
@@ -11811,8 +11879,8 @@ EyeOff.defaultProps = {
|
|
|
11811
11879
|
size: '1em'
|
|
11812
11880
|
};
|
|
11813
11881
|
|
|
11814
|
-
var _excluded$
|
|
11815
|
-
var loadingCircleStyle$
|
|
11882
|
+
var _excluded$3r = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11883
|
+
var loadingCircleStyle$3r = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11816
11884
|
var EyeOffFill = function EyeOffFill(props) {
|
|
11817
11885
|
var color = props.color,
|
|
11818
11886
|
size = props.size,
|
|
@@ -11820,12 +11888,12 @@ var EyeOffFill = function EyeOffFill(props) {
|
|
|
11820
11888
|
style = props.style,
|
|
11821
11889
|
className = props.className,
|
|
11822
11890
|
iconClassName = props.iconClassName,
|
|
11823
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11891
|
+
otherProps = _objectWithoutProperties(props, _excluded$3r);
|
|
11824
11892
|
return /*#__PURE__*/React.createElement("span", {
|
|
11825
11893
|
role: "img",
|
|
11826
11894
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11827
11895
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11828
|
-
children: loadingCircleStyle$
|
|
11896
|
+
children: loadingCircleStyle$3r
|
|
11829
11897
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11830
11898
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11831
11899
|
width: size,
|
|
@@ -11862,8 +11930,8 @@ EyeOffFill.defaultProps = {
|
|
|
11862
11930
|
size: '1em'
|
|
11863
11931
|
};
|
|
11864
11932
|
|
|
11865
|
-
var _excluded$
|
|
11866
|
-
var loadingCircleStyle$
|
|
11933
|
+
var _excluded$3s = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11934
|
+
var loadingCircleStyle$3s = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11867
11935
|
var Dot = function Dot(props) {
|
|
11868
11936
|
var color = props.color,
|
|
11869
11937
|
size = props.size,
|
|
@@ -11871,12 +11939,12 @@ var Dot = function Dot(props) {
|
|
|
11871
11939
|
style = props.style,
|
|
11872
11940
|
className = props.className,
|
|
11873
11941
|
iconClassName = props.iconClassName,
|
|
11874
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11942
|
+
otherProps = _objectWithoutProperties(props, _excluded$3s);
|
|
11875
11943
|
return /*#__PURE__*/React.createElement("span", {
|
|
11876
11944
|
role: "img",
|
|
11877
11945
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11878
11946
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11879
|
-
children: loadingCircleStyle$
|
|
11947
|
+
children: loadingCircleStyle$3s
|
|
11880
11948
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11881
11949
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11882
11950
|
width: size,
|
|
@@ -11913,8 +11981,8 @@ Dot.defaultProps = {
|
|
|
11913
11981
|
size: '1em'
|
|
11914
11982
|
};
|
|
11915
11983
|
|
|
11916
|
-
var _excluded$
|
|
11917
|
-
var loadingCircleStyle$
|
|
11984
|
+
var _excluded$3t = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
11985
|
+
var loadingCircleStyle$3t = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11918
11986
|
var Anchor = function Anchor(props) {
|
|
11919
11987
|
var color = props.color,
|
|
11920
11988
|
size = props.size,
|
|
@@ -11922,12 +11990,12 @@ var Anchor = function Anchor(props) {
|
|
|
11922
11990
|
style = props.style,
|
|
11923
11991
|
className = props.className,
|
|
11924
11992
|
iconClassName = props.iconClassName,
|
|
11925
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11993
|
+
otherProps = _objectWithoutProperties(props, _excluded$3t);
|
|
11926
11994
|
return /*#__PURE__*/React.createElement("span", {
|
|
11927
11995
|
role: "img",
|
|
11928
11996
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11929
11997
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11930
|
-
children: loadingCircleStyle$
|
|
11998
|
+
children: loadingCircleStyle$3t
|
|
11931
11999
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11932
12000
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11933
12001
|
width: size,
|
|
@@ -11962,8 +12030,8 @@ Anchor.defaultProps = {
|
|
|
11962
12030
|
size: '1em'
|
|
11963
12031
|
};
|
|
11964
12032
|
|
|
11965
|
-
var _excluded$
|
|
11966
|
-
var loadingCircleStyle$
|
|
12033
|
+
var _excluded$3u = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12034
|
+
var loadingCircleStyle$3u = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
11967
12035
|
var Notice = function Notice(props) {
|
|
11968
12036
|
var color = props.color,
|
|
11969
12037
|
size = props.size,
|
|
@@ -11971,12 +12039,12 @@ var Notice = function Notice(props) {
|
|
|
11971
12039
|
style = props.style,
|
|
11972
12040
|
className = props.className,
|
|
11973
12041
|
iconClassName = props.iconClassName,
|
|
11974
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12042
|
+
otherProps = _objectWithoutProperties(props, _excluded$3u);
|
|
11975
12043
|
return /*#__PURE__*/React.createElement("span", {
|
|
11976
12044
|
role: "img",
|
|
11977
12045
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
11978
12046
|
}, /*#__PURE__*/React.createElement("style", {
|
|
11979
|
-
children: loadingCircleStyle$
|
|
12047
|
+
children: loadingCircleStyle$3u
|
|
11980
12048
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
11981
12049
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11982
12050
|
width: size,
|
|
@@ -12013,8 +12081,8 @@ Notice.defaultProps = {
|
|
|
12013
12081
|
size: '1em'
|
|
12014
12082
|
};
|
|
12015
12083
|
|
|
12016
|
-
var _excluded$
|
|
12017
|
-
var loadingCircleStyle$
|
|
12084
|
+
var _excluded$3v = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12085
|
+
var loadingCircleStyle$3v = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12018
12086
|
var ChartLine = function ChartLine(props) {
|
|
12019
12087
|
var color = props.color,
|
|
12020
12088
|
size = props.size,
|
|
@@ -12022,12 +12090,12 @@ var ChartLine = function ChartLine(props) {
|
|
|
12022
12090
|
style = props.style,
|
|
12023
12091
|
className = props.className,
|
|
12024
12092
|
iconClassName = props.iconClassName,
|
|
12025
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12093
|
+
otherProps = _objectWithoutProperties(props, _excluded$3v);
|
|
12026
12094
|
return /*#__PURE__*/React.createElement("span", {
|
|
12027
12095
|
role: "img",
|
|
12028
12096
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12029
12097
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12030
|
-
children: loadingCircleStyle$
|
|
12098
|
+
children: loadingCircleStyle$3v
|
|
12031
12099
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12032
12100
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12033
12101
|
width: size,
|
|
@@ -12068,8 +12136,8 @@ ChartLine.defaultProps = {
|
|
|
12068
12136
|
size: '1em'
|
|
12069
12137
|
};
|
|
12070
12138
|
|
|
12071
|
-
var _excluded$
|
|
12072
|
-
var loadingCircleStyle$
|
|
12139
|
+
var _excluded$3w = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12140
|
+
var loadingCircleStyle$3w = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12073
12141
|
var ChartBar = function ChartBar(props) {
|
|
12074
12142
|
var color = props.color,
|
|
12075
12143
|
size = props.size,
|
|
@@ -12077,12 +12145,12 @@ var ChartBar = function ChartBar(props) {
|
|
|
12077
12145
|
style = props.style,
|
|
12078
12146
|
className = props.className,
|
|
12079
12147
|
iconClassName = props.iconClassName,
|
|
12080
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12148
|
+
otherProps = _objectWithoutProperties(props, _excluded$3w);
|
|
12081
12149
|
return /*#__PURE__*/React.createElement("span", {
|
|
12082
12150
|
role: "img",
|
|
12083
12151
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12084
12152
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12085
|
-
children: loadingCircleStyle$
|
|
12153
|
+
children: loadingCircleStyle$3w
|
|
12086
12154
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12087
12155
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12088
12156
|
width: size,
|
|
@@ -12121,8 +12189,8 @@ ChartBar.defaultProps = {
|
|
|
12121
12189
|
size: '1em'
|
|
12122
12190
|
};
|
|
12123
12191
|
|
|
12124
|
-
var _excluded$
|
|
12125
|
-
var loadingCircleStyle$
|
|
12192
|
+
var _excluded$3x = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12193
|
+
var loadingCircleStyle$3x = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12126
12194
|
var ChartCum = function ChartCum(props) {
|
|
12127
12195
|
var color = props.color,
|
|
12128
12196
|
size = props.size,
|
|
@@ -12130,12 +12198,12 @@ var ChartCum = function ChartCum(props) {
|
|
|
12130
12198
|
style = props.style,
|
|
12131
12199
|
className = props.className,
|
|
12132
12200
|
iconClassName = props.iconClassName,
|
|
12133
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12201
|
+
otherProps = _objectWithoutProperties(props, _excluded$3x);
|
|
12134
12202
|
return /*#__PURE__*/React.createElement("span", {
|
|
12135
12203
|
role: "img",
|
|
12136
12204
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12137
12205
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12138
|
-
children: loadingCircleStyle$
|
|
12206
|
+
children: loadingCircleStyle$3x
|
|
12139
12207
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12140
12208
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12141
12209
|
width: size,
|
|
@@ -12172,8 +12240,8 @@ ChartCum.defaultProps = {
|
|
|
12172
12240
|
size: '1em'
|
|
12173
12241
|
};
|
|
12174
12242
|
|
|
12175
|
-
var _excluded$
|
|
12176
|
-
var loadingCircleStyle$
|
|
12243
|
+
var _excluded$3y = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12244
|
+
var loadingCircleStyle$3y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12177
12245
|
var ChartPie = function ChartPie(props) {
|
|
12178
12246
|
var color = props.color,
|
|
12179
12247
|
size = props.size,
|
|
@@ -12181,12 +12249,12 @@ var ChartPie = function ChartPie(props) {
|
|
|
12181
12249
|
style = props.style,
|
|
12182
12250
|
className = props.className,
|
|
12183
12251
|
iconClassName = props.iconClassName,
|
|
12184
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12252
|
+
otherProps = _objectWithoutProperties(props, _excluded$3y);
|
|
12185
12253
|
return /*#__PURE__*/React.createElement("span", {
|
|
12186
12254
|
role: "img",
|
|
12187
12255
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12188
12256
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12189
|
-
children: loadingCircleStyle$
|
|
12257
|
+
children: loadingCircleStyle$3y
|
|
12190
12258
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12191
12259
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12192
12260
|
width: size,
|
|
@@ -12223,8 +12291,8 @@ ChartPie.defaultProps = {
|
|
|
12223
12291
|
size: '1em'
|
|
12224
12292
|
};
|
|
12225
12293
|
|
|
12226
|
-
var _excluded$
|
|
12227
|
-
var loadingCircleStyle$
|
|
12294
|
+
var _excluded$3z = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12295
|
+
var loadingCircleStyle$3z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12228
12296
|
var ChartDNRe = function ChartDNRe(props) {
|
|
12229
12297
|
var color = props.color,
|
|
12230
12298
|
size = props.size,
|
|
@@ -12232,12 +12300,12 @@ var ChartDNRe = function ChartDNRe(props) {
|
|
|
12232
12300
|
style = props.style,
|
|
12233
12301
|
className = props.className,
|
|
12234
12302
|
iconClassName = props.iconClassName,
|
|
12235
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12303
|
+
otherProps = _objectWithoutProperties(props, _excluded$3z);
|
|
12236
12304
|
return /*#__PURE__*/React.createElement("span", {
|
|
12237
12305
|
role: "img",
|
|
12238
12306
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12239
12307
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12240
|
-
children: loadingCircleStyle$
|
|
12308
|
+
children: loadingCircleStyle$3z
|
|
12241
12309
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12242
12310
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12243
12311
|
width: size,
|
|
@@ -12284,8 +12352,8 @@ ChartDNRe.defaultProps = {
|
|
|
12284
12352
|
size: '1em'
|
|
12285
12353
|
};
|
|
12286
12354
|
|
|
12287
|
-
var _excluded$
|
|
12288
|
-
var loadingCircleStyle$
|
|
12355
|
+
var _excluded$3A = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12356
|
+
var loadingCircleStyle$3A = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12289
12357
|
var ChartDRe = function ChartDRe(props) {
|
|
12290
12358
|
var color = props.color,
|
|
12291
12359
|
size = props.size,
|
|
@@ -12293,12 +12361,12 @@ var ChartDRe = function ChartDRe(props) {
|
|
|
12293
12361
|
style = props.style,
|
|
12294
12362
|
className = props.className,
|
|
12295
12363
|
iconClassName = props.iconClassName,
|
|
12296
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12364
|
+
otherProps = _objectWithoutProperties(props, _excluded$3A);
|
|
12297
12365
|
return /*#__PURE__*/React.createElement("span", {
|
|
12298
12366
|
role: "img",
|
|
12299
12367
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12300
12368
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12301
|
-
children: loadingCircleStyle$
|
|
12369
|
+
children: loadingCircleStyle$3A
|
|
12302
12370
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12303
12371
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12304
12372
|
width: size,
|
|
@@ -12345,8 +12413,8 @@ ChartDRe.defaultProps = {
|
|
|
12345
12413
|
size: '1em'
|
|
12346
12414
|
};
|
|
12347
12415
|
|
|
12348
|
-
var _excluded$
|
|
12349
|
-
var loadingCircleStyle$
|
|
12416
|
+
var _excluded$3B = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12417
|
+
var loadingCircleStyle$3B = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12350
12418
|
var ChartFunnel = function ChartFunnel(props) {
|
|
12351
12419
|
var color = props.color,
|
|
12352
12420
|
size = props.size,
|
|
@@ -12354,12 +12422,12 @@ var ChartFunnel = function ChartFunnel(props) {
|
|
|
12354
12422
|
style = props.style,
|
|
12355
12423
|
className = props.className,
|
|
12356
12424
|
iconClassName = props.iconClassName,
|
|
12357
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12425
|
+
otherProps = _objectWithoutProperties(props, _excluded$3B);
|
|
12358
12426
|
return /*#__PURE__*/React.createElement("span", {
|
|
12359
12427
|
role: "img",
|
|
12360
12428
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12361
12429
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12362
|
-
children: loadingCircleStyle$
|
|
12430
|
+
children: loadingCircleStyle$3B
|
|
12363
12431
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12364
12432
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12365
12433
|
width: size,
|
|
@@ -12398,8 +12466,8 @@ ChartFunnel.defaultProps = {
|
|
|
12398
12466
|
size: '1em'
|
|
12399
12467
|
};
|
|
12400
12468
|
|
|
12401
|
-
var _excluded$
|
|
12402
|
-
var loadingCircleStyle$
|
|
12469
|
+
var _excluded$3C = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12470
|
+
var loadingCircleStyle$3C = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12403
12471
|
var ChartInterval = function ChartInterval(props) {
|
|
12404
12472
|
var color = props.color,
|
|
12405
12473
|
size = props.size,
|
|
@@ -12407,12 +12475,12 @@ var ChartInterval = function ChartInterval(props) {
|
|
|
12407
12475
|
style = props.style,
|
|
12408
12476
|
className = props.className,
|
|
12409
12477
|
iconClassName = props.iconClassName,
|
|
12410
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12478
|
+
otherProps = _objectWithoutProperties(props, _excluded$3C);
|
|
12411
12479
|
return /*#__PURE__*/React.createElement("span", {
|
|
12412
12480
|
role: "img",
|
|
12413
12481
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12414
12482
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12415
|
-
children: loadingCircleStyle$
|
|
12483
|
+
children: loadingCircleStyle$3C
|
|
12416
12484
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12417
12485
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12418
12486
|
width: size,
|
|
@@ -12449,8 +12517,8 @@ ChartInterval.defaultProps = {
|
|
|
12449
12517
|
size: '1em'
|
|
12450
12518
|
};
|
|
12451
12519
|
|
|
12452
|
-
var _excluded$
|
|
12453
|
-
var loadingCircleStyle$
|
|
12520
|
+
var _excluded$3D = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12521
|
+
var loadingCircleStyle$3D = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12454
12522
|
var ChartStack = function ChartStack(props) {
|
|
12455
12523
|
var color = props.color,
|
|
12456
12524
|
size = props.size,
|
|
@@ -12458,12 +12526,12 @@ var ChartStack = function ChartStack(props) {
|
|
|
12458
12526
|
style = props.style,
|
|
12459
12527
|
className = props.className,
|
|
12460
12528
|
iconClassName = props.iconClassName,
|
|
12461
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12529
|
+
otherProps = _objectWithoutProperties(props, _excluded$3D);
|
|
12462
12530
|
return /*#__PURE__*/React.createElement("span", {
|
|
12463
12531
|
role: "img",
|
|
12464
12532
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12465
12533
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12466
|
-
children: loadingCircleStyle$
|
|
12534
|
+
children: loadingCircleStyle$3D
|
|
12467
12535
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12468
12536
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12469
12537
|
width: size,
|
|
@@ -12500,8 +12568,8 @@ ChartStack.defaultProps = {
|
|
|
12500
12568
|
size: '1em'
|
|
12501
12569
|
};
|
|
12502
12570
|
|
|
12503
|
-
var _excluded$
|
|
12504
|
-
var loadingCircleStyle$
|
|
12571
|
+
var _excluded$3E = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12572
|
+
var loadingCircleStyle$3E = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12505
12573
|
var ChartStackn = function ChartStackn(props) {
|
|
12506
12574
|
var color = props.color,
|
|
12507
12575
|
size = props.size,
|
|
@@ -12509,12 +12577,12 @@ var ChartStackn = function ChartStackn(props) {
|
|
|
12509
12577
|
style = props.style,
|
|
12510
12578
|
className = props.className,
|
|
12511
12579
|
iconClassName = props.iconClassName,
|
|
12512
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12580
|
+
otherProps = _objectWithoutProperties(props, _excluded$3E);
|
|
12513
12581
|
return /*#__PURE__*/React.createElement("span", {
|
|
12514
12582
|
role: "img",
|
|
12515
12583
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12516
12584
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12517
|
-
children: loadingCircleStyle$
|
|
12585
|
+
children: loadingCircleStyle$3E
|
|
12518
12586
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12519
12587
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12520
12588
|
width: size,
|
|
@@ -12551,8 +12619,8 @@ ChartStackn.defaultProps = {
|
|
|
12551
12619
|
size: '1em'
|
|
12552
12620
|
};
|
|
12553
12621
|
|
|
12554
|
-
var _excluded$
|
|
12555
|
-
var loadingCircleStyle$
|
|
12622
|
+
var _excluded$3F = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12623
|
+
var loadingCircleStyle$3F = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12556
12624
|
var ChartStackPerc = function ChartStackPerc(props) {
|
|
12557
12625
|
var color = props.color,
|
|
12558
12626
|
size = props.size,
|
|
@@ -12560,12 +12628,12 @@ var ChartStackPerc = function ChartStackPerc(props) {
|
|
|
12560
12628
|
style = props.style,
|
|
12561
12629
|
className = props.className,
|
|
12562
12630
|
iconClassName = props.iconClassName,
|
|
12563
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12631
|
+
otherProps = _objectWithoutProperties(props, _excluded$3F);
|
|
12564
12632
|
return /*#__PURE__*/React.createElement("span", {
|
|
12565
12633
|
role: "img",
|
|
12566
12634
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12567
12635
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12568
|
-
children: loadingCircleStyle$
|
|
12636
|
+
children: loadingCircleStyle$3F
|
|
12569
12637
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12570
12638
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12571
12639
|
width: size,
|
|
@@ -12602,8 +12670,8 @@ ChartStackPerc.defaultProps = {
|
|
|
12602
12670
|
size: '1em'
|
|
12603
12671
|
};
|
|
12604
12672
|
|
|
12605
|
-
var _excluded$
|
|
12606
|
-
var loadingCircleStyle$
|
|
12673
|
+
var _excluded$3G = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12674
|
+
var loadingCircleStyle$3G = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12607
12675
|
var ChartComplex = function ChartComplex(props) {
|
|
12608
12676
|
var color = props.color,
|
|
12609
12677
|
size = props.size,
|
|
@@ -12611,12 +12679,12 @@ var ChartComplex = function ChartComplex(props) {
|
|
|
12611
12679
|
style = props.style,
|
|
12612
12680
|
className = props.className,
|
|
12613
12681
|
iconClassName = props.iconClassName,
|
|
12614
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12682
|
+
otherProps = _objectWithoutProperties(props, _excluded$3G);
|
|
12615
12683
|
return /*#__PURE__*/React.createElement("span", {
|
|
12616
12684
|
role: "img",
|
|
12617
12685
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12618
12686
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12619
|
-
children: loadingCircleStyle$
|
|
12687
|
+
children: loadingCircleStyle$3G
|
|
12620
12688
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12621
12689
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12622
12690
|
width: size,
|
|
@@ -12659,8 +12727,8 @@ ChartComplex.defaultProps = {
|
|
|
12659
12727
|
size: '1em'
|
|
12660
12728
|
};
|
|
12661
12729
|
|
|
12662
|
-
var _excluded$
|
|
12663
|
-
var loadingCircleStyle$
|
|
12730
|
+
var _excluded$3H = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12731
|
+
var loadingCircleStyle$3H = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12664
12732
|
var ChartHistogram = function ChartHistogram(props) {
|
|
12665
12733
|
var color = props.color,
|
|
12666
12734
|
size = props.size,
|
|
@@ -12668,12 +12736,12 @@ var ChartHistogram = function ChartHistogram(props) {
|
|
|
12668
12736
|
style = props.style,
|
|
12669
12737
|
className = props.className,
|
|
12670
12738
|
iconClassName = props.iconClassName,
|
|
12671
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12739
|
+
otherProps = _objectWithoutProperties(props, _excluded$3H);
|
|
12672
12740
|
return /*#__PURE__*/React.createElement("span", {
|
|
12673
12741
|
role: "img",
|
|
12674
12742
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12675
12743
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12676
|
-
children: loadingCircleStyle$
|
|
12744
|
+
children: loadingCircleStyle$3H
|
|
12677
12745
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12678
12746
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12679
12747
|
width: size,
|
|
@@ -12722,8 +12790,8 @@ ChartHistogram.defaultProps = {
|
|
|
12722
12790
|
size: '1em'
|
|
12723
12791
|
};
|
|
12724
12792
|
|
|
12725
|
-
var _excluded$
|
|
12726
|
-
var loadingCircleStyle$
|
|
12793
|
+
var _excluded$3I = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12794
|
+
var loadingCircleStyle$3I = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12727
12795
|
var ChartTable = function ChartTable(props) {
|
|
12728
12796
|
var color = props.color,
|
|
12729
12797
|
size = props.size,
|
|
@@ -12731,12 +12799,12 @@ var ChartTable = function ChartTable(props) {
|
|
|
12731
12799
|
style = props.style,
|
|
12732
12800
|
className = props.className,
|
|
12733
12801
|
iconClassName = props.iconClassName,
|
|
12734
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12802
|
+
otherProps = _objectWithoutProperties(props, _excluded$3I);
|
|
12735
12803
|
return /*#__PURE__*/React.createElement("span", {
|
|
12736
12804
|
role: "img",
|
|
12737
12805
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12738
12806
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12739
|
-
children: loadingCircleStyle$
|
|
12807
|
+
children: loadingCircleStyle$3I
|
|
12740
12808
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12741
12809
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12742
12810
|
width: size,
|
|
@@ -12771,8 +12839,8 @@ ChartTable.defaultProps = {
|
|
|
12771
12839
|
size: '1em'
|
|
12772
12840
|
};
|
|
12773
12841
|
|
|
12774
|
-
var _excluded$
|
|
12775
|
-
var loadingCircleStyle$
|
|
12842
|
+
var _excluded$3J = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12843
|
+
var loadingCircleStyle$3J = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12776
12844
|
var ChartFieldlist = function ChartFieldlist(props) {
|
|
12777
12845
|
var color = props.color,
|
|
12778
12846
|
size = props.size,
|
|
@@ -12780,12 +12848,12 @@ var ChartFieldlist = function ChartFieldlist(props) {
|
|
|
12780
12848
|
style = props.style,
|
|
12781
12849
|
className = props.className,
|
|
12782
12850
|
iconClassName = props.iconClassName,
|
|
12783
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12851
|
+
otherProps = _objectWithoutProperties(props, _excluded$3J);
|
|
12784
12852
|
return /*#__PURE__*/React.createElement("span", {
|
|
12785
12853
|
role: "img",
|
|
12786
12854
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12787
12855
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12788
|
-
children: loadingCircleStyle$
|
|
12856
|
+
children: loadingCircleStyle$3J
|
|
12789
12857
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12790
12858
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12791
12859
|
width: size,
|
|
@@ -12820,8 +12888,8 @@ ChartFieldlist.defaultProps = {
|
|
|
12820
12888
|
size: '1em'
|
|
12821
12889
|
};
|
|
12822
12890
|
|
|
12823
|
-
var _excluded$
|
|
12824
|
-
var loadingCircleStyle$
|
|
12891
|
+
var _excluded$3K = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12892
|
+
var loadingCircleStyle$3K = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12825
12893
|
var Table1dtable = function Table1dtable(props) {
|
|
12826
12894
|
var color = props.color,
|
|
12827
12895
|
size = props.size,
|
|
@@ -12829,12 +12897,12 @@ var Table1dtable = function Table1dtable(props) {
|
|
|
12829
12897
|
style = props.style,
|
|
12830
12898
|
className = props.className,
|
|
12831
12899
|
iconClassName = props.iconClassName,
|
|
12832
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12900
|
+
otherProps = _objectWithoutProperties(props, _excluded$3K);
|
|
12833
12901
|
return /*#__PURE__*/React.createElement("span", {
|
|
12834
12902
|
role: "img",
|
|
12835
12903
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12836
12904
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12837
|
-
children: loadingCircleStyle$
|
|
12905
|
+
children: loadingCircleStyle$3K
|
|
12838
12906
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12839
12907
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12840
12908
|
width: size,
|
|
@@ -12887,8 +12955,8 @@ Table1dtable.defaultProps = {
|
|
|
12887
12955
|
size: '1em'
|
|
12888
12956
|
};
|
|
12889
12957
|
|
|
12890
|
-
var _excluded$
|
|
12891
|
-
var loadingCircleStyle$
|
|
12958
|
+
var _excluded$3L = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
12959
|
+
var loadingCircleStyle$3L = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12892
12960
|
var ChartSqltable = function ChartSqltable(props) {
|
|
12893
12961
|
var color = props.color,
|
|
12894
12962
|
size = props.size,
|
|
@@ -12896,12 +12964,12 @@ var ChartSqltable = function ChartSqltable(props) {
|
|
|
12896
12964
|
style = props.style,
|
|
12897
12965
|
className = props.className,
|
|
12898
12966
|
iconClassName = props.iconClassName,
|
|
12899
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
12967
|
+
otherProps = _objectWithoutProperties(props, _excluded$3L);
|
|
12900
12968
|
return /*#__PURE__*/React.createElement("span", {
|
|
12901
12969
|
role: "img",
|
|
12902
12970
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12903
12971
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12904
|
-
children: loadingCircleStyle$
|
|
12972
|
+
children: loadingCircleStyle$3L
|
|
12905
12973
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12906
12974
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12907
12975
|
width: size,
|
|
@@ -12936,8 +13004,8 @@ ChartSqltable.defaultProps = {
|
|
|
12936
13004
|
size: '1em'
|
|
12937
13005
|
};
|
|
12938
13006
|
|
|
12939
|
-
var _excluded$
|
|
12940
|
-
var loadingCircleStyle$
|
|
13007
|
+
var _excluded$3M = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13008
|
+
var loadingCircleStyle$3M = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12941
13009
|
var ChartCombinedTable = function ChartCombinedTable(props) {
|
|
12942
13010
|
var color = props.color,
|
|
12943
13011
|
size = props.size,
|
|
@@ -12945,12 +13013,12 @@ var ChartCombinedTable = function ChartCombinedTable(props) {
|
|
|
12945
13013
|
style = props.style,
|
|
12946
13014
|
className = props.className,
|
|
12947
13015
|
iconClassName = props.iconClassName,
|
|
12948
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13016
|
+
otherProps = _objectWithoutProperties(props, _excluded$3M);
|
|
12949
13017
|
return /*#__PURE__*/React.createElement("span", {
|
|
12950
13018
|
role: "img",
|
|
12951
13019
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
12952
13020
|
}, /*#__PURE__*/React.createElement("style", {
|
|
12953
|
-
children: loadingCircleStyle$
|
|
13021
|
+
children: loadingCircleStyle$3M
|
|
12954
13022
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
12955
13023
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12956
13024
|
width: size,
|
|
@@ -12985,8 +13053,8 @@ ChartCombinedTable.defaultProps = {
|
|
|
12985
13053
|
size: '1em'
|
|
12986
13054
|
};
|
|
12987
13055
|
|
|
12988
|
-
var _excluded$
|
|
12989
|
-
var loadingCircleStyle$
|
|
13056
|
+
var _excluded$3N = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13057
|
+
var loadingCircleStyle$3N = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
12990
13058
|
var ChartDistTable = function ChartDistTable(props) {
|
|
12991
13059
|
var color = props.color,
|
|
12992
13060
|
size = props.size,
|
|
@@ -12994,12 +13062,12 @@ var ChartDistTable = function ChartDistTable(props) {
|
|
|
12994
13062
|
style = props.style,
|
|
12995
13063
|
className = props.className,
|
|
12996
13064
|
iconClassName = props.iconClassName,
|
|
12997
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13065
|
+
otherProps = _objectWithoutProperties(props, _excluded$3N);
|
|
12998
13066
|
return /*#__PURE__*/React.createElement("span", {
|
|
12999
13067
|
role: "img",
|
|
13000
13068
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13001
13069
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13002
|
-
children: loadingCircleStyle$
|
|
13070
|
+
children: loadingCircleStyle$3N
|
|
13003
13071
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13004
13072
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13005
13073
|
width: size,
|
|
@@ -13034,8 +13102,8 @@ ChartDistTable.defaultProps = {
|
|
|
13034
13102
|
size: '1em'
|
|
13035
13103
|
};
|
|
13036
13104
|
|
|
13037
|
-
var _excluded$
|
|
13038
|
-
var loadingCircleStyle$
|
|
13105
|
+
var _excluded$3O = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13106
|
+
var loadingCircleStyle$3O = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13039
13107
|
var ChartBarTable = function ChartBarTable(props) {
|
|
13040
13108
|
var color = props.color,
|
|
13041
13109
|
size = props.size,
|
|
@@ -13043,12 +13111,12 @@ var ChartBarTable = function ChartBarTable(props) {
|
|
|
13043
13111
|
style = props.style,
|
|
13044
13112
|
className = props.className,
|
|
13045
13113
|
iconClassName = props.iconClassName,
|
|
13046
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13114
|
+
otherProps = _objectWithoutProperties(props, _excluded$3O);
|
|
13047
13115
|
return /*#__PURE__*/React.createElement("span", {
|
|
13048
13116
|
role: "img",
|
|
13049
13117
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13050
13118
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13051
|
-
children: loadingCircleStyle$
|
|
13119
|
+
children: loadingCircleStyle$3O
|
|
13052
13120
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13053
13121
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13054
13122
|
width: size,
|
|
@@ -13085,8 +13153,8 @@ ChartBarTable.defaultProps = {
|
|
|
13085
13153
|
size: '1em'
|
|
13086
13154
|
};
|
|
13087
13155
|
|
|
13088
|
-
var _excluded$
|
|
13089
|
-
var loadingCircleStyle$
|
|
13156
|
+
var _excluded$3P = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13157
|
+
var loadingCircleStyle$3P = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13090
13158
|
var ChartLineTable = function ChartLineTable(props) {
|
|
13091
13159
|
var color = props.color,
|
|
13092
13160
|
size = props.size,
|
|
@@ -13094,12 +13162,12 @@ var ChartLineTable = function ChartLineTable(props) {
|
|
|
13094
13162
|
style = props.style,
|
|
13095
13163
|
className = props.className,
|
|
13096
13164
|
iconClassName = props.iconClassName,
|
|
13097
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13165
|
+
otherProps = _objectWithoutProperties(props, _excluded$3P);
|
|
13098
13166
|
return /*#__PURE__*/React.createElement("span", {
|
|
13099
13167
|
role: "img",
|
|
13100
13168
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13101
13169
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13102
|
-
children: loadingCircleStyle$
|
|
13170
|
+
children: loadingCircleStyle$3P
|
|
13103
13171
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13104
13172
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13105
13173
|
width: size,
|
|
@@ -13142,8 +13210,8 @@ ChartLineTable.defaultProps = {
|
|
|
13142
13210
|
size: '1em'
|
|
13143
13211
|
};
|
|
13144
13212
|
|
|
13145
|
-
var _excluded$
|
|
13146
|
-
var loadingCircleStyle$
|
|
13213
|
+
var _excluded$3Q = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13214
|
+
var loadingCircleStyle$3Q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13147
13215
|
var ChartScatter = function ChartScatter(props) {
|
|
13148
13216
|
var color = props.color,
|
|
13149
13217
|
size = props.size,
|
|
@@ -13151,12 +13219,12 @@ var ChartScatter = function ChartScatter(props) {
|
|
|
13151
13219
|
style = props.style,
|
|
13152
13220
|
className = props.className,
|
|
13153
13221
|
iconClassName = props.iconClassName,
|
|
13154
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13222
|
+
otherProps = _objectWithoutProperties(props, _excluded$3Q);
|
|
13155
13223
|
return /*#__PURE__*/React.createElement("span", {
|
|
13156
13224
|
role: "img",
|
|
13157
13225
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13158
13226
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13159
|
-
children: loadingCircleStyle$
|
|
13227
|
+
children: loadingCircleStyle$3Q
|
|
13160
13228
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13161
13229
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13162
13230
|
width: size,
|
|
@@ -13203,8 +13271,8 @@ ChartScatter.defaultProps = {
|
|
|
13203
13271
|
size: '1em'
|
|
13204
13272
|
};
|
|
13205
13273
|
|
|
13206
|
-
var _excluded$
|
|
13207
|
-
var loadingCircleStyle$
|
|
13274
|
+
var _excluded$3R = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13275
|
+
var loadingCircleStyle$3R = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13208
13276
|
var Play = function Play(props) {
|
|
13209
13277
|
var color = props.color,
|
|
13210
13278
|
size = props.size,
|
|
@@ -13212,12 +13280,12 @@ var Play = function Play(props) {
|
|
|
13212
13280
|
style = props.style,
|
|
13213
13281
|
className = props.className,
|
|
13214
13282
|
iconClassName = props.iconClassName,
|
|
13215
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13283
|
+
otherProps = _objectWithoutProperties(props, _excluded$3R);
|
|
13216
13284
|
return /*#__PURE__*/React.createElement("span", {
|
|
13217
13285
|
role: "img",
|
|
13218
13286
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13219
13287
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13220
|
-
children: loadingCircleStyle$
|
|
13288
|
+
children: loadingCircleStyle$3R
|
|
13221
13289
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13222
13290
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13223
13291
|
width: size,
|
|
@@ -13252,8 +13320,8 @@ Play.defaultProps = {
|
|
|
13252
13320
|
size: '1em'
|
|
13253
13321
|
};
|
|
13254
13322
|
|
|
13255
|
-
var _excluded$
|
|
13256
|
-
var loadingCircleStyle$
|
|
13323
|
+
var _excluded$3S = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13324
|
+
var loadingCircleStyle$3S = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13257
13325
|
var Config = function Config(props) {
|
|
13258
13326
|
var color = props.color,
|
|
13259
13327
|
size = props.size,
|
|
@@ -13261,12 +13329,12 @@ var Config = function Config(props) {
|
|
|
13261
13329
|
style = props.style,
|
|
13262
13330
|
className = props.className,
|
|
13263
13331
|
iconClassName = props.iconClassName,
|
|
13264
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13332
|
+
otherProps = _objectWithoutProperties(props, _excluded$3S);
|
|
13265
13333
|
return /*#__PURE__*/React.createElement("span", {
|
|
13266
13334
|
role: "img",
|
|
13267
13335
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13268
13336
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13269
|
-
children: loadingCircleStyle$
|
|
13337
|
+
children: loadingCircleStyle$3S
|
|
13270
13338
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13271
13339
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13272
13340
|
width: size,
|
|
@@ -13301,8 +13369,8 @@ Config.defaultProps = {
|
|
|
13301
13369
|
size: '1em'
|
|
13302
13370
|
};
|
|
13303
13371
|
|
|
13304
|
-
var _excluded$
|
|
13305
|
-
var loadingCircleStyle$
|
|
13372
|
+
var _excluded$3T = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13373
|
+
var loadingCircleStyle$3T = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13306
13374
|
var Setting = function Setting(props) {
|
|
13307
13375
|
var color = props.color,
|
|
13308
13376
|
size = props.size,
|
|
@@ -13310,12 +13378,12 @@ var Setting = function Setting(props) {
|
|
|
13310
13378
|
style = props.style,
|
|
13311
13379
|
className = props.className,
|
|
13312
13380
|
iconClassName = props.iconClassName,
|
|
13313
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13381
|
+
otherProps = _objectWithoutProperties(props, _excluded$3T);
|
|
13314
13382
|
return /*#__PURE__*/React.createElement("span", {
|
|
13315
13383
|
role: "img",
|
|
13316
13384
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13317
13385
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13318
|
-
children: loadingCircleStyle$
|
|
13386
|
+
children: loadingCircleStyle$3T
|
|
13319
13387
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13320
13388
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13321
13389
|
width: size,
|
|
@@ -13350,8 +13418,8 @@ Setting.defaultProps = {
|
|
|
13350
13418
|
size: '1em'
|
|
13351
13419
|
};
|
|
13352
13420
|
|
|
13353
|
-
var _excluded$
|
|
13354
|
-
var loadingCircleStyle$
|
|
13421
|
+
var _excluded$3U = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13422
|
+
var loadingCircleStyle$3U = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13355
13423
|
var Search = function Search(props) {
|
|
13356
13424
|
var color = props.color,
|
|
13357
13425
|
size = props.size,
|
|
@@ -13359,12 +13427,12 @@ var Search = function Search(props) {
|
|
|
13359
13427
|
style = props.style,
|
|
13360
13428
|
className = props.className,
|
|
13361
13429
|
iconClassName = props.iconClassName,
|
|
13362
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13430
|
+
otherProps = _objectWithoutProperties(props, _excluded$3U);
|
|
13363
13431
|
return /*#__PURE__*/React.createElement("span", {
|
|
13364
13432
|
role: "img",
|
|
13365
13433
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13366
13434
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13367
|
-
children: loadingCircleStyle$
|
|
13435
|
+
children: loadingCircleStyle$3U
|
|
13368
13436
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13369
13437
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13370
13438
|
width: size,
|
|
@@ -13399,8 +13467,8 @@ Search.defaultProps = {
|
|
|
13399
13467
|
size: '1em'
|
|
13400
13468
|
};
|
|
13401
13469
|
|
|
13402
|
-
var _excluded$
|
|
13403
|
-
var loadingCircleStyle$
|
|
13470
|
+
var _excluded$3V = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13471
|
+
var loadingCircleStyle$3V = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13404
13472
|
var Copy = function Copy(props) {
|
|
13405
13473
|
var color = props.color,
|
|
13406
13474
|
size = props.size,
|
|
@@ -13408,12 +13476,12 @@ var Copy = function Copy(props) {
|
|
|
13408
13476
|
style = props.style,
|
|
13409
13477
|
className = props.className,
|
|
13410
13478
|
iconClassName = props.iconClassName,
|
|
13411
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13479
|
+
otherProps = _objectWithoutProperties(props, _excluded$3V);
|
|
13412
13480
|
return /*#__PURE__*/React.createElement("span", {
|
|
13413
13481
|
role: "img",
|
|
13414
13482
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13415
13483
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13416
|
-
children: loadingCircleStyle$
|
|
13484
|
+
children: loadingCircleStyle$3V
|
|
13417
13485
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13418
13486
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13419
13487
|
width: size,
|
|
@@ -13448,8 +13516,8 @@ Copy.defaultProps = {
|
|
|
13448
13516
|
size: '1em'
|
|
13449
13517
|
};
|
|
13450
13518
|
|
|
13451
|
-
var _excluded$
|
|
13452
|
-
var loadingCircleStyle$
|
|
13519
|
+
var _excluded$3W = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13520
|
+
var loadingCircleStyle$3W = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13453
13521
|
var Copy2 = function Copy2(props) {
|
|
13454
13522
|
var color = props.color,
|
|
13455
13523
|
size = props.size,
|
|
@@ -13457,12 +13525,12 @@ var Copy2 = function Copy2(props) {
|
|
|
13457
13525
|
style = props.style,
|
|
13458
13526
|
className = props.className,
|
|
13459
13527
|
iconClassName = props.iconClassName,
|
|
13460
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13528
|
+
otherProps = _objectWithoutProperties(props, _excluded$3W);
|
|
13461
13529
|
return /*#__PURE__*/React.createElement("span", {
|
|
13462
13530
|
role: "img",
|
|
13463
13531
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13464
13532
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13465
|
-
children: loadingCircleStyle$
|
|
13533
|
+
children: loadingCircleStyle$3W
|
|
13466
13534
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13467
13535
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13468
13536
|
width: size,
|
|
@@ -13497,8 +13565,8 @@ Copy2.defaultProps = {
|
|
|
13497
13565
|
size: '1em'
|
|
13498
13566
|
};
|
|
13499
13567
|
|
|
13500
|
-
var _excluded$
|
|
13501
|
-
var loadingCircleStyle$
|
|
13568
|
+
var _excluded$3X = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13569
|
+
var loadingCircleStyle$3X = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13502
13570
|
var Format = function Format(props) {
|
|
13503
13571
|
var color = props.color,
|
|
13504
13572
|
size = props.size,
|
|
@@ -13506,12 +13574,12 @@ var Format = function Format(props) {
|
|
|
13506
13574
|
style = props.style,
|
|
13507
13575
|
className = props.className,
|
|
13508
13576
|
iconClassName = props.iconClassName,
|
|
13509
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13577
|
+
otherProps = _objectWithoutProperties(props, _excluded$3X);
|
|
13510
13578
|
return /*#__PURE__*/React.createElement("span", {
|
|
13511
13579
|
role: "img",
|
|
13512
13580
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13513
13581
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13514
|
-
children: loadingCircleStyle$
|
|
13582
|
+
children: loadingCircleStyle$3X
|
|
13515
13583
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13516
13584
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13517
13585
|
width: size,
|
|
@@ -13548,8 +13616,8 @@ Format.defaultProps = {
|
|
|
13548
13616
|
size: '1em'
|
|
13549
13617
|
};
|
|
13550
13618
|
|
|
13551
|
-
var _excluded$
|
|
13552
|
-
var loadingCircleStyle$
|
|
13619
|
+
var _excluded$3Y = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13620
|
+
var loadingCircleStyle$3Y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13553
13621
|
var Code = function Code(props) {
|
|
13554
13622
|
var color = props.color,
|
|
13555
13623
|
size = props.size,
|
|
@@ -13557,12 +13625,12 @@ var Code = function Code(props) {
|
|
|
13557
13625
|
style = props.style,
|
|
13558
13626
|
className = props.className,
|
|
13559
13627
|
iconClassName = props.iconClassName,
|
|
13560
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13628
|
+
otherProps = _objectWithoutProperties(props, _excluded$3Y);
|
|
13561
13629
|
return /*#__PURE__*/React.createElement("span", {
|
|
13562
13630
|
role: "img",
|
|
13563
13631
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13564
13632
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13565
|
-
children: loadingCircleStyle$
|
|
13633
|
+
children: loadingCircleStyle$3Y
|
|
13566
13634
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13567
13635
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13568
13636
|
width: size,
|
|
@@ -13597,8 +13665,8 @@ Code.defaultProps = {
|
|
|
13597
13665
|
size: '1em'
|
|
13598
13666
|
};
|
|
13599
13667
|
|
|
13600
|
-
var _excluded$
|
|
13601
|
-
var loadingCircleStyle$
|
|
13668
|
+
var _excluded$3Z = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13669
|
+
var loadingCircleStyle$3Z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13602
13670
|
var Edit = function Edit(props) {
|
|
13603
13671
|
var color = props.color,
|
|
13604
13672
|
size = props.size,
|
|
@@ -13606,12 +13674,12 @@ var Edit = function Edit(props) {
|
|
|
13606
13674
|
style = props.style,
|
|
13607
13675
|
className = props.className,
|
|
13608
13676
|
iconClassName = props.iconClassName,
|
|
13609
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13677
|
+
otherProps = _objectWithoutProperties(props, _excluded$3Z);
|
|
13610
13678
|
return /*#__PURE__*/React.createElement("span", {
|
|
13611
13679
|
role: "img",
|
|
13612
13680
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13613
13681
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13614
|
-
children: loadingCircleStyle$
|
|
13682
|
+
children: loadingCircleStyle$3Z
|
|
13615
13683
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13616
13684
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13617
13685
|
width: size,
|
|
@@ -13646,8 +13714,8 @@ Edit.defaultProps = {
|
|
|
13646
13714
|
size: '1em'
|
|
13647
13715
|
};
|
|
13648
13716
|
|
|
13649
|
-
var _excluded$
|
|
13650
|
-
var loadingCircleStyle$
|
|
13717
|
+
var _excluded$3_ = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13718
|
+
var loadingCircleStyle$3_ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13651
13719
|
var EditFill = function EditFill(props) {
|
|
13652
13720
|
var color = props.color,
|
|
13653
13721
|
size = props.size,
|
|
@@ -13655,12 +13723,12 @@ var EditFill = function EditFill(props) {
|
|
|
13655
13723
|
style = props.style,
|
|
13656
13724
|
className = props.className,
|
|
13657
13725
|
iconClassName = props.iconClassName,
|
|
13658
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13726
|
+
otherProps = _objectWithoutProperties(props, _excluded$3_);
|
|
13659
13727
|
return /*#__PURE__*/React.createElement("span", {
|
|
13660
13728
|
role: "img",
|
|
13661
13729
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13662
13730
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13663
|
-
children: loadingCircleStyle$
|
|
13731
|
+
children: loadingCircleStyle$3_
|
|
13664
13732
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13665
13733
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13666
13734
|
width: size,
|
|
@@ -13697,8 +13765,8 @@ EditFill.defaultProps = {
|
|
|
13697
13765
|
size: '1em'
|
|
13698
13766
|
};
|
|
13699
13767
|
|
|
13700
|
-
var _excluded$
|
|
13701
|
-
var loadingCircleStyle$
|
|
13768
|
+
var _excluded$3$ = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13769
|
+
var loadingCircleStyle$3$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13702
13770
|
var Delete1 = function Delete1(props) {
|
|
13703
13771
|
var color = props.color,
|
|
13704
13772
|
size = props.size,
|
|
@@ -13706,12 +13774,12 @@ var Delete1 = function Delete1(props) {
|
|
|
13706
13774
|
style = props.style,
|
|
13707
13775
|
className = props.className,
|
|
13708
13776
|
iconClassName = props.iconClassName,
|
|
13709
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13777
|
+
otherProps = _objectWithoutProperties(props, _excluded$3$);
|
|
13710
13778
|
return /*#__PURE__*/React.createElement("span", {
|
|
13711
13779
|
role: "img",
|
|
13712
13780
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13713
13781
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13714
|
-
children: loadingCircleStyle$
|
|
13782
|
+
children: loadingCircleStyle$3$
|
|
13715
13783
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13716
13784
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13717
13785
|
width: size,
|
|
@@ -13746,8 +13814,8 @@ Delete1.defaultProps = {
|
|
|
13746
13814
|
size: '1em'
|
|
13747
13815
|
};
|
|
13748
13816
|
|
|
13749
|
-
var _excluded$
|
|
13750
|
-
var loadingCircleStyle$
|
|
13817
|
+
var _excluded$40 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13818
|
+
var loadingCircleStyle$40 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13751
13819
|
var Save = function Save(props) {
|
|
13752
13820
|
var color = props.color,
|
|
13753
13821
|
size = props.size,
|
|
@@ -13755,12 +13823,12 @@ var Save = function Save(props) {
|
|
|
13755
13823
|
style = props.style,
|
|
13756
13824
|
className = props.className,
|
|
13757
13825
|
iconClassName = props.iconClassName,
|
|
13758
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13826
|
+
otherProps = _objectWithoutProperties(props, _excluded$40);
|
|
13759
13827
|
return /*#__PURE__*/React.createElement("span", {
|
|
13760
13828
|
role: "img",
|
|
13761
13829
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13762
13830
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13763
|
-
children: loadingCircleStyle$
|
|
13831
|
+
children: loadingCircleStyle$40
|
|
13764
13832
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13765
13833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13766
13834
|
width: size,
|
|
@@ -13795,8 +13863,8 @@ Save.defaultProps = {
|
|
|
13795
13863
|
size: '1em'
|
|
13796
13864
|
};
|
|
13797
13865
|
|
|
13798
|
-
var _excluded$
|
|
13799
|
-
var loadingCircleStyle$
|
|
13866
|
+
var _excluded$41 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13867
|
+
var loadingCircleStyle$41 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13800
13868
|
var Send = function Send(props) {
|
|
13801
13869
|
var color = props.color,
|
|
13802
13870
|
size = props.size,
|
|
@@ -13804,12 +13872,12 @@ var Send = function Send(props) {
|
|
|
13804
13872
|
style = props.style,
|
|
13805
13873
|
className = props.className,
|
|
13806
13874
|
iconClassName = props.iconClassName,
|
|
13807
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13875
|
+
otherProps = _objectWithoutProperties(props, _excluded$41);
|
|
13808
13876
|
return /*#__PURE__*/React.createElement("span", {
|
|
13809
13877
|
role: "img",
|
|
13810
13878
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13811
13879
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13812
|
-
children: loadingCircleStyle$
|
|
13880
|
+
children: loadingCircleStyle$41
|
|
13813
13881
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13814
13882
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13815
13883
|
width: size,
|
|
@@ -13846,8 +13914,8 @@ Send.defaultProps = {
|
|
|
13846
13914
|
size: '1em'
|
|
13847
13915
|
};
|
|
13848
13916
|
|
|
13849
|
-
var _excluded$
|
|
13850
|
-
var loadingCircleStyle$
|
|
13917
|
+
var _excluded$42 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13918
|
+
var loadingCircleStyle$42 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13851
13919
|
var Fullscreen = function Fullscreen(props) {
|
|
13852
13920
|
var color = props.color,
|
|
13853
13921
|
size = props.size,
|
|
@@ -13855,12 +13923,12 @@ var Fullscreen = function Fullscreen(props) {
|
|
|
13855
13923
|
style = props.style,
|
|
13856
13924
|
className = props.className,
|
|
13857
13925
|
iconClassName = props.iconClassName,
|
|
13858
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13926
|
+
otherProps = _objectWithoutProperties(props, _excluded$42);
|
|
13859
13927
|
return /*#__PURE__*/React.createElement("span", {
|
|
13860
13928
|
role: "img",
|
|
13861
13929
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13862
13930
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13863
|
-
children: loadingCircleStyle$
|
|
13931
|
+
children: loadingCircleStyle$42
|
|
13864
13932
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13865
13933
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13866
13934
|
width: size,
|
|
@@ -13895,8 +13963,8 @@ Fullscreen.defaultProps = {
|
|
|
13895
13963
|
size: '1em'
|
|
13896
13964
|
};
|
|
13897
13965
|
|
|
13898
|
-
var _excluded$
|
|
13899
|
-
var loadingCircleStyle$
|
|
13966
|
+
var _excluded$43 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
13967
|
+
var loadingCircleStyle$43 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13900
13968
|
var ArrowLeftDown = function ArrowLeftDown(props) {
|
|
13901
13969
|
var color = props.color,
|
|
13902
13970
|
size = props.size,
|
|
@@ -13904,12 +13972,12 @@ var ArrowLeftDown = function ArrowLeftDown(props) {
|
|
|
13904
13972
|
style = props.style,
|
|
13905
13973
|
className = props.className,
|
|
13906
13974
|
iconClassName = props.iconClassName,
|
|
13907
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13975
|
+
otherProps = _objectWithoutProperties(props, _excluded$43);
|
|
13908
13976
|
return /*#__PURE__*/React.createElement("span", {
|
|
13909
13977
|
role: "img",
|
|
13910
13978
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13911
13979
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13912
|
-
children: loadingCircleStyle$
|
|
13980
|
+
children: loadingCircleStyle$43
|
|
13913
13981
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13914
13982
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13915
13983
|
width: size,
|
|
@@ -13944,8 +14012,8 @@ ArrowLeftDown.defaultProps = {
|
|
|
13944
14012
|
size: '1em'
|
|
13945
14013
|
};
|
|
13946
14014
|
|
|
13947
|
-
var _excluded$
|
|
13948
|
-
var loadingCircleStyle$
|
|
14015
|
+
var _excluded$44 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14016
|
+
var loadingCircleStyle$44 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13949
14017
|
var Link = function Link(props) {
|
|
13950
14018
|
var color = props.color,
|
|
13951
14019
|
size = props.size,
|
|
@@ -13953,12 +14021,12 @@ var Link = function Link(props) {
|
|
|
13953
14021
|
style = props.style,
|
|
13954
14022
|
className = props.className,
|
|
13955
14023
|
iconClassName = props.iconClassName,
|
|
13956
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14024
|
+
otherProps = _objectWithoutProperties(props, _excluded$44);
|
|
13957
14025
|
return /*#__PURE__*/React.createElement("span", {
|
|
13958
14026
|
role: "img",
|
|
13959
14027
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13960
14028
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13961
|
-
children: loadingCircleStyle$
|
|
14029
|
+
children: loadingCircleStyle$44
|
|
13962
14030
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13963
14031
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13964
14032
|
width: size,
|
|
@@ -13997,8 +14065,8 @@ Link.defaultProps = {
|
|
|
13997
14065
|
size: '1em'
|
|
13998
14066
|
};
|
|
13999
14067
|
|
|
14000
|
-
var _excluded$
|
|
14001
|
-
var loadingCircleStyle$
|
|
14068
|
+
var _excluded$45 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14069
|
+
var loadingCircleStyle$45 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14002
14070
|
var Unlink = function Unlink(props) {
|
|
14003
14071
|
var color = props.color,
|
|
14004
14072
|
size = props.size,
|
|
@@ -14006,12 +14074,12 @@ var Unlink = function Unlink(props) {
|
|
|
14006
14074
|
style = props.style,
|
|
14007
14075
|
className = props.className,
|
|
14008
14076
|
iconClassName = props.iconClassName,
|
|
14009
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14077
|
+
otherProps = _objectWithoutProperties(props, _excluded$45);
|
|
14010
14078
|
return /*#__PURE__*/React.createElement("span", {
|
|
14011
14079
|
role: "img",
|
|
14012
14080
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14013
14081
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14014
|
-
children: loadingCircleStyle$
|
|
14082
|
+
children: loadingCircleStyle$45
|
|
14015
14083
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14016
14084
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14017
14085
|
width: size,
|
|
@@ -14052,8 +14120,8 @@ Unlink.defaultProps = {
|
|
|
14052
14120
|
size: '1em'
|
|
14053
14121
|
};
|
|
14054
14122
|
|
|
14055
|
-
var _excluded$
|
|
14056
|
-
var loadingCircleStyle$
|
|
14123
|
+
var _excluded$46 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14124
|
+
var loadingCircleStyle$46 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14057
14125
|
var Link2 = function Link2(props) {
|
|
14058
14126
|
var color = props.color,
|
|
14059
14127
|
size = props.size,
|
|
@@ -14061,12 +14129,12 @@ var Link2 = function Link2(props) {
|
|
|
14061
14129
|
style = props.style,
|
|
14062
14130
|
className = props.className,
|
|
14063
14131
|
iconClassName = props.iconClassName,
|
|
14064
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14132
|
+
otherProps = _objectWithoutProperties(props, _excluded$46);
|
|
14065
14133
|
return /*#__PURE__*/React.createElement("span", {
|
|
14066
14134
|
role: "img",
|
|
14067
14135
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14068
14136
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14069
|
-
children: loadingCircleStyle$
|
|
14137
|
+
children: loadingCircleStyle$46
|
|
14070
14138
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14071
14139
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14072
14140
|
width: size,
|
|
@@ -14101,8 +14169,8 @@ Link2.defaultProps = {
|
|
|
14101
14169
|
size: '1em'
|
|
14102
14170
|
};
|
|
14103
14171
|
|
|
14104
|
-
var _excluded$
|
|
14105
|
-
var loadingCircleStyle$
|
|
14172
|
+
var _excluded$47 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14173
|
+
var loadingCircleStyle$47 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14106
14174
|
var MenuUnfold = function MenuUnfold(props) {
|
|
14107
14175
|
var color = props.color,
|
|
14108
14176
|
size = props.size,
|
|
@@ -14110,12 +14178,12 @@ var MenuUnfold = function MenuUnfold(props) {
|
|
|
14110
14178
|
style = props.style,
|
|
14111
14179
|
className = props.className,
|
|
14112
14180
|
iconClassName = props.iconClassName,
|
|
14113
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14181
|
+
otherProps = _objectWithoutProperties(props, _excluded$47);
|
|
14114
14182
|
return /*#__PURE__*/React.createElement("span", {
|
|
14115
14183
|
role: "img",
|
|
14116
14184
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14117
14185
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14118
|
-
children: loadingCircleStyle$
|
|
14186
|
+
children: loadingCircleStyle$47
|
|
14119
14187
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14120
14188
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14121
14189
|
width: size,
|
|
@@ -14150,8 +14218,8 @@ MenuUnfold.defaultProps = {
|
|
|
14150
14218
|
size: '1em'
|
|
14151
14219
|
};
|
|
14152
14220
|
|
|
14153
|
-
var _excluded$
|
|
14154
|
-
var loadingCircleStyle$
|
|
14221
|
+
var _excluded$48 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14222
|
+
var loadingCircleStyle$48 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14155
14223
|
var MenuFold = function MenuFold(props) {
|
|
14156
14224
|
var color = props.color,
|
|
14157
14225
|
size = props.size,
|
|
@@ -14159,12 +14227,12 @@ var MenuFold = function MenuFold(props) {
|
|
|
14159
14227
|
style = props.style,
|
|
14160
14228
|
className = props.className,
|
|
14161
14229
|
iconClassName = props.iconClassName,
|
|
14162
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14230
|
+
otherProps = _objectWithoutProperties(props, _excluded$48);
|
|
14163
14231
|
return /*#__PURE__*/React.createElement("span", {
|
|
14164
14232
|
role: "img",
|
|
14165
14233
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14166
14234
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14167
|
-
children: loadingCircleStyle$
|
|
14235
|
+
children: loadingCircleStyle$48
|
|
14168
14236
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14169
14237
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14170
14238
|
width: size,
|
|
@@ -14199,8 +14267,8 @@ MenuFold.defaultProps = {
|
|
|
14199
14267
|
size: '1em'
|
|
14200
14268
|
};
|
|
14201
14269
|
|
|
14202
|
-
var _excluded$
|
|
14203
|
-
var loadingCircleStyle$
|
|
14270
|
+
var _excluded$49 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14271
|
+
var loadingCircleStyle$49 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14204
14272
|
var List = function List(props) {
|
|
14205
14273
|
var color = props.color,
|
|
14206
14274
|
size = props.size,
|
|
@@ -14208,12 +14276,12 @@ var List = function List(props) {
|
|
|
14208
14276
|
style = props.style,
|
|
14209
14277
|
className = props.className,
|
|
14210
14278
|
iconClassName = props.iconClassName,
|
|
14211
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14279
|
+
otherProps = _objectWithoutProperties(props, _excluded$49);
|
|
14212
14280
|
return /*#__PURE__*/React.createElement("span", {
|
|
14213
14281
|
role: "img",
|
|
14214
14282
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14215
14283
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14216
|
-
children: loadingCircleStyle$
|
|
14284
|
+
children: loadingCircleStyle$49
|
|
14217
14285
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14218
14286
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14219
14287
|
width: size,
|
|
@@ -14248,8 +14316,8 @@ List.defaultProps = {
|
|
|
14248
14316
|
size: '1em'
|
|
14249
14317
|
};
|
|
14250
14318
|
|
|
14251
|
-
var _excluded$
|
|
14252
|
-
var loadingCircleStyle$
|
|
14319
|
+
var _excluded$4a = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14320
|
+
var loadingCircleStyle$4a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14253
14321
|
var ListNested = function ListNested(props) {
|
|
14254
14322
|
var color = props.color,
|
|
14255
14323
|
size = props.size,
|
|
@@ -14257,12 +14325,12 @@ var ListNested = function ListNested(props) {
|
|
|
14257
14325
|
style = props.style,
|
|
14258
14326
|
className = props.className,
|
|
14259
14327
|
iconClassName = props.iconClassName,
|
|
14260
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14328
|
+
otherProps = _objectWithoutProperties(props, _excluded$4a);
|
|
14261
14329
|
return /*#__PURE__*/React.createElement("span", {
|
|
14262
14330
|
role: "img",
|
|
14263
14331
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14264
14332
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14265
|
-
children: loadingCircleStyle$
|
|
14333
|
+
children: loadingCircleStyle$4a
|
|
14266
14334
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14267
14335
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14268
14336
|
width: size,
|
|
@@ -14299,8 +14367,8 @@ ListNested.defaultProps = {
|
|
|
14299
14367
|
size: '1em'
|
|
14300
14368
|
};
|
|
14301
14369
|
|
|
14302
|
-
var _excluded$
|
|
14303
|
-
var loadingCircleStyle$
|
|
14370
|
+
var _excluded$4b = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14371
|
+
var loadingCircleStyle$4b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14304
14372
|
var DoubleList = function DoubleList(props) {
|
|
14305
14373
|
var color = props.color,
|
|
14306
14374
|
size = props.size,
|
|
@@ -14308,12 +14376,12 @@ var DoubleList = function DoubleList(props) {
|
|
|
14308
14376
|
style = props.style,
|
|
14309
14377
|
className = props.className,
|
|
14310
14378
|
iconClassName = props.iconClassName,
|
|
14311
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14379
|
+
otherProps = _objectWithoutProperties(props, _excluded$4b);
|
|
14312
14380
|
return /*#__PURE__*/React.createElement("span", {
|
|
14313
14381
|
role: "img",
|
|
14314
14382
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14315
14383
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14316
|
-
children: loadingCircleStyle$
|
|
14384
|
+
children: loadingCircleStyle$4b
|
|
14317
14385
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14318
14386
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14319
14387
|
width: size,
|
|
@@ -14358,8 +14426,8 @@ DoubleList.defaultProps = {
|
|
|
14358
14426
|
size: '1em'
|
|
14359
14427
|
};
|
|
14360
14428
|
|
|
14361
|
-
var _excluded$
|
|
14362
|
-
var loadingCircleStyle$
|
|
14429
|
+
var _excluded$4c = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14430
|
+
var loadingCircleStyle$4c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14363
14431
|
var Download = function Download(props) {
|
|
14364
14432
|
var color = props.color,
|
|
14365
14433
|
size = props.size,
|
|
@@ -14367,12 +14435,12 @@ var Download = function Download(props) {
|
|
|
14367
14435
|
style = props.style,
|
|
14368
14436
|
className = props.className,
|
|
14369
14437
|
iconClassName = props.iconClassName,
|
|
14370
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14438
|
+
otherProps = _objectWithoutProperties(props, _excluded$4c);
|
|
14371
14439
|
return /*#__PURE__*/React.createElement("span", {
|
|
14372
14440
|
role: "img",
|
|
14373
14441
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14374
14442
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14375
|
-
children: loadingCircleStyle$
|
|
14443
|
+
children: loadingCircleStyle$4c
|
|
14376
14444
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14377
14445
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14378
14446
|
width: size,
|
|
@@ -14407,8 +14475,8 @@ Download.defaultProps = {
|
|
|
14407
14475
|
size: '1em'
|
|
14408
14476
|
};
|
|
14409
14477
|
|
|
14410
|
-
var _excluded$
|
|
14411
|
-
var loadingCircleStyle$
|
|
14478
|
+
var _excluded$4d = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14479
|
+
var loadingCircleStyle$4d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14412
14480
|
var FullDownload = function FullDownload(props) {
|
|
14413
14481
|
var color = props.color,
|
|
14414
14482
|
size = props.size,
|
|
@@ -14416,12 +14484,12 @@ var FullDownload = function FullDownload(props) {
|
|
|
14416
14484
|
style = props.style,
|
|
14417
14485
|
className = props.className,
|
|
14418
14486
|
iconClassName = props.iconClassName,
|
|
14419
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14487
|
+
otherProps = _objectWithoutProperties(props, _excluded$4d);
|
|
14420
14488
|
return /*#__PURE__*/React.createElement("span", {
|
|
14421
14489
|
role: "img",
|
|
14422
14490
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14423
14491
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14424
|
-
children: loadingCircleStyle$
|
|
14492
|
+
children: loadingCircleStyle$4d
|
|
14425
14493
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14426
14494
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14427
14495
|
width: size,
|
|
@@ -14458,8 +14526,8 @@ FullDownload.defaultProps = {
|
|
|
14458
14526
|
size: '1em'
|
|
14459
14527
|
};
|
|
14460
14528
|
|
|
14461
|
-
var _excluded$
|
|
14462
|
-
var loadingCircleStyle$
|
|
14529
|
+
var _excluded$4e = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14530
|
+
var loadingCircleStyle$4e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14463
14531
|
var Export = function Export(props) {
|
|
14464
14532
|
var color = props.color,
|
|
14465
14533
|
size = props.size,
|
|
@@ -14467,12 +14535,12 @@ var Export = function Export(props) {
|
|
|
14467
14535
|
style = props.style,
|
|
14468
14536
|
className = props.className,
|
|
14469
14537
|
iconClassName = props.iconClassName,
|
|
14470
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14538
|
+
otherProps = _objectWithoutProperties(props, _excluded$4e);
|
|
14471
14539
|
return /*#__PURE__*/React.createElement("span", {
|
|
14472
14540
|
role: "img",
|
|
14473
14541
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14474
14542
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14475
|
-
children: loadingCircleStyle$
|
|
14543
|
+
children: loadingCircleStyle$4e
|
|
14476
14544
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14477
14545
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14478
14546
|
width: size,
|
|
@@ -14509,8 +14577,8 @@ Export.defaultProps = {
|
|
|
14509
14577
|
size: '1em'
|
|
14510
14578
|
};
|
|
14511
14579
|
|
|
14512
|
-
var _excluded$
|
|
14513
|
-
var loadingCircleStyle$
|
|
14580
|
+
var _excluded$4f = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14581
|
+
var loadingCircleStyle$4f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14514
14582
|
var Import = function Import(props) {
|
|
14515
14583
|
var color = props.color,
|
|
14516
14584
|
size = props.size,
|
|
@@ -14518,12 +14586,12 @@ var Import = function Import(props) {
|
|
|
14518
14586
|
style = props.style,
|
|
14519
14587
|
className = props.className,
|
|
14520
14588
|
iconClassName = props.iconClassName,
|
|
14521
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14589
|
+
otherProps = _objectWithoutProperties(props, _excluded$4f);
|
|
14522
14590
|
return /*#__PURE__*/React.createElement("span", {
|
|
14523
14591
|
role: "img",
|
|
14524
14592
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14525
14593
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14526
|
-
children: loadingCircleStyle$
|
|
14594
|
+
children: loadingCircleStyle$4f
|
|
14527
14595
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14528
14596
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14529
14597
|
width: size,
|
|
@@ -14560,8 +14628,8 @@ Import.defaultProps = {
|
|
|
14560
14628
|
size: '1em'
|
|
14561
14629
|
};
|
|
14562
14630
|
|
|
14563
|
-
var _excluded$
|
|
14564
|
-
var loadingCircleStyle$
|
|
14631
|
+
var _excluded$4g = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14632
|
+
var loadingCircleStyle$4g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14565
14633
|
var Add1 = function Add1(props) {
|
|
14566
14634
|
var color = props.color,
|
|
14567
14635
|
size = props.size,
|
|
@@ -14569,12 +14637,12 @@ var Add1 = function Add1(props) {
|
|
|
14569
14637
|
style = props.style,
|
|
14570
14638
|
className = props.className,
|
|
14571
14639
|
iconClassName = props.iconClassName,
|
|
14572
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14640
|
+
otherProps = _objectWithoutProperties(props, _excluded$4g);
|
|
14573
14641
|
return /*#__PURE__*/React.createElement("span", {
|
|
14574
14642
|
role: "img",
|
|
14575
14643
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14576
14644
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14577
|
-
children: loadingCircleStyle$
|
|
14645
|
+
children: loadingCircleStyle$4g
|
|
14578
14646
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14579
14647
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14580
14648
|
width: size,
|
|
@@ -14609,8 +14677,8 @@ Add1.defaultProps = {
|
|
|
14609
14677
|
size: '1em'
|
|
14610
14678
|
};
|
|
14611
14679
|
|
|
14612
|
-
var _excluded$
|
|
14613
|
-
var loadingCircleStyle$
|
|
14680
|
+
var _excluded$4h = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14681
|
+
var loadingCircleStyle$4h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14614
14682
|
var Add2 = function Add2(props) {
|
|
14615
14683
|
var color = props.color,
|
|
14616
14684
|
size = props.size,
|
|
@@ -14618,12 +14686,12 @@ var Add2 = function Add2(props) {
|
|
|
14618
14686
|
style = props.style,
|
|
14619
14687
|
className = props.className,
|
|
14620
14688
|
iconClassName = props.iconClassName,
|
|
14621
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14689
|
+
otherProps = _objectWithoutProperties(props, _excluded$4h);
|
|
14622
14690
|
return /*#__PURE__*/React.createElement("span", {
|
|
14623
14691
|
role: "img",
|
|
14624
14692
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14625
14693
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14626
|
-
children: loadingCircleStyle$
|
|
14694
|
+
children: loadingCircleStyle$4h
|
|
14627
14695
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14628
14696
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14629
14697
|
width: size,
|
|
@@ -14658,8 +14726,8 @@ Add2.defaultProps = {
|
|
|
14658
14726
|
size: '1em'
|
|
14659
14727
|
};
|
|
14660
14728
|
|
|
14661
|
-
var _excluded$
|
|
14662
|
-
var loadingCircleStyle$
|
|
14729
|
+
var _excluded$4i = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14730
|
+
var loadingCircleStyle$4i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14663
14731
|
var Add3 = function Add3(props) {
|
|
14664
14732
|
var color = props.color,
|
|
14665
14733
|
size = props.size,
|
|
@@ -14667,12 +14735,12 @@ var Add3 = function Add3(props) {
|
|
|
14667
14735
|
style = props.style,
|
|
14668
14736
|
className = props.className,
|
|
14669
14737
|
iconClassName = props.iconClassName,
|
|
14670
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14738
|
+
otherProps = _objectWithoutProperties(props, _excluded$4i);
|
|
14671
14739
|
return /*#__PURE__*/React.createElement("span", {
|
|
14672
14740
|
role: "img",
|
|
14673
14741
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14674
14742
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14675
|
-
children: loadingCircleStyle$
|
|
14743
|
+
children: loadingCircleStyle$4i
|
|
14676
14744
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14677
14745
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14678
14746
|
width: size,
|
|
@@ -14707,8 +14775,8 @@ Add3.defaultProps = {
|
|
|
14707
14775
|
size: '1em'
|
|
14708
14776
|
};
|
|
14709
14777
|
|
|
14710
|
-
var _excluded$
|
|
14711
|
-
var loadingCircleStyle$
|
|
14778
|
+
var _excluded$4j = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14779
|
+
var loadingCircleStyle$4j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14712
14780
|
var Add3Fill = function Add3Fill(props) {
|
|
14713
14781
|
var color = props.color,
|
|
14714
14782
|
size = props.size,
|
|
@@ -14716,12 +14784,12 @@ var Add3Fill = function Add3Fill(props) {
|
|
|
14716
14784
|
style = props.style,
|
|
14717
14785
|
className = props.className,
|
|
14718
14786
|
iconClassName = props.iconClassName,
|
|
14719
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14787
|
+
otherProps = _objectWithoutProperties(props, _excluded$4j);
|
|
14720
14788
|
return /*#__PURE__*/React.createElement("span", {
|
|
14721
14789
|
role: "img",
|
|
14722
14790
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14723
14791
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14724
|
-
children: loadingCircleStyle$
|
|
14792
|
+
children: loadingCircleStyle$4j
|
|
14725
14793
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14726
14794
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14727
14795
|
width: size,
|
|
@@ -14756,8 +14824,8 @@ Add3Fill.defaultProps = {
|
|
|
14756
14824
|
size: '1em'
|
|
14757
14825
|
};
|
|
14758
14826
|
|
|
14759
|
-
var _excluded$
|
|
14760
|
-
var loadingCircleStyle$
|
|
14827
|
+
var _excluded$4k = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14828
|
+
var loadingCircleStyle$4k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14761
14829
|
var Subtract = function Subtract(props) {
|
|
14762
14830
|
var color = props.color,
|
|
14763
14831
|
size = props.size,
|
|
@@ -14765,12 +14833,12 @@ var Subtract = function Subtract(props) {
|
|
|
14765
14833
|
style = props.style,
|
|
14766
14834
|
className = props.className,
|
|
14767
14835
|
iconClassName = props.iconClassName,
|
|
14768
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14836
|
+
otherProps = _objectWithoutProperties(props, _excluded$4k);
|
|
14769
14837
|
return /*#__PURE__*/React.createElement("span", {
|
|
14770
14838
|
role: "img",
|
|
14771
14839
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14772
14840
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14773
|
-
children: loadingCircleStyle$
|
|
14841
|
+
children: loadingCircleStyle$4k
|
|
14774
14842
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14775
14843
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14776
14844
|
width: size,
|
|
@@ -14808,8 +14876,8 @@ Subtract.defaultProps = {
|
|
|
14808
14876
|
size: '1em'
|
|
14809
14877
|
};
|
|
14810
14878
|
|
|
14811
|
-
var _excluded$
|
|
14812
|
-
var loadingCircleStyle$
|
|
14879
|
+
var _excluded$4l = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14880
|
+
var loadingCircleStyle$4l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14813
14881
|
var Subtract2 = function Subtract2(props) {
|
|
14814
14882
|
var color = props.color,
|
|
14815
14883
|
size = props.size,
|
|
@@ -14817,12 +14885,12 @@ var Subtract2 = function Subtract2(props) {
|
|
|
14817
14885
|
style = props.style,
|
|
14818
14886
|
className = props.className,
|
|
14819
14887
|
iconClassName = props.iconClassName,
|
|
14820
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14888
|
+
otherProps = _objectWithoutProperties(props, _excluded$4l);
|
|
14821
14889
|
return /*#__PURE__*/React.createElement("span", {
|
|
14822
14890
|
role: "img",
|
|
14823
14891
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14824
14892
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14825
|
-
children: loadingCircleStyle$
|
|
14893
|
+
children: loadingCircleStyle$4l
|
|
14826
14894
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14827
14895
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14828
14896
|
width: size,
|
|
@@ -14861,8 +14929,8 @@ Subtract2.defaultProps = {
|
|
|
14861
14929
|
size: '1em'
|
|
14862
14930
|
};
|
|
14863
14931
|
|
|
14864
|
-
var _excluded$
|
|
14865
|
-
var loadingCircleStyle$
|
|
14932
|
+
var _excluded$4m = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14933
|
+
var loadingCircleStyle$4m = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14866
14934
|
var Update = function Update(props) {
|
|
14867
14935
|
var color = props.color,
|
|
14868
14936
|
size = props.size,
|
|
@@ -14870,12 +14938,12 @@ var Update = function Update(props) {
|
|
|
14870
14938
|
style = props.style,
|
|
14871
14939
|
className = props.className,
|
|
14872
14940
|
iconClassName = props.iconClassName,
|
|
14873
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14941
|
+
otherProps = _objectWithoutProperties(props, _excluded$4m);
|
|
14874
14942
|
return /*#__PURE__*/React.createElement("span", {
|
|
14875
14943
|
role: "img",
|
|
14876
14944
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14877
14945
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14878
|
-
children: loadingCircleStyle$
|
|
14946
|
+
children: loadingCircleStyle$4m
|
|
14879
14947
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14880
14948
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14881
14949
|
width: size,
|
|
@@ -14910,8 +14978,8 @@ Update.defaultProps = {
|
|
|
14910
14978
|
size: '1em'
|
|
14911
14979
|
};
|
|
14912
14980
|
|
|
14913
|
-
var _excluded$
|
|
14914
|
-
var loadingCircleStyle$
|
|
14981
|
+
var _excluded$4n = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
14982
|
+
var loadingCircleStyle$4n = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14915
14983
|
var Rename = function Rename(props) {
|
|
14916
14984
|
var color = props.color,
|
|
14917
14985
|
size = props.size,
|
|
@@ -14919,12 +14987,12 @@ var Rename = function Rename(props) {
|
|
|
14919
14987
|
style = props.style,
|
|
14920
14988
|
className = props.className,
|
|
14921
14989
|
iconClassName = props.iconClassName,
|
|
14922
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
14990
|
+
otherProps = _objectWithoutProperties(props, _excluded$4n);
|
|
14923
14991
|
return /*#__PURE__*/React.createElement("span", {
|
|
14924
14992
|
role: "img",
|
|
14925
14993
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14926
14994
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14927
|
-
children: loadingCircleStyle$
|
|
14995
|
+
children: loadingCircleStyle$4n
|
|
14928
14996
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14929
14997
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14930
14998
|
width: size,
|
|
@@ -14961,8 +15029,8 @@ Rename.defaultProps = {
|
|
|
14961
15029
|
size: '1em'
|
|
14962
15030
|
};
|
|
14963
15031
|
|
|
14964
|
-
var _excluded$
|
|
14965
|
-
var loadingCircleStyle$
|
|
15032
|
+
var _excluded$4o = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15033
|
+
var loadingCircleStyle$4o = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14966
15034
|
var PlayCircle = function PlayCircle(props) {
|
|
14967
15035
|
var color = props.color,
|
|
14968
15036
|
size = props.size,
|
|
@@ -14970,12 +15038,12 @@ var PlayCircle = function PlayCircle(props) {
|
|
|
14970
15038
|
style = props.style,
|
|
14971
15039
|
className = props.className,
|
|
14972
15040
|
iconClassName = props.iconClassName,
|
|
14973
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15041
|
+
otherProps = _objectWithoutProperties(props, _excluded$4o);
|
|
14974
15042
|
return /*#__PURE__*/React.createElement("span", {
|
|
14975
15043
|
role: "img",
|
|
14976
15044
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
14977
15045
|
}, /*#__PURE__*/React.createElement("style", {
|
|
14978
|
-
children: loadingCircleStyle$
|
|
15046
|
+
children: loadingCircleStyle$4o
|
|
14979
15047
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
14980
15048
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14981
15049
|
width: size,
|
|
@@ -15010,8 +15078,8 @@ PlayCircle.defaultProps = {
|
|
|
15010
15078
|
size: '1em'
|
|
15011
15079
|
};
|
|
15012
15080
|
|
|
15013
|
-
var _excluded$
|
|
15014
|
-
var loadingCircleStyle$
|
|
15081
|
+
var _excluded$4p = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15082
|
+
var loadingCircleStyle$4p = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15015
15083
|
var PauseCircle = function PauseCircle(props) {
|
|
15016
15084
|
var color = props.color,
|
|
15017
15085
|
size = props.size,
|
|
@@ -15019,12 +15087,12 @@ var PauseCircle = function PauseCircle(props) {
|
|
|
15019
15087
|
style = props.style,
|
|
15020
15088
|
className = props.className,
|
|
15021
15089
|
iconClassName = props.iconClassName,
|
|
15022
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15090
|
+
otherProps = _objectWithoutProperties(props, _excluded$4p);
|
|
15023
15091
|
return /*#__PURE__*/React.createElement("span", {
|
|
15024
15092
|
role: "img",
|
|
15025
15093
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15026
15094
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15027
|
-
children: loadingCircleStyle$
|
|
15095
|
+
children: loadingCircleStyle$4p
|
|
15028
15096
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15029
15097
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15030
15098
|
width: size,
|
|
@@ -15059,8 +15127,8 @@ PauseCircle.defaultProps = {
|
|
|
15059
15127
|
size: '1em'
|
|
15060
15128
|
};
|
|
15061
15129
|
|
|
15062
|
-
var _excluded$
|
|
15063
|
-
var loadingCircleStyle$
|
|
15130
|
+
var _excluded$4q = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15131
|
+
var loadingCircleStyle$4q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15064
15132
|
var UpdateData = function UpdateData(props) {
|
|
15065
15133
|
var color = props.color,
|
|
15066
15134
|
size = props.size,
|
|
@@ -15068,12 +15136,12 @@ var UpdateData = function UpdateData(props) {
|
|
|
15068
15136
|
style = props.style,
|
|
15069
15137
|
className = props.className,
|
|
15070
15138
|
iconClassName = props.iconClassName,
|
|
15071
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15139
|
+
otherProps = _objectWithoutProperties(props, _excluded$4q);
|
|
15072
15140
|
return /*#__PURE__*/React.createElement("span", {
|
|
15073
15141
|
role: "img",
|
|
15074
15142
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15075
15143
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15076
|
-
children: loadingCircleStyle$
|
|
15144
|
+
children: loadingCircleStyle$4q
|
|
15077
15145
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15078
15146
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15079
15147
|
width: size,
|
|
@@ -15112,8 +15180,8 @@ UpdateData.defaultProps = {
|
|
|
15112
15180
|
size: '1em'
|
|
15113
15181
|
};
|
|
15114
15182
|
|
|
15115
|
-
var _excluded$
|
|
15116
|
-
var loadingCircleStyle$
|
|
15183
|
+
var _excluded$4r = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15184
|
+
var loadingCircleStyle$4r = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15117
15185
|
var Upload = function Upload(props) {
|
|
15118
15186
|
var color = props.color,
|
|
15119
15187
|
size = props.size,
|
|
@@ -15121,12 +15189,12 @@ var Upload = function Upload(props) {
|
|
|
15121
15189
|
style = props.style,
|
|
15122
15190
|
className = props.className,
|
|
15123
15191
|
iconClassName = props.iconClassName,
|
|
15124
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15192
|
+
otherProps = _objectWithoutProperties(props, _excluded$4r);
|
|
15125
15193
|
return /*#__PURE__*/React.createElement("span", {
|
|
15126
15194
|
role: "img",
|
|
15127
15195
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15128
15196
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15129
|
-
children: loadingCircleStyle$
|
|
15197
|
+
children: loadingCircleStyle$4r
|
|
15130
15198
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15131
15199
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15132
15200
|
width: size,
|
|
@@ -15163,8 +15231,8 @@ Upload.defaultProps = {
|
|
|
15163
15231
|
size: '1em'
|
|
15164
15232
|
};
|
|
15165
15233
|
|
|
15166
|
-
var _excluded$
|
|
15167
|
-
var loadingCircleStyle$
|
|
15234
|
+
var _excluded$4s = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15235
|
+
var loadingCircleStyle$4s = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15168
15236
|
var Click = function Click(props) {
|
|
15169
15237
|
var color = props.color,
|
|
15170
15238
|
size = props.size,
|
|
@@ -15172,12 +15240,12 @@ var Click = function Click(props) {
|
|
|
15172
15240
|
style = props.style,
|
|
15173
15241
|
className = props.className,
|
|
15174
15242
|
iconClassName = props.iconClassName,
|
|
15175
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15243
|
+
otherProps = _objectWithoutProperties(props, _excluded$4s);
|
|
15176
15244
|
return /*#__PURE__*/React.createElement("span", {
|
|
15177
15245
|
role: "img",
|
|
15178
15246
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15179
15247
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15180
|
-
children: loadingCircleStyle$
|
|
15248
|
+
children: loadingCircleStyle$4s
|
|
15181
15249
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15182
15250
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15183
15251
|
width: size,
|
|
@@ -15212,8 +15280,8 @@ Click.defaultProps = {
|
|
|
15212
15280
|
size: '1em'
|
|
15213
15281
|
};
|
|
15214
15282
|
|
|
15215
|
-
var _excluded$
|
|
15216
|
-
var loadingCircleStyle$
|
|
15283
|
+
var _excluded$4t = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15284
|
+
var loadingCircleStyle$4t = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15217
15285
|
var Install = function Install(props) {
|
|
15218
15286
|
var color = props.color,
|
|
15219
15287
|
size = props.size,
|
|
@@ -15221,12 +15289,12 @@ var Install = function Install(props) {
|
|
|
15221
15289
|
style = props.style,
|
|
15222
15290
|
className = props.className,
|
|
15223
15291
|
iconClassName = props.iconClassName,
|
|
15224
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15292
|
+
otherProps = _objectWithoutProperties(props, _excluded$4t);
|
|
15225
15293
|
return /*#__PURE__*/React.createElement("span", {
|
|
15226
15294
|
role: "img",
|
|
15227
15295
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15228
15296
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15229
|
-
children: loadingCircleStyle$
|
|
15297
|
+
children: loadingCircleStyle$4t
|
|
15230
15298
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15231
15299
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15232
15300
|
width: size,
|
|
@@ -15261,8 +15329,8 @@ Install.defaultProps = {
|
|
|
15261
15329
|
size: '1em'
|
|
15262
15330
|
};
|
|
15263
15331
|
|
|
15264
|
-
var _excluded$
|
|
15265
|
-
var loadingCircleStyle$
|
|
15332
|
+
var _excluded$4u = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15333
|
+
var loadingCircleStyle$4u = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15266
15334
|
var Expand = function Expand(props) {
|
|
15267
15335
|
var color = props.color,
|
|
15268
15336
|
size = props.size,
|
|
@@ -15270,12 +15338,12 @@ var Expand = function Expand(props) {
|
|
|
15270
15338
|
style = props.style,
|
|
15271
15339
|
className = props.className,
|
|
15272
15340
|
iconClassName = props.iconClassName,
|
|
15273
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15341
|
+
otherProps = _objectWithoutProperties(props, _excluded$4u);
|
|
15274
15342
|
return /*#__PURE__*/React.createElement("span", {
|
|
15275
15343
|
role: "img",
|
|
15276
15344
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15277
15345
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15278
|
-
children: loadingCircleStyle$
|
|
15346
|
+
children: loadingCircleStyle$4u
|
|
15279
15347
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15280
15348
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15281
15349
|
width: size,
|
|
@@ -15312,8 +15380,8 @@ Expand.defaultProps = {
|
|
|
15312
15380
|
size: '1em'
|
|
15313
15381
|
};
|
|
15314
15382
|
|
|
15315
|
-
var _excluded$
|
|
15316
|
-
var loadingCircleStyle$
|
|
15383
|
+
var _excluded$4v = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15384
|
+
var loadingCircleStyle$4v = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15317
15385
|
var Pinch = function Pinch(props) {
|
|
15318
15386
|
var color = props.color,
|
|
15319
15387
|
size = props.size,
|
|
@@ -15321,12 +15389,12 @@ var Pinch = function Pinch(props) {
|
|
|
15321
15389
|
style = props.style,
|
|
15322
15390
|
className = props.className,
|
|
15323
15391
|
iconClassName = props.iconClassName,
|
|
15324
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15392
|
+
otherProps = _objectWithoutProperties(props, _excluded$4v);
|
|
15325
15393
|
return /*#__PURE__*/React.createElement("span", {
|
|
15326
15394
|
role: "img",
|
|
15327
15395
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15328
15396
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15329
|
-
children: loadingCircleStyle$
|
|
15397
|
+
children: loadingCircleStyle$4v
|
|
15330
15398
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15331
15399
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15332
15400
|
width: size,
|
|
@@ -15363,8 +15431,8 @@ Pinch.defaultProps = {
|
|
|
15363
15431
|
size: '1em'
|
|
15364
15432
|
};
|
|
15365
15433
|
|
|
15366
|
-
var _excluded$
|
|
15367
|
-
var loadingCircleStyle$
|
|
15434
|
+
var _excluded$4w = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15435
|
+
var loadingCircleStyle$4w = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15368
15436
|
var NewIndicator = function NewIndicator(props) {
|
|
15369
15437
|
var color = props.color,
|
|
15370
15438
|
size = props.size,
|
|
@@ -15372,12 +15440,12 @@ var NewIndicator = function NewIndicator(props) {
|
|
|
15372
15440
|
style = props.style,
|
|
15373
15441
|
className = props.className,
|
|
15374
15442
|
iconClassName = props.iconClassName,
|
|
15375
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15443
|
+
otherProps = _objectWithoutProperties(props, _excluded$4w);
|
|
15376
15444
|
return /*#__PURE__*/React.createElement("span", {
|
|
15377
15445
|
role: "img",
|
|
15378
15446
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15379
15447
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15380
|
-
children: loadingCircleStyle$
|
|
15448
|
+
children: loadingCircleStyle$4w
|
|
15381
15449
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15382
15450
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15383
15451
|
width: size,
|
|
@@ -15414,8 +15482,8 @@ NewIndicator.defaultProps = {
|
|
|
15414
15482
|
size: '1em'
|
|
15415
15483
|
};
|
|
15416
15484
|
|
|
15417
|
-
var _excluded$
|
|
15418
|
-
var loadingCircleStyle$
|
|
15485
|
+
var _excluded$4x = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15486
|
+
var loadingCircleStyle$4x = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15419
15487
|
var BoxOpen = function BoxOpen(props) {
|
|
15420
15488
|
var color = props.color,
|
|
15421
15489
|
size = props.size,
|
|
@@ -15423,12 +15491,12 @@ var BoxOpen = function BoxOpen(props) {
|
|
|
15423
15491
|
style = props.style,
|
|
15424
15492
|
className = props.className,
|
|
15425
15493
|
iconClassName = props.iconClassName,
|
|
15426
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15494
|
+
otherProps = _objectWithoutProperties(props, _excluded$4x);
|
|
15427
15495
|
return /*#__PURE__*/React.createElement("span", {
|
|
15428
15496
|
role: "img",
|
|
15429
15497
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15430
15498
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15431
|
-
children: loadingCircleStyle$
|
|
15499
|
+
children: loadingCircleStyle$4x
|
|
15432
15500
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15433
15501
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15434
15502
|
width: size,
|
|
@@ -15465,8 +15533,8 @@ BoxOpen.defaultProps = {
|
|
|
15465
15533
|
size: '1em'
|
|
15466
15534
|
};
|
|
15467
15535
|
|
|
15468
|
-
var _excluded$
|
|
15469
|
-
var loadingCircleStyle$
|
|
15536
|
+
var _excluded$4y = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15537
|
+
var loadingCircleStyle$4y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15470
15538
|
var Interval = function Interval(props) {
|
|
15471
15539
|
var color = props.color,
|
|
15472
15540
|
size = props.size,
|
|
@@ -15474,12 +15542,12 @@ var Interval = function Interval(props) {
|
|
|
15474
15542
|
style = props.style,
|
|
15475
15543
|
className = props.className,
|
|
15476
15544
|
iconClassName = props.iconClassName,
|
|
15477
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15545
|
+
otherProps = _objectWithoutProperties(props, _excluded$4y);
|
|
15478
15546
|
return /*#__PURE__*/React.createElement("span", {
|
|
15479
15547
|
role: "img",
|
|
15480
15548
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15481
15549
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15482
|
-
children: loadingCircleStyle$
|
|
15550
|
+
children: loadingCircleStyle$4y
|
|
15483
15551
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15484
15552
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15485
15553
|
width: size,
|
|
@@ -15522,8 +15590,8 @@ Interval.defaultProps = {
|
|
|
15522
15590
|
size: '1em'
|
|
15523
15591
|
};
|
|
15524
15592
|
|
|
15525
|
-
var _excluded$
|
|
15526
|
-
var loadingCircleStyle$
|
|
15593
|
+
var _excluded$4z = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15594
|
+
var loadingCircleStyle$4z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15527
15595
|
var Revert = function Revert(props) {
|
|
15528
15596
|
var color = props.color,
|
|
15529
15597
|
size = props.size,
|
|
@@ -15531,12 +15599,12 @@ var Revert = function Revert(props) {
|
|
|
15531
15599
|
style = props.style,
|
|
15532
15600
|
className = props.className,
|
|
15533
15601
|
iconClassName = props.iconClassName,
|
|
15534
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15602
|
+
otherProps = _objectWithoutProperties(props, _excluded$4z);
|
|
15535
15603
|
return /*#__PURE__*/React.createElement("span", {
|
|
15536
15604
|
role: "img",
|
|
15537
15605
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15538
15606
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15539
|
-
children: loadingCircleStyle$
|
|
15607
|
+
children: loadingCircleStyle$4z
|
|
15540
15608
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15541
15609
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15542
15610
|
width: size,
|
|
@@ -15571,8 +15639,8 @@ Revert.defaultProps = {
|
|
|
15571
15639
|
size: '1em'
|
|
15572
15640
|
};
|
|
15573
15641
|
|
|
15574
|
-
var _excluded$
|
|
15575
|
-
var loadingCircleStyle$
|
|
15642
|
+
var _excluded$4A = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15643
|
+
var loadingCircleStyle$4A = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15576
15644
|
var Insert = function Insert(props) {
|
|
15577
15645
|
var color = props.color,
|
|
15578
15646
|
size = props.size,
|
|
@@ -15580,12 +15648,12 @@ var Insert = function Insert(props) {
|
|
|
15580
15648
|
style = props.style,
|
|
15581
15649
|
className = props.className,
|
|
15582
15650
|
iconClassName = props.iconClassName,
|
|
15583
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15651
|
+
otherProps = _objectWithoutProperties(props, _excluded$4A);
|
|
15584
15652
|
return /*#__PURE__*/React.createElement("span", {
|
|
15585
15653
|
role: "img",
|
|
15586
15654
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15587
15655
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15588
|
-
children: loadingCircleStyle$
|
|
15656
|
+
children: loadingCircleStyle$4A
|
|
15589
15657
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15590
15658
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15591
15659
|
width: size,
|
|
@@ -15622,8 +15690,59 @@ Insert.defaultProps = {
|
|
|
15622
15690
|
size: '1em'
|
|
15623
15691
|
};
|
|
15624
15692
|
|
|
15625
|
-
var _excluded$
|
|
15626
|
-
var loadingCircleStyle$
|
|
15693
|
+
var _excluded$4B = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15694
|
+
var loadingCircleStyle$4B = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15695
|
+
var Disable = function Disable(props) {
|
|
15696
|
+
var color = props.color,
|
|
15697
|
+
size = props.size,
|
|
15698
|
+
spin = props.spin,
|
|
15699
|
+
style = props.style,
|
|
15700
|
+
className = props.className,
|
|
15701
|
+
iconClassName = props.iconClassName,
|
|
15702
|
+
otherProps = _objectWithoutProperties(props, _excluded$4B);
|
|
15703
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
15704
|
+
role: "img",
|
|
15705
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15706
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
15707
|
+
children: loadingCircleStyle$4B
|
|
15708
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15709
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15710
|
+
width: size,
|
|
15711
|
+
height: size,
|
|
15712
|
+
viewBox: "0 0 24 24",
|
|
15713
|
+
fill: color
|
|
15714
|
+
}, otherProps, {
|
|
15715
|
+
className: iconClassName,
|
|
15716
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
15717
|
+
animationDuration: '1s',
|
|
15718
|
+
animationIterationCount: 'infinite',
|
|
15719
|
+
animationName: 'loadingCircle',
|
|
15720
|
+
animationTimingFunction: 'linear'
|
|
15721
|
+
} : {})
|
|
15722
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
15723
|
+
width: "24",
|
|
15724
|
+
height: "24",
|
|
15725
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
15726
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15727
|
+
fillRule: "evenodd",
|
|
15728
|
+
clipRule: "evenodd",
|
|
15729
|
+
d: "M16.906 18.32A8 8 0 015.68 7.094L16.905 18.32zm1.414-1.414L7.094 5.68A8 8 0 0118.32 16.905zM22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10z"
|
|
15730
|
+
}))));
|
|
15731
|
+
};
|
|
15732
|
+
Disable.propTypes = {
|
|
15733
|
+
iconClassName: PropTypes.string,
|
|
15734
|
+
spin: PropTypes.bool,
|
|
15735
|
+
color: PropTypes.string,
|
|
15736
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
15737
|
+
};
|
|
15738
|
+
Disable.defaultProps = {
|
|
15739
|
+
spin: false,
|
|
15740
|
+
color: 'currentColor',
|
|
15741
|
+
size: '1em'
|
|
15742
|
+
};
|
|
15743
|
+
|
|
15744
|
+
var _excluded$4C = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15745
|
+
var loadingCircleStyle$4C = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15627
15746
|
var Report = function Report(props) {
|
|
15628
15747
|
var color = props.color,
|
|
15629
15748
|
size = props.size,
|
|
@@ -15631,12 +15750,12 @@ var Report = function Report(props) {
|
|
|
15631
15750
|
style = props.style,
|
|
15632
15751
|
className = props.className,
|
|
15633
15752
|
iconClassName = props.iconClassName,
|
|
15634
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15753
|
+
otherProps = _objectWithoutProperties(props, _excluded$4C);
|
|
15635
15754
|
return /*#__PURE__*/React.createElement("span", {
|
|
15636
15755
|
role: "img",
|
|
15637
15756
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15638
15757
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15639
|
-
children: loadingCircleStyle$
|
|
15758
|
+
children: loadingCircleStyle$4C
|
|
15640
15759
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15641
15760
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15642
15761
|
width: size,
|
|
@@ -15671,8 +15790,8 @@ Report.defaultProps = {
|
|
|
15671
15790
|
size: '1em'
|
|
15672
15791
|
};
|
|
15673
15792
|
|
|
15674
|
-
var _excluded$
|
|
15675
|
-
var loadingCircleStyle$
|
|
15793
|
+
var _excluded$4D = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15794
|
+
var loadingCircleStyle$4D = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15676
15795
|
var ReportRemoval = function ReportRemoval(props) {
|
|
15677
15796
|
var color = props.color,
|
|
15678
15797
|
size = props.size,
|
|
@@ -15680,12 +15799,12 @@ var ReportRemoval = function ReportRemoval(props) {
|
|
|
15680
15799
|
style = props.style,
|
|
15681
15800
|
className = props.className,
|
|
15682
15801
|
iconClassName = props.iconClassName,
|
|
15683
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15802
|
+
otherProps = _objectWithoutProperties(props, _excluded$4D);
|
|
15684
15803
|
return /*#__PURE__*/React.createElement("span", {
|
|
15685
15804
|
role: "img",
|
|
15686
15805
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15687
15806
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15688
|
-
children: loadingCircleStyle$
|
|
15807
|
+
children: loadingCircleStyle$4D
|
|
15689
15808
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15690
15809
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15691
15810
|
width: size,
|
|
@@ -15728,8 +15847,8 @@ ReportRemoval.defaultProps = {
|
|
|
15728
15847
|
size: '1em'
|
|
15729
15848
|
};
|
|
15730
15849
|
|
|
15731
|
-
var _excluded$
|
|
15732
|
-
var loadingCircleStyle$
|
|
15850
|
+
var _excluded$4E = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15851
|
+
var loadingCircleStyle$4E = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15733
15852
|
var FileAdd = function FileAdd(props) {
|
|
15734
15853
|
var color = props.color,
|
|
15735
15854
|
size = props.size,
|
|
@@ -15737,12 +15856,12 @@ var FileAdd = function FileAdd(props) {
|
|
|
15737
15856
|
style = props.style,
|
|
15738
15857
|
className = props.className,
|
|
15739
15858
|
iconClassName = props.iconClassName,
|
|
15740
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15859
|
+
otherProps = _objectWithoutProperties(props, _excluded$4E);
|
|
15741
15860
|
return /*#__PURE__*/React.createElement("span", {
|
|
15742
15861
|
role: "img",
|
|
15743
15862
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15744
15863
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15745
|
-
children: loadingCircleStyle$
|
|
15864
|
+
children: loadingCircleStyle$4E
|
|
15746
15865
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15747
15866
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15748
15867
|
width: size,
|
|
@@ -15777,8 +15896,8 @@ FileAdd.defaultProps = {
|
|
|
15777
15896
|
size: '1em'
|
|
15778
15897
|
};
|
|
15779
15898
|
|
|
15780
|
-
var _excluded$
|
|
15781
|
-
var loadingCircleStyle$
|
|
15899
|
+
var _excluded$4F = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15900
|
+
var loadingCircleStyle$4F = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15782
15901
|
var FileRemove = function FileRemove(props) {
|
|
15783
15902
|
var color = props.color,
|
|
15784
15903
|
size = props.size,
|
|
@@ -15786,12 +15905,12 @@ var FileRemove = function FileRemove(props) {
|
|
|
15786
15905
|
style = props.style,
|
|
15787
15906
|
className = props.className,
|
|
15788
15907
|
iconClassName = props.iconClassName,
|
|
15789
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15908
|
+
otherProps = _objectWithoutProperties(props, _excluded$4F);
|
|
15790
15909
|
return /*#__PURE__*/React.createElement("span", {
|
|
15791
15910
|
role: "img",
|
|
15792
15911
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15793
15912
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15794
|
-
children: loadingCircleStyle$
|
|
15913
|
+
children: loadingCircleStyle$4F
|
|
15795
15914
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15796
15915
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15797
15916
|
width: size,
|
|
@@ -15828,8 +15947,8 @@ FileRemove.defaultProps = {
|
|
|
15828
15947
|
size: '1em'
|
|
15829
15948
|
};
|
|
15830
15949
|
|
|
15831
|
-
var _excluded$
|
|
15832
|
-
var loadingCircleStyle$
|
|
15950
|
+
var _excluded$4G = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
15951
|
+
var loadingCircleStyle$4G = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15833
15952
|
var FileExport = function FileExport(props) {
|
|
15834
15953
|
var color = props.color,
|
|
15835
15954
|
size = props.size,
|
|
@@ -15837,12 +15956,12 @@ var FileExport = function FileExport(props) {
|
|
|
15837
15956
|
style = props.style,
|
|
15838
15957
|
className = props.className,
|
|
15839
15958
|
iconClassName = props.iconClassName,
|
|
15840
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
15959
|
+
otherProps = _objectWithoutProperties(props, _excluded$4G);
|
|
15841
15960
|
return /*#__PURE__*/React.createElement("span", {
|
|
15842
15961
|
role: "img",
|
|
15843
15962
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15844
15963
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15845
|
-
children: loadingCircleStyle$
|
|
15964
|
+
children: loadingCircleStyle$4G
|
|
15846
15965
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15847
15966
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15848
15967
|
width: size,
|
|
@@ -15877,8 +15996,8 @@ FileExport.defaultProps = {
|
|
|
15877
15996
|
size: '1em'
|
|
15878
15997
|
};
|
|
15879
15998
|
|
|
15880
|
-
var _excluded$
|
|
15881
|
-
var loadingCircleStyle$
|
|
15999
|
+
var _excluded$4H = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16000
|
+
var loadingCircleStyle$4H = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15882
16001
|
var FileMove = function FileMove(props) {
|
|
15883
16002
|
var color = props.color,
|
|
15884
16003
|
size = props.size,
|
|
@@ -15886,12 +16005,12 @@ var FileMove = function FileMove(props) {
|
|
|
15886
16005
|
style = props.style,
|
|
15887
16006
|
className = props.className,
|
|
15888
16007
|
iconClassName = props.iconClassName,
|
|
15889
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16008
|
+
otherProps = _objectWithoutProperties(props, _excluded$4H);
|
|
15890
16009
|
return /*#__PURE__*/React.createElement("span", {
|
|
15891
16010
|
role: "img",
|
|
15892
16011
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15893
16012
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15894
|
-
children: loadingCircleStyle$
|
|
16013
|
+
children: loadingCircleStyle$4H
|
|
15895
16014
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15896
16015
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15897
16016
|
width: size,
|
|
@@ -15926,8 +16045,8 @@ FileMove.defaultProps = {
|
|
|
15926
16045
|
size: '1em'
|
|
15927
16046
|
};
|
|
15928
16047
|
|
|
15929
|
-
var _excluded$
|
|
15930
|
-
var loadingCircleStyle$
|
|
16048
|
+
var _excluded$4I = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16049
|
+
var loadingCircleStyle$4I = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15931
16050
|
var FileImport = function FileImport(props) {
|
|
15932
16051
|
var color = props.color,
|
|
15933
16052
|
size = props.size,
|
|
@@ -15935,12 +16054,12 @@ var FileImport = function FileImport(props) {
|
|
|
15935
16054
|
style = props.style,
|
|
15936
16055
|
className = props.className,
|
|
15937
16056
|
iconClassName = props.iconClassName,
|
|
15938
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16057
|
+
otherProps = _objectWithoutProperties(props, _excluded$4I);
|
|
15939
16058
|
return /*#__PURE__*/React.createElement("span", {
|
|
15940
16059
|
role: "img",
|
|
15941
16060
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15942
16061
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15943
|
-
children: loadingCircleStyle$
|
|
16062
|
+
children: loadingCircleStyle$4I
|
|
15944
16063
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15945
16064
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15946
16065
|
width: size,
|
|
@@ -15975,8 +16094,8 @@ FileImport.defaultProps = {
|
|
|
15975
16094
|
size: '1em'
|
|
15976
16095
|
};
|
|
15977
16096
|
|
|
15978
|
-
var _excluded$
|
|
15979
|
-
var loadingCircleStyle$
|
|
16097
|
+
var _excluded$4J = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16098
|
+
var loadingCircleStyle$4J = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
15980
16099
|
var FileInfo = function FileInfo(props) {
|
|
15981
16100
|
var color = props.color,
|
|
15982
16101
|
size = props.size,
|
|
@@ -15984,12 +16103,12 @@ var FileInfo = function FileInfo(props) {
|
|
|
15984
16103
|
style = props.style,
|
|
15985
16104
|
className = props.className,
|
|
15986
16105
|
iconClassName = props.iconClassName,
|
|
15987
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16106
|
+
otherProps = _objectWithoutProperties(props, _excluded$4J);
|
|
15988
16107
|
return /*#__PURE__*/React.createElement("span", {
|
|
15989
16108
|
role: "img",
|
|
15990
16109
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
15991
16110
|
}, /*#__PURE__*/React.createElement("style", {
|
|
15992
|
-
children: loadingCircleStyle$
|
|
16111
|
+
children: loadingCircleStyle$4J
|
|
15993
16112
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
15994
16113
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15995
16114
|
width: size,
|
|
@@ -16024,8 +16143,8 @@ FileInfo.defaultProps = {
|
|
|
16024
16143
|
size: '1em'
|
|
16025
16144
|
};
|
|
16026
16145
|
|
|
16027
|
-
var _excluded$
|
|
16028
|
-
var loadingCircleStyle$
|
|
16146
|
+
var _excluded$4K = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16147
|
+
var loadingCircleStyle$4K = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16029
16148
|
var FileConvert = function FileConvert(props) {
|
|
16030
16149
|
var color = props.color,
|
|
16031
16150
|
size = props.size,
|
|
@@ -16033,12 +16152,12 @@ var FileConvert = function FileConvert(props) {
|
|
|
16033
16152
|
style = props.style,
|
|
16034
16153
|
className = props.className,
|
|
16035
16154
|
iconClassName = props.iconClassName,
|
|
16036
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16155
|
+
otherProps = _objectWithoutProperties(props, _excluded$4K);
|
|
16037
16156
|
return /*#__PURE__*/React.createElement("span", {
|
|
16038
16157
|
role: "img",
|
|
16039
16158
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16040
16159
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16041
|
-
children: loadingCircleStyle$
|
|
16160
|
+
children: loadingCircleStyle$4K
|
|
16042
16161
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16043
16162
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16044
16163
|
width: size,
|
|
@@ -16079,8 +16198,8 @@ FileConvert.defaultProps = {
|
|
|
16079
16198
|
size: '1em'
|
|
16080
16199
|
};
|
|
16081
16200
|
|
|
16082
|
-
var _excluded$
|
|
16083
|
-
var loadingCircleStyle$
|
|
16201
|
+
var _excluded$4L = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16202
|
+
var loadingCircleStyle$4L = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16084
16203
|
var AssetConvert = function AssetConvert(props) {
|
|
16085
16204
|
var color = props.color,
|
|
16086
16205
|
size = props.size,
|
|
@@ -16088,12 +16207,12 @@ var AssetConvert = function AssetConvert(props) {
|
|
|
16088
16207
|
style = props.style,
|
|
16089
16208
|
className = props.className,
|
|
16090
16209
|
iconClassName = props.iconClassName,
|
|
16091
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16210
|
+
otherProps = _objectWithoutProperties(props, _excluded$4L);
|
|
16092
16211
|
return /*#__PURE__*/React.createElement("span", {
|
|
16093
16212
|
role: "img",
|
|
16094
16213
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16095
16214
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16096
|
-
children: loadingCircleStyle$
|
|
16215
|
+
children: loadingCircleStyle$4L
|
|
16097
16216
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16098
16217
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16099
16218
|
width: size,
|
|
@@ -16134,8 +16253,8 @@ AssetConvert.defaultProps = {
|
|
|
16134
16253
|
size: '1em'
|
|
16135
16254
|
};
|
|
16136
16255
|
|
|
16137
|
-
var _excluded$
|
|
16138
|
-
var loadingCircleStyle$
|
|
16256
|
+
var _excluded$4M = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16257
|
+
var loadingCircleStyle$4M = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16139
16258
|
var FileLock = function FileLock(props) {
|
|
16140
16259
|
var color = props.color,
|
|
16141
16260
|
size = props.size,
|
|
@@ -16143,12 +16262,12 @@ var FileLock = function FileLock(props) {
|
|
|
16143
16262
|
style = props.style,
|
|
16144
16263
|
className = props.className,
|
|
16145
16264
|
iconClassName = props.iconClassName,
|
|
16146
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16265
|
+
otherProps = _objectWithoutProperties(props, _excluded$4M);
|
|
16147
16266
|
return /*#__PURE__*/React.createElement("span", {
|
|
16148
16267
|
role: "img",
|
|
16149
16268
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16150
16269
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16151
|
-
children: loadingCircleStyle$
|
|
16270
|
+
children: loadingCircleStyle$4M
|
|
16152
16271
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16153
16272
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16154
16273
|
width: size,
|
|
@@ -16183,8 +16302,8 @@ FileLock.defaultProps = {
|
|
|
16183
16302
|
size: '1em'
|
|
16184
16303
|
};
|
|
16185
16304
|
|
|
16186
|
-
var _excluded$
|
|
16187
|
-
var loadingCircleStyle$
|
|
16305
|
+
var _excluded$4N = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16306
|
+
var loadingCircleStyle$4N = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16188
16307
|
var FilePdf = function FilePdf(props) {
|
|
16189
16308
|
var color = props.color,
|
|
16190
16309
|
size = props.size,
|
|
@@ -16192,12 +16311,12 @@ var FilePdf = function FilePdf(props) {
|
|
|
16192
16311
|
style = props.style,
|
|
16193
16312
|
className = props.className,
|
|
16194
16313
|
iconClassName = props.iconClassName,
|
|
16195
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16314
|
+
otherProps = _objectWithoutProperties(props, _excluded$4N);
|
|
16196
16315
|
return /*#__PURE__*/React.createElement("span", {
|
|
16197
16316
|
role: "img",
|
|
16198
16317
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16199
16318
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16200
|
-
children: loadingCircleStyle$
|
|
16319
|
+
children: loadingCircleStyle$4N
|
|
16201
16320
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16202
16321
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16203
16322
|
width: size,
|
|
@@ -16232,8 +16351,8 @@ FilePdf.defaultProps = {
|
|
|
16232
16351
|
size: '1em'
|
|
16233
16352
|
};
|
|
16234
16353
|
|
|
16235
|
-
var _excluded$
|
|
16236
|
-
var loadingCircleStyle$
|
|
16354
|
+
var _excluded$4O = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16355
|
+
var loadingCircleStyle$4O = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16237
16356
|
var Detail = function Detail(props) {
|
|
16238
16357
|
var color = props.color,
|
|
16239
16358
|
size = props.size,
|
|
@@ -16241,12 +16360,12 @@ var Detail = function Detail(props) {
|
|
|
16241
16360
|
style = props.style,
|
|
16242
16361
|
className = props.className,
|
|
16243
16362
|
iconClassName = props.iconClassName,
|
|
16244
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16363
|
+
otherProps = _objectWithoutProperties(props, _excluded$4O);
|
|
16245
16364
|
return /*#__PURE__*/React.createElement("span", {
|
|
16246
16365
|
role: "img",
|
|
16247
16366
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16248
16367
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16249
|
-
children: loadingCircleStyle$
|
|
16368
|
+
children: loadingCircleStyle$4O
|
|
16250
16369
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16251
16370
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16252
16371
|
width: size,
|
|
@@ -16281,8 +16400,8 @@ Detail.defaultProps = {
|
|
|
16281
16400
|
size: '1em'
|
|
16282
16401
|
};
|
|
16283
16402
|
|
|
16284
|
-
var _excluded$
|
|
16285
|
-
var loadingCircleStyle$
|
|
16403
|
+
var _excluded$4P = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16404
|
+
var loadingCircleStyle$4P = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16286
16405
|
var MessageCenter = function MessageCenter(props) {
|
|
16287
16406
|
var color = props.color,
|
|
16288
16407
|
size = props.size,
|
|
@@ -16290,12 +16409,12 @@ var MessageCenter = function MessageCenter(props) {
|
|
|
16290
16409
|
style = props.style,
|
|
16291
16410
|
className = props.className,
|
|
16292
16411
|
iconClassName = props.iconClassName,
|
|
16293
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16412
|
+
otherProps = _objectWithoutProperties(props, _excluded$4P);
|
|
16294
16413
|
return /*#__PURE__*/React.createElement("span", {
|
|
16295
16414
|
role: "img",
|
|
16296
16415
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16297
16416
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16298
|
-
children: loadingCircleStyle$
|
|
16417
|
+
children: loadingCircleStyle$4P
|
|
16299
16418
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16300
16419
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16301
16420
|
width: size,
|
|
@@ -16338,8 +16457,8 @@ MessageCenter.defaultProps = {
|
|
|
16338
16457
|
size: '1em'
|
|
16339
16458
|
};
|
|
16340
16459
|
|
|
16341
|
-
var _excluded$
|
|
16342
|
-
var loadingCircleStyle$
|
|
16460
|
+
var _excluded$4Q = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16461
|
+
var loadingCircleStyle$4Q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16343
16462
|
var SystemMsg = function SystemMsg(props) {
|
|
16344
16463
|
var color = props.color,
|
|
16345
16464
|
size = props.size,
|
|
@@ -16347,12 +16466,12 @@ var SystemMsg = function SystemMsg(props) {
|
|
|
16347
16466
|
style = props.style,
|
|
16348
16467
|
className = props.className,
|
|
16349
16468
|
iconClassName = props.iconClassName,
|
|
16350
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16469
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Q);
|
|
16351
16470
|
return /*#__PURE__*/React.createElement("span", {
|
|
16352
16471
|
role: "img",
|
|
16353
16472
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16354
16473
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16355
|
-
children: loadingCircleStyle$
|
|
16474
|
+
children: loadingCircleStyle$4Q
|
|
16356
16475
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16357
16476
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16358
16477
|
width: size,
|
|
@@ -16393,8 +16512,8 @@ SystemMsg.defaultProps = {
|
|
|
16393
16512
|
size: '1em'
|
|
16394
16513
|
};
|
|
16395
16514
|
|
|
16396
|
-
var _excluded$
|
|
16397
|
-
var loadingCircleStyle$
|
|
16515
|
+
var _excluded$4R = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16516
|
+
var loadingCircleStyle$4R = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16398
16517
|
var Comment = function Comment(props) {
|
|
16399
16518
|
var color = props.color,
|
|
16400
16519
|
size = props.size,
|
|
@@ -16402,12 +16521,12 @@ var Comment = function Comment(props) {
|
|
|
16402
16521
|
style = props.style,
|
|
16403
16522
|
className = props.className,
|
|
16404
16523
|
iconClassName = props.iconClassName,
|
|
16405
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16524
|
+
otherProps = _objectWithoutProperties(props, _excluded$4R);
|
|
16406
16525
|
return /*#__PURE__*/React.createElement("span", {
|
|
16407
16526
|
role: "img",
|
|
16408
16527
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16409
16528
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16410
|
-
children: loadingCircleStyle$
|
|
16529
|
+
children: loadingCircleStyle$4R
|
|
16411
16530
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16412
16531
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16413
16532
|
width: size,
|
|
@@ -16446,8 +16565,8 @@ Comment.defaultProps = {
|
|
|
16446
16565
|
size: '1em'
|
|
16447
16566
|
};
|
|
16448
16567
|
|
|
16449
|
-
var _excluded$
|
|
16450
|
-
var loadingCircleStyle$
|
|
16568
|
+
var _excluded$4S = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16569
|
+
var loadingCircleStyle$4S = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16451
16570
|
var Book = function Book(props) {
|
|
16452
16571
|
var color = props.color,
|
|
16453
16572
|
size = props.size,
|
|
@@ -16455,12 +16574,12 @@ var Book = function Book(props) {
|
|
|
16455
16574
|
style = props.style,
|
|
16456
16575
|
className = props.className,
|
|
16457
16576
|
iconClassName = props.iconClassName,
|
|
16458
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16577
|
+
otherProps = _objectWithoutProperties(props, _excluded$4S);
|
|
16459
16578
|
return /*#__PURE__*/React.createElement("span", {
|
|
16460
16579
|
role: "img",
|
|
16461
16580
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16462
16581
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16463
|
-
children: loadingCircleStyle$
|
|
16582
|
+
children: loadingCircleStyle$4S
|
|
16464
16583
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16465
16584
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16466
16585
|
width: size,
|
|
@@ -16495,8 +16614,8 @@ Book.defaultProps = {
|
|
|
16495
16614
|
size: '1em'
|
|
16496
16615
|
};
|
|
16497
16616
|
|
|
16498
|
-
var _excluded$
|
|
16499
|
-
var loadingCircleStyle$
|
|
16617
|
+
var _excluded$4T = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16618
|
+
var loadingCircleStyle$4T = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16500
16619
|
var Book2 = function Book2(props) {
|
|
16501
16620
|
var color = props.color,
|
|
16502
16621
|
size = props.size,
|
|
@@ -16504,12 +16623,12 @@ var Book2 = function Book2(props) {
|
|
|
16504
16623
|
style = props.style,
|
|
16505
16624
|
className = props.className,
|
|
16506
16625
|
iconClassName = props.iconClassName,
|
|
16507
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16626
|
+
otherProps = _objectWithoutProperties(props, _excluded$4T);
|
|
16508
16627
|
return /*#__PURE__*/React.createElement("span", {
|
|
16509
16628
|
role: "img",
|
|
16510
16629
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16511
16630
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16512
|
-
children: loadingCircleStyle$
|
|
16631
|
+
children: loadingCircleStyle$4T
|
|
16513
16632
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16514
16633
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16515
16634
|
width: size,
|
|
@@ -16544,8 +16663,8 @@ Book2.defaultProps = {
|
|
|
16544
16663
|
size: '1em'
|
|
16545
16664
|
};
|
|
16546
16665
|
|
|
16547
|
-
var _excluded$
|
|
16548
|
-
var loadingCircleStyle$
|
|
16666
|
+
var _excluded$4U = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16667
|
+
var loadingCircleStyle$4U = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16549
16668
|
var Sticker = function Sticker(props) {
|
|
16550
16669
|
var color = props.color,
|
|
16551
16670
|
size = props.size,
|
|
@@ -16553,12 +16672,12 @@ var Sticker = function Sticker(props) {
|
|
|
16553
16672
|
style = props.style,
|
|
16554
16673
|
className = props.className,
|
|
16555
16674
|
iconClassName = props.iconClassName,
|
|
16556
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16675
|
+
otherProps = _objectWithoutProperties(props, _excluded$4U);
|
|
16557
16676
|
return /*#__PURE__*/React.createElement("span", {
|
|
16558
16677
|
role: "img",
|
|
16559
16678
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16560
16679
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16561
|
-
children: loadingCircleStyle$
|
|
16680
|
+
children: loadingCircleStyle$4U
|
|
16562
16681
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16563
16682
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16564
16683
|
width: size,
|
|
@@ -16593,8 +16712,8 @@ Sticker.defaultProps = {
|
|
|
16593
16712
|
size: '1em'
|
|
16594
16713
|
};
|
|
16595
16714
|
|
|
16596
|
-
var _excluded$
|
|
16597
|
-
var loadingCircleStyle$
|
|
16715
|
+
var _excluded$4V = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16716
|
+
var loadingCircleStyle$4V = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16598
16717
|
var StickerFill = function StickerFill(props) {
|
|
16599
16718
|
var color = props.color,
|
|
16600
16719
|
size = props.size,
|
|
@@ -16602,12 +16721,12 @@ var StickerFill = function StickerFill(props) {
|
|
|
16602
16721
|
style = props.style,
|
|
16603
16722
|
className = props.className,
|
|
16604
16723
|
iconClassName = props.iconClassName,
|
|
16605
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16724
|
+
otherProps = _objectWithoutProperties(props, _excluded$4V);
|
|
16606
16725
|
return /*#__PURE__*/React.createElement("span", {
|
|
16607
16726
|
role: "img",
|
|
16608
16727
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16609
16728
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16610
|
-
children: loadingCircleStyle$
|
|
16729
|
+
children: loadingCircleStyle$4V
|
|
16611
16730
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16612
16731
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16613
16732
|
width: size,
|
|
@@ -16642,8 +16761,8 @@ StickerFill.defaultProps = {
|
|
|
16642
16761
|
size: '1em'
|
|
16643
16762
|
};
|
|
16644
16763
|
|
|
16645
|
-
var _excluded$
|
|
16646
|
-
var loadingCircleStyle$
|
|
16764
|
+
var _excluded$4W = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16765
|
+
var loadingCircleStyle$4W = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16647
16766
|
var FolderLine = function FolderLine(props) {
|
|
16648
16767
|
var color = props.color,
|
|
16649
16768
|
size = props.size,
|
|
@@ -16651,12 +16770,12 @@ var FolderLine = function FolderLine(props) {
|
|
|
16651
16770
|
style = props.style,
|
|
16652
16771
|
className = props.className,
|
|
16653
16772
|
iconClassName = props.iconClassName,
|
|
16654
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16773
|
+
otherProps = _objectWithoutProperties(props, _excluded$4W);
|
|
16655
16774
|
return /*#__PURE__*/React.createElement("span", {
|
|
16656
16775
|
role: "img",
|
|
16657
16776
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16658
16777
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16659
|
-
children: loadingCircleStyle$
|
|
16778
|
+
children: loadingCircleStyle$4W
|
|
16660
16779
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16661
16780
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16662
16781
|
width: size,
|
|
@@ -16693,8 +16812,8 @@ FolderLine.defaultProps = {
|
|
|
16693
16812
|
size: '1em'
|
|
16694
16813
|
};
|
|
16695
16814
|
|
|
16696
|
-
var _excluded$
|
|
16697
|
-
var loadingCircleStyle$
|
|
16815
|
+
var _excluded$4X = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16816
|
+
var loadingCircleStyle$4X = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16698
16817
|
var FolderOpenLine = function FolderOpenLine(props) {
|
|
16699
16818
|
var color = props.color,
|
|
16700
16819
|
size = props.size,
|
|
@@ -16702,12 +16821,12 @@ var FolderOpenLine = function FolderOpenLine(props) {
|
|
|
16702
16821
|
style = props.style,
|
|
16703
16822
|
className = props.className,
|
|
16704
16823
|
iconClassName = props.iconClassName,
|
|
16705
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16824
|
+
otherProps = _objectWithoutProperties(props, _excluded$4X);
|
|
16706
16825
|
return /*#__PURE__*/React.createElement("span", {
|
|
16707
16826
|
role: "img",
|
|
16708
16827
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16709
16828
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16710
|
-
children: loadingCircleStyle$
|
|
16829
|
+
children: loadingCircleStyle$4X
|
|
16711
16830
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16712
16831
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16713
16832
|
width: size,
|
|
@@ -16744,8 +16863,8 @@ FolderOpenLine.defaultProps = {
|
|
|
16744
16863
|
size: '1em'
|
|
16745
16864
|
};
|
|
16746
16865
|
|
|
16747
|
-
var _excluded$
|
|
16748
|
-
var loadingCircleStyle$
|
|
16866
|
+
var _excluded$4Y = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16867
|
+
var loadingCircleStyle$4Y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16749
16868
|
var SpaceLine = function SpaceLine(props) {
|
|
16750
16869
|
var color = props.color,
|
|
16751
16870
|
size = props.size,
|
|
@@ -16753,12 +16872,12 @@ var SpaceLine = function SpaceLine(props) {
|
|
|
16753
16872
|
style = props.style,
|
|
16754
16873
|
className = props.className,
|
|
16755
16874
|
iconClassName = props.iconClassName,
|
|
16756
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16875
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Y);
|
|
16757
16876
|
return /*#__PURE__*/React.createElement("span", {
|
|
16758
16877
|
role: "img",
|
|
16759
16878
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16760
16879
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16761
|
-
children: loadingCircleStyle$
|
|
16880
|
+
children: loadingCircleStyle$4Y
|
|
16762
16881
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16763
16882
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16764
16883
|
width: size,
|
|
@@ -16795,8 +16914,8 @@ SpaceLine.defaultProps = {
|
|
|
16795
16914
|
size: '1em'
|
|
16796
16915
|
};
|
|
16797
16916
|
|
|
16798
|
-
var _excluded$
|
|
16799
|
-
var loadingCircleStyle$
|
|
16917
|
+
var _excluded$4Z = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16918
|
+
var loadingCircleStyle$4Z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16800
16919
|
var SpaceOpenLine = function SpaceOpenLine(props) {
|
|
16801
16920
|
var color = props.color,
|
|
16802
16921
|
size = props.size,
|
|
@@ -16804,12 +16923,12 @@ var SpaceOpenLine = function SpaceOpenLine(props) {
|
|
|
16804
16923
|
style = props.style,
|
|
16805
16924
|
className = props.className,
|
|
16806
16925
|
iconClassName = props.iconClassName,
|
|
16807
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16926
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Z);
|
|
16808
16927
|
return /*#__PURE__*/React.createElement("span", {
|
|
16809
16928
|
role: "img",
|
|
16810
16929
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16811
16930
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16812
|
-
children: loadingCircleStyle$
|
|
16931
|
+
children: loadingCircleStyle$4Z
|
|
16813
16932
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16814
16933
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16815
16934
|
width: size,
|
|
@@ -16846,8 +16965,8 @@ SpaceOpenLine.defaultProps = {
|
|
|
16846
16965
|
size: '1em'
|
|
16847
16966
|
};
|
|
16848
16967
|
|
|
16849
|
-
var _excluded$
|
|
16850
|
-
var loadingCircleStyle$
|
|
16968
|
+
var _excluded$4_ = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16969
|
+
var loadingCircleStyle$4_ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16851
16970
|
var PageLine = function PageLine(props) {
|
|
16852
16971
|
var color = props.color,
|
|
16853
16972
|
size = props.size,
|
|
@@ -16855,12 +16974,12 @@ var PageLine = function PageLine(props) {
|
|
|
16855
16974
|
style = props.style,
|
|
16856
16975
|
className = props.className,
|
|
16857
16976
|
iconClassName = props.iconClassName,
|
|
16858
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16977
|
+
otherProps = _objectWithoutProperties(props, _excluded$4_);
|
|
16859
16978
|
return /*#__PURE__*/React.createElement("span", {
|
|
16860
16979
|
role: "img",
|
|
16861
16980
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16862
16981
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16863
|
-
children: loadingCircleStyle$
|
|
16982
|
+
children: loadingCircleStyle$4_
|
|
16864
16983
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16865
16984
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16866
16985
|
width: size,
|
|
@@ -16897,8 +17016,8 @@ PageLine.defaultProps = {
|
|
|
16897
17016
|
size: '1em'
|
|
16898
17017
|
};
|
|
16899
17018
|
|
|
16900
|
-
var _excluded$
|
|
16901
|
-
var loadingCircleStyle$
|
|
17019
|
+
var _excluded$4$ = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17020
|
+
var loadingCircleStyle$4$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16902
17021
|
var PageOpenCl = function PageOpenCl(props) {
|
|
16903
17022
|
var color = props.color,
|
|
16904
17023
|
size = props.size,
|
|
@@ -16906,12 +17025,12 @@ var PageOpenCl = function PageOpenCl(props) {
|
|
|
16906
17025
|
style = props.style,
|
|
16907
17026
|
className = props.className,
|
|
16908
17027
|
iconClassName = props.iconClassName,
|
|
16909
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17028
|
+
otherProps = _objectWithoutProperties(props, _excluded$4$);
|
|
16910
17029
|
return /*#__PURE__*/React.createElement("span", {
|
|
16911
17030
|
role: "img",
|
|
16912
17031
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16913
17032
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16914
|
-
children: loadingCircleStyle$
|
|
17033
|
+
children: loadingCircleStyle$4$
|
|
16915
17034
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16916
17035
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16917
17036
|
width: size,
|
|
@@ -16964,8 +17083,8 @@ PageOpenCl.defaultProps = {
|
|
|
16964
17083
|
size: '1em'
|
|
16965
17084
|
};
|
|
16966
17085
|
|
|
16967
|
-
var _excluded$
|
|
16968
|
-
var loadingCircleStyle$
|
|
17086
|
+
var _excluded$50 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17087
|
+
var loadingCircleStyle$50 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16969
17088
|
var EventSm = function EventSm(props) {
|
|
16970
17089
|
var color = props.color,
|
|
16971
17090
|
size = props.size,
|
|
@@ -16973,12 +17092,12 @@ var EventSm = function EventSm(props) {
|
|
|
16973
17092
|
style = props.style,
|
|
16974
17093
|
className = props.className,
|
|
16975
17094
|
iconClassName = props.iconClassName,
|
|
16976
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17095
|
+
otherProps = _objectWithoutProperties(props, _excluded$50);
|
|
16977
17096
|
return /*#__PURE__*/React.createElement("span", {
|
|
16978
17097
|
role: "img",
|
|
16979
17098
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16980
17099
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16981
|
-
children: loadingCircleStyle$
|
|
17100
|
+
children: loadingCircleStyle$50
|
|
16982
17101
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16983
17102
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16984
17103
|
width: size,
|
|
@@ -17013,8 +17132,8 @@ EventSm.defaultProps = {
|
|
|
17013
17132
|
size: '1em'
|
|
17014
17133
|
};
|
|
17015
17134
|
|
|
17016
|
-
var _excluded$
|
|
17017
|
-
var loadingCircleStyle$
|
|
17135
|
+
var _excluded$51 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17136
|
+
var loadingCircleStyle$51 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17018
17137
|
var EPropertySm = function EPropertySm(props) {
|
|
17019
17138
|
var color = props.color,
|
|
17020
17139
|
size = props.size,
|
|
@@ -17022,12 +17141,12 @@ var EPropertySm = function EPropertySm(props) {
|
|
|
17022
17141
|
style = props.style,
|
|
17023
17142
|
className = props.className,
|
|
17024
17143
|
iconClassName = props.iconClassName,
|
|
17025
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17144
|
+
otherProps = _objectWithoutProperties(props, _excluded$51);
|
|
17026
17145
|
return /*#__PURE__*/React.createElement("span", {
|
|
17027
17146
|
role: "img",
|
|
17028
17147
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17029
17148
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17030
|
-
children: loadingCircleStyle$
|
|
17149
|
+
children: loadingCircleStyle$51
|
|
17031
17150
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17032
17151
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17033
17152
|
width: size,
|
|
@@ -17070,8 +17189,8 @@ EPropertySm.defaultProps = {
|
|
|
17070
17189
|
size: '1em'
|
|
17071
17190
|
};
|
|
17072
17191
|
|
|
17073
|
-
var _excluded$
|
|
17074
|
-
var loadingCircleStyle$
|
|
17192
|
+
var _excluded$52 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17193
|
+
var loadingCircleStyle$52 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17075
17194
|
var IndicatorSm = function IndicatorSm(props) {
|
|
17076
17195
|
var color = props.color,
|
|
17077
17196
|
size = props.size,
|
|
@@ -17079,12 +17198,12 @@ var IndicatorSm = function IndicatorSm(props) {
|
|
|
17079
17198
|
style = props.style,
|
|
17080
17199
|
className = props.className,
|
|
17081
17200
|
iconClassName = props.iconClassName,
|
|
17082
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17201
|
+
otherProps = _objectWithoutProperties(props, _excluded$52);
|
|
17083
17202
|
return /*#__PURE__*/React.createElement("span", {
|
|
17084
17203
|
role: "img",
|
|
17085
17204
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17086
17205
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17087
|
-
children: loadingCircleStyle$
|
|
17206
|
+
children: loadingCircleStyle$52
|
|
17088
17207
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17089
17208
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17090
17209
|
width: size,
|
|
@@ -17123,8 +17242,8 @@ IndicatorSm.defaultProps = {
|
|
|
17123
17242
|
size: '1em'
|
|
17124
17243
|
};
|
|
17125
17244
|
|
|
17126
|
-
var _excluded$
|
|
17127
|
-
var loadingCircleStyle$
|
|
17245
|
+
var _excluded$53 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17246
|
+
var loadingCircleStyle$53 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17128
17247
|
var UPropertySm = function UPropertySm(props) {
|
|
17129
17248
|
var color = props.color,
|
|
17130
17249
|
size = props.size,
|
|
@@ -17132,12 +17251,12 @@ var UPropertySm = function UPropertySm(props) {
|
|
|
17132
17251
|
style = props.style,
|
|
17133
17252
|
className = props.className,
|
|
17134
17253
|
iconClassName = props.iconClassName,
|
|
17135
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17254
|
+
otherProps = _objectWithoutProperties(props, _excluded$53);
|
|
17136
17255
|
return /*#__PURE__*/React.createElement("span", {
|
|
17137
17256
|
role: "img",
|
|
17138
17257
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17139
17258
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17140
|
-
children: loadingCircleStyle$
|
|
17259
|
+
children: loadingCircleStyle$53
|
|
17141
17260
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17142
17261
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17143
17262
|
width: size,
|
|
@@ -17178,8 +17297,8 @@ UPropertySm.defaultProps = {
|
|
|
17178
17297
|
size: '1em'
|
|
17179
17298
|
};
|
|
17180
17299
|
|
|
17181
|
-
var _excluded$
|
|
17182
|
-
var loadingCircleStyle$
|
|
17300
|
+
var _excluded$54 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17301
|
+
var loadingCircleStyle$54 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17183
17302
|
var UGroupSm = function UGroupSm(props) {
|
|
17184
17303
|
var color = props.color,
|
|
17185
17304
|
size = props.size,
|
|
@@ -17187,12 +17306,12 @@ var UGroupSm = function UGroupSm(props) {
|
|
|
17187
17306
|
style = props.style,
|
|
17188
17307
|
className = props.className,
|
|
17189
17308
|
iconClassName = props.iconClassName,
|
|
17190
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17309
|
+
otherProps = _objectWithoutProperties(props, _excluded$54);
|
|
17191
17310
|
return /*#__PURE__*/React.createElement("span", {
|
|
17192
17311
|
role: "img",
|
|
17193
17312
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17194
17313
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17195
|
-
children: loadingCircleStyle$
|
|
17314
|
+
children: loadingCircleStyle$54
|
|
17196
17315
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17197
17316
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17198
17317
|
width: size,
|
|
@@ -17241,8 +17360,8 @@ UGroupSm.defaultProps = {
|
|
|
17241
17360
|
size: '1em'
|
|
17242
17361
|
};
|
|
17243
17362
|
|
|
17244
|
-
var _excluded$
|
|
17245
|
-
var loadingCircleStyle$
|
|
17363
|
+
var _excluded$55 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17364
|
+
var loadingCircleStyle$55 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17246
17365
|
var UTagSm = function UTagSm(props) {
|
|
17247
17366
|
var color = props.color,
|
|
17248
17367
|
size = props.size,
|
|
@@ -17250,12 +17369,12 @@ var UTagSm = function UTagSm(props) {
|
|
|
17250
17369
|
style = props.style,
|
|
17251
17370
|
className = props.className,
|
|
17252
17371
|
iconClassName = props.iconClassName,
|
|
17253
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17372
|
+
otherProps = _objectWithoutProperties(props, _excluded$55);
|
|
17254
17373
|
return /*#__PURE__*/React.createElement("span", {
|
|
17255
17374
|
role: "img",
|
|
17256
17375
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17257
17376
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17258
|
-
children: loadingCircleStyle$
|
|
17377
|
+
children: loadingCircleStyle$55
|
|
17259
17378
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17260
17379
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17261
17380
|
width: size,
|
|
@@ -17294,8 +17413,8 @@ UTagSm.defaultProps = {
|
|
|
17294
17413
|
size: '1em'
|
|
17295
17414
|
};
|
|
17296
17415
|
|
|
17297
|
-
var _excluded$
|
|
17298
|
-
var loadingCircleStyle$
|
|
17416
|
+
var _excluded$56 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17417
|
+
var loadingCircleStyle$56 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17299
17418
|
var AllGroupSm = function AllGroupSm(props) {
|
|
17300
17419
|
var color = props.color,
|
|
17301
17420
|
size = props.size,
|
|
@@ -17303,12 +17422,12 @@ var AllGroupSm = function AllGroupSm(props) {
|
|
|
17303
17422
|
style = props.style,
|
|
17304
17423
|
className = props.className,
|
|
17305
17424
|
iconClassName = props.iconClassName,
|
|
17306
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17425
|
+
otherProps = _objectWithoutProperties(props, _excluded$56);
|
|
17307
17426
|
return /*#__PURE__*/React.createElement("span", {
|
|
17308
17427
|
role: "img",
|
|
17309
17428
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17310
17429
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17311
|
-
children: loadingCircleStyle$
|
|
17430
|
+
children: loadingCircleStyle$56
|
|
17312
17431
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17313
17432
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17314
17433
|
width: size,
|
|
@@ -17349,8 +17468,8 @@ AllGroupSm.defaultProps = {
|
|
|
17349
17468
|
size: '1em'
|
|
17350
17469
|
};
|
|
17351
17470
|
|
|
17352
|
-
var _excluded$
|
|
17353
|
-
var loadingCircleStyle$
|
|
17471
|
+
var _excluded$57 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17472
|
+
var loadingCircleStyle$57 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17354
17473
|
var CalendarSm = function CalendarSm(props) {
|
|
17355
17474
|
var color = props.color,
|
|
17356
17475
|
size = props.size,
|
|
@@ -17358,12 +17477,12 @@ var CalendarSm = function CalendarSm(props) {
|
|
|
17358
17477
|
style = props.style,
|
|
17359
17478
|
className = props.className,
|
|
17360
17479
|
iconClassName = props.iconClassName,
|
|
17361
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17480
|
+
otherProps = _objectWithoutProperties(props, _excluded$57);
|
|
17362
17481
|
return /*#__PURE__*/React.createElement("span", {
|
|
17363
17482
|
role: "img",
|
|
17364
17483
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17365
17484
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17366
|
-
children: loadingCircleStyle$
|
|
17485
|
+
children: loadingCircleStyle$57
|
|
17367
17486
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17368
17487
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17369
17488
|
width: size,
|
|
@@ -17398,8 +17517,8 @@ CalendarSm.defaultProps = {
|
|
|
17398
17517
|
size: '1em'
|
|
17399
17518
|
};
|
|
17400
17519
|
|
|
17401
|
-
var _excluded$
|
|
17402
|
-
var loadingCircleStyle$
|
|
17520
|
+
var _excluded$58 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17521
|
+
var loadingCircleStyle$58 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17403
17522
|
var GroupAddSm = function GroupAddSm(props) {
|
|
17404
17523
|
var color = props.color,
|
|
17405
17524
|
size = props.size,
|
|
@@ -17407,12 +17526,12 @@ var GroupAddSm = function GroupAddSm(props) {
|
|
|
17407
17526
|
style = props.style,
|
|
17408
17527
|
className = props.className,
|
|
17409
17528
|
iconClassName = props.iconClassName,
|
|
17410
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17529
|
+
otherProps = _objectWithoutProperties(props, _excluded$58);
|
|
17411
17530
|
return /*#__PURE__*/React.createElement("span", {
|
|
17412
17531
|
role: "img",
|
|
17413
17532
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17414
17533
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17415
|
-
children: loadingCircleStyle$
|
|
17534
|
+
children: loadingCircleStyle$58
|
|
17416
17535
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17417
17536
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17418
17537
|
width: size,
|
|
@@ -17453,8 +17572,8 @@ GroupAddSm.defaultProps = {
|
|
|
17453
17572
|
size: '1em'
|
|
17454
17573
|
};
|
|
17455
17574
|
|
|
17456
|
-
var _excluded$
|
|
17457
|
-
var loadingCircleStyle$
|
|
17575
|
+
var _excluded$59 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17576
|
+
var loadingCircleStyle$59 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17458
17577
|
var BooleanSm = function BooleanSm(props) {
|
|
17459
17578
|
var color = props.color,
|
|
17460
17579
|
size = props.size,
|
|
@@ -17462,12 +17581,12 @@ var BooleanSm = function BooleanSm(props) {
|
|
|
17462
17581
|
style = props.style,
|
|
17463
17582
|
className = props.className,
|
|
17464
17583
|
iconClassName = props.iconClassName,
|
|
17465
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17584
|
+
otherProps = _objectWithoutProperties(props, _excluded$59);
|
|
17466
17585
|
return /*#__PURE__*/React.createElement("span", {
|
|
17467
17586
|
role: "img",
|
|
17468
17587
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17469
17588
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17470
|
-
children: loadingCircleStyle$
|
|
17589
|
+
children: loadingCircleStyle$59
|
|
17471
17590
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17472
17591
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17473
17592
|
width: size,
|
|
@@ -17504,8 +17623,8 @@ BooleanSm.defaultProps = {
|
|
|
17504
17623
|
size: '1em'
|
|
17505
17624
|
};
|
|
17506
17625
|
|
|
17507
|
-
var _excluded$
|
|
17508
|
-
var loadingCircleStyle$
|
|
17626
|
+
var _excluded$5a = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17627
|
+
var loadingCircleStyle$5a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17509
17628
|
var ListSm = function ListSm(props) {
|
|
17510
17629
|
var color = props.color,
|
|
17511
17630
|
size = props.size,
|
|
@@ -17513,12 +17632,12 @@ var ListSm = function ListSm(props) {
|
|
|
17513
17632
|
style = props.style,
|
|
17514
17633
|
className = props.className,
|
|
17515
17634
|
iconClassName = props.iconClassName,
|
|
17516
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17635
|
+
otherProps = _objectWithoutProperties(props, _excluded$5a);
|
|
17517
17636
|
return /*#__PURE__*/React.createElement("span", {
|
|
17518
17637
|
role: "img",
|
|
17519
17638
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17520
17639
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17521
|
-
children: loadingCircleStyle$
|
|
17640
|
+
children: loadingCircleStyle$5a
|
|
17522
17641
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17523
17642
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17524
17643
|
width: size,
|
|
@@ -17563,8 +17682,8 @@ ListSm.defaultProps = {
|
|
|
17563
17682
|
size: '1em'
|
|
17564
17683
|
};
|
|
17565
17684
|
|
|
17566
|
-
var _excluded$
|
|
17567
|
-
var loadingCircleStyle$
|
|
17685
|
+
var _excluded$5b = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17686
|
+
var loadingCircleStyle$5b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17568
17687
|
var ArrayRowsSm = function ArrayRowsSm(props) {
|
|
17569
17688
|
var color = props.color,
|
|
17570
17689
|
size = props.size,
|
|
@@ -17572,12 +17691,12 @@ var ArrayRowsSm = function ArrayRowsSm(props) {
|
|
|
17572
17691
|
style = props.style,
|
|
17573
17692
|
className = props.className,
|
|
17574
17693
|
iconClassName = props.iconClassName,
|
|
17575
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17694
|
+
otherProps = _objectWithoutProperties(props, _excluded$5b);
|
|
17576
17695
|
return /*#__PURE__*/React.createElement("span", {
|
|
17577
17696
|
role: "img",
|
|
17578
17697
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17579
17698
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17580
|
-
children: loadingCircleStyle$
|
|
17699
|
+
children: loadingCircleStyle$5b
|
|
17581
17700
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17582
17701
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17583
17702
|
width: size,
|
|
@@ -17614,8 +17733,8 @@ ArrayRowsSm.defaultProps = {
|
|
|
17614
17733
|
size: '1em'
|
|
17615
17734
|
};
|
|
17616
17735
|
|
|
17617
|
-
var _excluded$
|
|
17618
|
-
var loadingCircleStyle$
|
|
17736
|
+
var _excluded$5c = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17737
|
+
var loadingCircleStyle$5c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17619
17738
|
var RowsSm = function RowsSm(props) {
|
|
17620
17739
|
var color = props.color,
|
|
17621
17740
|
size = props.size,
|
|
@@ -17623,12 +17742,12 @@ var RowsSm = function RowsSm(props) {
|
|
|
17623
17742
|
style = props.style,
|
|
17624
17743
|
className = props.className,
|
|
17625
17744
|
iconClassName = props.iconClassName,
|
|
17626
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17745
|
+
otherProps = _objectWithoutProperties(props, _excluded$5c);
|
|
17627
17746
|
return /*#__PURE__*/React.createElement("span", {
|
|
17628
17747
|
role: "img",
|
|
17629
17748
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17630
17749
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17631
|
-
children: loadingCircleStyle$
|
|
17750
|
+
children: loadingCircleStyle$5c
|
|
17632
17751
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17633
17752
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17634
17753
|
width: size,
|
|
@@ -17673,8 +17792,8 @@ RowsSm.defaultProps = {
|
|
|
17673
17792
|
size: '1em'
|
|
17674
17793
|
};
|
|
17675
17794
|
|
|
17676
|
-
var _excluded$
|
|
17677
|
-
var loadingCircleStyle$
|
|
17795
|
+
var _excluded$5d = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17796
|
+
var loadingCircleStyle$5d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17678
17797
|
var VPropertySm = function VPropertySm(props) {
|
|
17679
17798
|
var color = props.color,
|
|
17680
17799
|
size = props.size,
|
|
@@ -17682,12 +17801,12 @@ var VPropertySm = function VPropertySm(props) {
|
|
|
17682
17801
|
style = props.style,
|
|
17683
17802
|
className = props.className,
|
|
17684
17803
|
iconClassName = props.iconClassName,
|
|
17685
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17804
|
+
otherProps = _objectWithoutProperties(props, _excluded$5d);
|
|
17686
17805
|
return /*#__PURE__*/React.createElement("span", {
|
|
17687
17806
|
role: "img",
|
|
17688
17807
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17689
17808
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17690
|
-
children: loadingCircleStyle$
|
|
17809
|
+
children: loadingCircleStyle$5d
|
|
17691
17810
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17692
17811
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17693
17812
|
width: size,
|
|
@@ -17728,8 +17847,8 @@ VPropertySm.defaultProps = {
|
|
|
17728
17847
|
size: '1em'
|
|
17729
17848
|
};
|
|
17730
17849
|
|
|
17731
|
-
var _excluded$
|
|
17732
|
-
var loadingCircleStyle$
|
|
17850
|
+
var _excluded$5e = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17851
|
+
var loadingCircleStyle$5e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17733
17852
|
var StringSm = function StringSm(props) {
|
|
17734
17853
|
var color = props.color,
|
|
17735
17854
|
size = props.size,
|
|
@@ -17737,12 +17856,12 @@ var StringSm = function StringSm(props) {
|
|
|
17737
17856
|
style = props.style,
|
|
17738
17857
|
className = props.className,
|
|
17739
17858
|
iconClassName = props.iconClassName,
|
|
17740
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17859
|
+
otherProps = _objectWithoutProperties(props, _excluded$5e);
|
|
17741
17860
|
return /*#__PURE__*/React.createElement("span", {
|
|
17742
17861
|
role: "img",
|
|
17743
17862
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17744
17863
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17745
|
-
children: loadingCircleStyle$
|
|
17864
|
+
children: loadingCircleStyle$5e
|
|
17746
17865
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17747
17866
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17748
17867
|
width: size,
|
|
@@ -17779,8 +17898,8 @@ StringSm.defaultProps = {
|
|
|
17779
17898
|
size: '1em'
|
|
17780
17899
|
};
|
|
17781
17900
|
|
|
17782
|
-
var _excluded$
|
|
17783
|
-
var loadingCircleStyle$
|
|
17901
|
+
var _excluded$5f = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17902
|
+
var loadingCircleStyle$5f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17784
17903
|
var NumSm = function NumSm(props) {
|
|
17785
17904
|
var color = props.color,
|
|
17786
17905
|
size = props.size,
|
|
@@ -17788,12 +17907,12 @@ var NumSm = function NumSm(props) {
|
|
|
17788
17907
|
style = props.style,
|
|
17789
17908
|
className = props.className,
|
|
17790
17909
|
iconClassName = props.iconClassName,
|
|
17791
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17910
|
+
otherProps = _objectWithoutProperties(props, _excluded$5f);
|
|
17792
17911
|
return /*#__PURE__*/React.createElement("span", {
|
|
17793
17912
|
role: "img",
|
|
17794
17913
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17795
17914
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17796
|
-
children: loadingCircleStyle$
|
|
17915
|
+
children: loadingCircleStyle$5f
|
|
17797
17916
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17798
17917
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17799
17918
|
width: size,
|
|
@@ -17830,8 +17949,8 @@ NumSm.defaultProps = {
|
|
|
17830
17949
|
size: '1em'
|
|
17831
17950
|
};
|
|
17832
17951
|
|
|
17833
|
-
var _excluded$
|
|
17834
|
-
var loadingCircleStyle$
|
|
17952
|
+
var _excluded$5g = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17953
|
+
var loadingCircleStyle$5g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17835
17954
|
var TimeSm = function TimeSm(props) {
|
|
17836
17955
|
var color = props.color,
|
|
17837
17956
|
size = props.size,
|
|
@@ -17839,12 +17958,12 @@ var TimeSm = function TimeSm(props) {
|
|
|
17839
17958
|
style = props.style,
|
|
17840
17959
|
className = props.className,
|
|
17841
17960
|
iconClassName = props.iconClassName,
|
|
17842
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17961
|
+
otherProps = _objectWithoutProperties(props, _excluded$5g);
|
|
17843
17962
|
return /*#__PURE__*/React.createElement("span", {
|
|
17844
17963
|
role: "img",
|
|
17845
17964
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17846
17965
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17847
|
-
children: loadingCircleStyle$
|
|
17966
|
+
children: loadingCircleStyle$5g
|
|
17848
17967
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17849
17968
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17850
17969
|
width: size,
|
|
@@ -17881,8 +18000,8 @@ TimeSm.defaultProps = {
|
|
|
17881
18000
|
size: '1em'
|
|
17882
18001
|
};
|
|
17883
18002
|
|
|
17884
|
-
var _excluded$
|
|
17885
|
-
var loadingCircleStyle$
|
|
18003
|
+
var _excluded$5h = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18004
|
+
var loadingCircleStyle$5h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17886
18005
|
var ArrowLeft = function ArrowLeft(props) {
|
|
17887
18006
|
var color = props.color,
|
|
17888
18007
|
size = props.size,
|
|
@@ -17890,12 +18009,12 @@ var ArrowLeft = function ArrowLeft(props) {
|
|
|
17890
18009
|
style = props.style,
|
|
17891
18010
|
className = props.className,
|
|
17892
18011
|
iconClassName = props.iconClassName,
|
|
17893
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18012
|
+
otherProps = _objectWithoutProperties(props, _excluded$5h);
|
|
17894
18013
|
return /*#__PURE__*/React.createElement("span", {
|
|
17895
18014
|
role: "img",
|
|
17896
18015
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17897
18016
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17898
|
-
children: loadingCircleStyle$
|
|
18017
|
+
children: loadingCircleStyle$5h
|
|
17899
18018
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17900
18019
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17901
18020
|
width: size,
|
|
@@ -17930,8 +18049,8 @@ ArrowLeft.defaultProps = {
|
|
|
17930
18049
|
size: '1em'
|
|
17931
18050
|
};
|
|
17932
18051
|
|
|
17933
|
-
var _excluded$
|
|
17934
|
-
var loadingCircleStyle$
|
|
18052
|
+
var _excluded$5i = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18053
|
+
var loadingCircleStyle$5i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17935
18054
|
var ArrowRight = function ArrowRight(props) {
|
|
17936
18055
|
var color = props.color,
|
|
17937
18056
|
size = props.size,
|
|
@@ -17939,12 +18058,12 @@ var ArrowRight = function ArrowRight(props) {
|
|
|
17939
18058
|
style = props.style,
|
|
17940
18059
|
className = props.className,
|
|
17941
18060
|
iconClassName = props.iconClassName,
|
|
17942
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18061
|
+
otherProps = _objectWithoutProperties(props, _excluded$5i);
|
|
17943
18062
|
return /*#__PURE__*/React.createElement("span", {
|
|
17944
18063
|
role: "img",
|
|
17945
18064
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17946
18065
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17947
|
-
children: loadingCircleStyle$
|
|
18066
|
+
children: loadingCircleStyle$5i
|
|
17948
18067
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17949
18068
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17950
18069
|
width: size,
|
|
@@ -17979,8 +18098,8 @@ ArrowRight.defaultProps = {
|
|
|
17979
18098
|
size: '1em'
|
|
17980
18099
|
};
|
|
17981
18100
|
|
|
17982
|
-
var _excluded$
|
|
17983
|
-
var loadingCircleStyle$
|
|
18101
|
+
var _excluded$5j = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18102
|
+
var loadingCircleStyle$5j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17984
18103
|
var ArrowUp = function ArrowUp(props) {
|
|
17985
18104
|
var color = props.color,
|
|
17986
18105
|
size = props.size,
|
|
@@ -17988,12 +18107,12 @@ var ArrowUp = function ArrowUp(props) {
|
|
|
17988
18107
|
style = props.style,
|
|
17989
18108
|
className = props.className,
|
|
17990
18109
|
iconClassName = props.iconClassName,
|
|
17991
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18110
|
+
otherProps = _objectWithoutProperties(props, _excluded$5j);
|
|
17992
18111
|
return /*#__PURE__*/React.createElement("span", {
|
|
17993
18112
|
role: "img",
|
|
17994
18113
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17995
18114
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17996
|
-
children: loadingCircleStyle$
|
|
18115
|
+
children: loadingCircleStyle$5j
|
|
17997
18116
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17998
18117
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17999
18118
|
width: size,
|
|
@@ -18028,8 +18147,8 @@ ArrowUp.defaultProps = {
|
|
|
18028
18147
|
size: '1em'
|
|
18029
18148
|
};
|
|
18030
18149
|
|
|
18031
|
-
var _excluded$
|
|
18032
|
-
var loadingCircleStyle$
|
|
18150
|
+
var _excluded$5k = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18151
|
+
var loadingCircleStyle$5k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18033
18152
|
var ArrowDown = function ArrowDown(props) {
|
|
18034
18153
|
var color = props.color,
|
|
18035
18154
|
size = props.size,
|
|
@@ -18037,12 +18156,12 @@ var ArrowDown = function ArrowDown(props) {
|
|
|
18037
18156
|
style = props.style,
|
|
18038
18157
|
className = props.className,
|
|
18039
18158
|
iconClassName = props.iconClassName,
|
|
18040
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18159
|
+
otherProps = _objectWithoutProperties(props, _excluded$5k);
|
|
18041
18160
|
return /*#__PURE__*/React.createElement("span", {
|
|
18042
18161
|
role: "img",
|
|
18043
18162
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18044
18163
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18045
|
-
children: loadingCircleStyle$
|
|
18164
|
+
children: loadingCircleStyle$5k
|
|
18046
18165
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18047
18166
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18048
18167
|
width: size,
|
|
@@ -18077,8 +18196,8 @@ ArrowDown.defaultProps = {
|
|
|
18077
18196
|
size: '1em'
|
|
18078
18197
|
};
|
|
18079
18198
|
|
|
18080
|
-
var _excluded$
|
|
18081
|
-
var loadingCircleStyle$
|
|
18199
|
+
var _excluded$5l = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18200
|
+
var loadingCircleStyle$5l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18082
18201
|
var ArrowLeft2 = function ArrowLeft2(props) {
|
|
18083
18202
|
var color = props.color,
|
|
18084
18203
|
size = props.size,
|
|
@@ -18086,12 +18205,12 @@ var ArrowLeft2 = function ArrowLeft2(props) {
|
|
|
18086
18205
|
style = props.style,
|
|
18087
18206
|
className = props.className,
|
|
18088
18207
|
iconClassName = props.iconClassName,
|
|
18089
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18208
|
+
otherProps = _objectWithoutProperties(props, _excluded$5l);
|
|
18090
18209
|
return /*#__PURE__*/React.createElement("span", {
|
|
18091
18210
|
role: "img",
|
|
18092
18211
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18093
18212
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18094
|
-
children: loadingCircleStyle$
|
|
18213
|
+
children: loadingCircleStyle$5l
|
|
18095
18214
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18096
18215
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18097
18216
|
width: size,
|
|
@@ -18126,8 +18245,8 @@ ArrowLeft2.defaultProps = {
|
|
|
18126
18245
|
size: '1em'
|
|
18127
18246
|
};
|
|
18128
18247
|
|
|
18129
|
-
var _excluded$
|
|
18130
|
-
var loadingCircleStyle$
|
|
18248
|
+
var _excluded$5m = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18249
|
+
var loadingCircleStyle$5m = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18131
18250
|
var ArrowRight2 = function ArrowRight2(props) {
|
|
18132
18251
|
var color = props.color,
|
|
18133
18252
|
size = props.size,
|
|
@@ -18135,12 +18254,12 @@ var ArrowRight2 = function ArrowRight2(props) {
|
|
|
18135
18254
|
style = props.style,
|
|
18136
18255
|
className = props.className,
|
|
18137
18256
|
iconClassName = props.iconClassName,
|
|
18138
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18257
|
+
otherProps = _objectWithoutProperties(props, _excluded$5m);
|
|
18139
18258
|
return /*#__PURE__*/React.createElement("span", {
|
|
18140
18259
|
role: "img",
|
|
18141
18260
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18142
18261
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18143
|
-
children: loadingCircleStyle$
|
|
18262
|
+
children: loadingCircleStyle$5m
|
|
18144
18263
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18145
18264
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18146
18265
|
width: size,
|
|
@@ -18175,8 +18294,8 @@ ArrowRight2.defaultProps = {
|
|
|
18175
18294
|
size: '1em'
|
|
18176
18295
|
};
|
|
18177
18296
|
|
|
18178
|
-
var _excluded$
|
|
18179
|
-
var loadingCircleStyle$
|
|
18297
|
+
var _excluded$5n = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18298
|
+
var loadingCircleStyle$5n = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18180
18299
|
var ArrowUp2 = function ArrowUp2(props) {
|
|
18181
18300
|
var color = props.color,
|
|
18182
18301
|
size = props.size,
|
|
@@ -18184,12 +18303,12 @@ var ArrowUp2 = function ArrowUp2(props) {
|
|
|
18184
18303
|
style = props.style,
|
|
18185
18304
|
className = props.className,
|
|
18186
18305
|
iconClassName = props.iconClassName,
|
|
18187
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18306
|
+
otherProps = _objectWithoutProperties(props, _excluded$5n);
|
|
18188
18307
|
return /*#__PURE__*/React.createElement("span", {
|
|
18189
18308
|
role: "img",
|
|
18190
18309
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18191
18310
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18192
|
-
children: loadingCircleStyle$
|
|
18311
|
+
children: loadingCircleStyle$5n
|
|
18193
18312
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18194
18313
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18195
18314
|
width: size,
|
|
@@ -18224,8 +18343,8 @@ ArrowUp2.defaultProps = {
|
|
|
18224
18343
|
size: '1em'
|
|
18225
18344
|
};
|
|
18226
18345
|
|
|
18227
|
-
var _excluded$
|
|
18228
|
-
var loadingCircleStyle$
|
|
18346
|
+
var _excluded$5o = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18347
|
+
var loadingCircleStyle$5o = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18229
18348
|
var ArrowDown2 = function ArrowDown2(props) {
|
|
18230
18349
|
var color = props.color,
|
|
18231
18350
|
size = props.size,
|
|
@@ -18233,12 +18352,12 @@ var ArrowDown2 = function ArrowDown2(props) {
|
|
|
18233
18352
|
style = props.style,
|
|
18234
18353
|
className = props.className,
|
|
18235
18354
|
iconClassName = props.iconClassName,
|
|
18236
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18355
|
+
otherProps = _objectWithoutProperties(props, _excluded$5o);
|
|
18237
18356
|
return /*#__PURE__*/React.createElement("span", {
|
|
18238
18357
|
role: "img",
|
|
18239
18358
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18240
18359
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18241
|
-
children: loadingCircleStyle$
|
|
18360
|
+
children: loadingCircleStyle$5o
|
|
18242
18361
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18243
18362
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18244
18363
|
width: size,
|
|
@@ -18273,8 +18392,8 @@ ArrowDown2.defaultProps = {
|
|
|
18273
18392
|
size: '1em'
|
|
18274
18393
|
};
|
|
18275
18394
|
|
|
18276
|
-
var _excluded$
|
|
18277
|
-
var loadingCircleStyle$
|
|
18395
|
+
var _excluded$5p = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18396
|
+
var loadingCircleStyle$5p = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18278
18397
|
var TriLeft = function TriLeft(props) {
|
|
18279
18398
|
var color = props.color,
|
|
18280
18399
|
size = props.size,
|
|
@@ -18282,12 +18401,12 @@ var TriLeft = function TriLeft(props) {
|
|
|
18282
18401
|
style = props.style,
|
|
18283
18402
|
className = props.className,
|
|
18284
18403
|
iconClassName = props.iconClassName,
|
|
18285
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18404
|
+
otherProps = _objectWithoutProperties(props, _excluded$5p);
|
|
18286
18405
|
return /*#__PURE__*/React.createElement("span", {
|
|
18287
18406
|
role: "img",
|
|
18288
18407
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18289
18408
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18290
|
-
children: loadingCircleStyle$
|
|
18409
|
+
children: loadingCircleStyle$5p
|
|
18291
18410
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18292
18411
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18293
18412
|
width: size,
|
|
@@ -18322,8 +18441,8 @@ TriLeft.defaultProps = {
|
|
|
18322
18441
|
size: '1em'
|
|
18323
18442
|
};
|
|
18324
18443
|
|
|
18325
|
-
var _excluded$
|
|
18326
|
-
var loadingCircleStyle$
|
|
18444
|
+
var _excluded$5q = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18445
|
+
var loadingCircleStyle$5q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18327
18446
|
var TriRight = function TriRight(props) {
|
|
18328
18447
|
var color = props.color,
|
|
18329
18448
|
size = props.size,
|
|
@@ -18331,12 +18450,12 @@ var TriRight = function TriRight(props) {
|
|
|
18331
18450
|
style = props.style,
|
|
18332
18451
|
className = props.className,
|
|
18333
18452
|
iconClassName = props.iconClassName,
|
|
18334
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18453
|
+
otherProps = _objectWithoutProperties(props, _excluded$5q);
|
|
18335
18454
|
return /*#__PURE__*/React.createElement("span", {
|
|
18336
18455
|
role: "img",
|
|
18337
18456
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18338
18457
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18339
|
-
children: loadingCircleStyle$
|
|
18458
|
+
children: loadingCircleStyle$5q
|
|
18340
18459
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18341
18460
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18342
18461
|
width: size,
|
|
@@ -18371,8 +18490,8 @@ TriRight.defaultProps = {
|
|
|
18371
18490
|
size: '1em'
|
|
18372
18491
|
};
|
|
18373
18492
|
|
|
18374
|
-
var _excluded$
|
|
18375
|
-
var loadingCircleStyle$
|
|
18493
|
+
var _excluded$5r = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18494
|
+
var loadingCircleStyle$5r = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18376
18495
|
var TriUp = function TriUp(props) {
|
|
18377
18496
|
var color = props.color,
|
|
18378
18497
|
size = props.size,
|
|
@@ -18380,12 +18499,12 @@ var TriUp = function TriUp(props) {
|
|
|
18380
18499
|
style = props.style,
|
|
18381
18500
|
className = props.className,
|
|
18382
18501
|
iconClassName = props.iconClassName,
|
|
18383
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18502
|
+
otherProps = _objectWithoutProperties(props, _excluded$5r);
|
|
18384
18503
|
return /*#__PURE__*/React.createElement("span", {
|
|
18385
18504
|
role: "img",
|
|
18386
18505
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18387
18506
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18388
|
-
children: loadingCircleStyle$
|
|
18507
|
+
children: loadingCircleStyle$5r
|
|
18389
18508
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18390
18509
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18391
18510
|
width: size,
|
|
@@ -18420,8 +18539,8 @@ TriUp.defaultProps = {
|
|
|
18420
18539
|
size: '1em'
|
|
18421
18540
|
};
|
|
18422
18541
|
|
|
18423
|
-
var _excluded$
|
|
18424
|
-
var loadingCircleStyle$
|
|
18542
|
+
var _excluded$5s = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18543
|
+
var loadingCircleStyle$5s = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18425
18544
|
var TriDown = function TriDown(props) {
|
|
18426
18545
|
var color = props.color,
|
|
18427
18546
|
size = props.size,
|
|
@@ -18429,12 +18548,12 @@ var TriDown = function TriDown(props) {
|
|
|
18429
18548
|
style = props.style,
|
|
18430
18549
|
className = props.className,
|
|
18431
18550
|
iconClassName = props.iconClassName,
|
|
18432
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18551
|
+
otherProps = _objectWithoutProperties(props, _excluded$5s);
|
|
18433
18552
|
return /*#__PURE__*/React.createElement("span", {
|
|
18434
18553
|
role: "img",
|
|
18435
18554
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18436
18555
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18437
|
-
children: loadingCircleStyle$
|
|
18556
|
+
children: loadingCircleStyle$5s
|
|
18438
18557
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18439
18558
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18440
18559
|
width: size,
|
|
@@ -18469,8 +18588,8 @@ TriDown.defaultProps = {
|
|
|
18469
18588
|
size: '1em'
|
|
18470
18589
|
};
|
|
18471
18590
|
|
|
18472
|
-
var _excluded$
|
|
18473
|
-
var loadingCircleStyle$
|
|
18591
|
+
var _excluded$5t = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18592
|
+
var loadingCircleStyle$5t = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18474
18593
|
var DArrowL = function DArrowL(props) {
|
|
18475
18594
|
var color = props.color,
|
|
18476
18595
|
size = props.size,
|
|
@@ -18478,12 +18597,12 @@ var DArrowL = function DArrowL(props) {
|
|
|
18478
18597
|
style = props.style,
|
|
18479
18598
|
className = props.className,
|
|
18480
18599
|
iconClassName = props.iconClassName,
|
|
18481
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18600
|
+
otherProps = _objectWithoutProperties(props, _excluded$5t);
|
|
18482
18601
|
return /*#__PURE__*/React.createElement("span", {
|
|
18483
18602
|
role: "img",
|
|
18484
18603
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18485
18604
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18486
|
-
children: loadingCircleStyle$
|
|
18605
|
+
children: loadingCircleStyle$5t
|
|
18487
18606
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18488
18607
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18489
18608
|
width: size,
|
|
@@ -18520,8 +18639,8 @@ DArrowL.defaultProps = {
|
|
|
18520
18639
|
size: '1em'
|
|
18521
18640
|
};
|
|
18522
18641
|
|
|
18523
|
-
var _excluded$
|
|
18524
|
-
var loadingCircleStyle$
|
|
18642
|
+
var _excluded$5u = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18643
|
+
var loadingCircleStyle$5u = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18525
18644
|
var DArrowR = function DArrowR(props) {
|
|
18526
18645
|
var color = props.color,
|
|
18527
18646
|
size = props.size,
|
|
@@ -18529,12 +18648,12 @@ var DArrowR = function DArrowR(props) {
|
|
|
18529
18648
|
style = props.style,
|
|
18530
18649
|
className = props.className,
|
|
18531
18650
|
iconClassName = props.iconClassName,
|
|
18532
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18651
|
+
otherProps = _objectWithoutProperties(props, _excluded$5u);
|
|
18533
18652
|
return /*#__PURE__*/React.createElement("span", {
|
|
18534
18653
|
role: "img",
|
|
18535
18654
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18536
18655
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18537
|
-
children: loadingCircleStyle$
|
|
18656
|
+
children: loadingCircleStyle$5u
|
|
18538
18657
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18539
18658
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18540
18659
|
width: size,
|
|
@@ -18571,8 +18690,8 @@ DArrowR.defaultProps = {
|
|
|
18571
18690
|
size: '1em'
|
|
18572
18691
|
};
|
|
18573
18692
|
|
|
18574
|
-
var _excluded$
|
|
18575
|
-
var loadingCircleStyle$
|
|
18693
|
+
var _excluded$5v = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18694
|
+
var loadingCircleStyle$5v = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18576
18695
|
var DArrowT = function DArrowT(props) {
|
|
18577
18696
|
var color = props.color,
|
|
18578
18697
|
size = props.size,
|
|
@@ -18580,12 +18699,12 @@ var DArrowT = function DArrowT(props) {
|
|
|
18580
18699
|
style = props.style,
|
|
18581
18700
|
className = props.className,
|
|
18582
18701
|
iconClassName = props.iconClassName,
|
|
18583
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18702
|
+
otherProps = _objectWithoutProperties(props, _excluded$5v);
|
|
18584
18703
|
return /*#__PURE__*/React.createElement("span", {
|
|
18585
18704
|
role: "img",
|
|
18586
18705
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18587
18706
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18588
|
-
children: loadingCircleStyle$
|
|
18707
|
+
children: loadingCircleStyle$5v
|
|
18589
18708
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18590
18709
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18591
18710
|
width: size,
|
|
@@ -18622,8 +18741,8 @@ DArrowT.defaultProps = {
|
|
|
18622
18741
|
size: '1em'
|
|
18623
18742
|
};
|
|
18624
18743
|
|
|
18625
|
-
var _excluded$
|
|
18626
|
-
var loadingCircleStyle$
|
|
18744
|
+
var _excluded$5w = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18745
|
+
var loadingCircleStyle$5w = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18627
18746
|
var DArrowB = function DArrowB(props) {
|
|
18628
18747
|
var color = props.color,
|
|
18629
18748
|
size = props.size,
|
|
@@ -18631,12 +18750,12 @@ var DArrowB = function DArrowB(props) {
|
|
|
18631
18750
|
style = props.style,
|
|
18632
18751
|
className = props.className,
|
|
18633
18752
|
iconClassName = props.iconClassName,
|
|
18634
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18753
|
+
otherProps = _objectWithoutProperties(props, _excluded$5w);
|
|
18635
18754
|
return /*#__PURE__*/React.createElement("span", {
|
|
18636
18755
|
role: "img",
|
|
18637
18756
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18638
18757
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18639
|
-
children: loadingCircleStyle$
|
|
18758
|
+
children: loadingCircleStyle$5w
|
|
18640
18759
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18641
18760
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18642
18761
|
width: size,
|
|
@@ -18673,8 +18792,8 @@ DArrowB.defaultProps = {
|
|
|
18673
18792
|
size: '1em'
|
|
18674
18793
|
};
|
|
18675
18794
|
|
|
18676
|
-
var _excluded$
|
|
18677
|
-
var loadingCircleStyle$
|
|
18795
|
+
var _excluded$5x = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18796
|
+
var loadingCircleStyle$5x = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18678
18797
|
var DropDown = function DropDown(props) {
|
|
18679
18798
|
var color = props.color,
|
|
18680
18799
|
size = props.size,
|
|
@@ -18682,12 +18801,12 @@ var DropDown = function DropDown(props) {
|
|
|
18682
18801
|
style = props.style,
|
|
18683
18802
|
className = props.className,
|
|
18684
18803
|
iconClassName = props.iconClassName,
|
|
18685
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18804
|
+
otherProps = _objectWithoutProperties(props, _excluded$5x);
|
|
18686
18805
|
return /*#__PURE__*/React.createElement("span", {
|
|
18687
18806
|
role: "img",
|
|
18688
18807
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18689
18808
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18690
|
-
children: loadingCircleStyle$
|
|
18809
|
+
children: loadingCircleStyle$5x
|
|
18691
18810
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18692
18811
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18693
18812
|
width: size,
|
|
@@ -18722,8 +18841,8 @@ DropDown.defaultProps = {
|
|
|
18722
18841
|
size: '1em'
|
|
18723
18842
|
};
|
|
18724
18843
|
|
|
18725
|
-
var _excluded$
|
|
18726
|
-
var loadingCircleStyle$
|
|
18844
|
+
var _excluded$5y = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18845
|
+
var loadingCircleStyle$5y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18727
18846
|
var DropUp = function DropUp(props) {
|
|
18728
18847
|
var color = props.color,
|
|
18729
18848
|
size = props.size,
|
|
@@ -18731,12 +18850,12 @@ var DropUp = function DropUp(props) {
|
|
|
18731
18850
|
style = props.style,
|
|
18732
18851
|
className = props.className,
|
|
18733
18852
|
iconClassName = props.iconClassName,
|
|
18734
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18853
|
+
otherProps = _objectWithoutProperties(props, _excluded$5y);
|
|
18735
18854
|
return /*#__PURE__*/React.createElement("span", {
|
|
18736
18855
|
role: "img",
|
|
18737
18856
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18738
18857
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18739
|
-
children: loadingCircleStyle$
|
|
18858
|
+
children: loadingCircleStyle$5y
|
|
18740
18859
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18741
18860
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18742
18861
|
width: size,
|
|
@@ -18771,8 +18890,8 @@ DropUp.defaultProps = {
|
|
|
18771
18890
|
size: '1em'
|
|
18772
18891
|
};
|
|
18773
18892
|
|
|
18774
|
-
var _excluded$
|
|
18775
|
-
var loadingCircleStyle$
|
|
18893
|
+
var _excluded$5z = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18894
|
+
var loadingCircleStyle$5z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18776
18895
|
var More1 = function More1(props) {
|
|
18777
18896
|
var color = props.color,
|
|
18778
18897
|
size = props.size,
|
|
@@ -18780,12 +18899,12 @@ var More1 = function More1(props) {
|
|
|
18780
18899
|
style = props.style,
|
|
18781
18900
|
className = props.className,
|
|
18782
18901
|
iconClassName = props.iconClassName,
|
|
18783
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18902
|
+
otherProps = _objectWithoutProperties(props, _excluded$5z);
|
|
18784
18903
|
return /*#__PURE__*/React.createElement("span", {
|
|
18785
18904
|
role: "img",
|
|
18786
18905
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18787
18906
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18788
|
-
children: loadingCircleStyle$
|
|
18907
|
+
children: loadingCircleStyle$5z
|
|
18789
18908
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18790
18909
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18791
18910
|
width: size,
|
|
@@ -18820,8 +18939,8 @@ More1.defaultProps = {
|
|
|
18820
18939
|
size: '1em'
|
|
18821
18940
|
};
|
|
18822
18941
|
|
|
18823
|
-
var _excluded$
|
|
18824
|
-
var loadingCircleStyle$
|
|
18942
|
+
var _excluded$5A = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18943
|
+
var loadingCircleStyle$5A = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18825
18944
|
var More2 = function More2(props) {
|
|
18826
18945
|
var color = props.color,
|
|
18827
18946
|
size = props.size,
|
|
@@ -18829,12 +18948,12 @@ var More2 = function More2(props) {
|
|
|
18829
18948
|
style = props.style,
|
|
18830
18949
|
className = props.className,
|
|
18831
18950
|
iconClassName = props.iconClassName,
|
|
18832
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18951
|
+
otherProps = _objectWithoutProperties(props, _excluded$5A);
|
|
18833
18952
|
return /*#__PURE__*/React.createElement("span", {
|
|
18834
18953
|
role: "img",
|
|
18835
18954
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18836
18955
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18837
|
-
children: loadingCircleStyle$
|
|
18956
|
+
children: loadingCircleStyle$5A
|
|
18838
18957
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18839
18958
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18840
18959
|
width: size,
|
|
@@ -18869,8 +18988,8 @@ More2.defaultProps = {
|
|
|
18869
18988
|
size: '1em'
|
|
18870
18989
|
};
|
|
18871
18990
|
|
|
18872
|
-
var _excluded$
|
|
18873
|
-
var loadingCircleStyle$
|
|
18991
|
+
var _excluded$5B = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18992
|
+
var loadingCircleStyle$5B = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18874
18993
|
var Drag = function Drag(props) {
|
|
18875
18994
|
var color = props.color,
|
|
18876
18995
|
size = props.size,
|
|
@@ -18878,12 +18997,12 @@ var Drag = function Drag(props) {
|
|
|
18878
18997
|
style = props.style,
|
|
18879
18998
|
className = props.className,
|
|
18880
18999
|
iconClassName = props.iconClassName,
|
|
18881
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19000
|
+
otherProps = _objectWithoutProperties(props, _excluded$5B);
|
|
18882
19001
|
return /*#__PURE__*/React.createElement("span", {
|
|
18883
19002
|
role: "img",
|
|
18884
19003
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18885
19004
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18886
|
-
children: loadingCircleStyle$
|
|
19005
|
+
children: loadingCircleStyle$5B
|
|
18887
19006
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18888
19007
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18889
19008
|
width: size,
|
|
@@ -18928,8 +19047,8 @@ Drag.defaultProps = {
|
|
|
18928
19047
|
size: '1em'
|
|
18929
19048
|
};
|
|
18930
19049
|
|
|
18931
|
-
var _excluded$
|
|
18932
|
-
var loadingCircleStyle$
|
|
19050
|
+
var _excluded$5C = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
19051
|
+
var loadingCircleStyle$5C = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18933
19052
|
var Grid = function Grid(props) {
|
|
18934
19053
|
var color = props.color,
|
|
18935
19054
|
size = props.size,
|
|
@@ -18937,12 +19056,12 @@ var Grid = function Grid(props) {
|
|
|
18937
19056
|
style = props.style,
|
|
18938
19057
|
className = props.className,
|
|
18939
19058
|
iconClassName = props.iconClassName,
|
|
18940
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19059
|
+
otherProps = _objectWithoutProperties(props, _excluded$5C);
|
|
18941
19060
|
return /*#__PURE__*/React.createElement("span", {
|
|
18942
19061
|
role: "img",
|
|
18943
19062
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18944
19063
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18945
|
-
children: loadingCircleStyle$
|
|
19064
|
+
children: loadingCircleStyle$5C
|
|
18946
19065
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18947
19066
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18948
19067
|
width: size,
|
|
@@ -18979,8 +19098,8 @@ Grid.defaultProps = {
|
|
|
18979
19098
|
size: '1em'
|
|
18980
19099
|
};
|
|
18981
19100
|
|
|
18982
|
-
var _excluded$
|
|
18983
|
-
var loadingCircleStyle$
|
|
19101
|
+
var _excluded$5D = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
19102
|
+
var loadingCircleStyle$5D = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18984
19103
|
var Drag2 = function Drag2(props) {
|
|
18985
19104
|
var color = props.color,
|
|
18986
19105
|
size = props.size,
|
|
@@ -18988,12 +19107,12 @@ var Drag2 = function Drag2(props) {
|
|
|
18988
19107
|
style = props.style,
|
|
18989
19108
|
className = props.className,
|
|
18990
19109
|
iconClassName = props.iconClassName,
|
|
18991
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19110
|
+
otherProps = _objectWithoutProperties(props, _excluded$5D);
|
|
18992
19111
|
return /*#__PURE__*/React.createElement("span", {
|
|
18993
19112
|
role: "img",
|
|
18994
19113
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18995
19114
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18996
|
-
children: loadingCircleStyle$
|
|
19115
|
+
children: loadingCircleStyle$5D
|
|
18997
19116
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18998
19117
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18999
19118
|
width: size,
|
|
@@ -19032,8 +19151,8 @@ Drag2.defaultProps = {
|
|
|
19032
19151
|
size: '1em'
|
|
19033
19152
|
};
|
|
19034
19153
|
|
|
19035
|
-
var _excluded$
|
|
19036
|
-
var loadingCircleStyle$
|
|
19154
|
+
var _excluded$5E = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
19155
|
+
var loadingCircleStyle$5E = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19037
19156
|
var External = function External(props) {
|
|
19038
19157
|
var color = props.color,
|
|
19039
19158
|
size = props.size,
|
|
@@ -19041,12 +19160,12 @@ var External = function External(props) {
|
|
|
19041
19160
|
style = props.style,
|
|
19042
19161
|
className = props.className,
|
|
19043
19162
|
iconClassName = props.iconClassName,
|
|
19044
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19163
|
+
otherProps = _objectWithoutProperties(props, _excluded$5E);
|
|
19045
19164
|
return /*#__PURE__*/React.createElement("span", {
|
|
19046
19165
|
role: "img",
|
|
19047
19166
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19048
19167
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19049
|
-
children: loadingCircleStyle$
|
|
19168
|
+
children: loadingCircleStyle$5E
|
|
19050
19169
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19051
19170
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19052
19171
|
width: size,
|
|
@@ -19081,8 +19200,8 @@ External.defaultProps = {
|
|
|
19081
19200
|
size: '1em'
|
|
19082
19201
|
};
|
|
19083
19202
|
|
|
19084
|
-
var _excluded$
|
|
19085
|
-
var loadingCircleStyle$
|
|
19203
|
+
var _excluded$5F = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
19204
|
+
var loadingCircleStyle$5F = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19086
19205
|
var DisplayS = function DisplayS(props) {
|
|
19087
19206
|
var color = props.color,
|
|
19088
19207
|
size = props.size,
|
|
@@ -19090,12 +19209,12 @@ var DisplayS = function DisplayS(props) {
|
|
|
19090
19209
|
style = props.style,
|
|
19091
19210
|
className = props.className,
|
|
19092
19211
|
iconClassName = props.iconClassName,
|
|
19093
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19212
|
+
otherProps = _objectWithoutProperties(props, _excluded$5F);
|
|
19094
19213
|
return /*#__PURE__*/React.createElement("span", {
|
|
19095
19214
|
role: "img",
|
|
19096
19215
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19097
19216
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19098
|
-
children: loadingCircleStyle$
|
|
19217
|
+
children: loadingCircleStyle$5F
|
|
19099
19218
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19100
19219
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19101
19220
|
width: size,
|
|
@@ -19132,8 +19251,8 @@ DisplayS.defaultProps = {
|
|
|
19132
19251
|
size: '1em'
|
|
19133
19252
|
};
|
|
19134
19253
|
|
|
19135
|
-
var _excluded$
|
|
19136
|
-
var loadingCircleStyle$
|
|
19254
|
+
var _excluded$5G = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
19255
|
+
var loadingCircleStyle$5G = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19137
19256
|
var Share = function Share(props) {
|
|
19138
19257
|
var color = props.color,
|
|
19139
19258
|
size = props.size,
|
|
@@ -19141,12 +19260,12 @@ var Share = function Share(props) {
|
|
|
19141
19260
|
style = props.style,
|
|
19142
19261
|
className = props.className,
|
|
19143
19262
|
iconClassName = props.iconClassName,
|
|
19144
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19263
|
+
otherProps = _objectWithoutProperties(props, _excluded$5G);
|
|
19145
19264
|
return /*#__PURE__*/React.createElement("span", {
|
|
19146
19265
|
role: "img",
|
|
19147
19266
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19148
19267
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19149
|
-
children: loadingCircleStyle$
|
|
19268
|
+
children: loadingCircleStyle$5G
|
|
19150
19269
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19151
19270
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19152
19271
|
width: size,
|
|
@@ -19181,8 +19300,8 @@ Share.defaultProps = {
|
|
|
19181
19300
|
size: '1em'
|
|
19182
19301
|
};
|
|
19183
19302
|
|
|
19184
|
-
var _excluded$
|
|
19185
|
-
var loadingCircleStyle$
|
|
19303
|
+
var _excluded$5H = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
19304
|
+
var loadingCircleStyle$5H = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19186
19305
|
var AvatarGroupCl = function AvatarGroupCl(props) {
|
|
19187
19306
|
var color = props.color,
|
|
19188
19307
|
size = props.size,
|
|
@@ -19190,12 +19309,12 @@ var AvatarGroupCl = function AvatarGroupCl(props) {
|
|
|
19190
19309
|
style = props.style,
|
|
19191
19310
|
className = props.className,
|
|
19192
19311
|
iconClassName = props.iconClassName,
|
|
19193
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19312
|
+
otherProps = _objectWithoutProperties(props, _excluded$5H);
|
|
19194
19313
|
return /*#__PURE__*/React.createElement("span", {
|
|
19195
19314
|
role: "img",
|
|
19196
19315
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19197
19316
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19198
|
-
children: loadingCircleStyle$
|
|
19317
|
+
children: loadingCircleStyle$5H
|
|
19199
19318
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19200
19319
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19201
19320
|
width: size,
|
|
@@ -19246,8 +19365,8 @@ AvatarGroupCl.defaultProps = {
|
|
|
19246
19365
|
size: '1em'
|
|
19247
19366
|
};
|
|
19248
19367
|
|
|
19249
|
-
var _excluded$
|
|
19250
|
-
var loadingCircleStyle$
|
|
19368
|
+
var _excluded$5I = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
19369
|
+
var loadingCircleStyle$5I = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19251
19370
|
var AvatarProjectCl = function AvatarProjectCl(props) {
|
|
19252
19371
|
var color = props.color,
|
|
19253
19372
|
size = props.size,
|
|
@@ -19255,12 +19374,12 @@ var AvatarProjectCl = function AvatarProjectCl(props) {
|
|
|
19255
19374
|
style = props.style,
|
|
19256
19375
|
className = props.className,
|
|
19257
19376
|
iconClassName = props.iconClassName,
|
|
19258
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19377
|
+
otherProps = _objectWithoutProperties(props, _excluded$5I);
|
|
19259
19378
|
return /*#__PURE__*/React.createElement("span", {
|
|
19260
19379
|
role: "img",
|
|
19261
19380
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19262
19381
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19263
|
-
children: loadingCircleStyle$
|
|
19382
|
+
children: loadingCircleStyle$5I
|
|
19264
19383
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19265
19384
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19266
19385
|
width: size,
|
|
@@ -19397,6 +19516,7 @@ exports.TaDemo = Demo;
|
|
|
19397
19516
|
exports.TaDescent = Descent;
|
|
19398
19517
|
exports.TaDesktop = Desktop;
|
|
19399
19518
|
exports.TaDetail = Detail;
|
|
19519
|
+
exports.TaDisable = Disable;
|
|
19400
19520
|
exports.TaDisplayS = DisplayS;
|
|
19401
19521
|
exports.TaDone = Done;
|
|
19402
19522
|
exports.TaDot = Dot;
|
|
@@ -19406,6 +19526,7 @@ exports.TaDrag = Drag;
|
|
|
19406
19526
|
exports.TaDrag2 = Drag2;
|
|
19407
19527
|
exports.TaDropDown = DropDown;
|
|
19408
19528
|
exports.TaDropUp = DropUp;
|
|
19529
|
+
exports.TaEChartsCl = EChartsCl;
|
|
19409
19530
|
exports.TaEPropertySm = EPropertySm;
|
|
19410
19531
|
exports.TaESettingCl = ESettingCl;
|
|
19411
19532
|
exports.TaETaskCl = ETaskCl;
|