@tant/icons 1.5.28 → 1.6.0
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/pin-unsave.js +65 -0
- package/dist/es/icons/pin.js +63 -0
- package/dist/es/icons/unsave.js +65 -0
- package/dist/es/index.js +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/lib/icons/pin-unsave.js +72 -0
- package/dist/lib/icons/pin.js +70 -0
- package/dist/lib/icons/unsave.js +72 -0
- package/dist/lib/index.js +21 -0
- package/dist/tant-icons.cjs.js +476 -313
- package/dist/tant-icons.esm.js +474 -314
- package/package.json +1 -1
package/dist/tant-icons.esm.js
CHANGED
|
@@ -19362,7 +19362,7 @@ EventModify.defaultProps = {
|
|
|
19362
19362
|
|
|
19363
19363
|
var _excluded$5d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19364
19364
|
var loadingCircleStyle$5d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19365
|
-
var
|
|
19365
|
+
var Pin = function Pin(props) {
|
|
19366
19366
|
var color = props.color,
|
|
19367
19367
|
size = props.size,
|
|
19368
19368
|
spin = props.spin,
|
|
@@ -19396,17 +19396,17 @@ var Report = function Report(props) {
|
|
|
19396
19396
|
height: "24",
|
|
19397
19397
|
xmlns: "http://www.w3.org/2000/svg"
|
|
19398
19398
|
}, /*#__PURE__*/React.createElement("path", {
|
|
19399
|
-
d: "
|
|
19399
|
+
d: "M18 3v2h-1v6l2 3v2h-6v7h-2v-7H5v-2l2-3V5H6V3h12zM9 5v6.606L7.404 14h9.192L15 11.606V5H9z"
|
|
19400
19400
|
}))));
|
|
19401
19401
|
};
|
|
19402
|
-
|
|
19402
|
+
Pin.propTypes = {
|
|
19403
19403
|
iconClassName: PropTypes.string,
|
|
19404
19404
|
spin: PropTypes.bool,
|
|
19405
19405
|
color: PropTypes.string,
|
|
19406
19406
|
testid: PropTypes.string,
|
|
19407
19407
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
19408
19408
|
};
|
|
19409
|
-
|
|
19409
|
+
Pin.defaultProps = {
|
|
19410
19410
|
spin: false,
|
|
19411
19411
|
color: 'currentColor',
|
|
19412
19412
|
size: '1em'
|
|
@@ -19414,7 +19414,7 @@ Report.defaultProps = {
|
|
|
19414
19414
|
|
|
19415
19415
|
var _excluded$5e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19416
19416
|
var loadingCircleStyle$5e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19417
|
-
var
|
|
19417
|
+
var PinUnsave = function PinUnsave(props) {
|
|
19418
19418
|
var color = props.color,
|
|
19419
19419
|
size = props.size,
|
|
19420
19420
|
spin = props.spin,
|
|
@@ -19447,6 +19447,166 @@ var ReportRemoval = function ReportRemoval(props) {
|
|
|
19447
19447
|
width: "24",
|
|
19448
19448
|
height: "24",
|
|
19449
19449
|
xmlns: "http://www.w3.org/2000/svg"
|
|
19450
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
19451
|
+
d: "M18 3v2h-1v6l2 3h-2.404L15 11.606V5H9v6.606L7.404 14H14v2h-1v7h-2v-7H5v-2l2-3V5H6V3h12z"
|
|
19452
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
19453
|
+
d: "M18.5 22a3.5 3.5 0 100-7 3.5 3.5 0 000 7z"
|
|
19454
|
+
}))));
|
|
19455
|
+
};
|
|
19456
|
+
PinUnsave.propTypes = {
|
|
19457
|
+
iconClassName: PropTypes.string,
|
|
19458
|
+
spin: PropTypes.bool,
|
|
19459
|
+
color: PropTypes.string,
|
|
19460
|
+
testid: PropTypes.string,
|
|
19461
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
19462
|
+
};
|
|
19463
|
+
PinUnsave.defaultProps = {
|
|
19464
|
+
spin: false,
|
|
19465
|
+
color: 'currentColor',
|
|
19466
|
+
size: '1em'
|
|
19467
|
+
};
|
|
19468
|
+
|
|
19469
|
+
var _excluded$5f = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19470
|
+
var loadingCircleStyle$5f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19471
|
+
var Unsave = function Unsave(props) {
|
|
19472
|
+
var color = props.color,
|
|
19473
|
+
size = props.size,
|
|
19474
|
+
spin = props.spin,
|
|
19475
|
+
style = props.style,
|
|
19476
|
+
className = props.className,
|
|
19477
|
+
iconClassName = props.iconClassName,
|
|
19478
|
+
testid = props.testid,
|
|
19479
|
+
otherProps = _objectWithoutProperties(props, _excluded$5f);
|
|
19480
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
19481
|
+
role: "img",
|
|
19482
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19483
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
19484
|
+
children: loadingCircleStyle$5f
|
|
19485
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19486
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
19487
|
+
width: size,
|
|
19488
|
+
height: size,
|
|
19489
|
+
viewBox: "0 0 24 24",
|
|
19490
|
+
fill: color
|
|
19491
|
+
}, otherProps, {
|
|
19492
|
+
className: iconClassName,
|
|
19493
|
+
"data-testid": testid,
|
|
19494
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
19495
|
+
animationDuration: '1s',
|
|
19496
|
+
animationIterationCount: 'infinite',
|
|
19497
|
+
animationName: 'loadingCircle',
|
|
19498
|
+
animationTimingFunction: 'linear'
|
|
19499
|
+
} : {})
|
|
19500
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
19501
|
+
width: "24",
|
|
19502
|
+
height: "24",
|
|
19503
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
19504
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
19505
|
+
cx: "12",
|
|
19506
|
+
cy: "12",
|
|
19507
|
+
r: "6"
|
|
19508
|
+
}))));
|
|
19509
|
+
};
|
|
19510
|
+
Unsave.propTypes = {
|
|
19511
|
+
iconClassName: PropTypes.string,
|
|
19512
|
+
spin: PropTypes.bool,
|
|
19513
|
+
color: PropTypes.string,
|
|
19514
|
+
testid: PropTypes.string,
|
|
19515
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
19516
|
+
};
|
|
19517
|
+
Unsave.defaultProps = {
|
|
19518
|
+
spin: false,
|
|
19519
|
+
color: 'currentColor',
|
|
19520
|
+
size: '1em'
|
|
19521
|
+
};
|
|
19522
|
+
|
|
19523
|
+
var _excluded$5g = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19524
|
+
var loadingCircleStyle$5g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19525
|
+
var Report = function Report(props) {
|
|
19526
|
+
var color = props.color,
|
|
19527
|
+
size = props.size,
|
|
19528
|
+
spin = props.spin,
|
|
19529
|
+
style = props.style,
|
|
19530
|
+
className = props.className,
|
|
19531
|
+
iconClassName = props.iconClassName,
|
|
19532
|
+
testid = props.testid,
|
|
19533
|
+
otherProps = _objectWithoutProperties(props, _excluded$5g);
|
|
19534
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
19535
|
+
role: "img",
|
|
19536
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19537
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
19538
|
+
children: loadingCircleStyle$5g
|
|
19539
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19540
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
19541
|
+
width: size,
|
|
19542
|
+
height: size,
|
|
19543
|
+
viewBox: "0 0 24 24",
|
|
19544
|
+
fill: color
|
|
19545
|
+
}, otherProps, {
|
|
19546
|
+
className: iconClassName,
|
|
19547
|
+
"data-testid": testid,
|
|
19548
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
19549
|
+
animationDuration: '1s',
|
|
19550
|
+
animationIterationCount: 'infinite',
|
|
19551
|
+
animationName: 'loadingCircle',
|
|
19552
|
+
animationTimingFunction: 'linear'
|
|
19553
|
+
} : {})
|
|
19554
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
19555
|
+
width: "24",
|
|
19556
|
+
height: "24",
|
|
19557
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
19558
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
19559
|
+
d: "M11 7h2v10h-2V7zm4 4h2v6h-2v-6zm-8 2h2v4H7v-4zm8-9H5v16h14V8h-4V4zM3 2.992C3 2.444 3.447 2 3.999 2H16l5 5v13.993A1 1 0 0120.007 22H3.993A1 1 0 013 21.008V2.992z"
|
|
19560
|
+
}))));
|
|
19561
|
+
};
|
|
19562
|
+
Report.propTypes = {
|
|
19563
|
+
iconClassName: PropTypes.string,
|
|
19564
|
+
spin: PropTypes.bool,
|
|
19565
|
+
color: PropTypes.string,
|
|
19566
|
+
testid: PropTypes.string,
|
|
19567
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
19568
|
+
};
|
|
19569
|
+
Report.defaultProps = {
|
|
19570
|
+
spin: false,
|
|
19571
|
+
color: 'currentColor',
|
|
19572
|
+
size: '1em'
|
|
19573
|
+
};
|
|
19574
|
+
|
|
19575
|
+
var _excluded$5h = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19576
|
+
var loadingCircleStyle$5h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19577
|
+
var ReportRemoval = function ReportRemoval(props) {
|
|
19578
|
+
var color = props.color,
|
|
19579
|
+
size = props.size,
|
|
19580
|
+
spin = props.spin,
|
|
19581
|
+
style = props.style,
|
|
19582
|
+
className = props.className,
|
|
19583
|
+
iconClassName = props.iconClassName,
|
|
19584
|
+
testid = props.testid,
|
|
19585
|
+
otherProps = _objectWithoutProperties(props, _excluded$5h);
|
|
19586
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
19587
|
+
role: "img",
|
|
19588
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19589
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
19590
|
+
children: loadingCircleStyle$5h
|
|
19591
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19592
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
19593
|
+
width: size,
|
|
19594
|
+
height: size,
|
|
19595
|
+
viewBox: "0 0 24 24",
|
|
19596
|
+
fill: color
|
|
19597
|
+
}, otherProps, {
|
|
19598
|
+
className: iconClassName,
|
|
19599
|
+
"data-testid": testid,
|
|
19600
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
19601
|
+
animationDuration: '1s',
|
|
19602
|
+
animationIterationCount: 'infinite',
|
|
19603
|
+
animationName: 'loadingCircle',
|
|
19604
|
+
animationTimingFunction: 'linear'
|
|
19605
|
+
} : {})
|
|
19606
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
19607
|
+
width: "24",
|
|
19608
|
+
height: "24",
|
|
19609
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
19450
19610
|
}, /*#__PURE__*/React.createElement("path", {
|
|
19451
19611
|
d: "M7 13h2v4H7v-4z"
|
|
19452
19612
|
}), /*#__PURE__*/React.createElement("path", {
|
|
@@ -19472,8 +19632,8 @@ ReportRemoval.defaultProps = {
|
|
|
19472
19632
|
size: '1em'
|
|
19473
19633
|
};
|
|
19474
19634
|
|
|
19475
|
-
var _excluded$
|
|
19476
|
-
var loadingCircleStyle$
|
|
19635
|
+
var _excluded$5i = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19636
|
+
var loadingCircleStyle$5i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19477
19637
|
var FileAdd = function FileAdd(props) {
|
|
19478
19638
|
var color = props.color,
|
|
19479
19639
|
size = props.size,
|
|
@@ -19482,12 +19642,12 @@ var FileAdd = function FileAdd(props) {
|
|
|
19482
19642
|
className = props.className,
|
|
19483
19643
|
iconClassName = props.iconClassName,
|
|
19484
19644
|
testid = props.testid,
|
|
19485
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19645
|
+
otherProps = _objectWithoutProperties(props, _excluded$5i);
|
|
19486
19646
|
return /*#__PURE__*/React.createElement("span", {
|
|
19487
19647
|
role: "img",
|
|
19488
19648
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19489
19649
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19490
|
-
children: loadingCircleStyle$
|
|
19650
|
+
children: loadingCircleStyle$5i
|
|
19491
19651
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19492
19652
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19493
19653
|
width: size,
|
|
@@ -19524,8 +19684,8 @@ FileAdd.defaultProps = {
|
|
|
19524
19684
|
size: '1em'
|
|
19525
19685
|
};
|
|
19526
19686
|
|
|
19527
|
-
var _excluded$
|
|
19528
|
-
var loadingCircleStyle$
|
|
19687
|
+
var _excluded$5j = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19688
|
+
var loadingCircleStyle$5j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19529
19689
|
var FileRemove = function FileRemove(props) {
|
|
19530
19690
|
var color = props.color,
|
|
19531
19691
|
size = props.size,
|
|
@@ -19534,12 +19694,12 @@ var FileRemove = function FileRemove(props) {
|
|
|
19534
19694
|
className = props.className,
|
|
19535
19695
|
iconClassName = props.iconClassName,
|
|
19536
19696
|
testid = props.testid,
|
|
19537
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19697
|
+
otherProps = _objectWithoutProperties(props, _excluded$5j);
|
|
19538
19698
|
return /*#__PURE__*/React.createElement("span", {
|
|
19539
19699
|
role: "img",
|
|
19540
19700
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19541
19701
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19542
|
-
children: loadingCircleStyle$
|
|
19702
|
+
children: loadingCircleStyle$5j
|
|
19543
19703
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19544
19704
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19545
19705
|
width: size,
|
|
@@ -19578,8 +19738,8 @@ FileRemove.defaultProps = {
|
|
|
19578
19738
|
size: '1em'
|
|
19579
19739
|
};
|
|
19580
19740
|
|
|
19581
|
-
var _excluded$
|
|
19582
|
-
var loadingCircleStyle$
|
|
19741
|
+
var _excluded$5k = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19742
|
+
var loadingCircleStyle$5k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19583
19743
|
var FileExport = function FileExport(props) {
|
|
19584
19744
|
var color = props.color,
|
|
19585
19745
|
size = props.size,
|
|
@@ -19588,12 +19748,12 @@ var FileExport = function FileExport(props) {
|
|
|
19588
19748
|
className = props.className,
|
|
19589
19749
|
iconClassName = props.iconClassName,
|
|
19590
19750
|
testid = props.testid,
|
|
19591
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19751
|
+
otherProps = _objectWithoutProperties(props, _excluded$5k);
|
|
19592
19752
|
return /*#__PURE__*/React.createElement("span", {
|
|
19593
19753
|
role: "img",
|
|
19594
19754
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19595
19755
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19596
|
-
children: loadingCircleStyle$
|
|
19756
|
+
children: loadingCircleStyle$5k
|
|
19597
19757
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19598
19758
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19599
19759
|
width: size,
|
|
@@ -19630,8 +19790,8 @@ FileExport.defaultProps = {
|
|
|
19630
19790
|
size: '1em'
|
|
19631
19791
|
};
|
|
19632
19792
|
|
|
19633
|
-
var _excluded$
|
|
19634
|
-
var loadingCircleStyle$
|
|
19793
|
+
var _excluded$5l = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19794
|
+
var loadingCircleStyle$5l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19635
19795
|
var FileMove = function FileMove(props) {
|
|
19636
19796
|
var color = props.color,
|
|
19637
19797
|
size = props.size,
|
|
@@ -19640,12 +19800,12 @@ var FileMove = function FileMove(props) {
|
|
|
19640
19800
|
className = props.className,
|
|
19641
19801
|
iconClassName = props.iconClassName,
|
|
19642
19802
|
testid = props.testid,
|
|
19643
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19803
|
+
otherProps = _objectWithoutProperties(props, _excluded$5l);
|
|
19644
19804
|
return /*#__PURE__*/React.createElement("span", {
|
|
19645
19805
|
role: "img",
|
|
19646
19806
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19647
19807
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19648
|
-
children: loadingCircleStyle$
|
|
19808
|
+
children: loadingCircleStyle$5l
|
|
19649
19809
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19650
19810
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19651
19811
|
width: size,
|
|
@@ -19682,8 +19842,8 @@ FileMove.defaultProps = {
|
|
|
19682
19842
|
size: '1em'
|
|
19683
19843
|
};
|
|
19684
19844
|
|
|
19685
|
-
var _excluded$
|
|
19686
|
-
var loadingCircleStyle$
|
|
19845
|
+
var _excluded$5m = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19846
|
+
var loadingCircleStyle$5m = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19687
19847
|
var FileImport = function FileImport(props) {
|
|
19688
19848
|
var color = props.color,
|
|
19689
19849
|
size = props.size,
|
|
@@ -19692,12 +19852,12 @@ var FileImport = function FileImport(props) {
|
|
|
19692
19852
|
className = props.className,
|
|
19693
19853
|
iconClassName = props.iconClassName,
|
|
19694
19854
|
testid = props.testid,
|
|
19695
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19855
|
+
otherProps = _objectWithoutProperties(props, _excluded$5m);
|
|
19696
19856
|
return /*#__PURE__*/React.createElement("span", {
|
|
19697
19857
|
role: "img",
|
|
19698
19858
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19699
19859
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19700
|
-
children: loadingCircleStyle$
|
|
19860
|
+
children: loadingCircleStyle$5m
|
|
19701
19861
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19702
19862
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19703
19863
|
width: size,
|
|
@@ -19734,8 +19894,8 @@ FileImport.defaultProps = {
|
|
|
19734
19894
|
size: '1em'
|
|
19735
19895
|
};
|
|
19736
19896
|
|
|
19737
|
-
var _excluded$
|
|
19738
|
-
var loadingCircleStyle$
|
|
19897
|
+
var _excluded$5n = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19898
|
+
var loadingCircleStyle$5n = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19739
19899
|
var FileInfo = function FileInfo(props) {
|
|
19740
19900
|
var color = props.color,
|
|
19741
19901
|
size = props.size,
|
|
@@ -19744,12 +19904,12 @@ var FileInfo = function FileInfo(props) {
|
|
|
19744
19904
|
className = props.className,
|
|
19745
19905
|
iconClassName = props.iconClassName,
|
|
19746
19906
|
testid = props.testid,
|
|
19747
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19907
|
+
otherProps = _objectWithoutProperties(props, _excluded$5n);
|
|
19748
19908
|
return /*#__PURE__*/React.createElement("span", {
|
|
19749
19909
|
role: "img",
|
|
19750
19910
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19751
19911
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19752
|
-
children: loadingCircleStyle$
|
|
19912
|
+
children: loadingCircleStyle$5n
|
|
19753
19913
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19754
19914
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19755
19915
|
width: size,
|
|
@@ -19786,8 +19946,8 @@ FileInfo.defaultProps = {
|
|
|
19786
19946
|
size: '1em'
|
|
19787
19947
|
};
|
|
19788
19948
|
|
|
19789
|
-
var _excluded$
|
|
19790
|
-
var loadingCircleStyle$
|
|
19949
|
+
var _excluded$5o = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
19950
|
+
var loadingCircleStyle$5o = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19791
19951
|
var FileConvert = function FileConvert(props) {
|
|
19792
19952
|
var color = props.color,
|
|
19793
19953
|
size = props.size,
|
|
@@ -19796,12 +19956,12 @@ var FileConvert = function FileConvert(props) {
|
|
|
19796
19956
|
className = props.className,
|
|
19797
19957
|
iconClassName = props.iconClassName,
|
|
19798
19958
|
testid = props.testid,
|
|
19799
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
19959
|
+
otherProps = _objectWithoutProperties(props, _excluded$5o);
|
|
19800
19960
|
return /*#__PURE__*/React.createElement("span", {
|
|
19801
19961
|
role: "img",
|
|
19802
19962
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19803
19963
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19804
|
-
children: loadingCircleStyle$
|
|
19964
|
+
children: loadingCircleStyle$5o
|
|
19805
19965
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19806
19966
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19807
19967
|
width: size,
|
|
@@ -19844,8 +20004,8 @@ FileConvert.defaultProps = {
|
|
|
19844
20004
|
size: '1em'
|
|
19845
20005
|
};
|
|
19846
20006
|
|
|
19847
|
-
var _excluded$
|
|
19848
|
-
var loadingCircleStyle$
|
|
20007
|
+
var _excluded$5p = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20008
|
+
var loadingCircleStyle$5p = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19849
20009
|
var FileLock = function FileLock(props) {
|
|
19850
20010
|
var color = props.color,
|
|
19851
20011
|
size = props.size,
|
|
@@ -19854,12 +20014,12 @@ var FileLock = function FileLock(props) {
|
|
|
19854
20014
|
className = props.className,
|
|
19855
20015
|
iconClassName = props.iconClassName,
|
|
19856
20016
|
testid = props.testid,
|
|
19857
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20017
|
+
otherProps = _objectWithoutProperties(props, _excluded$5p);
|
|
19858
20018
|
return /*#__PURE__*/React.createElement("span", {
|
|
19859
20019
|
role: "img",
|
|
19860
20020
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19861
20021
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19862
|
-
children: loadingCircleStyle$
|
|
20022
|
+
children: loadingCircleStyle$5p
|
|
19863
20023
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19864
20024
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19865
20025
|
width: size,
|
|
@@ -19896,8 +20056,8 @@ FileLock.defaultProps = {
|
|
|
19896
20056
|
size: '1em'
|
|
19897
20057
|
};
|
|
19898
20058
|
|
|
19899
|
-
var _excluded$
|
|
19900
|
-
var loadingCircleStyle$
|
|
20059
|
+
var _excluded$5q = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20060
|
+
var loadingCircleStyle$5q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19901
20061
|
var FilePdf = function FilePdf(props) {
|
|
19902
20062
|
var color = props.color,
|
|
19903
20063
|
size = props.size,
|
|
@@ -19906,12 +20066,12 @@ var FilePdf = function FilePdf(props) {
|
|
|
19906
20066
|
className = props.className,
|
|
19907
20067
|
iconClassName = props.iconClassName,
|
|
19908
20068
|
testid = props.testid,
|
|
19909
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20069
|
+
otherProps = _objectWithoutProperties(props, _excluded$5q);
|
|
19910
20070
|
return /*#__PURE__*/React.createElement("span", {
|
|
19911
20071
|
role: "img",
|
|
19912
20072
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19913
20073
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19914
|
-
children: loadingCircleStyle$
|
|
20074
|
+
children: loadingCircleStyle$5q
|
|
19915
20075
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19916
20076
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19917
20077
|
width: size,
|
|
@@ -19948,8 +20108,8 @@ FilePdf.defaultProps = {
|
|
|
19948
20108
|
size: '1em'
|
|
19949
20109
|
};
|
|
19950
20110
|
|
|
19951
|
-
var _excluded$
|
|
19952
|
-
var loadingCircleStyle$
|
|
20111
|
+
var _excluded$5r = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20112
|
+
var loadingCircleStyle$5r = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
19953
20113
|
var Detail = function Detail(props) {
|
|
19954
20114
|
var color = props.color,
|
|
19955
20115
|
size = props.size,
|
|
@@ -19958,12 +20118,12 @@ var Detail = function Detail(props) {
|
|
|
19958
20118
|
className = props.className,
|
|
19959
20119
|
iconClassName = props.iconClassName,
|
|
19960
20120
|
testid = props.testid,
|
|
19961
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20121
|
+
otherProps = _objectWithoutProperties(props, _excluded$5r);
|
|
19962
20122
|
return /*#__PURE__*/React.createElement("span", {
|
|
19963
20123
|
role: "img",
|
|
19964
20124
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
19965
20125
|
}, /*#__PURE__*/React.createElement("style", {
|
|
19966
|
-
children: loadingCircleStyle$
|
|
20126
|
+
children: loadingCircleStyle$5r
|
|
19967
20127
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
19968
20128
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19969
20129
|
width: size,
|
|
@@ -20000,8 +20160,8 @@ Detail.defaultProps = {
|
|
|
20000
20160
|
size: '1em'
|
|
20001
20161
|
};
|
|
20002
20162
|
|
|
20003
|
-
var _excluded$
|
|
20004
|
-
var loadingCircleStyle$
|
|
20163
|
+
var _excluded$5s = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20164
|
+
var loadingCircleStyle$5s = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20005
20165
|
var MessageCenter = function MessageCenter(props) {
|
|
20006
20166
|
var color = props.color,
|
|
20007
20167
|
size = props.size,
|
|
@@ -20010,12 +20170,12 @@ var MessageCenter = function MessageCenter(props) {
|
|
|
20010
20170
|
className = props.className,
|
|
20011
20171
|
iconClassName = props.iconClassName,
|
|
20012
20172
|
testid = props.testid,
|
|
20013
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20173
|
+
otherProps = _objectWithoutProperties(props, _excluded$5s);
|
|
20014
20174
|
return /*#__PURE__*/React.createElement("span", {
|
|
20015
20175
|
role: "img",
|
|
20016
20176
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20017
20177
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20018
|
-
children: loadingCircleStyle$
|
|
20178
|
+
children: loadingCircleStyle$5s
|
|
20019
20179
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20020
20180
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20021
20181
|
width: size,
|
|
@@ -20060,8 +20220,8 @@ MessageCenter.defaultProps = {
|
|
|
20060
20220
|
size: '1em'
|
|
20061
20221
|
};
|
|
20062
20222
|
|
|
20063
|
-
var _excluded$
|
|
20064
|
-
var loadingCircleStyle$
|
|
20223
|
+
var _excluded$5t = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20224
|
+
var loadingCircleStyle$5t = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20065
20225
|
var SystemMsg = function SystemMsg(props) {
|
|
20066
20226
|
var color = props.color,
|
|
20067
20227
|
size = props.size,
|
|
@@ -20070,12 +20230,12 @@ var SystemMsg = function SystemMsg(props) {
|
|
|
20070
20230
|
className = props.className,
|
|
20071
20231
|
iconClassName = props.iconClassName,
|
|
20072
20232
|
testid = props.testid,
|
|
20073
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20233
|
+
otherProps = _objectWithoutProperties(props, _excluded$5t);
|
|
20074
20234
|
return /*#__PURE__*/React.createElement("span", {
|
|
20075
20235
|
role: "img",
|
|
20076
20236
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20077
20237
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20078
|
-
children: loadingCircleStyle$
|
|
20238
|
+
children: loadingCircleStyle$5t
|
|
20079
20239
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20080
20240
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20081
20241
|
width: size,
|
|
@@ -20118,8 +20278,8 @@ SystemMsg.defaultProps = {
|
|
|
20118
20278
|
size: '1em'
|
|
20119
20279
|
};
|
|
20120
20280
|
|
|
20121
|
-
var _excluded$
|
|
20122
|
-
var loadingCircleStyle$
|
|
20281
|
+
var _excluded$5u = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20282
|
+
var loadingCircleStyle$5u = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20123
20283
|
var Comment = function Comment(props) {
|
|
20124
20284
|
var color = props.color,
|
|
20125
20285
|
size = props.size,
|
|
@@ -20128,12 +20288,12 @@ var Comment = function Comment(props) {
|
|
|
20128
20288
|
className = props.className,
|
|
20129
20289
|
iconClassName = props.iconClassName,
|
|
20130
20290
|
testid = props.testid,
|
|
20131
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20291
|
+
otherProps = _objectWithoutProperties(props, _excluded$5u);
|
|
20132
20292
|
return /*#__PURE__*/React.createElement("span", {
|
|
20133
20293
|
role: "img",
|
|
20134
20294
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20135
20295
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20136
|
-
children: loadingCircleStyle$
|
|
20296
|
+
children: loadingCircleStyle$5u
|
|
20137
20297
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20138
20298
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20139
20299
|
width: size,
|
|
@@ -20174,8 +20334,8 @@ Comment.defaultProps = {
|
|
|
20174
20334
|
size: '1em'
|
|
20175
20335
|
};
|
|
20176
20336
|
|
|
20177
|
-
var _excluded$
|
|
20178
|
-
var loadingCircleStyle$
|
|
20337
|
+
var _excluded$5v = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20338
|
+
var loadingCircleStyle$5v = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20179
20339
|
var Book = function Book(props) {
|
|
20180
20340
|
var color = props.color,
|
|
20181
20341
|
size = props.size,
|
|
@@ -20184,12 +20344,12 @@ var Book = function Book(props) {
|
|
|
20184
20344
|
className = props.className,
|
|
20185
20345
|
iconClassName = props.iconClassName,
|
|
20186
20346
|
testid = props.testid,
|
|
20187
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20347
|
+
otherProps = _objectWithoutProperties(props, _excluded$5v);
|
|
20188
20348
|
return /*#__PURE__*/React.createElement("span", {
|
|
20189
20349
|
role: "img",
|
|
20190
20350
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20191
20351
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20192
|
-
children: loadingCircleStyle$
|
|
20352
|
+
children: loadingCircleStyle$5v
|
|
20193
20353
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20194
20354
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20195
20355
|
width: size,
|
|
@@ -20226,8 +20386,8 @@ Book.defaultProps = {
|
|
|
20226
20386
|
size: '1em'
|
|
20227
20387
|
};
|
|
20228
20388
|
|
|
20229
|
-
var _excluded$
|
|
20230
|
-
var loadingCircleStyle$
|
|
20389
|
+
var _excluded$5w = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20390
|
+
var loadingCircleStyle$5w = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20231
20391
|
var Book2 = function Book2(props) {
|
|
20232
20392
|
var color = props.color,
|
|
20233
20393
|
size = props.size,
|
|
@@ -20236,12 +20396,12 @@ var Book2 = function Book2(props) {
|
|
|
20236
20396
|
className = props.className,
|
|
20237
20397
|
iconClassName = props.iconClassName,
|
|
20238
20398
|
testid = props.testid,
|
|
20239
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20399
|
+
otherProps = _objectWithoutProperties(props, _excluded$5w);
|
|
20240
20400
|
return /*#__PURE__*/React.createElement("span", {
|
|
20241
20401
|
role: "img",
|
|
20242
20402
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20243
20403
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20244
|
-
children: loadingCircleStyle$
|
|
20404
|
+
children: loadingCircleStyle$5w
|
|
20245
20405
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20246
20406
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20247
20407
|
width: size,
|
|
@@ -20278,8 +20438,8 @@ Book2.defaultProps = {
|
|
|
20278
20438
|
size: '1em'
|
|
20279
20439
|
};
|
|
20280
20440
|
|
|
20281
|
-
var _excluded$
|
|
20282
|
-
var loadingCircleStyle$
|
|
20441
|
+
var _excluded$5x = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20442
|
+
var loadingCircleStyle$5x = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20283
20443
|
var Sticker = function Sticker(props) {
|
|
20284
20444
|
var color = props.color,
|
|
20285
20445
|
size = props.size,
|
|
@@ -20288,12 +20448,12 @@ var Sticker = function Sticker(props) {
|
|
|
20288
20448
|
className = props.className,
|
|
20289
20449
|
iconClassName = props.iconClassName,
|
|
20290
20450
|
testid = props.testid,
|
|
20291
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20451
|
+
otherProps = _objectWithoutProperties(props, _excluded$5x);
|
|
20292
20452
|
return /*#__PURE__*/React.createElement("span", {
|
|
20293
20453
|
role: "img",
|
|
20294
20454
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20295
20455
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20296
|
-
children: loadingCircleStyle$
|
|
20456
|
+
children: loadingCircleStyle$5x
|
|
20297
20457
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20298
20458
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20299
20459
|
width: size,
|
|
@@ -20330,8 +20490,8 @@ Sticker.defaultProps = {
|
|
|
20330
20490
|
size: '1em'
|
|
20331
20491
|
};
|
|
20332
20492
|
|
|
20333
|
-
var _excluded$
|
|
20334
|
-
var loadingCircleStyle$
|
|
20493
|
+
var _excluded$5y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20494
|
+
var loadingCircleStyle$5y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20335
20495
|
var StickerFill = function StickerFill(props) {
|
|
20336
20496
|
var color = props.color,
|
|
20337
20497
|
size = props.size,
|
|
@@ -20340,12 +20500,12 @@ var StickerFill = function StickerFill(props) {
|
|
|
20340
20500
|
className = props.className,
|
|
20341
20501
|
iconClassName = props.iconClassName,
|
|
20342
20502
|
testid = props.testid,
|
|
20343
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20503
|
+
otherProps = _objectWithoutProperties(props, _excluded$5y);
|
|
20344
20504
|
return /*#__PURE__*/React.createElement("span", {
|
|
20345
20505
|
role: "img",
|
|
20346
20506
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20347
20507
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20348
|
-
children: loadingCircleStyle$
|
|
20508
|
+
children: loadingCircleStyle$5y
|
|
20349
20509
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20350
20510
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20351
20511
|
width: size,
|
|
@@ -20382,8 +20542,8 @@ StickerFill.defaultProps = {
|
|
|
20382
20542
|
size: '1em'
|
|
20383
20543
|
};
|
|
20384
20544
|
|
|
20385
|
-
var _excluded$
|
|
20386
|
-
var loadingCircleStyle$
|
|
20545
|
+
var _excluded$5z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20546
|
+
var loadingCircleStyle$5z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20387
20547
|
var FolderLine = function FolderLine(props) {
|
|
20388
20548
|
var color = props.color,
|
|
20389
20549
|
size = props.size,
|
|
@@ -20392,12 +20552,12 @@ var FolderLine = function FolderLine(props) {
|
|
|
20392
20552
|
className = props.className,
|
|
20393
20553
|
iconClassName = props.iconClassName,
|
|
20394
20554
|
testid = props.testid,
|
|
20395
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20555
|
+
otherProps = _objectWithoutProperties(props, _excluded$5z);
|
|
20396
20556
|
return /*#__PURE__*/React.createElement("span", {
|
|
20397
20557
|
role: "img",
|
|
20398
20558
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20399
20559
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20400
|
-
children: loadingCircleStyle$
|
|
20560
|
+
children: loadingCircleStyle$5z
|
|
20401
20561
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20402
20562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20403
20563
|
width: size,
|
|
@@ -20436,8 +20596,8 @@ FolderLine.defaultProps = {
|
|
|
20436
20596
|
size: '1em'
|
|
20437
20597
|
};
|
|
20438
20598
|
|
|
20439
|
-
var _excluded$
|
|
20440
|
-
var loadingCircleStyle$
|
|
20599
|
+
var _excluded$5A = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20600
|
+
var loadingCircleStyle$5A = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20441
20601
|
var FolderOpenLine = function FolderOpenLine(props) {
|
|
20442
20602
|
var color = props.color,
|
|
20443
20603
|
size = props.size,
|
|
@@ -20446,12 +20606,12 @@ var FolderOpenLine = function FolderOpenLine(props) {
|
|
|
20446
20606
|
className = props.className,
|
|
20447
20607
|
iconClassName = props.iconClassName,
|
|
20448
20608
|
testid = props.testid,
|
|
20449
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20609
|
+
otherProps = _objectWithoutProperties(props, _excluded$5A);
|
|
20450
20610
|
return /*#__PURE__*/React.createElement("span", {
|
|
20451
20611
|
role: "img",
|
|
20452
20612
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20453
20613
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20454
|
-
children: loadingCircleStyle$
|
|
20614
|
+
children: loadingCircleStyle$5A
|
|
20455
20615
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20456
20616
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20457
20617
|
width: size,
|
|
@@ -20490,8 +20650,8 @@ FolderOpenLine.defaultProps = {
|
|
|
20490
20650
|
size: '1em'
|
|
20491
20651
|
};
|
|
20492
20652
|
|
|
20493
|
-
var _excluded$
|
|
20494
|
-
var loadingCircleStyle$
|
|
20653
|
+
var _excluded$5B = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20654
|
+
var loadingCircleStyle$5B = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20495
20655
|
var SpaceLine = function SpaceLine(props) {
|
|
20496
20656
|
var color = props.color,
|
|
20497
20657
|
size = props.size,
|
|
@@ -20500,12 +20660,12 @@ var SpaceLine = function SpaceLine(props) {
|
|
|
20500
20660
|
className = props.className,
|
|
20501
20661
|
iconClassName = props.iconClassName,
|
|
20502
20662
|
testid = props.testid,
|
|
20503
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20663
|
+
otherProps = _objectWithoutProperties(props, _excluded$5B);
|
|
20504
20664
|
return /*#__PURE__*/React.createElement("span", {
|
|
20505
20665
|
role: "img",
|
|
20506
20666
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20507
20667
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20508
|
-
children: loadingCircleStyle$
|
|
20668
|
+
children: loadingCircleStyle$5B
|
|
20509
20669
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20510
20670
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20511
20671
|
width: size,
|
|
@@ -20544,8 +20704,8 @@ SpaceLine.defaultProps = {
|
|
|
20544
20704
|
size: '1em'
|
|
20545
20705
|
};
|
|
20546
20706
|
|
|
20547
|
-
var _excluded$
|
|
20548
|
-
var loadingCircleStyle$
|
|
20707
|
+
var _excluded$5C = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20708
|
+
var loadingCircleStyle$5C = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20549
20709
|
var SpaceOpenLine = function SpaceOpenLine(props) {
|
|
20550
20710
|
var color = props.color,
|
|
20551
20711
|
size = props.size,
|
|
@@ -20554,12 +20714,12 @@ var SpaceOpenLine = function SpaceOpenLine(props) {
|
|
|
20554
20714
|
className = props.className,
|
|
20555
20715
|
iconClassName = props.iconClassName,
|
|
20556
20716
|
testid = props.testid,
|
|
20557
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20717
|
+
otherProps = _objectWithoutProperties(props, _excluded$5C);
|
|
20558
20718
|
return /*#__PURE__*/React.createElement("span", {
|
|
20559
20719
|
role: "img",
|
|
20560
20720
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20561
20721
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20562
|
-
children: loadingCircleStyle$
|
|
20722
|
+
children: loadingCircleStyle$5C
|
|
20563
20723
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20564
20724
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20565
20725
|
width: size,
|
|
@@ -20598,8 +20758,8 @@ SpaceOpenLine.defaultProps = {
|
|
|
20598
20758
|
size: '1em'
|
|
20599
20759
|
};
|
|
20600
20760
|
|
|
20601
|
-
var _excluded$
|
|
20602
|
-
var loadingCircleStyle$
|
|
20761
|
+
var _excluded$5D = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20762
|
+
var loadingCircleStyle$5D = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20603
20763
|
var PageLine = function PageLine(props) {
|
|
20604
20764
|
var color = props.color,
|
|
20605
20765
|
size = props.size,
|
|
@@ -20608,12 +20768,12 @@ var PageLine = function PageLine(props) {
|
|
|
20608
20768
|
className = props.className,
|
|
20609
20769
|
iconClassName = props.iconClassName,
|
|
20610
20770
|
testid = props.testid,
|
|
20611
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20771
|
+
otherProps = _objectWithoutProperties(props, _excluded$5D);
|
|
20612
20772
|
return /*#__PURE__*/React.createElement("span", {
|
|
20613
20773
|
role: "img",
|
|
20614
20774
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20615
20775
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20616
|
-
children: loadingCircleStyle$
|
|
20776
|
+
children: loadingCircleStyle$5D
|
|
20617
20777
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20618
20778
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20619
20779
|
width: size,
|
|
@@ -20652,8 +20812,8 @@ PageLine.defaultProps = {
|
|
|
20652
20812
|
size: '1em'
|
|
20653
20813
|
};
|
|
20654
20814
|
|
|
20655
|
-
var _excluded$
|
|
20656
|
-
var loadingCircleStyle$
|
|
20815
|
+
var _excluded$5E = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20816
|
+
var loadingCircleStyle$5E = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20657
20817
|
var PageOpenCl = function PageOpenCl(props) {
|
|
20658
20818
|
var color = props.color,
|
|
20659
20819
|
size = props.size,
|
|
@@ -20662,12 +20822,12 @@ var PageOpenCl = function PageOpenCl(props) {
|
|
|
20662
20822
|
className = props.className,
|
|
20663
20823
|
iconClassName = props.iconClassName,
|
|
20664
20824
|
testid = props.testid,
|
|
20665
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20825
|
+
otherProps = _objectWithoutProperties(props, _excluded$5E);
|
|
20666
20826
|
return /*#__PURE__*/React.createElement("span", {
|
|
20667
20827
|
role: "img",
|
|
20668
20828
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20669
20829
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20670
|
-
children: loadingCircleStyle$
|
|
20830
|
+
children: loadingCircleStyle$5E
|
|
20671
20831
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20672
20832
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20673
20833
|
width: size,
|
|
@@ -20722,8 +20882,8 @@ PageOpenCl.defaultProps = {
|
|
|
20722
20882
|
size: '1em'
|
|
20723
20883
|
};
|
|
20724
20884
|
|
|
20725
|
-
var _excluded$
|
|
20726
|
-
var loadingCircleStyle$
|
|
20885
|
+
var _excluded$5F = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20886
|
+
var loadingCircleStyle$5F = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20727
20887
|
var FontSize = function FontSize(props) {
|
|
20728
20888
|
var color = props.color,
|
|
20729
20889
|
size = props.size,
|
|
@@ -20732,12 +20892,12 @@ var FontSize = function FontSize(props) {
|
|
|
20732
20892
|
className = props.className,
|
|
20733
20893
|
iconClassName = props.iconClassName,
|
|
20734
20894
|
testid = props.testid,
|
|
20735
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20895
|
+
otherProps = _objectWithoutProperties(props, _excluded$5F);
|
|
20736
20896
|
return /*#__PURE__*/React.createElement("span", {
|
|
20737
20897
|
role: "img",
|
|
20738
20898
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20739
20899
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20740
|
-
children: loadingCircleStyle$
|
|
20900
|
+
children: loadingCircleStyle$5F
|
|
20741
20901
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20742
20902
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20743
20903
|
width: size,
|
|
@@ -20776,8 +20936,8 @@ FontSize.defaultProps = {
|
|
|
20776
20936
|
size: '1em'
|
|
20777
20937
|
};
|
|
20778
20938
|
|
|
20779
|
-
var _excluded$
|
|
20780
|
-
var loadingCircleStyle$
|
|
20939
|
+
var _excluded$5G = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20940
|
+
var loadingCircleStyle$5G = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20781
20941
|
var FontBold = function FontBold(props) {
|
|
20782
20942
|
var color = props.color,
|
|
20783
20943
|
size = props.size,
|
|
@@ -20786,12 +20946,12 @@ var FontBold = function FontBold(props) {
|
|
|
20786
20946
|
className = props.className,
|
|
20787
20947
|
iconClassName = props.iconClassName,
|
|
20788
20948
|
testid = props.testid,
|
|
20789
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
20949
|
+
otherProps = _objectWithoutProperties(props, _excluded$5G);
|
|
20790
20950
|
return /*#__PURE__*/React.createElement("span", {
|
|
20791
20951
|
role: "img",
|
|
20792
20952
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20793
20953
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20794
|
-
children: loadingCircleStyle$
|
|
20954
|
+
children: loadingCircleStyle$5G
|
|
20795
20955
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20796
20956
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20797
20957
|
width: size,
|
|
@@ -20828,8 +20988,8 @@ FontBold.defaultProps = {
|
|
|
20828
20988
|
size: '1em'
|
|
20829
20989
|
};
|
|
20830
20990
|
|
|
20831
|
-
var _excluded$
|
|
20832
|
-
var loadingCircleStyle$
|
|
20991
|
+
var _excluded$5H = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
20992
|
+
var loadingCircleStyle$5H = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20833
20993
|
var FontItalic = function FontItalic(props) {
|
|
20834
20994
|
var color = props.color,
|
|
20835
20995
|
size = props.size,
|
|
@@ -20838,12 +20998,12 @@ var FontItalic = function FontItalic(props) {
|
|
|
20838
20998
|
className = props.className,
|
|
20839
20999
|
iconClassName = props.iconClassName,
|
|
20840
21000
|
testid = props.testid,
|
|
20841
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21001
|
+
otherProps = _objectWithoutProperties(props, _excluded$5H);
|
|
20842
21002
|
return /*#__PURE__*/React.createElement("span", {
|
|
20843
21003
|
role: "img",
|
|
20844
21004
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20845
21005
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20846
|
-
children: loadingCircleStyle$
|
|
21006
|
+
children: loadingCircleStyle$5H
|
|
20847
21007
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20848
21008
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20849
21009
|
width: size,
|
|
@@ -20882,8 +21042,8 @@ FontItalic.defaultProps = {
|
|
|
20882
21042
|
size: '1em'
|
|
20883
21043
|
};
|
|
20884
21044
|
|
|
20885
|
-
var _excluded$
|
|
20886
|
-
var loadingCircleStyle$
|
|
21045
|
+
var _excluded$5I = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21046
|
+
var loadingCircleStyle$5I = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20887
21047
|
var FontColor = function FontColor(props) {
|
|
20888
21048
|
var color = props.color,
|
|
20889
21049
|
size = props.size,
|
|
@@ -20892,12 +21052,12 @@ var FontColor = function FontColor(props) {
|
|
|
20892
21052
|
className = props.className,
|
|
20893
21053
|
iconClassName = props.iconClassName,
|
|
20894
21054
|
testid = props.testid,
|
|
20895
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21055
|
+
otherProps = _objectWithoutProperties(props, _excluded$5I);
|
|
20896
21056
|
return /*#__PURE__*/React.createElement("span", {
|
|
20897
21057
|
role: "img",
|
|
20898
21058
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20899
21059
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20900
|
-
children: loadingCircleStyle$
|
|
21060
|
+
children: loadingCircleStyle$5I
|
|
20901
21061
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20902
21062
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20903
21063
|
width: size,
|
|
@@ -20934,8 +21094,8 @@ FontColor.defaultProps = {
|
|
|
20934
21094
|
size: '1em'
|
|
20935
21095
|
};
|
|
20936
21096
|
|
|
20937
|
-
var _excluded$
|
|
20938
|
-
var loadingCircleStyle$
|
|
21097
|
+
var _excluded$5J = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21098
|
+
var loadingCircleStyle$5J = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20939
21099
|
var FontBgColor = function FontBgColor(props) {
|
|
20940
21100
|
var color = props.color,
|
|
20941
21101
|
size = props.size,
|
|
@@ -20944,12 +21104,12 @@ var FontBgColor = function FontBgColor(props) {
|
|
|
20944
21104
|
className = props.className,
|
|
20945
21105
|
iconClassName = props.iconClassName,
|
|
20946
21106
|
testid = props.testid,
|
|
20947
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21107
|
+
otherProps = _objectWithoutProperties(props, _excluded$5J);
|
|
20948
21108
|
return /*#__PURE__*/React.createElement("span", {
|
|
20949
21109
|
role: "img",
|
|
20950
21110
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
20951
21111
|
}, /*#__PURE__*/React.createElement("style", {
|
|
20952
|
-
children: loadingCircleStyle$
|
|
21112
|
+
children: loadingCircleStyle$5J
|
|
20953
21113
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
20954
21114
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20955
21115
|
width: size,
|
|
@@ -20986,8 +21146,8 @@ FontBgColor.defaultProps = {
|
|
|
20986
21146
|
size: '1em'
|
|
20987
21147
|
};
|
|
20988
21148
|
|
|
20989
|
-
var _excluded$
|
|
20990
|
-
var loadingCircleStyle$
|
|
21149
|
+
var _excluded$5K = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21150
|
+
var loadingCircleStyle$5K = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
20991
21151
|
var ListOrdered = function ListOrdered(props) {
|
|
20992
21152
|
var color = props.color,
|
|
20993
21153
|
size = props.size,
|
|
@@ -20996,12 +21156,12 @@ var ListOrdered = function ListOrdered(props) {
|
|
|
20996
21156
|
className = props.className,
|
|
20997
21157
|
iconClassName = props.iconClassName,
|
|
20998
21158
|
testid = props.testid,
|
|
20999
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21159
|
+
otherProps = _objectWithoutProperties(props, _excluded$5K);
|
|
21000
21160
|
return /*#__PURE__*/React.createElement("span", {
|
|
21001
21161
|
role: "img",
|
|
21002
21162
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21003
21163
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21004
|
-
children: loadingCircleStyle$
|
|
21164
|
+
children: loadingCircleStyle$5K
|
|
21005
21165
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21006
21166
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21007
21167
|
width: size,
|
|
@@ -21040,8 +21200,8 @@ ListOrdered.defaultProps = {
|
|
|
21040
21200
|
size: '1em'
|
|
21041
21201
|
};
|
|
21042
21202
|
|
|
21043
|
-
var _excluded$
|
|
21044
|
-
var loadingCircleStyle$
|
|
21203
|
+
var _excluded$5L = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21204
|
+
var loadingCircleStyle$5L = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21045
21205
|
var ListUnordered = function ListUnordered(props) {
|
|
21046
21206
|
var color = props.color,
|
|
21047
21207
|
size = props.size,
|
|
@@ -21050,12 +21210,12 @@ var ListUnordered = function ListUnordered(props) {
|
|
|
21050
21210
|
className = props.className,
|
|
21051
21211
|
iconClassName = props.iconClassName,
|
|
21052
21212
|
testid = props.testid,
|
|
21053
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21213
|
+
otherProps = _objectWithoutProperties(props, _excluded$5L);
|
|
21054
21214
|
return /*#__PURE__*/React.createElement("span", {
|
|
21055
21215
|
role: "img",
|
|
21056
21216
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21057
21217
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21058
|
-
children: loadingCircleStyle$
|
|
21218
|
+
children: loadingCircleStyle$5L
|
|
21059
21219
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21060
21220
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21061
21221
|
width: size,
|
|
@@ -21094,8 +21254,8 @@ ListUnordered.defaultProps = {
|
|
|
21094
21254
|
size: '1em'
|
|
21095
21255
|
};
|
|
21096
21256
|
|
|
21097
|
-
var _excluded$
|
|
21098
|
-
var loadingCircleStyle$
|
|
21257
|
+
var _excluded$5M = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21258
|
+
var loadingCircleStyle$5M = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21099
21259
|
var Image = function Image(props) {
|
|
21100
21260
|
var color = props.color,
|
|
21101
21261
|
size = props.size,
|
|
@@ -21104,12 +21264,12 @@ var Image = function Image(props) {
|
|
|
21104
21264
|
className = props.className,
|
|
21105
21265
|
iconClassName = props.iconClassName,
|
|
21106
21266
|
testid = props.testid,
|
|
21107
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21267
|
+
otherProps = _objectWithoutProperties(props, _excluded$5M);
|
|
21108
21268
|
return /*#__PURE__*/React.createElement("span", {
|
|
21109
21269
|
role: "img",
|
|
21110
21270
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21111
21271
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21112
|
-
children: loadingCircleStyle$
|
|
21272
|
+
children: loadingCircleStyle$5M
|
|
21113
21273
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21114
21274
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21115
21275
|
width: size,
|
|
@@ -21148,8 +21308,8 @@ Image.defaultProps = {
|
|
|
21148
21308
|
size: '1em'
|
|
21149
21309
|
};
|
|
21150
21310
|
|
|
21151
|
-
var _excluded$
|
|
21152
|
-
var loadingCircleStyle$
|
|
21311
|
+
var _excluded$5N = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21312
|
+
var loadingCircleStyle$5N = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21153
21313
|
var Palette = function Palette(props) {
|
|
21154
21314
|
var color = props.color,
|
|
21155
21315
|
size = props.size,
|
|
@@ -21158,12 +21318,12 @@ var Palette = function Palette(props) {
|
|
|
21158
21318
|
className = props.className,
|
|
21159
21319
|
iconClassName = props.iconClassName,
|
|
21160
21320
|
testid = props.testid,
|
|
21161
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21321
|
+
otherProps = _objectWithoutProperties(props, _excluded$5N);
|
|
21162
21322
|
return /*#__PURE__*/React.createElement("span", {
|
|
21163
21323
|
role: "img",
|
|
21164
21324
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21165
21325
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21166
|
-
children: loadingCircleStyle$
|
|
21326
|
+
children: loadingCircleStyle$5N
|
|
21167
21327
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21168
21328
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21169
21329
|
width: size,
|
|
@@ -21202,8 +21362,8 @@ Palette.defaultProps = {
|
|
|
21202
21362
|
size: '1em'
|
|
21203
21363
|
};
|
|
21204
21364
|
|
|
21205
|
-
var _excluded$
|
|
21206
|
-
var loadingCircleStyle$
|
|
21365
|
+
var _excluded$5O = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21366
|
+
var loadingCircleStyle$5O = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21207
21367
|
var EventSm = function EventSm(props) {
|
|
21208
21368
|
var color = props.color,
|
|
21209
21369
|
size = props.size,
|
|
@@ -21212,12 +21372,12 @@ var EventSm = function EventSm(props) {
|
|
|
21212
21372
|
className = props.className,
|
|
21213
21373
|
iconClassName = props.iconClassName,
|
|
21214
21374
|
testid = props.testid,
|
|
21215
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21375
|
+
otherProps = _objectWithoutProperties(props, _excluded$5O);
|
|
21216
21376
|
return /*#__PURE__*/React.createElement("span", {
|
|
21217
21377
|
role: "img",
|
|
21218
21378
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21219
21379
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21220
|
-
children: loadingCircleStyle$
|
|
21380
|
+
children: loadingCircleStyle$5O
|
|
21221
21381
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21222
21382
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21223
21383
|
width: size,
|
|
@@ -21256,8 +21416,8 @@ EventSm.defaultProps = {
|
|
|
21256
21416
|
size: '1em'
|
|
21257
21417
|
};
|
|
21258
21418
|
|
|
21259
|
-
var _excluded$
|
|
21260
|
-
var loadingCircleStyle$
|
|
21419
|
+
var _excluded$5P = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21420
|
+
var loadingCircleStyle$5P = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21261
21421
|
var EPropertySm = function EPropertySm(props) {
|
|
21262
21422
|
var color = props.color,
|
|
21263
21423
|
size = props.size,
|
|
@@ -21266,12 +21426,12 @@ var EPropertySm = function EPropertySm(props) {
|
|
|
21266
21426
|
className = props.className,
|
|
21267
21427
|
iconClassName = props.iconClassName,
|
|
21268
21428
|
testid = props.testid,
|
|
21269
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21429
|
+
otherProps = _objectWithoutProperties(props, _excluded$5P);
|
|
21270
21430
|
return /*#__PURE__*/React.createElement("span", {
|
|
21271
21431
|
role: "img",
|
|
21272
21432
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21273
21433
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21274
|
-
children: loadingCircleStyle$
|
|
21434
|
+
children: loadingCircleStyle$5P
|
|
21275
21435
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21276
21436
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21277
21437
|
width: size,
|
|
@@ -21310,8 +21470,8 @@ EPropertySm.defaultProps = {
|
|
|
21310
21470
|
size: '1em'
|
|
21311
21471
|
};
|
|
21312
21472
|
|
|
21313
|
-
var _excluded$
|
|
21314
|
-
var loadingCircleStyle$
|
|
21473
|
+
var _excluded$5Q = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21474
|
+
var loadingCircleStyle$5Q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21315
21475
|
var IndicatorSm = function IndicatorSm(props) {
|
|
21316
21476
|
var color = props.color,
|
|
21317
21477
|
size = props.size,
|
|
@@ -21320,12 +21480,12 @@ var IndicatorSm = function IndicatorSm(props) {
|
|
|
21320
21480
|
className = props.className,
|
|
21321
21481
|
iconClassName = props.iconClassName,
|
|
21322
21482
|
testid = props.testid,
|
|
21323
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21483
|
+
otherProps = _objectWithoutProperties(props, _excluded$5Q);
|
|
21324
21484
|
return /*#__PURE__*/React.createElement("span", {
|
|
21325
21485
|
role: "img",
|
|
21326
21486
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21327
21487
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21328
|
-
children: loadingCircleStyle$
|
|
21488
|
+
children: loadingCircleStyle$5Q
|
|
21329
21489
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21330
21490
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21331
21491
|
width: size,
|
|
@@ -21366,8 +21526,8 @@ IndicatorSm.defaultProps = {
|
|
|
21366
21526
|
size: '1em'
|
|
21367
21527
|
};
|
|
21368
21528
|
|
|
21369
|
-
var _excluded$
|
|
21370
|
-
var loadingCircleStyle$
|
|
21529
|
+
var _excluded$5R = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21530
|
+
var loadingCircleStyle$5R = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21371
21531
|
var UPropertySm = function UPropertySm(props) {
|
|
21372
21532
|
var color = props.color,
|
|
21373
21533
|
size = props.size,
|
|
@@ -21376,12 +21536,12 @@ var UPropertySm = function UPropertySm(props) {
|
|
|
21376
21536
|
className = props.className,
|
|
21377
21537
|
iconClassName = props.iconClassName,
|
|
21378
21538
|
testid = props.testid,
|
|
21379
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21539
|
+
otherProps = _objectWithoutProperties(props, _excluded$5R);
|
|
21380
21540
|
return /*#__PURE__*/React.createElement("span", {
|
|
21381
21541
|
role: "img",
|
|
21382
21542
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21383
21543
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21384
|
-
children: loadingCircleStyle$
|
|
21544
|
+
children: loadingCircleStyle$5R
|
|
21385
21545
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21386
21546
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21387
21547
|
width: size,
|
|
@@ -21424,8 +21584,8 @@ UPropertySm.defaultProps = {
|
|
|
21424
21584
|
size: '1em'
|
|
21425
21585
|
};
|
|
21426
21586
|
|
|
21427
|
-
var _excluded$
|
|
21428
|
-
var loadingCircleStyle$
|
|
21587
|
+
var _excluded$5S = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21588
|
+
var loadingCircleStyle$5S = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21429
21589
|
var UGroupSm = function UGroupSm(props) {
|
|
21430
21590
|
var color = props.color,
|
|
21431
21591
|
size = props.size,
|
|
@@ -21434,12 +21594,12 @@ var UGroupSm = function UGroupSm(props) {
|
|
|
21434
21594
|
className = props.className,
|
|
21435
21595
|
iconClassName = props.iconClassName,
|
|
21436
21596
|
testid = props.testid,
|
|
21437
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21597
|
+
otherProps = _objectWithoutProperties(props, _excluded$5S);
|
|
21438
21598
|
return /*#__PURE__*/React.createElement("span", {
|
|
21439
21599
|
role: "img",
|
|
21440
21600
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21441
21601
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21442
|
-
children: loadingCircleStyle$
|
|
21602
|
+
children: loadingCircleStyle$5S
|
|
21443
21603
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21444
21604
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21445
21605
|
width: size,
|
|
@@ -21490,8 +21650,8 @@ UGroupSm.defaultProps = {
|
|
|
21490
21650
|
size: '1em'
|
|
21491
21651
|
};
|
|
21492
21652
|
|
|
21493
|
-
var _excluded$
|
|
21494
|
-
var loadingCircleStyle$
|
|
21653
|
+
var _excluded$5T = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21654
|
+
var loadingCircleStyle$5T = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21495
21655
|
var UTagSm = function UTagSm(props) {
|
|
21496
21656
|
var color = props.color,
|
|
21497
21657
|
size = props.size,
|
|
@@ -21500,12 +21660,12 @@ var UTagSm = function UTagSm(props) {
|
|
|
21500
21660
|
className = props.className,
|
|
21501
21661
|
iconClassName = props.iconClassName,
|
|
21502
21662
|
testid = props.testid,
|
|
21503
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21663
|
+
otherProps = _objectWithoutProperties(props, _excluded$5T);
|
|
21504
21664
|
return /*#__PURE__*/React.createElement("span", {
|
|
21505
21665
|
role: "img",
|
|
21506
21666
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21507
21667
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21508
|
-
children: loadingCircleStyle$
|
|
21668
|
+
children: loadingCircleStyle$5T
|
|
21509
21669
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21510
21670
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21511
21671
|
width: size,
|
|
@@ -21546,8 +21706,8 @@ UTagSm.defaultProps = {
|
|
|
21546
21706
|
size: '1em'
|
|
21547
21707
|
};
|
|
21548
21708
|
|
|
21549
|
-
var _excluded$
|
|
21550
|
-
var loadingCircleStyle$
|
|
21709
|
+
var _excluded$5U = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21710
|
+
var loadingCircleStyle$5U = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21551
21711
|
var AllGroupSm = function AllGroupSm(props) {
|
|
21552
21712
|
var color = props.color,
|
|
21553
21713
|
size = props.size,
|
|
@@ -21556,12 +21716,12 @@ var AllGroupSm = function AllGroupSm(props) {
|
|
|
21556
21716
|
className = props.className,
|
|
21557
21717
|
iconClassName = props.iconClassName,
|
|
21558
21718
|
testid = props.testid,
|
|
21559
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21719
|
+
otherProps = _objectWithoutProperties(props, _excluded$5U);
|
|
21560
21720
|
return /*#__PURE__*/React.createElement("span", {
|
|
21561
21721
|
role: "img",
|
|
21562
21722
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21563
21723
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21564
|
-
children: loadingCircleStyle$
|
|
21724
|
+
children: loadingCircleStyle$5U
|
|
21565
21725
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21566
21726
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21567
21727
|
width: size,
|
|
@@ -21604,8 +21764,8 @@ AllGroupSm.defaultProps = {
|
|
|
21604
21764
|
size: '1em'
|
|
21605
21765
|
};
|
|
21606
21766
|
|
|
21607
|
-
var _excluded$
|
|
21608
|
-
var loadingCircleStyle$
|
|
21767
|
+
var _excluded$5V = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21768
|
+
var loadingCircleStyle$5V = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21609
21769
|
var CalendarSm = function CalendarSm(props) {
|
|
21610
21770
|
var color = props.color,
|
|
21611
21771
|
size = props.size,
|
|
@@ -21614,12 +21774,12 @@ var CalendarSm = function CalendarSm(props) {
|
|
|
21614
21774
|
className = props.className,
|
|
21615
21775
|
iconClassName = props.iconClassName,
|
|
21616
21776
|
testid = props.testid,
|
|
21617
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21777
|
+
otherProps = _objectWithoutProperties(props, _excluded$5V);
|
|
21618
21778
|
return /*#__PURE__*/React.createElement("span", {
|
|
21619
21779
|
role: "img",
|
|
21620
21780
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21621
21781
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21622
|
-
children: loadingCircleStyle$
|
|
21782
|
+
children: loadingCircleStyle$5V
|
|
21623
21783
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21624
21784
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21625
21785
|
width: size,
|
|
@@ -21656,8 +21816,8 @@ CalendarSm.defaultProps = {
|
|
|
21656
21816
|
size: '1em'
|
|
21657
21817
|
};
|
|
21658
21818
|
|
|
21659
|
-
var _excluded$
|
|
21660
|
-
var loadingCircleStyle$
|
|
21819
|
+
var _excluded$5W = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21820
|
+
var loadingCircleStyle$5W = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21661
21821
|
var GroupAddSm = function GroupAddSm(props) {
|
|
21662
21822
|
var color = props.color,
|
|
21663
21823
|
size = props.size,
|
|
@@ -21666,12 +21826,12 @@ var GroupAddSm = function GroupAddSm(props) {
|
|
|
21666
21826
|
className = props.className,
|
|
21667
21827
|
iconClassName = props.iconClassName,
|
|
21668
21828
|
testid = props.testid,
|
|
21669
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21829
|
+
otherProps = _objectWithoutProperties(props, _excluded$5W);
|
|
21670
21830
|
return /*#__PURE__*/React.createElement("span", {
|
|
21671
21831
|
role: "img",
|
|
21672
21832
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21673
21833
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21674
|
-
children: loadingCircleStyle$
|
|
21834
|
+
children: loadingCircleStyle$5W
|
|
21675
21835
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21676
21836
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21677
21837
|
width: size,
|
|
@@ -21714,8 +21874,8 @@ GroupAddSm.defaultProps = {
|
|
|
21714
21874
|
size: '1em'
|
|
21715
21875
|
};
|
|
21716
21876
|
|
|
21717
|
-
var _excluded$
|
|
21718
|
-
var loadingCircleStyle$
|
|
21877
|
+
var _excluded$5X = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21878
|
+
var loadingCircleStyle$5X = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21719
21879
|
var BooleanSm = function BooleanSm(props) {
|
|
21720
21880
|
var color = props.color,
|
|
21721
21881
|
size = props.size,
|
|
@@ -21724,12 +21884,12 @@ var BooleanSm = function BooleanSm(props) {
|
|
|
21724
21884
|
className = props.className,
|
|
21725
21885
|
iconClassName = props.iconClassName,
|
|
21726
21886
|
testid = props.testid,
|
|
21727
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21887
|
+
otherProps = _objectWithoutProperties(props, _excluded$5X);
|
|
21728
21888
|
return /*#__PURE__*/React.createElement("span", {
|
|
21729
21889
|
role: "img",
|
|
21730
21890
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21731
21891
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21732
|
-
children: loadingCircleStyle$
|
|
21892
|
+
children: loadingCircleStyle$5X
|
|
21733
21893
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21734
21894
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21735
21895
|
width: size,
|
|
@@ -21768,8 +21928,8 @@ BooleanSm.defaultProps = {
|
|
|
21768
21928
|
size: '1em'
|
|
21769
21929
|
};
|
|
21770
21930
|
|
|
21771
|
-
var _excluded$
|
|
21772
|
-
var loadingCircleStyle$
|
|
21931
|
+
var _excluded$5Y = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21932
|
+
var loadingCircleStyle$5Y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21773
21933
|
var ListSm = function ListSm(props) {
|
|
21774
21934
|
var color = props.color,
|
|
21775
21935
|
size = props.size,
|
|
@@ -21778,12 +21938,12 @@ var ListSm = function ListSm(props) {
|
|
|
21778
21938
|
className = props.className,
|
|
21779
21939
|
iconClassName = props.iconClassName,
|
|
21780
21940
|
testid = props.testid,
|
|
21781
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
21941
|
+
otherProps = _objectWithoutProperties(props, _excluded$5Y);
|
|
21782
21942
|
return /*#__PURE__*/React.createElement("span", {
|
|
21783
21943
|
role: "img",
|
|
21784
21944
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21785
21945
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21786
|
-
children: loadingCircleStyle$
|
|
21946
|
+
children: loadingCircleStyle$5Y
|
|
21787
21947
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21788
21948
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21789
21949
|
width: size,
|
|
@@ -21830,8 +21990,8 @@ ListSm.defaultProps = {
|
|
|
21830
21990
|
size: '1em'
|
|
21831
21991
|
};
|
|
21832
21992
|
|
|
21833
|
-
var _excluded$
|
|
21834
|
-
var loadingCircleStyle$
|
|
21993
|
+
var _excluded$5Z = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
21994
|
+
var loadingCircleStyle$5Z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21835
21995
|
var ArrayRowsSm = function ArrayRowsSm(props) {
|
|
21836
21996
|
var color = props.color,
|
|
21837
21997
|
size = props.size,
|
|
@@ -21840,12 +22000,12 @@ var ArrayRowsSm = function ArrayRowsSm(props) {
|
|
|
21840
22000
|
className = props.className,
|
|
21841
22001
|
iconClassName = props.iconClassName,
|
|
21842
22002
|
testid = props.testid,
|
|
21843
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22003
|
+
otherProps = _objectWithoutProperties(props, _excluded$5Z);
|
|
21844
22004
|
return /*#__PURE__*/React.createElement("span", {
|
|
21845
22005
|
role: "img",
|
|
21846
22006
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21847
22007
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21848
|
-
children: loadingCircleStyle$
|
|
22008
|
+
children: loadingCircleStyle$5Z
|
|
21849
22009
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21850
22010
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21851
22011
|
width: size,
|
|
@@ -21884,8 +22044,8 @@ ArrayRowsSm.defaultProps = {
|
|
|
21884
22044
|
size: '1em'
|
|
21885
22045
|
};
|
|
21886
22046
|
|
|
21887
|
-
var _excluded$
|
|
21888
|
-
var loadingCircleStyle$
|
|
22047
|
+
var _excluded$5_ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22048
|
+
var loadingCircleStyle$5_ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21889
22049
|
var RowsSm = function RowsSm(props) {
|
|
21890
22050
|
var color = props.color,
|
|
21891
22051
|
size = props.size,
|
|
@@ -21894,12 +22054,12 @@ var RowsSm = function RowsSm(props) {
|
|
|
21894
22054
|
className = props.className,
|
|
21895
22055
|
iconClassName = props.iconClassName,
|
|
21896
22056
|
testid = props.testid,
|
|
21897
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22057
|
+
otherProps = _objectWithoutProperties(props, _excluded$5_);
|
|
21898
22058
|
return /*#__PURE__*/React.createElement("span", {
|
|
21899
22059
|
role: "img",
|
|
21900
22060
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21901
22061
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21902
|
-
children: loadingCircleStyle$
|
|
22062
|
+
children: loadingCircleStyle$5_
|
|
21903
22063
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21904
22064
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21905
22065
|
width: size,
|
|
@@ -21946,8 +22106,8 @@ RowsSm.defaultProps = {
|
|
|
21946
22106
|
size: '1em'
|
|
21947
22107
|
};
|
|
21948
22108
|
|
|
21949
|
-
var _excluded$
|
|
21950
|
-
var loadingCircleStyle$
|
|
22109
|
+
var _excluded$5$ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22110
|
+
var loadingCircleStyle$5$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21951
22111
|
var VPropertySm = function VPropertySm(props) {
|
|
21952
22112
|
var color = props.color,
|
|
21953
22113
|
size = props.size,
|
|
@@ -21956,12 +22116,12 @@ var VPropertySm = function VPropertySm(props) {
|
|
|
21956
22116
|
className = props.className,
|
|
21957
22117
|
iconClassName = props.iconClassName,
|
|
21958
22118
|
testid = props.testid,
|
|
21959
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22119
|
+
otherProps = _objectWithoutProperties(props, _excluded$5$);
|
|
21960
22120
|
return /*#__PURE__*/React.createElement("span", {
|
|
21961
22121
|
role: "img",
|
|
21962
22122
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
21963
22123
|
}, /*#__PURE__*/React.createElement("style", {
|
|
21964
|
-
children: loadingCircleStyle$
|
|
22124
|
+
children: loadingCircleStyle$5$
|
|
21965
22125
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
21966
22126
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21967
22127
|
width: size,
|
|
@@ -22004,8 +22164,8 @@ VPropertySm.defaultProps = {
|
|
|
22004
22164
|
size: '1em'
|
|
22005
22165
|
};
|
|
22006
22166
|
|
|
22007
|
-
var _excluded$
|
|
22008
|
-
var loadingCircleStyle$
|
|
22167
|
+
var _excluded$60 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22168
|
+
var loadingCircleStyle$60 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22009
22169
|
var StringSm = function StringSm(props) {
|
|
22010
22170
|
var color = props.color,
|
|
22011
22171
|
size = props.size,
|
|
@@ -22014,12 +22174,12 @@ var StringSm = function StringSm(props) {
|
|
|
22014
22174
|
className = props.className,
|
|
22015
22175
|
iconClassName = props.iconClassName,
|
|
22016
22176
|
testid = props.testid,
|
|
22017
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22177
|
+
otherProps = _objectWithoutProperties(props, _excluded$60);
|
|
22018
22178
|
return /*#__PURE__*/React.createElement("span", {
|
|
22019
22179
|
role: "img",
|
|
22020
22180
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22021
22181
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22022
|
-
children: loadingCircleStyle$
|
|
22182
|
+
children: loadingCircleStyle$60
|
|
22023
22183
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22024
22184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22025
22185
|
width: size,
|
|
@@ -22058,8 +22218,8 @@ StringSm.defaultProps = {
|
|
|
22058
22218
|
size: '1em'
|
|
22059
22219
|
};
|
|
22060
22220
|
|
|
22061
|
-
var _excluded$
|
|
22062
|
-
var loadingCircleStyle$
|
|
22221
|
+
var _excluded$61 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22222
|
+
var loadingCircleStyle$61 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22063
22223
|
var NumSm = function NumSm(props) {
|
|
22064
22224
|
var color = props.color,
|
|
22065
22225
|
size = props.size,
|
|
@@ -22068,12 +22228,12 @@ var NumSm = function NumSm(props) {
|
|
|
22068
22228
|
className = props.className,
|
|
22069
22229
|
iconClassName = props.iconClassName,
|
|
22070
22230
|
testid = props.testid,
|
|
22071
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22231
|
+
otherProps = _objectWithoutProperties(props, _excluded$61);
|
|
22072
22232
|
return /*#__PURE__*/React.createElement("span", {
|
|
22073
22233
|
role: "img",
|
|
22074
22234
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22075
22235
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22076
|
-
children: loadingCircleStyle$
|
|
22236
|
+
children: loadingCircleStyle$61
|
|
22077
22237
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22078
22238
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22079
22239
|
width: size,
|
|
@@ -22112,8 +22272,8 @@ NumSm.defaultProps = {
|
|
|
22112
22272
|
size: '1em'
|
|
22113
22273
|
};
|
|
22114
22274
|
|
|
22115
|
-
var _excluded$
|
|
22116
|
-
var loadingCircleStyle$
|
|
22275
|
+
var _excluded$62 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22276
|
+
var loadingCircleStyle$62 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22117
22277
|
var TimeSm = function TimeSm(props) {
|
|
22118
22278
|
var color = props.color,
|
|
22119
22279
|
size = props.size,
|
|
@@ -22122,12 +22282,12 @@ var TimeSm = function TimeSm(props) {
|
|
|
22122
22282
|
className = props.className,
|
|
22123
22283
|
iconClassName = props.iconClassName,
|
|
22124
22284
|
testid = props.testid,
|
|
22125
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22285
|
+
otherProps = _objectWithoutProperties(props, _excluded$62);
|
|
22126
22286
|
return /*#__PURE__*/React.createElement("span", {
|
|
22127
22287
|
role: "img",
|
|
22128
22288
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22129
22289
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22130
|
-
children: loadingCircleStyle$
|
|
22290
|
+
children: loadingCircleStyle$62
|
|
22131
22291
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22132
22292
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22133
22293
|
width: size,
|
|
@@ -22166,8 +22326,8 @@ TimeSm.defaultProps = {
|
|
|
22166
22326
|
size: '1em'
|
|
22167
22327
|
};
|
|
22168
22328
|
|
|
22169
|
-
var _excluded$
|
|
22170
|
-
var loadingCircleStyle$
|
|
22329
|
+
var _excluded$63 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22330
|
+
var loadingCircleStyle$63 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22171
22331
|
var ArrowLeft = function ArrowLeft(props) {
|
|
22172
22332
|
var color = props.color,
|
|
22173
22333
|
size = props.size,
|
|
@@ -22176,12 +22336,12 @@ var ArrowLeft = function ArrowLeft(props) {
|
|
|
22176
22336
|
className = props.className,
|
|
22177
22337
|
iconClassName = props.iconClassName,
|
|
22178
22338
|
testid = props.testid,
|
|
22179
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22339
|
+
otherProps = _objectWithoutProperties(props, _excluded$63);
|
|
22180
22340
|
return /*#__PURE__*/React.createElement("span", {
|
|
22181
22341
|
role: "img",
|
|
22182
22342
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22183
22343
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22184
|
-
children: loadingCircleStyle$
|
|
22344
|
+
children: loadingCircleStyle$63
|
|
22185
22345
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22186
22346
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22187
22347
|
width: size,
|
|
@@ -22218,8 +22378,8 @@ ArrowLeft.defaultProps = {
|
|
|
22218
22378
|
size: '1em'
|
|
22219
22379
|
};
|
|
22220
22380
|
|
|
22221
|
-
var _excluded$
|
|
22222
|
-
var loadingCircleStyle$
|
|
22381
|
+
var _excluded$64 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22382
|
+
var loadingCircleStyle$64 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22223
22383
|
var ArrowRight = function ArrowRight(props) {
|
|
22224
22384
|
var color = props.color,
|
|
22225
22385
|
size = props.size,
|
|
@@ -22228,12 +22388,12 @@ var ArrowRight = function ArrowRight(props) {
|
|
|
22228
22388
|
className = props.className,
|
|
22229
22389
|
iconClassName = props.iconClassName,
|
|
22230
22390
|
testid = props.testid,
|
|
22231
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22391
|
+
otherProps = _objectWithoutProperties(props, _excluded$64);
|
|
22232
22392
|
return /*#__PURE__*/React.createElement("span", {
|
|
22233
22393
|
role: "img",
|
|
22234
22394
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22235
22395
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22236
|
-
children: loadingCircleStyle$
|
|
22396
|
+
children: loadingCircleStyle$64
|
|
22237
22397
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22238
22398
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22239
22399
|
width: size,
|
|
@@ -22270,8 +22430,8 @@ ArrowRight.defaultProps = {
|
|
|
22270
22430
|
size: '1em'
|
|
22271
22431
|
};
|
|
22272
22432
|
|
|
22273
|
-
var _excluded$
|
|
22274
|
-
var loadingCircleStyle$
|
|
22433
|
+
var _excluded$65 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22434
|
+
var loadingCircleStyle$65 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22275
22435
|
var ArrowUp = function ArrowUp(props) {
|
|
22276
22436
|
var color = props.color,
|
|
22277
22437
|
size = props.size,
|
|
@@ -22280,12 +22440,12 @@ var ArrowUp = function ArrowUp(props) {
|
|
|
22280
22440
|
className = props.className,
|
|
22281
22441
|
iconClassName = props.iconClassName,
|
|
22282
22442
|
testid = props.testid,
|
|
22283
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22443
|
+
otherProps = _objectWithoutProperties(props, _excluded$65);
|
|
22284
22444
|
return /*#__PURE__*/React.createElement("span", {
|
|
22285
22445
|
role: "img",
|
|
22286
22446
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22287
22447
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22288
|
-
children: loadingCircleStyle$
|
|
22448
|
+
children: loadingCircleStyle$65
|
|
22289
22449
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22290
22450
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22291
22451
|
width: size,
|
|
@@ -22322,8 +22482,8 @@ ArrowUp.defaultProps = {
|
|
|
22322
22482
|
size: '1em'
|
|
22323
22483
|
};
|
|
22324
22484
|
|
|
22325
|
-
var _excluded$
|
|
22326
|
-
var loadingCircleStyle$
|
|
22485
|
+
var _excluded$66 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22486
|
+
var loadingCircleStyle$66 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22327
22487
|
var ArrowDown = function ArrowDown(props) {
|
|
22328
22488
|
var color = props.color,
|
|
22329
22489
|
size = props.size,
|
|
@@ -22332,12 +22492,12 @@ var ArrowDown = function ArrowDown(props) {
|
|
|
22332
22492
|
className = props.className,
|
|
22333
22493
|
iconClassName = props.iconClassName,
|
|
22334
22494
|
testid = props.testid,
|
|
22335
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22495
|
+
otherProps = _objectWithoutProperties(props, _excluded$66);
|
|
22336
22496
|
return /*#__PURE__*/React.createElement("span", {
|
|
22337
22497
|
role: "img",
|
|
22338
22498
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22339
22499
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22340
|
-
children: loadingCircleStyle$
|
|
22500
|
+
children: loadingCircleStyle$66
|
|
22341
22501
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22342
22502
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22343
22503
|
width: size,
|
|
@@ -22374,8 +22534,8 @@ ArrowDown.defaultProps = {
|
|
|
22374
22534
|
size: '1em'
|
|
22375
22535
|
};
|
|
22376
22536
|
|
|
22377
|
-
var _excluded$
|
|
22378
|
-
var loadingCircleStyle$
|
|
22537
|
+
var _excluded$67 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22538
|
+
var loadingCircleStyle$67 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22379
22539
|
var ArrowLeft2 = function ArrowLeft2(props) {
|
|
22380
22540
|
var color = props.color,
|
|
22381
22541
|
size = props.size,
|
|
@@ -22384,12 +22544,12 @@ var ArrowLeft2 = function ArrowLeft2(props) {
|
|
|
22384
22544
|
className = props.className,
|
|
22385
22545
|
iconClassName = props.iconClassName,
|
|
22386
22546
|
testid = props.testid,
|
|
22387
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22547
|
+
otherProps = _objectWithoutProperties(props, _excluded$67);
|
|
22388
22548
|
return /*#__PURE__*/React.createElement("span", {
|
|
22389
22549
|
role: "img",
|
|
22390
22550
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22391
22551
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22392
|
-
children: loadingCircleStyle$
|
|
22552
|
+
children: loadingCircleStyle$67
|
|
22393
22553
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22394
22554
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22395
22555
|
width: size,
|
|
@@ -22426,8 +22586,8 @@ ArrowLeft2.defaultProps = {
|
|
|
22426
22586
|
size: '1em'
|
|
22427
22587
|
};
|
|
22428
22588
|
|
|
22429
|
-
var _excluded$
|
|
22430
|
-
var loadingCircleStyle$
|
|
22589
|
+
var _excluded$68 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22590
|
+
var loadingCircleStyle$68 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22431
22591
|
var ArrowRight2 = function ArrowRight2(props) {
|
|
22432
22592
|
var color = props.color,
|
|
22433
22593
|
size = props.size,
|
|
@@ -22436,12 +22596,12 @@ var ArrowRight2 = function ArrowRight2(props) {
|
|
|
22436
22596
|
className = props.className,
|
|
22437
22597
|
iconClassName = props.iconClassName,
|
|
22438
22598
|
testid = props.testid,
|
|
22439
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22599
|
+
otherProps = _objectWithoutProperties(props, _excluded$68);
|
|
22440
22600
|
return /*#__PURE__*/React.createElement("span", {
|
|
22441
22601
|
role: "img",
|
|
22442
22602
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22443
22603
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22444
|
-
children: loadingCircleStyle$
|
|
22604
|
+
children: loadingCircleStyle$68
|
|
22445
22605
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22446
22606
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22447
22607
|
width: size,
|
|
@@ -22478,8 +22638,8 @@ ArrowRight2.defaultProps = {
|
|
|
22478
22638
|
size: '1em'
|
|
22479
22639
|
};
|
|
22480
22640
|
|
|
22481
|
-
var _excluded$
|
|
22482
|
-
var loadingCircleStyle$
|
|
22641
|
+
var _excluded$69 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22642
|
+
var loadingCircleStyle$69 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22483
22643
|
var ArrowUp2 = function ArrowUp2(props) {
|
|
22484
22644
|
var color = props.color,
|
|
22485
22645
|
size = props.size,
|
|
@@ -22488,12 +22648,12 @@ var ArrowUp2 = function ArrowUp2(props) {
|
|
|
22488
22648
|
className = props.className,
|
|
22489
22649
|
iconClassName = props.iconClassName,
|
|
22490
22650
|
testid = props.testid,
|
|
22491
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22651
|
+
otherProps = _objectWithoutProperties(props, _excluded$69);
|
|
22492
22652
|
return /*#__PURE__*/React.createElement("span", {
|
|
22493
22653
|
role: "img",
|
|
22494
22654
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22495
22655
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22496
|
-
children: loadingCircleStyle$
|
|
22656
|
+
children: loadingCircleStyle$69
|
|
22497
22657
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22498
22658
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22499
22659
|
width: size,
|
|
@@ -22530,8 +22690,8 @@ ArrowUp2.defaultProps = {
|
|
|
22530
22690
|
size: '1em'
|
|
22531
22691
|
};
|
|
22532
22692
|
|
|
22533
|
-
var _excluded$
|
|
22534
|
-
var loadingCircleStyle$
|
|
22693
|
+
var _excluded$6a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22694
|
+
var loadingCircleStyle$6a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22535
22695
|
var ArrowDown2 = function ArrowDown2(props) {
|
|
22536
22696
|
var color = props.color,
|
|
22537
22697
|
size = props.size,
|
|
@@ -22540,12 +22700,12 @@ var ArrowDown2 = function ArrowDown2(props) {
|
|
|
22540
22700
|
className = props.className,
|
|
22541
22701
|
iconClassName = props.iconClassName,
|
|
22542
22702
|
testid = props.testid,
|
|
22543
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22703
|
+
otherProps = _objectWithoutProperties(props, _excluded$6a);
|
|
22544
22704
|
return /*#__PURE__*/React.createElement("span", {
|
|
22545
22705
|
role: "img",
|
|
22546
22706
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22547
22707
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22548
|
-
children: loadingCircleStyle$
|
|
22708
|
+
children: loadingCircleStyle$6a
|
|
22549
22709
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22550
22710
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22551
22711
|
width: size,
|
|
@@ -22582,8 +22742,8 @@ ArrowDown2.defaultProps = {
|
|
|
22582
22742
|
size: '1em'
|
|
22583
22743
|
};
|
|
22584
22744
|
|
|
22585
|
-
var _excluded$
|
|
22586
|
-
var loadingCircleStyle$
|
|
22745
|
+
var _excluded$6b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22746
|
+
var loadingCircleStyle$6b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22587
22747
|
var TriLeft = function TriLeft(props) {
|
|
22588
22748
|
var color = props.color,
|
|
22589
22749
|
size = props.size,
|
|
@@ -22592,12 +22752,12 @@ var TriLeft = function TriLeft(props) {
|
|
|
22592
22752
|
className = props.className,
|
|
22593
22753
|
iconClassName = props.iconClassName,
|
|
22594
22754
|
testid = props.testid,
|
|
22595
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22755
|
+
otherProps = _objectWithoutProperties(props, _excluded$6b);
|
|
22596
22756
|
return /*#__PURE__*/React.createElement("span", {
|
|
22597
22757
|
role: "img",
|
|
22598
22758
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22599
22759
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22600
|
-
children: loadingCircleStyle$
|
|
22760
|
+
children: loadingCircleStyle$6b
|
|
22601
22761
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22602
22762
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22603
22763
|
width: size,
|
|
@@ -22634,8 +22794,8 @@ TriLeft.defaultProps = {
|
|
|
22634
22794
|
size: '1em'
|
|
22635
22795
|
};
|
|
22636
22796
|
|
|
22637
|
-
var _excluded$
|
|
22638
|
-
var loadingCircleStyle$
|
|
22797
|
+
var _excluded$6c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22798
|
+
var loadingCircleStyle$6c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22639
22799
|
var TriRight = function TriRight(props) {
|
|
22640
22800
|
var color = props.color,
|
|
22641
22801
|
size = props.size,
|
|
@@ -22644,12 +22804,12 @@ var TriRight = function TriRight(props) {
|
|
|
22644
22804
|
className = props.className,
|
|
22645
22805
|
iconClassName = props.iconClassName,
|
|
22646
22806
|
testid = props.testid,
|
|
22647
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22807
|
+
otherProps = _objectWithoutProperties(props, _excluded$6c);
|
|
22648
22808
|
return /*#__PURE__*/React.createElement("span", {
|
|
22649
22809
|
role: "img",
|
|
22650
22810
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22651
22811
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22652
|
-
children: loadingCircleStyle$
|
|
22812
|
+
children: loadingCircleStyle$6c
|
|
22653
22813
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22654
22814
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22655
22815
|
width: size,
|
|
@@ -22686,8 +22846,8 @@ TriRight.defaultProps = {
|
|
|
22686
22846
|
size: '1em'
|
|
22687
22847
|
};
|
|
22688
22848
|
|
|
22689
|
-
var _excluded$
|
|
22690
|
-
var loadingCircleStyle$
|
|
22849
|
+
var _excluded$6d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22850
|
+
var loadingCircleStyle$6d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22691
22851
|
var TriUp = function TriUp(props) {
|
|
22692
22852
|
var color = props.color,
|
|
22693
22853
|
size = props.size,
|
|
@@ -22696,12 +22856,12 @@ var TriUp = function TriUp(props) {
|
|
|
22696
22856
|
className = props.className,
|
|
22697
22857
|
iconClassName = props.iconClassName,
|
|
22698
22858
|
testid = props.testid,
|
|
22699
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22859
|
+
otherProps = _objectWithoutProperties(props, _excluded$6d);
|
|
22700
22860
|
return /*#__PURE__*/React.createElement("span", {
|
|
22701
22861
|
role: "img",
|
|
22702
22862
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22703
22863
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22704
|
-
children: loadingCircleStyle$
|
|
22864
|
+
children: loadingCircleStyle$6d
|
|
22705
22865
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22706
22866
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22707
22867
|
width: size,
|
|
@@ -22738,8 +22898,8 @@ TriUp.defaultProps = {
|
|
|
22738
22898
|
size: '1em'
|
|
22739
22899
|
};
|
|
22740
22900
|
|
|
22741
|
-
var _excluded$
|
|
22742
|
-
var loadingCircleStyle$
|
|
22901
|
+
var _excluded$6e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22902
|
+
var loadingCircleStyle$6e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22743
22903
|
var TriDown = function TriDown(props) {
|
|
22744
22904
|
var color = props.color,
|
|
22745
22905
|
size = props.size,
|
|
@@ -22748,12 +22908,12 @@ var TriDown = function TriDown(props) {
|
|
|
22748
22908
|
className = props.className,
|
|
22749
22909
|
iconClassName = props.iconClassName,
|
|
22750
22910
|
testid = props.testid,
|
|
22751
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22911
|
+
otherProps = _objectWithoutProperties(props, _excluded$6e);
|
|
22752
22912
|
return /*#__PURE__*/React.createElement("span", {
|
|
22753
22913
|
role: "img",
|
|
22754
22914
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22755
22915
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22756
|
-
children: loadingCircleStyle$
|
|
22916
|
+
children: loadingCircleStyle$6e
|
|
22757
22917
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22758
22918
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22759
22919
|
width: size,
|
|
@@ -22790,8 +22950,8 @@ TriDown.defaultProps = {
|
|
|
22790
22950
|
size: '1em'
|
|
22791
22951
|
};
|
|
22792
22952
|
|
|
22793
|
-
var _excluded$
|
|
22794
|
-
var loadingCircleStyle$
|
|
22953
|
+
var _excluded$6f = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22954
|
+
var loadingCircleStyle$6f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22795
22955
|
var DArrowL = function DArrowL(props) {
|
|
22796
22956
|
var color = props.color,
|
|
22797
22957
|
size = props.size,
|
|
@@ -22800,12 +22960,12 @@ var DArrowL = function DArrowL(props) {
|
|
|
22800
22960
|
className = props.className,
|
|
22801
22961
|
iconClassName = props.iconClassName,
|
|
22802
22962
|
testid = props.testid,
|
|
22803
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
22963
|
+
otherProps = _objectWithoutProperties(props, _excluded$6f);
|
|
22804
22964
|
return /*#__PURE__*/React.createElement("span", {
|
|
22805
22965
|
role: "img",
|
|
22806
22966
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22807
22967
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22808
|
-
children: loadingCircleStyle$
|
|
22968
|
+
children: loadingCircleStyle$6f
|
|
22809
22969
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22810
22970
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22811
22971
|
width: size,
|
|
@@ -22844,8 +23004,8 @@ DArrowL.defaultProps = {
|
|
|
22844
23004
|
size: '1em'
|
|
22845
23005
|
};
|
|
22846
23006
|
|
|
22847
|
-
var _excluded$
|
|
22848
|
-
var loadingCircleStyle$
|
|
23007
|
+
var _excluded$6g = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23008
|
+
var loadingCircleStyle$6g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22849
23009
|
var DArrowR = function DArrowR(props) {
|
|
22850
23010
|
var color = props.color,
|
|
22851
23011
|
size = props.size,
|
|
@@ -22854,12 +23014,12 @@ var DArrowR = function DArrowR(props) {
|
|
|
22854
23014
|
className = props.className,
|
|
22855
23015
|
iconClassName = props.iconClassName,
|
|
22856
23016
|
testid = props.testid,
|
|
22857
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23017
|
+
otherProps = _objectWithoutProperties(props, _excluded$6g);
|
|
22858
23018
|
return /*#__PURE__*/React.createElement("span", {
|
|
22859
23019
|
role: "img",
|
|
22860
23020
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22861
23021
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22862
|
-
children: loadingCircleStyle$
|
|
23022
|
+
children: loadingCircleStyle$6g
|
|
22863
23023
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22864
23024
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22865
23025
|
width: size,
|
|
@@ -22898,8 +23058,8 @@ DArrowR.defaultProps = {
|
|
|
22898
23058
|
size: '1em'
|
|
22899
23059
|
};
|
|
22900
23060
|
|
|
22901
|
-
var _excluded$
|
|
22902
|
-
var loadingCircleStyle$
|
|
23061
|
+
var _excluded$6h = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23062
|
+
var loadingCircleStyle$6h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22903
23063
|
var DArrowT = function DArrowT(props) {
|
|
22904
23064
|
var color = props.color,
|
|
22905
23065
|
size = props.size,
|
|
@@ -22908,12 +23068,12 @@ var DArrowT = function DArrowT(props) {
|
|
|
22908
23068
|
className = props.className,
|
|
22909
23069
|
iconClassName = props.iconClassName,
|
|
22910
23070
|
testid = props.testid,
|
|
22911
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23071
|
+
otherProps = _objectWithoutProperties(props, _excluded$6h);
|
|
22912
23072
|
return /*#__PURE__*/React.createElement("span", {
|
|
22913
23073
|
role: "img",
|
|
22914
23074
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22915
23075
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22916
|
-
children: loadingCircleStyle$
|
|
23076
|
+
children: loadingCircleStyle$6h
|
|
22917
23077
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22918
23078
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22919
23079
|
width: size,
|
|
@@ -22952,8 +23112,8 @@ DArrowT.defaultProps = {
|
|
|
22952
23112
|
size: '1em'
|
|
22953
23113
|
};
|
|
22954
23114
|
|
|
22955
|
-
var _excluded$
|
|
22956
|
-
var loadingCircleStyle$
|
|
23115
|
+
var _excluded$6i = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23116
|
+
var loadingCircleStyle$6i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22957
23117
|
var DArrowB = function DArrowB(props) {
|
|
22958
23118
|
var color = props.color,
|
|
22959
23119
|
size = props.size,
|
|
@@ -22962,12 +23122,12 @@ var DArrowB = function DArrowB(props) {
|
|
|
22962
23122
|
className = props.className,
|
|
22963
23123
|
iconClassName = props.iconClassName,
|
|
22964
23124
|
testid = props.testid,
|
|
22965
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23125
|
+
otherProps = _objectWithoutProperties(props, _excluded$6i);
|
|
22966
23126
|
return /*#__PURE__*/React.createElement("span", {
|
|
22967
23127
|
role: "img",
|
|
22968
23128
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
22969
23129
|
}, /*#__PURE__*/React.createElement("style", {
|
|
22970
|
-
children: loadingCircleStyle$
|
|
23130
|
+
children: loadingCircleStyle$6i
|
|
22971
23131
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
22972
23132
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22973
23133
|
width: size,
|
|
@@ -23006,8 +23166,8 @@ DArrowB.defaultProps = {
|
|
|
23006
23166
|
size: '1em'
|
|
23007
23167
|
};
|
|
23008
23168
|
|
|
23009
|
-
var _excluded$
|
|
23010
|
-
var loadingCircleStyle$
|
|
23169
|
+
var _excluded$6j = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23170
|
+
var loadingCircleStyle$6j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23011
23171
|
var DropDown = function DropDown(props) {
|
|
23012
23172
|
var color = props.color,
|
|
23013
23173
|
size = props.size,
|
|
@@ -23016,12 +23176,12 @@ var DropDown = function DropDown(props) {
|
|
|
23016
23176
|
className = props.className,
|
|
23017
23177
|
iconClassName = props.iconClassName,
|
|
23018
23178
|
testid = props.testid,
|
|
23019
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23179
|
+
otherProps = _objectWithoutProperties(props, _excluded$6j);
|
|
23020
23180
|
return /*#__PURE__*/React.createElement("span", {
|
|
23021
23181
|
role: "img",
|
|
23022
23182
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23023
23183
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23024
|
-
children: loadingCircleStyle$
|
|
23184
|
+
children: loadingCircleStyle$6j
|
|
23025
23185
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23026
23186
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23027
23187
|
width: size,
|
|
@@ -23058,8 +23218,8 @@ DropDown.defaultProps = {
|
|
|
23058
23218
|
size: '1em'
|
|
23059
23219
|
};
|
|
23060
23220
|
|
|
23061
|
-
var _excluded$
|
|
23062
|
-
var loadingCircleStyle$
|
|
23221
|
+
var _excluded$6k = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23222
|
+
var loadingCircleStyle$6k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23063
23223
|
var DropUp = function DropUp(props) {
|
|
23064
23224
|
var color = props.color,
|
|
23065
23225
|
size = props.size,
|
|
@@ -23068,12 +23228,12 @@ var DropUp = function DropUp(props) {
|
|
|
23068
23228
|
className = props.className,
|
|
23069
23229
|
iconClassName = props.iconClassName,
|
|
23070
23230
|
testid = props.testid,
|
|
23071
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23231
|
+
otherProps = _objectWithoutProperties(props, _excluded$6k);
|
|
23072
23232
|
return /*#__PURE__*/React.createElement("span", {
|
|
23073
23233
|
role: "img",
|
|
23074
23234
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23075
23235
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23076
|
-
children: loadingCircleStyle$
|
|
23236
|
+
children: loadingCircleStyle$6k
|
|
23077
23237
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23078
23238
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23079
23239
|
width: size,
|
|
@@ -23110,8 +23270,8 @@ DropUp.defaultProps = {
|
|
|
23110
23270
|
size: '1em'
|
|
23111
23271
|
};
|
|
23112
23272
|
|
|
23113
|
-
var _excluded$
|
|
23114
|
-
var loadingCircleStyle$
|
|
23273
|
+
var _excluded$6l = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23274
|
+
var loadingCircleStyle$6l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23115
23275
|
var More1 = function More1(props) {
|
|
23116
23276
|
var color = props.color,
|
|
23117
23277
|
size = props.size,
|
|
@@ -23120,12 +23280,12 @@ var More1 = function More1(props) {
|
|
|
23120
23280
|
className = props.className,
|
|
23121
23281
|
iconClassName = props.iconClassName,
|
|
23122
23282
|
testid = props.testid,
|
|
23123
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23283
|
+
otherProps = _objectWithoutProperties(props, _excluded$6l);
|
|
23124
23284
|
return /*#__PURE__*/React.createElement("span", {
|
|
23125
23285
|
role: "img",
|
|
23126
23286
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23127
23287
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23128
|
-
children: loadingCircleStyle$
|
|
23288
|
+
children: loadingCircleStyle$6l
|
|
23129
23289
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23130
23290
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23131
23291
|
width: size,
|
|
@@ -23162,8 +23322,8 @@ More1.defaultProps = {
|
|
|
23162
23322
|
size: '1em'
|
|
23163
23323
|
};
|
|
23164
23324
|
|
|
23165
|
-
var _excluded$
|
|
23166
|
-
var loadingCircleStyle$
|
|
23325
|
+
var _excluded$6m = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23326
|
+
var loadingCircleStyle$6m = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23167
23327
|
var More2 = function More2(props) {
|
|
23168
23328
|
var color = props.color,
|
|
23169
23329
|
size = props.size,
|
|
@@ -23172,12 +23332,12 @@ var More2 = function More2(props) {
|
|
|
23172
23332
|
className = props.className,
|
|
23173
23333
|
iconClassName = props.iconClassName,
|
|
23174
23334
|
testid = props.testid,
|
|
23175
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23335
|
+
otherProps = _objectWithoutProperties(props, _excluded$6m);
|
|
23176
23336
|
return /*#__PURE__*/React.createElement("span", {
|
|
23177
23337
|
role: "img",
|
|
23178
23338
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23179
23339
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23180
|
-
children: loadingCircleStyle$
|
|
23340
|
+
children: loadingCircleStyle$6m
|
|
23181
23341
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23182
23342
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23183
23343
|
width: size,
|
|
@@ -23214,8 +23374,8 @@ More2.defaultProps = {
|
|
|
23214
23374
|
size: '1em'
|
|
23215
23375
|
};
|
|
23216
23376
|
|
|
23217
|
-
var _excluded$
|
|
23218
|
-
var loadingCircleStyle$
|
|
23377
|
+
var _excluded$6n = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23378
|
+
var loadingCircleStyle$6n = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23219
23379
|
var Drag = function Drag(props) {
|
|
23220
23380
|
var color = props.color,
|
|
23221
23381
|
size = props.size,
|
|
@@ -23224,12 +23384,12 @@ var Drag = function Drag(props) {
|
|
|
23224
23384
|
className = props.className,
|
|
23225
23385
|
iconClassName = props.iconClassName,
|
|
23226
23386
|
testid = props.testid,
|
|
23227
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23387
|
+
otherProps = _objectWithoutProperties(props, _excluded$6n);
|
|
23228
23388
|
return /*#__PURE__*/React.createElement("span", {
|
|
23229
23389
|
role: "img",
|
|
23230
23390
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23231
23391
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23232
|
-
children: loadingCircleStyle$
|
|
23392
|
+
children: loadingCircleStyle$6n
|
|
23233
23393
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23234
23394
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23235
23395
|
width: size,
|
|
@@ -23276,8 +23436,8 @@ Drag.defaultProps = {
|
|
|
23276
23436
|
size: '1em'
|
|
23277
23437
|
};
|
|
23278
23438
|
|
|
23279
|
-
var _excluded$
|
|
23280
|
-
var loadingCircleStyle$
|
|
23439
|
+
var _excluded$6o = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23440
|
+
var loadingCircleStyle$6o = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23281
23441
|
var Grid = function Grid(props) {
|
|
23282
23442
|
var color = props.color,
|
|
23283
23443
|
size = props.size,
|
|
@@ -23286,12 +23446,12 @@ var Grid = function Grid(props) {
|
|
|
23286
23446
|
className = props.className,
|
|
23287
23447
|
iconClassName = props.iconClassName,
|
|
23288
23448
|
testid = props.testid,
|
|
23289
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23449
|
+
otherProps = _objectWithoutProperties(props, _excluded$6o);
|
|
23290
23450
|
return /*#__PURE__*/React.createElement("span", {
|
|
23291
23451
|
role: "img",
|
|
23292
23452
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23293
23453
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23294
|
-
children: loadingCircleStyle$
|
|
23454
|
+
children: loadingCircleStyle$6o
|
|
23295
23455
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23296
23456
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23297
23457
|
width: size,
|
|
@@ -23330,8 +23490,8 @@ Grid.defaultProps = {
|
|
|
23330
23490
|
size: '1em'
|
|
23331
23491
|
};
|
|
23332
23492
|
|
|
23333
|
-
var _excluded$
|
|
23334
|
-
var loadingCircleStyle$
|
|
23493
|
+
var _excluded$6p = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23494
|
+
var loadingCircleStyle$6p = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23335
23495
|
var Drag2 = function Drag2(props) {
|
|
23336
23496
|
var color = props.color,
|
|
23337
23497
|
size = props.size,
|
|
@@ -23340,12 +23500,12 @@ var Drag2 = function Drag2(props) {
|
|
|
23340
23500
|
className = props.className,
|
|
23341
23501
|
iconClassName = props.iconClassName,
|
|
23342
23502
|
testid = props.testid,
|
|
23343
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23503
|
+
otherProps = _objectWithoutProperties(props, _excluded$6p);
|
|
23344
23504
|
return /*#__PURE__*/React.createElement("span", {
|
|
23345
23505
|
role: "img",
|
|
23346
23506
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23347
23507
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23348
|
-
children: loadingCircleStyle$
|
|
23508
|
+
children: loadingCircleStyle$6p
|
|
23349
23509
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23350
23510
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23351
23511
|
width: size,
|
|
@@ -23386,8 +23546,8 @@ Drag2.defaultProps = {
|
|
|
23386
23546
|
size: '1em'
|
|
23387
23547
|
};
|
|
23388
23548
|
|
|
23389
|
-
var _excluded$
|
|
23390
|
-
var loadingCircleStyle$
|
|
23549
|
+
var _excluded$6q = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23550
|
+
var loadingCircleStyle$6q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23391
23551
|
var External = function External(props) {
|
|
23392
23552
|
var color = props.color,
|
|
23393
23553
|
size = props.size,
|
|
@@ -23396,12 +23556,12 @@ var External = function External(props) {
|
|
|
23396
23556
|
className = props.className,
|
|
23397
23557
|
iconClassName = props.iconClassName,
|
|
23398
23558
|
testid = props.testid,
|
|
23399
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23559
|
+
otherProps = _objectWithoutProperties(props, _excluded$6q);
|
|
23400
23560
|
return /*#__PURE__*/React.createElement("span", {
|
|
23401
23561
|
role: "img",
|
|
23402
23562
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23403
23563
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23404
|
-
children: loadingCircleStyle$
|
|
23564
|
+
children: loadingCircleStyle$6q
|
|
23405
23565
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23406
23566
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23407
23567
|
width: size,
|
|
@@ -23438,8 +23598,8 @@ External.defaultProps = {
|
|
|
23438
23598
|
size: '1em'
|
|
23439
23599
|
};
|
|
23440
23600
|
|
|
23441
|
-
var _excluded$
|
|
23442
|
-
var loadingCircleStyle$
|
|
23601
|
+
var _excluded$6r = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23602
|
+
var loadingCircleStyle$6r = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23443
23603
|
var DisplayS = function DisplayS(props) {
|
|
23444
23604
|
var color = props.color,
|
|
23445
23605
|
size = props.size,
|
|
@@ -23448,12 +23608,12 @@ var DisplayS = function DisplayS(props) {
|
|
|
23448
23608
|
className = props.className,
|
|
23449
23609
|
iconClassName = props.iconClassName,
|
|
23450
23610
|
testid = props.testid,
|
|
23451
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23611
|
+
otherProps = _objectWithoutProperties(props, _excluded$6r);
|
|
23452
23612
|
return /*#__PURE__*/React.createElement("span", {
|
|
23453
23613
|
role: "img",
|
|
23454
23614
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23455
23615
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23456
|
-
children: loadingCircleStyle$
|
|
23616
|
+
children: loadingCircleStyle$6r
|
|
23457
23617
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23458
23618
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23459
23619
|
width: size,
|
|
@@ -23492,8 +23652,8 @@ DisplayS.defaultProps = {
|
|
|
23492
23652
|
size: '1em'
|
|
23493
23653
|
};
|
|
23494
23654
|
|
|
23495
|
-
var _excluded$
|
|
23496
|
-
var loadingCircleStyle$
|
|
23655
|
+
var _excluded$6s = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23656
|
+
var loadingCircleStyle$6s = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23497
23657
|
var Share = function Share(props) {
|
|
23498
23658
|
var color = props.color,
|
|
23499
23659
|
size = props.size,
|
|
@@ -23502,12 +23662,12 @@ var Share = function Share(props) {
|
|
|
23502
23662
|
className = props.className,
|
|
23503
23663
|
iconClassName = props.iconClassName,
|
|
23504
23664
|
testid = props.testid,
|
|
23505
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23665
|
+
otherProps = _objectWithoutProperties(props, _excluded$6s);
|
|
23506
23666
|
return /*#__PURE__*/React.createElement("span", {
|
|
23507
23667
|
role: "img",
|
|
23508
23668
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23509
23669
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23510
|
-
children: loadingCircleStyle$
|
|
23670
|
+
children: loadingCircleStyle$6s
|
|
23511
23671
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23512
23672
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23513
23673
|
width: size,
|
|
@@ -23544,8 +23704,8 @@ Share.defaultProps = {
|
|
|
23544
23704
|
size: '1em'
|
|
23545
23705
|
};
|
|
23546
23706
|
|
|
23547
|
-
var _excluded$
|
|
23548
|
-
var loadingCircleStyle$
|
|
23707
|
+
var _excluded$6t = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23708
|
+
var loadingCircleStyle$6t = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23549
23709
|
var AvatarGroupCl = function AvatarGroupCl(props) {
|
|
23550
23710
|
var color = props.color,
|
|
23551
23711
|
size = props.size,
|
|
@@ -23554,12 +23714,12 @@ var AvatarGroupCl = function AvatarGroupCl(props) {
|
|
|
23554
23714
|
className = props.className,
|
|
23555
23715
|
iconClassName = props.iconClassName,
|
|
23556
23716
|
testid = props.testid,
|
|
23557
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23717
|
+
otherProps = _objectWithoutProperties(props, _excluded$6t);
|
|
23558
23718
|
return /*#__PURE__*/React.createElement("span", {
|
|
23559
23719
|
role: "img",
|
|
23560
23720
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23561
23721
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23562
|
-
children: loadingCircleStyle$
|
|
23722
|
+
children: loadingCircleStyle$6t
|
|
23563
23723
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23564
23724
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23565
23725
|
width: size,
|
|
@@ -23612,8 +23772,8 @@ AvatarGroupCl.defaultProps = {
|
|
|
23612
23772
|
size: '1em'
|
|
23613
23773
|
};
|
|
23614
23774
|
|
|
23615
|
-
var _excluded$
|
|
23616
|
-
var loadingCircleStyle$
|
|
23775
|
+
var _excluded$6u = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23776
|
+
var loadingCircleStyle$6u = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23617
23777
|
var AvatarProjectCl = function AvatarProjectCl(props) {
|
|
23618
23778
|
var color = props.color,
|
|
23619
23779
|
size = props.size,
|
|
@@ -23622,12 +23782,12 @@ var AvatarProjectCl = function AvatarProjectCl(props) {
|
|
|
23622
23782
|
className = props.className,
|
|
23623
23783
|
iconClassName = props.iconClassName,
|
|
23624
23784
|
testid = props.testid,
|
|
23625
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
23785
|
+
otherProps = _objectWithoutProperties(props, _excluded$6u);
|
|
23626
23786
|
return /*#__PURE__*/React.createElement("span", {
|
|
23627
23787
|
role: "img",
|
|
23628
23788
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
23629
23789
|
}, /*#__PURE__*/React.createElement("style", {
|
|
23630
|
-
children: loadingCircleStyle$
|
|
23790
|
+
children: loadingCircleStyle$6u
|
|
23631
23791
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
23632
23792
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23633
23793
|
width: size,
|
|
@@ -23673,4 +23833,4 @@ AvatarProjectCl.defaultProps = {
|
|
|
23673
23833
|
size: '1em'
|
|
23674
23834
|
};
|
|
23675
23835
|
|
|
23676
|
-
export { Add1 as TaAdd1, Add2 as TaAdd2, Add3 as TaAdd3, Add3Fill as TaAdd3Fill, AddToPage as TaAddToPage, Alert as TaAlert, AlertCl as TaAlertCl, AllGroupSm as TaAllGroupSm, Analysis as TaAnalysis, Anchor as TaAnchor, Application as TaApplication, Approve as TaApprove, ArrayRowsSm as TaArrayRowsSm, ArrowDown as TaArrowDown, ArrowDown2 as TaArrowDown2, ArrowLeft as TaArrowLeft, ArrowLeft2 as TaArrowLeft2, ArrowLeftDown as TaArrowLeftDown, ArrowRight as TaArrowRight, ArrowRight2 as TaArrowRight2, ArrowUp as TaArrowUp, ArrowUp2 as TaArrowUp2, Ascent as TaAscent, Attribution as TaAttribution, AvatarGroupCl as TaAvatarGroupCl, AvatarProjectCl as TaAvatarProjectCl, Backup as TaBackup, Bell as TaBell, Bell2Fill as TaBell2Fill, Book as TaBook, Book2 as TaBook2, Bookmark as TaBookmark, Bookmark2 as TaBookmark2, BooleanSm as TaBooleanSm, Box as TaBox, BoxOpen as TaBoxOpen, Branch as TaBranch, Calendar as TaCalendar, CalendarSm as TaCalendarSm, Card as TaCard, Cellphone as TaCellphone, ChartBar as TaChartBar, ChartBarTable as TaChartBarTable, ChartCombinedTable as TaChartCombinedTable, ChartComplex as TaChartComplex, ChartCum as TaChartCum, ChartDNRe as TaChartDNRe, ChartDRe as TaChartDRe, ChartDistTable as TaChartDistTable, ChartFieldlist as TaChartFieldlist, ChartFunnel as TaChartFunnel, ChartHistogram as TaChartHistogram, ChartInterval as TaChartInterval, ChartLine as TaChartLine, ChartLineTable as TaChartLineTable, ChartPie as TaChartPie, ChartScatter as TaChartScatter, ChartSqltable as TaChartSqltable, ChartStack as TaChartStack, ChartStackPerc as TaChartStackPerc, ChartStackn as TaChartStackn, ChartTable as TaChartTable, Click as TaClick, Clock as TaClock, Close as TaClose, Code as TaCode, Comment as TaComment, Config as TaConfig, Contrast as TaContrast, Copy as TaCopy, Copy2 as TaCopy2, Cost as TaCost, Currency as TaCurrency, CustomPartition as TaCustomPartition, DArrowB as TaDArrowB, DArrowL as TaDArrowL, DArrowR as TaDArrowR, DArrowT as TaDArrowT, DIntegrationCl as TaDIntegrationCl, DManageCl as TaDManageCl, DTrackingCl as TaDTrackingCl, Dashboard as TaDashboard, DashboardCl as TaDashboardCl, DashboardMgr as TaDashboardMgr, DateMarkCl as TaDateMarkCl, Debug as TaDebug, Delete1 as TaDelete1, Delete2 as TaDelete2, Delete2Fill as TaDelete2Fill, Demo as TaDemo, Descent as TaDescent, Desktop as TaDesktop, Detail as TaDetail, Disable as TaDisable, DisplayS as TaDisplayS, Done as TaDone, Dot as TaDot, DoubleList as TaDoubleList, Download as TaDownload, Drag as TaDrag, Drag2 as TaDrag2, DropDown as TaDropDown, DropUp as TaDropUp, ECampaignCl as TaECampaignCl, EChartsCl as TaEChartsCl, EPropertySm as TaEPropertySm, ESettingCl as TaESettingCl, ETaskCl as TaETaskCl, Earth as TaEarth, Edit as TaEdit, EditFill as TaEditFill, Education as TaEducation, EducationFill as TaEducationFill, Email as TaEmail, EndTask as TaEndTask, Error as TaError, Error2 as TaError2, Error2Fill as TaError2Fill, ErrorFill as TaErrorFill, EventMgr as TaEventMgr, EventModify as TaEventModify, EventPropMgr as TaEventPropMgr, EventSm as TaEventSm, EventTree as TaEventTree, Exchange as TaExchange, Expand as TaExpand, Export as TaExport, Exposure as TaExposure, Expression as TaExpression, Expression2 as TaExpression2, External as TaExternal, EyeOff as TaEyeOff, EyeOffFill as TaEyeOffFill, EyeOn as TaEyeOn, EyeOnFill as TaEyeOnFill, FileAdd as TaFileAdd, FileConvert as TaFileConvert, FileExport as TaFileExport, FileImport as TaFileImport, FileInfo as TaFileInfo, FileLock as TaFileLock, FileMove as TaFileMove, FilePdf as TaFilePdf, FileRemove as TaFileRemove, Filter as TaFilter, Filter2 as TaFilter2, FirstLast as TaFirstLast, FlagCn as TaFlagCn, FlagJp as TaFlagJp, FlagKr as TaFlagKr, FlagUs as TaFlagUs, Flash as TaFlash, Folder as TaFolder, FolderLine as TaFolderLine, FolderOpen as TaFolderOpen, FolderOpenLine as TaFolderOpenLine, FontBgColor as TaFontBgColor, FontBold as TaFontBold, FontColor as TaFontColor, FontItalic as TaFontItalic, FontSize as TaFontSize, Forewarning as TaForewarning, Format as TaFormat, FullDownload as TaFullDownload, Fullscreen as TaFullscreen, Function as TaFunction, Game as TaGame, GameFill as TaGameFill, Gift as TaGift, Goal as TaGoal, Grid as TaGrid, Group as TaGroup, GroupA2b as TaGroupA2b, GroupAddFill as TaGroupAddFill, GroupAddSm as TaGroupAddSm, GroupCl as TaGroupCl, GroupFill as TaGroupFill, GroupFill2 as TaGroupFill2, Groups as TaGroups, Heart as TaHeart, Help as TaHelp, History as TaHistory, IdFreeze as TaIdFreeze, Image as TaImage, Import as TaImport, Index as TaIndex, Indicator as TaIndicator, IndicatorSm as TaIndicatorSm, Info as TaInfo, InfoFill as TaInfoFill, Insert as TaInsert, Install as TaInstall, Interval as TaInterval, Lab as TaLab, Landscape as TaLandscape, Language as TaLanguage, Link as TaLink, Link2 as TaLink2, List as TaList, ListNested as TaListNested, ListOrdered as TaListOrdered, ListSm as TaListSm, ListUnordered as TaListUnordered, Live as TaLive, Location as TaLocation, LockClose as TaLockClose, LockCloseFill as TaLockCloseFill, LockOpen as TaLockOpen, LockOpenFill as TaLockOpenFill, LogoAndroidGray as TaLogoAndroidGray, LogoAppPushGray as TaLogoAppPushGray, LogoAppleGray as TaLogoAppleGray, LogoBitkeepCl as TaLogoBitkeepCl, LogoClientsideGray as TaLogoClientsideGray, LogoCurrencylayerCl as TaLogoCurrencylayerCl, LogoDingdingCl as TaLogoDingdingCl, LogoDingdingGray as TaLogoDingdingGray, LogoFcmCl as TaLogoFcmCl, LogoFeishuCl as TaLogoFeishuCl, LogoFutuCl as TaLogoFutuCl, LogoGarenaCl as TaLogoGarenaCl, LogoHappyelementCl as TaLogoHappyelementCl, LogoIggCl as TaLogoIggCl, LogoJiguangCl as TaLogoJiguangCl, LogoKingCl as TaLogoKingCl, LogoLitmatchCl as TaLogoLitmatchCl, LogoWebhookGray as TaLogoWebhookGray, LogoWechatCl as TaLogoWechatCl, LogoWechatGray as TaLogoWechatGray, LogoWecomCl as TaLogoWecomCl, LogoWecomGray as TaLogoWecomGray, LogoWepieCl as TaLogoWepieCl, LogoXiaomiCl as TaLogoXiaomiCl, LogoYaojiCl as TaLogoYaojiCl, Logout as TaLogout, MAttributionCl as TaMAttributionCl, MDistribution as TaMDistribution, MDistributionCl as TaMDistributionCl, MEvent as TaMEvent, MEventCl as TaMEventCl, MFlow as TaMFlow, MFlowCl as TaMFlowCl, MFunnel as TaMFunnel, MFunnelCl as TaMFunnelCl, MHeatmapCl as TaMHeatmapCl, MInterval as TaMInterval, MIntervalCl as TaMIntervalCl, MPropCl as TaMPropCl, MProperty as TaMProperty, MRetention as TaMRetention, MRetentionCl as TaMRetentionCl, MSql as TaMSql, MSqlCl as TaMSqlCl, MTrophyCl as TaMTrophyCl, MagicWand as TaMagicWand, Manual as TaManual, Map as TaMap, MenuFold as TaMenuFold, MenuUnfold as TaMenuUnfold, MessageCenter as TaMessageCenter, Mfa as TaMfa, More1 as TaMore1, More2 as TaMore2, Mute as TaMute, NewIndicator as TaNewIndicator, NewTask as TaNewTask, Notice as TaNotice, NumSm as TaNumSm, OneTime as TaOneTime, OperatorBigger as TaOperatorBigger, OperatorDivide as TaOperatorDivide, OperatorEqual as TaOperatorEqual, OperatorFalse as TaOperatorFalse, OperatorHasValue as TaOperatorHasValue, OperatorInclude as TaOperatorInclude, OperatorInside as TaOperatorInside, OperatorLess as TaOperatorLess, OperatorNoBigger as TaOperatorNoBigger, OperatorNoLess as TaOperatorNoLess, OperatorNoRegex as TaOperatorNoRegex, OperatorNoValue as TaOperatorNoValue, OperatorNotInclude as TaOperatorNotInclude, OperatorRegex as TaOperatorRegex, OperatorTrue as TaOperatorTrue, OperatorUnequal as TaOperatorUnequal, PageLine as TaPageLine, PageOpenCl as TaPageOpenCl, Palette as TaPalette, ParallelFilter as TaParallelFilter, Parameter as TaParameter, Password as TaPassword, Pattern as TaPattern, Pause2 as TaPause2, PauseCircle as TaPauseCircle, Pinch as TaPinch, Play as TaPlay, PlayCircle as TaPlayCircle, Plug as TaPlug, Private as TaPrivate, Processing as TaProcessing, Processing2 as TaProcessing2, Project as TaProject, ProjectMgr as TaProjectMgr, Property as TaProperty, Recurring as TaRecurring, Reject as TaReject, RelatedProp as TaRelatedProp, Rename as TaRename, Report as TaReport, ReportCl as TaReportCl, ReportRemoval as TaReportRemoval, ResetPassword as TaResetPassword, Result as TaResult, Revert as TaRevert, RowsSm as TaRowsSm, Ruler as TaRuler, SSpace as TaSSpace, Save as TaSave, Search as TaSearch, Send as TaSend, Server as TaServer, Setting as TaSetting, Share as TaShare, ShieldCheck as TaShieldCheck, ShieldCross as TaShieldCross, ShieldKeyhole as TaShieldKeyhole, Shop as TaShop, ShopFill as TaShopFill, ShutDown as TaShutDown, Smile as TaSmile, Sort as TaSort, SortA2z as TaSortA2z, SortDown as TaSortDown, SortDrop as TaSortDrop, SortResult as TaSortResult, SortRise as TaSortRise, SortUp as TaSortUp, SortZ2a as TaSortZ2a, Space as TaSpace, SpaceLine as TaSpaceLine, SpaceOpen as TaSpaceOpen, SpaceOpenLine as TaSpaceOpenLine, Speed as TaSpeed, Split as TaSplit, Sql1 as TaSql1, Sql2 as TaSql2, Sql3 as TaSql3, StarFill as TaStarFill, StarOutline as TaStarOutline, Sticker as TaSticker, StickerFill as TaStickerFill, StringSm as TaStringSm, Submit as TaSubmit, Subtract as TaSubtract, Subtract2 as TaSubtract2, Subtract3 as TaSubtract3, Success as TaSuccess, SuccessFill as TaSuccessFill, SvipFill as TaSvipFill, SwapFill as TaSwapFill, SystemBuild as TaSystemBuild, SystemMgr as TaSystemMgr, SystemMsg as TaSystemMsg, TA2b as TaTA2b, TX2y as TaTX2y, Table1dtable as TaTable1dtable, TableKey as TaTableKey, Task as TaTask, TdLogo as TaTdLogo, TemplateCl as TaTemplateCl, TestRace as TaTestRace, TestSplit as TaTestSplit, ThumbDown as TaThumbDown, ThumbUp as TaThumbUp, TimeLock as TaTimeLock, TimeSm as TaTimeSm, Tips as TaTips, Tracking as TaTracking, TriDown as TaTriDown, TriLeft as TaTriLeft, TriRight as TaTriRight, TriUp as TaTriUp, UCohortCl as TaUCohortCl, UGroup as TaUGroup, UGroupSm as TaUGroupSm, UPropMgr as TaUPropMgr, UPropertySm as TaUPropertySm, USearchCl as TaUSearchCl, UTag as TaUTag, UTagCl as TaUTagCl, UTagSm as TaUTagSm, Undo as TaUndo, Unlink as TaUnlink, Update as TaUpdate, UpdateData as TaUpdateData, Upload as TaUpload, UploadId as TaUploadId, Usb as TaUsb, User1 as TaUser1, User1Fill as TaUser1Fill, User2 as TaUser2, UserAddFill as TaUserAddFill, UserSettings as TaUserSettings, UserTagCl as TaUserTagCl, Usertag as TaUsertag, VPropCl as TaVPropCl, VProperty as TaVProperty, VPropertySm as TaVPropertySm, Validate as TaValidate, ViewOriginal as TaViewOriginal, Vip as TaVip, VipFill as TaVipFill };
|
|
23836
|
+
export { Add1 as TaAdd1, Add2 as TaAdd2, Add3 as TaAdd3, Add3Fill as TaAdd3Fill, AddToPage as TaAddToPage, Alert as TaAlert, AlertCl as TaAlertCl, AllGroupSm as TaAllGroupSm, Analysis as TaAnalysis, Anchor as TaAnchor, Application as TaApplication, Approve as TaApprove, ArrayRowsSm as TaArrayRowsSm, ArrowDown as TaArrowDown, ArrowDown2 as TaArrowDown2, ArrowLeft as TaArrowLeft, ArrowLeft2 as TaArrowLeft2, ArrowLeftDown as TaArrowLeftDown, ArrowRight as TaArrowRight, ArrowRight2 as TaArrowRight2, ArrowUp as TaArrowUp, ArrowUp2 as TaArrowUp2, Ascent as TaAscent, Attribution as TaAttribution, AvatarGroupCl as TaAvatarGroupCl, AvatarProjectCl as TaAvatarProjectCl, Backup as TaBackup, Bell as TaBell, Bell2Fill as TaBell2Fill, Book as TaBook, Book2 as TaBook2, Bookmark as TaBookmark, Bookmark2 as TaBookmark2, BooleanSm as TaBooleanSm, Box as TaBox, BoxOpen as TaBoxOpen, Branch as TaBranch, Calendar as TaCalendar, CalendarSm as TaCalendarSm, Card as TaCard, Cellphone as TaCellphone, ChartBar as TaChartBar, ChartBarTable as TaChartBarTable, ChartCombinedTable as TaChartCombinedTable, ChartComplex as TaChartComplex, ChartCum as TaChartCum, ChartDNRe as TaChartDNRe, ChartDRe as TaChartDRe, ChartDistTable as TaChartDistTable, ChartFieldlist as TaChartFieldlist, ChartFunnel as TaChartFunnel, ChartHistogram as TaChartHistogram, ChartInterval as TaChartInterval, ChartLine as TaChartLine, ChartLineTable as TaChartLineTable, ChartPie as TaChartPie, ChartScatter as TaChartScatter, ChartSqltable as TaChartSqltable, ChartStack as TaChartStack, ChartStackPerc as TaChartStackPerc, ChartStackn as TaChartStackn, ChartTable as TaChartTable, Click as TaClick, Clock as TaClock, Close as TaClose, Code as TaCode, Comment as TaComment, Config as TaConfig, Contrast as TaContrast, Copy as TaCopy, Copy2 as TaCopy2, Cost as TaCost, Currency as TaCurrency, CustomPartition as TaCustomPartition, DArrowB as TaDArrowB, DArrowL as TaDArrowL, DArrowR as TaDArrowR, DArrowT as TaDArrowT, DIntegrationCl as TaDIntegrationCl, DManageCl as TaDManageCl, DTrackingCl as TaDTrackingCl, Dashboard as TaDashboard, DashboardCl as TaDashboardCl, DashboardMgr as TaDashboardMgr, DateMarkCl as TaDateMarkCl, Debug as TaDebug, Delete1 as TaDelete1, Delete2 as TaDelete2, Delete2Fill as TaDelete2Fill, Demo as TaDemo, Descent as TaDescent, Desktop as TaDesktop, Detail as TaDetail, Disable as TaDisable, DisplayS as TaDisplayS, Done as TaDone, Dot as TaDot, DoubleList as TaDoubleList, Download as TaDownload, Drag as TaDrag, Drag2 as TaDrag2, DropDown as TaDropDown, DropUp as TaDropUp, ECampaignCl as TaECampaignCl, EChartsCl as TaEChartsCl, EPropertySm as TaEPropertySm, ESettingCl as TaESettingCl, ETaskCl as TaETaskCl, Earth as TaEarth, Edit as TaEdit, EditFill as TaEditFill, Education as TaEducation, EducationFill as TaEducationFill, Email as TaEmail, EndTask as TaEndTask, Error as TaError, Error2 as TaError2, Error2Fill as TaError2Fill, ErrorFill as TaErrorFill, EventMgr as TaEventMgr, EventModify as TaEventModify, EventPropMgr as TaEventPropMgr, EventSm as TaEventSm, EventTree as TaEventTree, Exchange as TaExchange, Expand as TaExpand, Export as TaExport, Exposure as TaExposure, Expression as TaExpression, Expression2 as TaExpression2, External as TaExternal, EyeOff as TaEyeOff, EyeOffFill as TaEyeOffFill, EyeOn as TaEyeOn, EyeOnFill as TaEyeOnFill, FileAdd as TaFileAdd, FileConvert as TaFileConvert, FileExport as TaFileExport, FileImport as TaFileImport, FileInfo as TaFileInfo, FileLock as TaFileLock, FileMove as TaFileMove, FilePdf as TaFilePdf, FileRemove as TaFileRemove, Filter as TaFilter, Filter2 as TaFilter2, FirstLast as TaFirstLast, FlagCn as TaFlagCn, FlagJp as TaFlagJp, FlagKr as TaFlagKr, FlagUs as TaFlagUs, Flash as TaFlash, Folder as TaFolder, FolderLine as TaFolderLine, FolderOpen as TaFolderOpen, FolderOpenLine as TaFolderOpenLine, FontBgColor as TaFontBgColor, FontBold as TaFontBold, FontColor as TaFontColor, FontItalic as TaFontItalic, FontSize as TaFontSize, Forewarning as TaForewarning, Format as TaFormat, FullDownload as TaFullDownload, Fullscreen as TaFullscreen, Function as TaFunction, Game as TaGame, GameFill as TaGameFill, Gift as TaGift, Goal as TaGoal, Grid as TaGrid, Group as TaGroup, GroupA2b as TaGroupA2b, GroupAddFill as TaGroupAddFill, GroupAddSm as TaGroupAddSm, GroupCl as TaGroupCl, GroupFill as TaGroupFill, GroupFill2 as TaGroupFill2, Groups as TaGroups, Heart as TaHeart, Help as TaHelp, History as TaHistory, IdFreeze as TaIdFreeze, Image as TaImage, Import as TaImport, Index as TaIndex, Indicator as TaIndicator, IndicatorSm as TaIndicatorSm, Info as TaInfo, InfoFill as TaInfoFill, Insert as TaInsert, Install as TaInstall, Interval as TaInterval, Lab as TaLab, Landscape as TaLandscape, Language as TaLanguage, Link as TaLink, Link2 as TaLink2, List as TaList, ListNested as TaListNested, ListOrdered as TaListOrdered, ListSm as TaListSm, ListUnordered as TaListUnordered, Live as TaLive, Location as TaLocation, LockClose as TaLockClose, LockCloseFill as TaLockCloseFill, LockOpen as TaLockOpen, LockOpenFill as TaLockOpenFill, LogoAndroidGray as TaLogoAndroidGray, LogoAppPushGray as TaLogoAppPushGray, LogoAppleGray as TaLogoAppleGray, LogoBitkeepCl as TaLogoBitkeepCl, LogoClientsideGray as TaLogoClientsideGray, LogoCurrencylayerCl as TaLogoCurrencylayerCl, LogoDingdingCl as TaLogoDingdingCl, LogoDingdingGray as TaLogoDingdingGray, LogoFcmCl as TaLogoFcmCl, LogoFeishuCl as TaLogoFeishuCl, LogoFutuCl as TaLogoFutuCl, LogoGarenaCl as TaLogoGarenaCl, LogoHappyelementCl as TaLogoHappyelementCl, LogoIggCl as TaLogoIggCl, LogoJiguangCl as TaLogoJiguangCl, LogoKingCl as TaLogoKingCl, LogoLitmatchCl as TaLogoLitmatchCl, LogoWebhookGray as TaLogoWebhookGray, LogoWechatCl as TaLogoWechatCl, LogoWechatGray as TaLogoWechatGray, LogoWecomCl as TaLogoWecomCl, LogoWecomGray as TaLogoWecomGray, LogoWepieCl as TaLogoWepieCl, LogoXiaomiCl as TaLogoXiaomiCl, LogoYaojiCl as TaLogoYaojiCl, Logout as TaLogout, MAttributionCl as TaMAttributionCl, MDistribution as TaMDistribution, MDistributionCl as TaMDistributionCl, MEvent as TaMEvent, MEventCl as TaMEventCl, MFlow as TaMFlow, MFlowCl as TaMFlowCl, MFunnel as TaMFunnel, MFunnelCl as TaMFunnelCl, MHeatmapCl as TaMHeatmapCl, MInterval as TaMInterval, MIntervalCl as TaMIntervalCl, MPropCl as TaMPropCl, MProperty as TaMProperty, MRetention as TaMRetention, MRetentionCl as TaMRetentionCl, MSql as TaMSql, MSqlCl as TaMSqlCl, MTrophyCl as TaMTrophyCl, MagicWand as TaMagicWand, Manual as TaManual, Map as TaMap, MenuFold as TaMenuFold, MenuUnfold as TaMenuUnfold, MessageCenter as TaMessageCenter, Mfa as TaMfa, More1 as TaMore1, More2 as TaMore2, Mute as TaMute, NewIndicator as TaNewIndicator, NewTask as TaNewTask, Notice as TaNotice, NumSm as TaNumSm, OneTime as TaOneTime, OperatorBigger as TaOperatorBigger, OperatorDivide as TaOperatorDivide, OperatorEqual as TaOperatorEqual, OperatorFalse as TaOperatorFalse, OperatorHasValue as TaOperatorHasValue, OperatorInclude as TaOperatorInclude, OperatorInside as TaOperatorInside, OperatorLess as TaOperatorLess, OperatorNoBigger as TaOperatorNoBigger, OperatorNoLess as TaOperatorNoLess, OperatorNoRegex as TaOperatorNoRegex, OperatorNoValue as TaOperatorNoValue, OperatorNotInclude as TaOperatorNotInclude, OperatorRegex as TaOperatorRegex, OperatorTrue as TaOperatorTrue, OperatorUnequal as TaOperatorUnequal, PageLine as TaPageLine, PageOpenCl as TaPageOpenCl, Palette as TaPalette, ParallelFilter as TaParallelFilter, Parameter as TaParameter, Password as TaPassword, Pattern as TaPattern, Pause2 as TaPause2, PauseCircle as TaPauseCircle, Pin as TaPin, PinUnsave as TaPinUnsave, Pinch as TaPinch, Play as TaPlay, PlayCircle as TaPlayCircle, Plug as TaPlug, Private as TaPrivate, Processing as TaProcessing, Processing2 as TaProcessing2, Project as TaProject, ProjectMgr as TaProjectMgr, Property as TaProperty, Recurring as TaRecurring, Reject as TaReject, RelatedProp as TaRelatedProp, Rename as TaRename, Report as TaReport, ReportCl as TaReportCl, ReportRemoval as TaReportRemoval, ResetPassword as TaResetPassword, Result as TaResult, Revert as TaRevert, RowsSm as TaRowsSm, Ruler as TaRuler, SSpace as TaSSpace, Save as TaSave, Search as TaSearch, Send as TaSend, Server as TaServer, Setting as TaSetting, Share as TaShare, ShieldCheck as TaShieldCheck, ShieldCross as TaShieldCross, ShieldKeyhole as TaShieldKeyhole, Shop as TaShop, ShopFill as TaShopFill, ShutDown as TaShutDown, Smile as TaSmile, Sort as TaSort, SortA2z as TaSortA2z, SortDown as TaSortDown, SortDrop as TaSortDrop, SortResult as TaSortResult, SortRise as TaSortRise, SortUp as TaSortUp, SortZ2a as TaSortZ2a, Space as TaSpace, SpaceLine as TaSpaceLine, SpaceOpen as TaSpaceOpen, SpaceOpenLine as TaSpaceOpenLine, Speed as TaSpeed, Split as TaSplit, Sql1 as TaSql1, Sql2 as TaSql2, Sql3 as TaSql3, StarFill as TaStarFill, StarOutline as TaStarOutline, Sticker as TaSticker, StickerFill as TaStickerFill, StringSm as TaStringSm, Submit as TaSubmit, Subtract as TaSubtract, Subtract2 as TaSubtract2, Subtract3 as TaSubtract3, Success as TaSuccess, SuccessFill as TaSuccessFill, SvipFill as TaSvipFill, SwapFill as TaSwapFill, SystemBuild as TaSystemBuild, SystemMgr as TaSystemMgr, SystemMsg as TaSystemMsg, TA2b as TaTA2b, TX2y as TaTX2y, Table1dtable as TaTable1dtable, TableKey as TaTableKey, Task as TaTask, TdLogo as TaTdLogo, TemplateCl as TaTemplateCl, TestRace as TaTestRace, TestSplit as TaTestSplit, ThumbDown as TaThumbDown, ThumbUp as TaThumbUp, TimeLock as TaTimeLock, TimeSm as TaTimeSm, Tips as TaTips, Tracking as TaTracking, TriDown as TaTriDown, TriLeft as TaTriLeft, TriRight as TaTriRight, TriUp as TaTriUp, UCohortCl as TaUCohortCl, UGroup as TaUGroup, UGroupSm as TaUGroupSm, UPropMgr as TaUPropMgr, UPropertySm as TaUPropertySm, USearchCl as TaUSearchCl, UTag as TaUTag, UTagCl as TaUTagCl, UTagSm as TaUTagSm, Undo as TaUndo, Unlink as TaUnlink, Unsave as TaUnsave, Update as TaUpdate, UpdateData as TaUpdateData, Upload as TaUpload, UploadId as TaUploadId, Usb as TaUsb, User1 as TaUser1, User1Fill as TaUser1Fill, User2 as TaUser2, UserAddFill as TaUserAddFill, UserSettings as TaUserSettings, UserTagCl as TaUserTagCl, Usertag as TaUsertag, VPropCl as TaVPropCl, VProperty as TaVProperty, VPropertySm as TaVPropertySm, Validate as TaValidate, ViewOriginal as TaViewOriginal, Vip as TaVip, VipFill as TaVipFill };
|