@tant/icons 1.3.14 → 1.3.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/icons/avatar-group-cl.js +76 -0
- package/dist/es/icons/avatar-project-cl.js +69 -0
- package/dist/es/index.js +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/lib/icons/avatar-group-cl.js +84 -0
- package/dist/lib/icons/avatar-project-cl.js +77 -0
- package/dist/lib/index.js +14 -0
- package/dist/tant-icons.cjs.js +294 -169
- package/dist/tant-icons.esm.js +293 -170
- package/package.json +2 -2
package/dist/tant-icons.cjs.js
CHANGED
|
@@ -16614,7 +16614,7 @@ StickerFill.defaultProps = {
|
|
|
16614
16614
|
|
|
16615
16615
|
var _excluded$4T = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16616
16616
|
var loadingCircleStyle$4T = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16617
|
-
var
|
|
16617
|
+
var AvatarGroupCl = function AvatarGroupCl(props) {
|
|
16618
16618
|
var color = props.color,
|
|
16619
16619
|
size = props.size,
|
|
16620
16620
|
spin = props.spin,
|
|
@@ -16627,6 +16627,129 @@ var EventSm = function EventSm(props) {
|
|
|
16627
16627
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16628
16628
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16629
16629
|
children: loadingCircleStyle$4T
|
|
16630
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16631
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16632
|
+
width: size,
|
|
16633
|
+
height: size,
|
|
16634
|
+
viewBox: "0 0 24 24",
|
|
16635
|
+
fill: color
|
|
16636
|
+
}, otherProps, {
|
|
16637
|
+
className: iconClassName,
|
|
16638
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
16639
|
+
animationDuration: '1s',
|
|
16640
|
+
animationIterationCount: 'infinite',
|
|
16641
|
+
animationName: 'loadingCircle',
|
|
16642
|
+
animationTimingFunction: 'linear'
|
|
16643
|
+
} : {})
|
|
16644
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
16645
|
+
width: "24",
|
|
16646
|
+
height: "24",
|
|
16647
|
+
fill: "none",
|
|
16648
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16649
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
16650
|
+
clipPath: "url(#clip0_6187_819)",
|
|
16651
|
+
fillRule: "evenodd",
|
|
16652
|
+
clipRule: "evenodd",
|
|
16653
|
+
fill: "#fff"
|
|
16654
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16655
|
+
opacity: ".4",
|
|
16656
|
+
d: "M7.854 7.522c-1.231 0-2.229 1.051-2.229 2.348v.289h9.657c1.22 0 2.208.944 2.208 2.11v9.622c0 .376-.103.729-.283 1.034h.814c1.231 0 2.229-1.05 2.229-2.347V9.87c0-1.297-.998-2.348-2.229-2.348H7.854z"
|
|
16657
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16658
|
+
opacity: ".9",
|
|
16659
|
+
d: "M5.208 10.159c-1.22 0-2.208.944-2.208 2.11v9.622c0 1.165.989 2.11 2.208 2.11h10.074c1.22 0 2.208-.945 2.208-2.11v-9.623c0-1.165-.989-2.11-2.208-2.11H5.208zm1.415 4.943c.476 0 .862-.369.862-.824 0-.455-.386-.824-.862-.824-.477 0-.863.37-.863.824 0 .455.386.824.863.824zm7.072-.824c0 .455-.386.824-.863.824-.476 0-.862-.369-.862-.824 0-.455.386-.824.862-.824.477 0 .863.37.863.824zm-.614 3.472a.511.511 0 00-.064-.743.57.57 0 00-.778.061c-.937 1.055-1.881 1.23-2.676 1.09-.844-.147-1.593-.665-2.017-1.106a.57.57 0 00-.78-.031.51.51 0 00-.032.745c.533.554 1.484 1.23 2.63 1.43 1.197.21 2.534-.113 3.717-1.446z"
|
|
16660
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
16661
|
+
id: "clip0_6187_819"
|
|
16662
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
16663
|
+
width: "24",
|
|
16664
|
+
height: "24",
|
|
16665
|
+
fill: "#fff"
|
|
16666
|
+
}))))));
|
|
16667
|
+
};
|
|
16668
|
+
AvatarGroupCl.propTypes = {
|
|
16669
|
+
iconClassName: PropTypes.string,
|
|
16670
|
+
spin: PropTypes.bool,
|
|
16671
|
+
color: PropTypes.string,
|
|
16672
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
16673
|
+
};
|
|
16674
|
+
AvatarGroupCl.defaultProps = {
|
|
16675
|
+
spin: false,
|
|
16676
|
+
color: 'currentColor',
|
|
16677
|
+
size: '1em'
|
|
16678
|
+
};
|
|
16679
|
+
|
|
16680
|
+
var _excluded$4U = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16681
|
+
var loadingCircleStyle$4U = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16682
|
+
var AvatarProjectCl = function AvatarProjectCl(props) {
|
|
16683
|
+
var color = props.color,
|
|
16684
|
+
size = props.size,
|
|
16685
|
+
spin = props.spin,
|
|
16686
|
+
style = props.style,
|
|
16687
|
+
className = props.className,
|
|
16688
|
+
iconClassName = props.iconClassName,
|
|
16689
|
+
otherProps = _objectWithoutProperties(props, _excluded$4U);
|
|
16690
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
16691
|
+
role: "img",
|
|
16692
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16693
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
16694
|
+
children: loadingCircleStyle$4U
|
|
16695
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16696
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16697
|
+
width: size,
|
|
16698
|
+
height: size,
|
|
16699
|
+
viewBox: "0 0 24 24",
|
|
16700
|
+
fill: color
|
|
16701
|
+
}, otherProps, {
|
|
16702
|
+
className: iconClassName,
|
|
16703
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
16704
|
+
animationDuration: '1s',
|
|
16705
|
+
animationIterationCount: 'infinite',
|
|
16706
|
+
animationName: 'loadingCircle',
|
|
16707
|
+
animationTimingFunction: 'linear'
|
|
16708
|
+
} : {})
|
|
16709
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
16710
|
+
width: "24",
|
|
16711
|
+
height: "24",
|
|
16712
|
+
fill: "none",
|
|
16713
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16714
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16715
|
+
opacity: ".92",
|
|
16716
|
+
d: "M10.737 14.682l-5.339-3.304a1.2 1.2 0 010-2.041l5.339-3.305a2.4 2.4 0 012.526 0l5.339 3.305a1.2 1.2 0 010 2.04l-5.339 3.305a2.4 2.4 0 01-2.526 0z",
|
|
16717
|
+
fill: "#fff"
|
|
16718
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16719
|
+
opacity: ".4",
|
|
16720
|
+
fillRule: "evenodd",
|
|
16721
|
+
clipRule: "evenodd",
|
|
16722
|
+
d: "M6.844 12.273l3.893 2.41a2.4 2.4 0 002.526 0l3.893-2.41 1.446.894a1.2 1.2 0 010 2.04l-5.339 3.306a2.4 2.4 0 01-2.526 0l-5.339-3.305a1.2 1.2 0 010-2.04l1.446-.895z",
|
|
16723
|
+
fill: "#fff"
|
|
16724
|
+
}))));
|
|
16725
|
+
};
|
|
16726
|
+
AvatarProjectCl.propTypes = {
|
|
16727
|
+
iconClassName: PropTypes.string,
|
|
16728
|
+
spin: PropTypes.bool,
|
|
16729
|
+
color: PropTypes.string,
|
|
16730
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
16731
|
+
};
|
|
16732
|
+
AvatarProjectCl.defaultProps = {
|
|
16733
|
+
spin: false,
|
|
16734
|
+
color: 'currentColor',
|
|
16735
|
+
size: '1em'
|
|
16736
|
+
};
|
|
16737
|
+
|
|
16738
|
+
var _excluded$4V = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16739
|
+
var loadingCircleStyle$4V = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16740
|
+
var EventSm = function EventSm(props) {
|
|
16741
|
+
var color = props.color,
|
|
16742
|
+
size = props.size,
|
|
16743
|
+
spin = props.spin,
|
|
16744
|
+
style = props.style,
|
|
16745
|
+
className = props.className,
|
|
16746
|
+
iconClassName = props.iconClassName,
|
|
16747
|
+
otherProps = _objectWithoutProperties(props, _excluded$4V);
|
|
16748
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
16749
|
+
role: "img",
|
|
16750
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16751
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
16752
|
+
children: loadingCircleStyle$4V
|
|
16630
16753
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16631
16754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16632
16755
|
width: size,
|
|
@@ -16661,8 +16784,8 @@ EventSm.defaultProps = {
|
|
|
16661
16784
|
size: '1em'
|
|
16662
16785
|
};
|
|
16663
16786
|
|
|
16664
|
-
var _excluded$
|
|
16665
|
-
var loadingCircleStyle$
|
|
16787
|
+
var _excluded$4W = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16788
|
+
var loadingCircleStyle$4W = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16666
16789
|
var EPropertySm = function EPropertySm(props) {
|
|
16667
16790
|
var color = props.color,
|
|
16668
16791
|
size = props.size,
|
|
@@ -16670,12 +16793,12 @@ var EPropertySm = function EPropertySm(props) {
|
|
|
16670
16793
|
style = props.style,
|
|
16671
16794
|
className = props.className,
|
|
16672
16795
|
iconClassName = props.iconClassName,
|
|
16673
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16796
|
+
otherProps = _objectWithoutProperties(props, _excluded$4W);
|
|
16674
16797
|
return /*#__PURE__*/React.createElement("span", {
|
|
16675
16798
|
role: "img",
|
|
16676
16799
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16677
16800
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16678
|
-
children: loadingCircleStyle$
|
|
16801
|
+
children: loadingCircleStyle$4W
|
|
16679
16802
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16680
16803
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16681
16804
|
width: size,
|
|
@@ -16718,8 +16841,8 @@ EPropertySm.defaultProps = {
|
|
|
16718
16841
|
size: '1em'
|
|
16719
16842
|
};
|
|
16720
16843
|
|
|
16721
|
-
var _excluded$
|
|
16722
|
-
var loadingCircleStyle$
|
|
16844
|
+
var _excluded$4X = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16845
|
+
var loadingCircleStyle$4X = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16723
16846
|
var IndicatorSm = function IndicatorSm(props) {
|
|
16724
16847
|
var color = props.color,
|
|
16725
16848
|
size = props.size,
|
|
@@ -16727,12 +16850,12 @@ var IndicatorSm = function IndicatorSm(props) {
|
|
|
16727
16850
|
style = props.style,
|
|
16728
16851
|
className = props.className,
|
|
16729
16852
|
iconClassName = props.iconClassName,
|
|
16730
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16853
|
+
otherProps = _objectWithoutProperties(props, _excluded$4X);
|
|
16731
16854
|
return /*#__PURE__*/React.createElement("span", {
|
|
16732
16855
|
role: "img",
|
|
16733
16856
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16734
16857
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16735
|
-
children: loadingCircleStyle$
|
|
16858
|
+
children: loadingCircleStyle$4X
|
|
16736
16859
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16737
16860
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16738
16861
|
width: size,
|
|
@@ -16771,8 +16894,8 @@ IndicatorSm.defaultProps = {
|
|
|
16771
16894
|
size: '1em'
|
|
16772
16895
|
};
|
|
16773
16896
|
|
|
16774
|
-
var _excluded$
|
|
16775
|
-
var loadingCircleStyle$
|
|
16897
|
+
var _excluded$4Y = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16898
|
+
var loadingCircleStyle$4Y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16776
16899
|
var UPropertySm = function UPropertySm(props) {
|
|
16777
16900
|
var color = props.color,
|
|
16778
16901
|
size = props.size,
|
|
@@ -16780,12 +16903,12 @@ var UPropertySm = function UPropertySm(props) {
|
|
|
16780
16903
|
style = props.style,
|
|
16781
16904
|
className = props.className,
|
|
16782
16905
|
iconClassName = props.iconClassName,
|
|
16783
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16906
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Y);
|
|
16784
16907
|
return /*#__PURE__*/React.createElement("span", {
|
|
16785
16908
|
role: "img",
|
|
16786
16909
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16787
16910
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16788
|
-
children: loadingCircleStyle$
|
|
16911
|
+
children: loadingCircleStyle$4Y
|
|
16789
16912
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16790
16913
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16791
16914
|
width: size,
|
|
@@ -16826,8 +16949,8 @@ UPropertySm.defaultProps = {
|
|
|
16826
16949
|
size: '1em'
|
|
16827
16950
|
};
|
|
16828
16951
|
|
|
16829
|
-
var _excluded$
|
|
16830
|
-
var loadingCircleStyle$
|
|
16952
|
+
var _excluded$4Z = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
16953
|
+
var loadingCircleStyle$4Z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16831
16954
|
var UGroupSm = function UGroupSm(props) {
|
|
16832
16955
|
var color = props.color,
|
|
16833
16956
|
size = props.size,
|
|
@@ -16835,12 +16958,12 @@ var UGroupSm = function UGroupSm(props) {
|
|
|
16835
16958
|
style = props.style,
|
|
16836
16959
|
className = props.className,
|
|
16837
16960
|
iconClassName = props.iconClassName,
|
|
16838
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
16961
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Z);
|
|
16839
16962
|
return /*#__PURE__*/React.createElement("span", {
|
|
16840
16963
|
role: "img",
|
|
16841
16964
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16842
16965
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16843
|
-
children: loadingCircleStyle$
|
|
16966
|
+
children: loadingCircleStyle$4Z
|
|
16844
16967
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16845
16968
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16846
16969
|
width: size,
|
|
@@ -16889,8 +17012,8 @@ UGroupSm.defaultProps = {
|
|
|
16889
17012
|
size: '1em'
|
|
16890
17013
|
};
|
|
16891
17014
|
|
|
16892
|
-
var _excluded$
|
|
16893
|
-
var loadingCircleStyle$
|
|
17015
|
+
var _excluded$4_ = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17016
|
+
var loadingCircleStyle$4_ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16894
17017
|
var UTagSm = function UTagSm(props) {
|
|
16895
17018
|
var color = props.color,
|
|
16896
17019
|
size = props.size,
|
|
@@ -16898,12 +17021,12 @@ var UTagSm = function UTagSm(props) {
|
|
|
16898
17021
|
style = props.style,
|
|
16899
17022
|
className = props.className,
|
|
16900
17023
|
iconClassName = props.iconClassName,
|
|
16901
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17024
|
+
otherProps = _objectWithoutProperties(props, _excluded$4_);
|
|
16902
17025
|
return /*#__PURE__*/React.createElement("span", {
|
|
16903
17026
|
role: "img",
|
|
16904
17027
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16905
17028
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16906
|
-
children: loadingCircleStyle$
|
|
17029
|
+
children: loadingCircleStyle$4_
|
|
16907
17030
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16908
17031
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16909
17032
|
width: size,
|
|
@@ -16942,8 +17065,8 @@ UTagSm.defaultProps = {
|
|
|
16942
17065
|
size: '1em'
|
|
16943
17066
|
};
|
|
16944
17067
|
|
|
16945
|
-
var _excluded$
|
|
16946
|
-
var loadingCircleStyle$
|
|
17068
|
+
var _excluded$4$ = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17069
|
+
var loadingCircleStyle$4$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
16947
17070
|
var AllGroupSm = function AllGroupSm(props) {
|
|
16948
17071
|
var color = props.color,
|
|
16949
17072
|
size = props.size,
|
|
@@ -16951,12 +17074,12 @@ var AllGroupSm = function AllGroupSm(props) {
|
|
|
16951
17074
|
style = props.style,
|
|
16952
17075
|
className = props.className,
|
|
16953
17076
|
iconClassName = props.iconClassName,
|
|
16954
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17077
|
+
otherProps = _objectWithoutProperties(props, _excluded$4$);
|
|
16955
17078
|
return /*#__PURE__*/React.createElement("span", {
|
|
16956
17079
|
role: "img",
|
|
16957
17080
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
16958
17081
|
}, /*#__PURE__*/React.createElement("style", {
|
|
16959
|
-
children: loadingCircleStyle$
|
|
17082
|
+
children: loadingCircleStyle$4$
|
|
16960
17083
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
16961
17084
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16962
17085
|
width: size,
|
|
@@ -16997,8 +17120,8 @@ AllGroupSm.defaultProps = {
|
|
|
16997
17120
|
size: '1em'
|
|
16998
17121
|
};
|
|
16999
17122
|
|
|
17000
|
-
var _excluded$
|
|
17001
|
-
var loadingCircleStyle$
|
|
17123
|
+
var _excluded$50 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17124
|
+
var loadingCircleStyle$50 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17002
17125
|
var CalendarSm = function CalendarSm(props) {
|
|
17003
17126
|
var color = props.color,
|
|
17004
17127
|
size = props.size,
|
|
@@ -17006,12 +17129,12 @@ var CalendarSm = function CalendarSm(props) {
|
|
|
17006
17129
|
style = props.style,
|
|
17007
17130
|
className = props.className,
|
|
17008
17131
|
iconClassName = props.iconClassName,
|
|
17009
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17132
|
+
otherProps = _objectWithoutProperties(props, _excluded$50);
|
|
17010
17133
|
return /*#__PURE__*/React.createElement("span", {
|
|
17011
17134
|
role: "img",
|
|
17012
17135
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17013
17136
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17014
|
-
children: loadingCircleStyle$
|
|
17137
|
+
children: loadingCircleStyle$50
|
|
17015
17138
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17016
17139
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17017
17140
|
width: size,
|
|
@@ -17046,8 +17169,8 @@ CalendarSm.defaultProps = {
|
|
|
17046
17169
|
size: '1em'
|
|
17047
17170
|
};
|
|
17048
17171
|
|
|
17049
|
-
var _excluded$
|
|
17050
|
-
var loadingCircleStyle$
|
|
17172
|
+
var _excluded$51 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17173
|
+
var loadingCircleStyle$51 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17051
17174
|
var GroupAddSm = function GroupAddSm(props) {
|
|
17052
17175
|
var color = props.color,
|
|
17053
17176
|
size = props.size,
|
|
@@ -17055,12 +17178,12 @@ var GroupAddSm = function GroupAddSm(props) {
|
|
|
17055
17178
|
style = props.style,
|
|
17056
17179
|
className = props.className,
|
|
17057
17180
|
iconClassName = props.iconClassName,
|
|
17058
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17181
|
+
otherProps = _objectWithoutProperties(props, _excluded$51);
|
|
17059
17182
|
return /*#__PURE__*/React.createElement("span", {
|
|
17060
17183
|
role: "img",
|
|
17061
17184
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17062
17185
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17063
|
-
children: loadingCircleStyle$
|
|
17186
|
+
children: loadingCircleStyle$51
|
|
17064
17187
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17065
17188
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17066
17189
|
width: size,
|
|
@@ -17101,8 +17224,8 @@ GroupAddSm.defaultProps = {
|
|
|
17101
17224
|
size: '1em'
|
|
17102
17225
|
};
|
|
17103
17226
|
|
|
17104
|
-
var _excluded$
|
|
17105
|
-
var loadingCircleStyle$
|
|
17227
|
+
var _excluded$52 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17228
|
+
var loadingCircleStyle$52 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17106
17229
|
var BooleanSm = function BooleanSm(props) {
|
|
17107
17230
|
var color = props.color,
|
|
17108
17231
|
size = props.size,
|
|
@@ -17110,12 +17233,12 @@ var BooleanSm = function BooleanSm(props) {
|
|
|
17110
17233
|
style = props.style,
|
|
17111
17234
|
className = props.className,
|
|
17112
17235
|
iconClassName = props.iconClassName,
|
|
17113
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17236
|
+
otherProps = _objectWithoutProperties(props, _excluded$52);
|
|
17114
17237
|
return /*#__PURE__*/React.createElement("span", {
|
|
17115
17238
|
role: "img",
|
|
17116
17239
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17117
17240
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17118
|
-
children: loadingCircleStyle$
|
|
17241
|
+
children: loadingCircleStyle$52
|
|
17119
17242
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17120
17243
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17121
17244
|
width: size,
|
|
@@ -17152,8 +17275,8 @@ BooleanSm.defaultProps = {
|
|
|
17152
17275
|
size: '1em'
|
|
17153
17276
|
};
|
|
17154
17277
|
|
|
17155
|
-
var _excluded$
|
|
17156
|
-
var loadingCircleStyle$
|
|
17278
|
+
var _excluded$53 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17279
|
+
var loadingCircleStyle$53 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17157
17280
|
var ListSm = function ListSm(props) {
|
|
17158
17281
|
var color = props.color,
|
|
17159
17282
|
size = props.size,
|
|
@@ -17161,12 +17284,12 @@ var ListSm = function ListSm(props) {
|
|
|
17161
17284
|
style = props.style,
|
|
17162
17285
|
className = props.className,
|
|
17163
17286
|
iconClassName = props.iconClassName,
|
|
17164
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17287
|
+
otherProps = _objectWithoutProperties(props, _excluded$53);
|
|
17165
17288
|
return /*#__PURE__*/React.createElement("span", {
|
|
17166
17289
|
role: "img",
|
|
17167
17290
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17168
17291
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17169
|
-
children: loadingCircleStyle$
|
|
17292
|
+
children: loadingCircleStyle$53
|
|
17170
17293
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17171
17294
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17172
17295
|
width: size,
|
|
@@ -17211,8 +17334,8 @@ ListSm.defaultProps = {
|
|
|
17211
17334
|
size: '1em'
|
|
17212
17335
|
};
|
|
17213
17336
|
|
|
17214
|
-
var _excluded$
|
|
17215
|
-
var loadingCircleStyle$
|
|
17337
|
+
var _excluded$54 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17338
|
+
var loadingCircleStyle$54 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17216
17339
|
var ArrayRowsSm = function ArrayRowsSm(props) {
|
|
17217
17340
|
var color = props.color,
|
|
17218
17341
|
size = props.size,
|
|
@@ -17220,12 +17343,12 @@ var ArrayRowsSm = function ArrayRowsSm(props) {
|
|
|
17220
17343
|
style = props.style,
|
|
17221
17344
|
className = props.className,
|
|
17222
17345
|
iconClassName = props.iconClassName,
|
|
17223
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17346
|
+
otherProps = _objectWithoutProperties(props, _excluded$54);
|
|
17224
17347
|
return /*#__PURE__*/React.createElement("span", {
|
|
17225
17348
|
role: "img",
|
|
17226
17349
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17227
17350
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17228
|
-
children: loadingCircleStyle$
|
|
17351
|
+
children: loadingCircleStyle$54
|
|
17229
17352
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17230
17353
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17231
17354
|
width: size,
|
|
@@ -17262,8 +17385,8 @@ ArrayRowsSm.defaultProps = {
|
|
|
17262
17385
|
size: '1em'
|
|
17263
17386
|
};
|
|
17264
17387
|
|
|
17265
|
-
var _excluded$
|
|
17266
|
-
var loadingCircleStyle$
|
|
17388
|
+
var _excluded$55 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17389
|
+
var loadingCircleStyle$55 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17267
17390
|
var RowsSm = function RowsSm(props) {
|
|
17268
17391
|
var color = props.color,
|
|
17269
17392
|
size = props.size,
|
|
@@ -17271,12 +17394,12 @@ var RowsSm = function RowsSm(props) {
|
|
|
17271
17394
|
style = props.style,
|
|
17272
17395
|
className = props.className,
|
|
17273
17396
|
iconClassName = props.iconClassName,
|
|
17274
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17397
|
+
otherProps = _objectWithoutProperties(props, _excluded$55);
|
|
17275
17398
|
return /*#__PURE__*/React.createElement("span", {
|
|
17276
17399
|
role: "img",
|
|
17277
17400
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17278
17401
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17279
|
-
children: loadingCircleStyle$
|
|
17402
|
+
children: loadingCircleStyle$55
|
|
17280
17403
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17281
17404
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17282
17405
|
width: size,
|
|
@@ -17321,8 +17444,8 @@ RowsSm.defaultProps = {
|
|
|
17321
17444
|
size: '1em'
|
|
17322
17445
|
};
|
|
17323
17446
|
|
|
17324
|
-
var _excluded$
|
|
17325
|
-
var loadingCircleStyle$
|
|
17447
|
+
var _excluded$56 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17448
|
+
var loadingCircleStyle$56 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17326
17449
|
var VPropertySm = function VPropertySm(props) {
|
|
17327
17450
|
var color = props.color,
|
|
17328
17451
|
size = props.size,
|
|
@@ -17330,12 +17453,12 @@ var VPropertySm = function VPropertySm(props) {
|
|
|
17330
17453
|
style = props.style,
|
|
17331
17454
|
className = props.className,
|
|
17332
17455
|
iconClassName = props.iconClassName,
|
|
17333
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17456
|
+
otherProps = _objectWithoutProperties(props, _excluded$56);
|
|
17334
17457
|
return /*#__PURE__*/React.createElement("span", {
|
|
17335
17458
|
role: "img",
|
|
17336
17459
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17337
17460
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17338
|
-
children: loadingCircleStyle$
|
|
17461
|
+
children: loadingCircleStyle$56
|
|
17339
17462
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17340
17463
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17341
17464
|
width: size,
|
|
@@ -17376,8 +17499,8 @@ VPropertySm.defaultProps = {
|
|
|
17376
17499
|
size: '1em'
|
|
17377
17500
|
};
|
|
17378
17501
|
|
|
17379
|
-
var _excluded$
|
|
17380
|
-
var loadingCircleStyle$
|
|
17502
|
+
var _excluded$57 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17503
|
+
var loadingCircleStyle$57 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17381
17504
|
var StringSm = function StringSm(props) {
|
|
17382
17505
|
var color = props.color,
|
|
17383
17506
|
size = props.size,
|
|
@@ -17385,12 +17508,12 @@ var StringSm = function StringSm(props) {
|
|
|
17385
17508
|
style = props.style,
|
|
17386
17509
|
className = props.className,
|
|
17387
17510
|
iconClassName = props.iconClassName,
|
|
17388
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17511
|
+
otherProps = _objectWithoutProperties(props, _excluded$57);
|
|
17389
17512
|
return /*#__PURE__*/React.createElement("span", {
|
|
17390
17513
|
role: "img",
|
|
17391
17514
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17392
17515
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17393
|
-
children: loadingCircleStyle$
|
|
17516
|
+
children: loadingCircleStyle$57
|
|
17394
17517
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17395
17518
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17396
17519
|
width: size,
|
|
@@ -17427,8 +17550,8 @@ StringSm.defaultProps = {
|
|
|
17427
17550
|
size: '1em'
|
|
17428
17551
|
};
|
|
17429
17552
|
|
|
17430
|
-
var _excluded$
|
|
17431
|
-
var loadingCircleStyle$
|
|
17553
|
+
var _excluded$58 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17554
|
+
var loadingCircleStyle$58 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17432
17555
|
var NumSm = function NumSm(props) {
|
|
17433
17556
|
var color = props.color,
|
|
17434
17557
|
size = props.size,
|
|
@@ -17436,12 +17559,12 @@ var NumSm = function NumSm(props) {
|
|
|
17436
17559
|
style = props.style,
|
|
17437
17560
|
className = props.className,
|
|
17438
17561
|
iconClassName = props.iconClassName,
|
|
17439
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17562
|
+
otherProps = _objectWithoutProperties(props, _excluded$58);
|
|
17440
17563
|
return /*#__PURE__*/React.createElement("span", {
|
|
17441
17564
|
role: "img",
|
|
17442
17565
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17443
17566
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17444
|
-
children: loadingCircleStyle$
|
|
17567
|
+
children: loadingCircleStyle$58
|
|
17445
17568
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17446
17569
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17447
17570
|
width: size,
|
|
@@ -17478,8 +17601,8 @@ NumSm.defaultProps = {
|
|
|
17478
17601
|
size: '1em'
|
|
17479
17602
|
};
|
|
17480
17603
|
|
|
17481
|
-
var _excluded$
|
|
17482
|
-
var loadingCircleStyle$
|
|
17604
|
+
var _excluded$59 = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17605
|
+
var loadingCircleStyle$59 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17483
17606
|
var TimeSm = function TimeSm(props) {
|
|
17484
17607
|
var color = props.color,
|
|
17485
17608
|
size = props.size,
|
|
@@ -17487,12 +17610,12 @@ var TimeSm = function TimeSm(props) {
|
|
|
17487
17610
|
style = props.style,
|
|
17488
17611
|
className = props.className,
|
|
17489
17612
|
iconClassName = props.iconClassName,
|
|
17490
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17613
|
+
otherProps = _objectWithoutProperties(props, _excluded$59);
|
|
17491
17614
|
return /*#__PURE__*/React.createElement("span", {
|
|
17492
17615
|
role: "img",
|
|
17493
17616
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17494
17617
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17495
|
-
children: loadingCircleStyle$
|
|
17618
|
+
children: loadingCircleStyle$59
|
|
17496
17619
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17497
17620
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17498
17621
|
width: size,
|
|
@@ -17529,8 +17652,8 @@ TimeSm.defaultProps = {
|
|
|
17529
17652
|
size: '1em'
|
|
17530
17653
|
};
|
|
17531
17654
|
|
|
17532
|
-
var _excluded$
|
|
17533
|
-
var loadingCircleStyle$
|
|
17655
|
+
var _excluded$5a = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17656
|
+
var loadingCircleStyle$5a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17534
17657
|
var ArrowLeft = function ArrowLeft(props) {
|
|
17535
17658
|
var color = props.color,
|
|
17536
17659
|
size = props.size,
|
|
@@ -17538,12 +17661,12 @@ var ArrowLeft = function ArrowLeft(props) {
|
|
|
17538
17661
|
style = props.style,
|
|
17539
17662
|
className = props.className,
|
|
17540
17663
|
iconClassName = props.iconClassName,
|
|
17541
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17664
|
+
otherProps = _objectWithoutProperties(props, _excluded$5a);
|
|
17542
17665
|
return /*#__PURE__*/React.createElement("span", {
|
|
17543
17666
|
role: "img",
|
|
17544
17667
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17545
17668
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17546
|
-
children: loadingCircleStyle$
|
|
17669
|
+
children: loadingCircleStyle$5a
|
|
17547
17670
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17548
17671
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17549
17672
|
width: size,
|
|
@@ -17578,8 +17701,8 @@ ArrowLeft.defaultProps = {
|
|
|
17578
17701
|
size: '1em'
|
|
17579
17702
|
};
|
|
17580
17703
|
|
|
17581
|
-
var _excluded$
|
|
17582
|
-
var loadingCircleStyle$
|
|
17704
|
+
var _excluded$5b = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17705
|
+
var loadingCircleStyle$5b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17583
17706
|
var ArrowRight = function ArrowRight(props) {
|
|
17584
17707
|
var color = props.color,
|
|
17585
17708
|
size = props.size,
|
|
@@ -17587,12 +17710,12 @@ var ArrowRight = function ArrowRight(props) {
|
|
|
17587
17710
|
style = props.style,
|
|
17588
17711
|
className = props.className,
|
|
17589
17712
|
iconClassName = props.iconClassName,
|
|
17590
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17713
|
+
otherProps = _objectWithoutProperties(props, _excluded$5b);
|
|
17591
17714
|
return /*#__PURE__*/React.createElement("span", {
|
|
17592
17715
|
role: "img",
|
|
17593
17716
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17594
17717
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17595
|
-
children: loadingCircleStyle$
|
|
17718
|
+
children: loadingCircleStyle$5b
|
|
17596
17719
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17597
17720
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17598
17721
|
width: size,
|
|
@@ -17627,8 +17750,8 @@ ArrowRight.defaultProps = {
|
|
|
17627
17750
|
size: '1em'
|
|
17628
17751
|
};
|
|
17629
17752
|
|
|
17630
|
-
var _excluded$
|
|
17631
|
-
var loadingCircleStyle$
|
|
17753
|
+
var _excluded$5c = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17754
|
+
var loadingCircleStyle$5c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17632
17755
|
var ArrowUp = function ArrowUp(props) {
|
|
17633
17756
|
var color = props.color,
|
|
17634
17757
|
size = props.size,
|
|
@@ -17636,12 +17759,12 @@ var ArrowUp = function ArrowUp(props) {
|
|
|
17636
17759
|
style = props.style,
|
|
17637
17760
|
className = props.className,
|
|
17638
17761
|
iconClassName = props.iconClassName,
|
|
17639
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17762
|
+
otherProps = _objectWithoutProperties(props, _excluded$5c);
|
|
17640
17763
|
return /*#__PURE__*/React.createElement("span", {
|
|
17641
17764
|
role: "img",
|
|
17642
17765
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17643
17766
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17644
|
-
children: loadingCircleStyle$
|
|
17767
|
+
children: loadingCircleStyle$5c
|
|
17645
17768
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17646
17769
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17647
17770
|
width: size,
|
|
@@ -17676,8 +17799,8 @@ ArrowUp.defaultProps = {
|
|
|
17676
17799
|
size: '1em'
|
|
17677
17800
|
};
|
|
17678
17801
|
|
|
17679
|
-
var _excluded$
|
|
17680
|
-
var loadingCircleStyle$
|
|
17802
|
+
var _excluded$5d = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17803
|
+
var loadingCircleStyle$5d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17681
17804
|
var ArrowDown = function ArrowDown(props) {
|
|
17682
17805
|
var color = props.color,
|
|
17683
17806
|
size = props.size,
|
|
@@ -17685,12 +17808,12 @@ var ArrowDown = function ArrowDown(props) {
|
|
|
17685
17808
|
style = props.style,
|
|
17686
17809
|
className = props.className,
|
|
17687
17810
|
iconClassName = props.iconClassName,
|
|
17688
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17811
|
+
otherProps = _objectWithoutProperties(props, _excluded$5d);
|
|
17689
17812
|
return /*#__PURE__*/React.createElement("span", {
|
|
17690
17813
|
role: "img",
|
|
17691
17814
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17692
17815
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17693
|
-
children: loadingCircleStyle$
|
|
17816
|
+
children: loadingCircleStyle$5d
|
|
17694
17817
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17695
17818
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17696
17819
|
width: size,
|
|
@@ -17725,8 +17848,8 @@ ArrowDown.defaultProps = {
|
|
|
17725
17848
|
size: '1em'
|
|
17726
17849
|
};
|
|
17727
17850
|
|
|
17728
|
-
var _excluded$
|
|
17729
|
-
var loadingCircleStyle$
|
|
17851
|
+
var _excluded$5e = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17852
|
+
var loadingCircleStyle$5e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17730
17853
|
var ArrowLeft2 = function ArrowLeft2(props) {
|
|
17731
17854
|
var color = props.color,
|
|
17732
17855
|
size = props.size,
|
|
@@ -17734,12 +17857,12 @@ var ArrowLeft2 = function ArrowLeft2(props) {
|
|
|
17734
17857
|
style = props.style,
|
|
17735
17858
|
className = props.className,
|
|
17736
17859
|
iconClassName = props.iconClassName,
|
|
17737
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17860
|
+
otherProps = _objectWithoutProperties(props, _excluded$5e);
|
|
17738
17861
|
return /*#__PURE__*/React.createElement("span", {
|
|
17739
17862
|
role: "img",
|
|
17740
17863
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17741
17864
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17742
|
-
children: loadingCircleStyle$
|
|
17865
|
+
children: loadingCircleStyle$5e
|
|
17743
17866
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17744
17867
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17745
17868
|
width: size,
|
|
@@ -17774,8 +17897,8 @@ ArrowLeft2.defaultProps = {
|
|
|
17774
17897
|
size: '1em'
|
|
17775
17898
|
};
|
|
17776
17899
|
|
|
17777
|
-
var _excluded$
|
|
17778
|
-
var loadingCircleStyle$
|
|
17900
|
+
var _excluded$5f = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17901
|
+
var loadingCircleStyle$5f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17779
17902
|
var ArrowRight2 = function ArrowRight2(props) {
|
|
17780
17903
|
var color = props.color,
|
|
17781
17904
|
size = props.size,
|
|
@@ -17783,12 +17906,12 @@ var ArrowRight2 = function ArrowRight2(props) {
|
|
|
17783
17906
|
style = props.style,
|
|
17784
17907
|
className = props.className,
|
|
17785
17908
|
iconClassName = props.iconClassName,
|
|
17786
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17909
|
+
otherProps = _objectWithoutProperties(props, _excluded$5f);
|
|
17787
17910
|
return /*#__PURE__*/React.createElement("span", {
|
|
17788
17911
|
role: "img",
|
|
17789
17912
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17790
17913
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17791
|
-
children: loadingCircleStyle$
|
|
17914
|
+
children: loadingCircleStyle$5f
|
|
17792
17915
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17793
17916
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17794
17917
|
width: size,
|
|
@@ -17823,8 +17946,8 @@ ArrowRight2.defaultProps = {
|
|
|
17823
17946
|
size: '1em'
|
|
17824
17947
|
};
|
|
17825
17948
|
|
|
17826
|
-
var _excluded$
|
|
17827
|
-
var loadingCircleStyle$
|
|
17949
|
+
var _excluded$5g = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17950
|
+
var loadingCircleStyle$5g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17828
17951
|
var ArrowUp2 = function ArrowUp2(props) {
|
|
17829
17952
|
var color = props.color,
|
|
17830
17953
|
size = props.size,
|
|
@@ -17832,12 +17955,12 @@ var ArrowUp2 = function ArrowUp2(props) {
|
|
|
17832
17955
|
style = props.style,
|
|
17833
17956
|
className = props.className,
|
|
17834
17957
|
iconClassName = props.iconClassName,
|
|
17835
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
17958
|
+
otherProps = _objectWithoutProperties(props, _excluded$5g);
|
|
17836
17959
|
return /*#__PURE__*/React.createElement("span", {
|
|
17837
17960
|
role: "img",
|
|
17838
17961
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17839
17962
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17840
|
-
children: loadingCircleStyle$
|
|
17963
|
+
children: loadingCircleStyle$5g
|
|
17841
17964
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17842
17965
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17843
17966
|
width: size,
|
|
@@ -17872,8 +17995,8 @@ ArrowUp2.defaultProps = {
|
|
|
17872
17995
|
size: '1em'
|
|
17873
17996
|
};
|
|
17874
17997
|
|
|
17875
|
-
var _excluded$
|
|
17876
|
-
var loadingCircleStyle$
|
|
17998
|
+
var _excluded$5h = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
17999
|
+
var loadingCircleStyle$5h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17877
18000
|
var ArrowDown2 = function ArrowDown2(props) {
|
|
17878
18001
|
var color = props.color,
|
|
17879
18002
|
size = props.size,
|
|
@@ -17881,12 +18004,12 @@ var ArrowDown2 = function ArrowDown2(props) {
|
|
|
17881
18004
|
style = props.style,
|
|
17882
18005
|
className = props.className,
|
|
17883
18006
|
iconClassName = props.iconClassName,
|
|
17884
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18007
|
+
otherProps = _objectWithoutProperties(props, _excluded$5h);
|
|
17885
18008
|
return /*#__PURE__*/React.createElement("span", {
|
|
17886
18009
|
role: "img",
|
|
17887
18010
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17888
18011
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17889
|
-
children: loadingCircleStyle$
|
|
18012
|
+
children: loadingCircleStyle$5h
|
|
17890
18013
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17891
18014
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17892
18015
|
width: size,
|
|
@@ -17921,8 +18044,8 @@ ArrowDown2.defaultProps = {
|
|
|
17921
18044
|
size: '1em'
|
|
17922
18045
|
};
|
|
17923
18046
|
|
|
17924
|
-
var _excluded$
|
|
17925
|
-
var loadingCircleStyle$
|
|
18047
|
+
var _excluded$5i = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18048
|
+
var loadingCircleStyle$5i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17926
18049
|
var TriLeft = function TriLeft(props) {
|
|
17927
18050
|
var color = props.color,
|
|
17928
18051
|
size = props.size,
|
|
@@ -17930,12 +18053,12 @@ var TriLeft = function TriLeft(props) {
|
|
|
17930
18053
|
style = props.style,
|
|
17931
18054
|
className = props.className,
|
|
17932
18055
|
iconClassName = props.iconClassName,
|
|
17933
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18056
|
+
otherProps = _objectWithoutProperties(props, _excluded$5i);
|
|
17934
18057
|
return /*#__PURE__*/React.createElement("span", {
|
|
17935
18058
|
role: "img",
|
|
17936
18059
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17937
18060
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17938
|
-
children: loadingCircleStyle$
|
|
18061
|
+
children: loadingCircleStyle$5i
|
|
17939
18062
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17940
18063
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17941
18064
|
width: size,
|
|
@@ -17970,8 +18093,8 @@ TriLeft.defaultProps = {
|
|
|
17970
18093
|
size: '1em'
|
|
17971
18094
|
};
|
|
17972
18095
|
|
|
17973
|
-
var _excluded$
|
|
17974
|
-
var loadingCircleStyle$
|
|
18096
|
+
var _excluded$5j = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18097
|
+
var loadingCircleStyle$5j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
17975
18098
|
var TriRight = function TriRight(props) {
|
|
17976
18099
|
var color = props.color,
|
|
17977
18100
|
size = props.size,
|
|
@@ -17979,12 +18102,12 @@ var TriRight = function TriRight(props) {
|
|
|
17979
18102
|
style = props.style,
|
|
17980
18103
|
className = props.className,
|
|
17981
18104
|
iconClassName = props.iconClassName,
|
|
17982
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18105
|
+
otherProps = _objectWithoutProperties(props, _excluded$5j);
|
|
17983
18106
|
return /*#__PURE__*/React.createElement("span", {
|
|
17984
18107
|
role: "img",
|
|
17985
18108
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
17986
18109
|
}, /*#__PURE__*/React.createElement("style", {
|
|
17987
|
-
children: loadingCircleStyle$
|
|
18110
|
+
children: loadingCircleStyle$5j
|
|
17988
18111
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
17989
18112
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17990
18113
|
width: size,
|
|
@@ -18019,8 +18142,8 @@ TriRight.defaultProps = {
|
|
|
18019
18142
|
size: '1em'
|
|
18020
18143
|
};
|
|
18021
18144
|
|
|
18022
|
-
var _excluded$
|
|
18023
|
-
var loadingCircleStyle$
|
|
18145
|
+
var _excluded$5k = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18146
|
+
var loadingCircleStyle$5k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18024
18147
|
var TriUp = function TriUp(props) {
|
|
18025
18148
|
var color = props.color,
|
|
18026
18149
|
size = props.size,
|
|
@@ -18028,12 +18151,12 @@ var TriUp = function TriUp(props) {
|
|
|
18028
18151
|
style = props.style,
|
|
18029
18152
|
className = props.className,
|
|
18030
18153
|
iconClassName = props.iconClassName,
|
|
18031
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18154
|
+
otherProps = _objectWithoutProperties(props, _excluded$5k);
|
|
18032
18155
|
return /*#__PURE__*/React.createElement("span", {
|
|
18033
18156
|
role: "img",
|
|
18034
18157
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18035
18158
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18036
|
-
children: loadingCircleStyle$
|
|
18159
|
+
children: loadingCircleStyle$5k
|
|
18037
18160
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18038
18161
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18039
18162
|
width: size,
|
|
@@ -18068,8 +18191,8 @@ TriUp.defaultProps = {
|
|
|
18068
18191
|
size: '1em'
|
|
18069
18192
|
};
|
|
18070
18193
|
|
|
18071
|
-
var _excluded$
|
|
18072
|
-
var loadingCircleStyle$
|
|
18194
|
+
var _excluded$5l = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18195
|
+
var loadingCircleStyle$5l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18073
18196
|
var TriDown = function TriDown(props) {
|
|
18074
18197
|
var color = props.color,
|
|
18075
18198
|
size = props.size,
|
|
@@ -18077,12 +18200,12 @@ var TriDown = function TriDown(props) {
|
|
|
18077
18200
|
style = props.style,
|
|
18078
18201
|
className = props.className,
|
|
18079
18202
|
iconClassName = props.iconClassName,
|
|
18080
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18203
|
+
otherProps = _objectWithoutProperties(props, _excluded$5l);
|
|
18081
18204
|
return /*#__PURE__*/React.createElement("span", {
|
|
18082
18205
|
role: "img",
|
|
18083
18206
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18084
18207
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18085
|
-
children: loadingCircleStyle$
|
|
18208
|
+
children: loadingCircleStyle$5l
|
|
18086
18209
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18087
18210
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18088
18211
|
width: size,
|
|
@@ -18117,8 +18240,8 @@ TriDown.defaultProps = {
|
|
|
18117
18240
|
size: '1em'
|
|
18118
18241
|
};
|
|
18119
18242
|
|
|
18120
|
-
var _excluded$
|
|
18121
|
-
var loadingCircleStyle$
|
|
18243
|
+
var _excluded$5m = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18244
|
+
var loadingCircleStyle$5m = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18122
18245
|
var DArrowL = function DArrowL(props) {
|
|
18123
18246
|
var color = props.color,
|
|
18124
18247
|
size = props.size,
|
|
@@ -18126,12 +18249,12 @@ var DArrowL = function DArrowL(props) {
|
|
|
18126
18249
|
style = props.style,
|
|
18127
18250
|
className = props.className,
|
|
18128
18251
|
iconClassName = props.iconClassName,
|
|
18129
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18252
|
+
otherProps = _objectWithoutProperties(props, _excluded$5m);
|
|
18130
18253
|
return /*#__PURE__*/React.createElement("span", {
|
|
18131
18254
|
role: "img",
|
|
18132
18255
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18133
18256
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18134
|
-
children: loadingCircleStyle$
|
|
18257
|
+
children: loadingCircleStyle$5m
|
|
18135
18258
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18136
18259
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18137
18260
|
width: size,
|
|
@@ -18168,8 +18291,8 @@ DArrowL.defaultProps = {
|
|
|
18168
18291
|
size: '1em'
|
|
18169
18292
|
};
|
|
18170
18293
|
|
|
18171
|
-
var _excluded$
|
|
18172
|
-
var loadingCircleStyle$
|
|
18294
|
+
var _excluded$5n = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18295
|
+
var loadingCircleStyle$5n = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18173
18296
|
var DArrowR = function DArrowR(props) {
|
|
18174
18297
|
var color = props.color,
|
|
18175
18298
|
size = props.size,
|
|
@@ -18177,12 +18300,12 @@ var DArrowR = function DArrowR(props) {
|
|
|
18177
18300
|
style = props.style,
|
|
18178
18301
|
className = props.className,
|
|
18179
18302
|
iconClassName = props.iconClassName,
|
|
18180
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18303
|
+
otherProps = _objectWithoutProperties(props, _excluded$5n);
|
|
18181
18304
|
return /*#__PURE__*/React.createElement("span", {
|
|
18182
18305
|
role: "img",
|
|
18183
18306
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18184
18307
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18185
|
-
children: loadingCircleStyle$
|
|
18308
|
+
children: loadingCircleStyle$5n
|
|
18186
18309
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18187
18310
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18188
18311
|
width: size,
|
|
@@ -18219,8 +18342,8 @@ DArrowR.defaultProps = {
|
|
|
18219
18342
|
size: '1em'
|
|
18220
18343
|
};
|
|
18221
18344
|
|
|
18222
|
-
var _excluded$
|
|
18223
|
-
var loadingCircleStyle$
|
|
18345
|
+
var _excluded$5o = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18346
|
+
var loadingCircleStyle$5o = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18224
18347
|
var DArrowT = function DArrowT(props) {
|
|
18225
18348
|
var color = props.color,
|
|
18226
18349
|
size = props.size,
|
|
@@ -18228,12 +18351,12 @@ var DArrowT = function DArrowT(props) {
|
|
|
18228
18351
|
style = props.style,
|
|
18229
18352
|
className = props.className,
|
|
18230
18353
|
iconClassName = props.iconClassName,
|
|
18231
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18354
|
+
otherProps = _objectWithoutProperties(props, _excluded$5o);
|
|
18232
18355
|
return /*#__PURE__*/React.createElement("span", {
|
|
18233
18356
|
role: "img",
|
|
18234
18357
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18235
18358
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18236
|
-
children: loadingCircleStyle$
|
|
18359
|
+
children: loadingCircleStyle$5o
|
|
18237
18360
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18238
18361
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18239
18362
|
width: size,
|
|
@@ -18270,8 +18393,8 @@ DArrowT.defaultProps = {
|
|
|
18270
18393
|
size: '1em'
|
|
18271
18394
|
};
|
|
18272
18395
|
|
|
18273
|
-
var _excluded$
|
|
18274
|
-
var loadingCircleStyle$
|
|
18396
|
+
var _excluded$5p = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18397
|
+
var loadingCircleStyle$5p = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18275
18398
|
var DArrowB = function DArrowB(props) {
|
|
18276
18399
|
var color = props.color,
|
|
18277
18400
|
size = props.size,
|
|
@@ -18279,12 +18402,12 @@ var DArrowB = function DArrowB(props) {
|
|
|
18279
18402
|
style = props.style,
|
|
18280
18403
|
className = props.className,
|
|
18281
18404
|
iconClassName = props.iconClassName,
|
|
18282
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18405
|
+
otherProps = _objectWithoutProperties(props, _excluded$5p);
|
|
18283
18406
|
return /*#__PURE__*/React.createElement("span", {
|
|
18284
18407
|
role: "img",
|
|
18285
18408
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18286
18409
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18287
|
-
children: loadingCircleStyle$
|
|
18410
|
+
children: loadingCircleStyle$5p
|
|
18288
18411
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18289
18412
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18290
18413
|
width: size,
|
|
@@ -18321,8 +18444,8 @@ DArrowB.defaultProps = {
|
|
|
18321
18444
|
size: '1em'
|
|
18322
18445
|
};
|
|
18323
18446
|
|
|
18324
|
-
var _excluded$
|
|
18325
|
-
var loadingCircleStyle$
|
|
18447
|
+
var _excluded$5q = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18448
|
+
var loadingCircleStyle$5q = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18326
18449
|
var DropDown = function DropDown(props) {
|
|
18327
18450
|
var color = props.color,
|
|
18328
18451
|
size = props.size,
|
|
@@ -18330,12 +18453,12 @@ var DropDown = function DropDown(props) {
|
|
|
18330
18453
|
style = props.style,
|
|
18331
18454
|
className = props.className,
|
|
18332
18455
|
iconClassName = props.iconClassName,
|
|
18333
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18456
|
+
otherProps = _objectWithoutProperties(props, _excluded$5q);
|
|
18334
18457
|
return /*#__PURE__*/React.createElement("span", {
|
|
18335
18458
|
role: "img",
|
|
18336
18459
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18337
18460
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18338
|
-
children: loadingCircleStyle$
|
|
18461
|
+
children: loadingCircleStyle$5q
|
|
18339
18462
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18340
18463
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18341
18464
|
width: size,
|
|
@@ -18370,8 +18493,8 @@ DropDown.defaultProps = {
|
|
|
18370
18493
|
size: '1em'
|
|
18371
18494
|
};
|
|
18372
18495
|
|
|
18373
|
-
var _excluded$
|
|
18374
|
-
var loadingCircleStyle$
|
|
18496
|
+
var _excluded$5r = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18497
|
+
var loadingCircleStyle$5r = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18375
18498
|
var DropUp = function DropUp(props) {
|
|
18376
18499
|
var color = props.color,
|
|
18377
18500
|
size = props.size,
|
|
@@ -18379,12 +18502,12 @@ var DropUp = function DropUp(props) {
|
|
|
18379
18502
|
style = props.style,
|
|
18380
18503
|
className = props.className,
|
|
18381
18504
|
iconClassName = props.iconClassName,
|
|
18382
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18505
|
+
otherProps = _objectWithoutProperties(props, _excluded$5r);
|
|
18383
18506
|
return /*#__PURE__*/React.createElement("span", {
|
|
18384
18507
|
role: "img",
|
|
18385
18508
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18386
18509
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18387
|
-
children: loadingCircleStyle$
|
|
18510
|
+
children: loadingCircleStyle$5r
|
|
18388
18511
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18389
18512
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18390
18513
|
width: size,
|
|
@@ -18419,8 +18542,8 @@ DropUp.defaultProps = {
|
|
|
18419
18542
|
size: '1em'
|
|
18420
18543
|
};
|
|
18421
18544
|
|
|
18422
|
-
var _excluded$
|
|
18423
|
-
var loadingCircleStyle$
|
|
18545
|
+
var _excluded$5s = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18546
|
+
var loadingCircleStyle$5s = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18424
18547
|
var More1 = function More1(props) {
|
|
18425
18548
|
var color = props.color,
|
|
18426
18549
|
size = props.size,
|
|
@@ -18428,12 +18551,12 @@ var More1 = function More1(props) {
|
|
|
18428
18551
|
style = props.style,
|
|
18429
18552
|
className = props.className,
|
|
18430
18553
|
iconClassName = props.iconClassName,
|
|
18431
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18554
|
+
otherProps = _objectWithoutProperties(props, _excluded$5s);
|
|
18432
18555
|
return /*#__PURE__*/React.createElement("span", {
|
|
18433
18556
|
role: "img",
|
|
18434
18557
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18435
18558
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18436
|
-
children: loadingCircleStyle$
|
|
18559
|
+
children: loadingCircleStyle$5s
|
|
18437
18560
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18438
18561
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18439
18562
|
width: size,
|
|
@@ -18468,8 +18591,8 @@ More1.defaultProps = {
|
|
|
18468
18591
|
size: '1em'
|
|
18469
18592
|
};
|
|
18470
18593
|
|
|
18471
|
-
var _excluded$
|
|
18472
|
-
var loadingCircleStyle$
|
|
18594
|
+
var _excluded$5t = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18595
|
+
var loadingCircleStyle$5t = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18473
18596
|
var More2 = function More2(props) {
|
|
18474
18597
|
var color = props.color,
|
|
18475
18598
|
size = props.size,
|
|
@@ -18477,12 +18600,12 @@ var More2 = function More2(props) {
|
|
|
18477
18600
|
style = props.style,
|
|
18478
18601
|
className = props.className,
|
|
18479
18602
|
iconClassName = props.iconClassName,
|
|
18480
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18603
|
+
otherProps = _objectWithoutProperties(props, _excluded$5t);
|
|
18481
18604
|
return /*#__PURE__*/React.createElement("span", {
|
|
18482
18605
|
role: "img",
|
|
18483
18606
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18484
18607
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18485
|
-
children: loadingCircleStyle$
|
|
18608
|
+
children: loadingCircleStyle$5t
|
|
18486
18609
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18487
18610
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18488
18611
|
width: size,
|
|
@@ -18517,8 +18640,8 @@ More2.defaultProps = {
|
|
|
18517
18640
|
size: '1em'
|
|
18518
18641
|
};
|
|
18519
18642
|
|
|
18520
|
-
var _excluded$
|
|
18521
|
-
var loadingCircleStyle$
|
|
18643
|
+
var _excluded$5u = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18644
|
+
var loadingCircleStyle$5u = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18522
18645
|
var Drag = function Drag(props) {
|
|
18523
18646
|
var color = props.color,
|
|
18524
18647
|
size = props.size,
|
|
@@ -18526,12 +18649,12 @@ var Drag = function Drag(props) {
|
|
|
18526
18649
|
style = props.style,
|
|
18527
18650
|
className = props.className,
|
|
18528
18651
|
iconClassName = props.iconClassName,
|
|
18529
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18652
|
+
otherProps = _objectWithoutProperties(props, _excluded$5u);
|
|
18530
18653
|
return /*#__PURE__*/React.createElement("span", {
|
|
18531
18654
|
role: "img",
|
|
18532
18655
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18533
18656
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18534
|
-
children: loadingCircleStyle$
|
|
18657
|
+
children: loadingCircleStyle$5u
|
|
18535
18658
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18536
18659
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18537
18660
|
width: size,
|
|
@@ -18576,8 +18699,8 @@ Drag.defaultProps = {
|
|
|
18576
18699
|
size: '1em'
|
|
18577
18700
|
};
|
|
18578
18701
|
|
|
18579
|
-
var _excluded$
|
|
18580
|
-
var loadingCircleStyle$
|
|
18702
|
+
var _excluded$5v = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18703
|
+
var loadingCircleStyle$5v = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18581
18704
|
var Grid = function Grid(props) {
|
|
18582
18705
|
var color = props.color,
|
|
18583
18706
|
size = props.size,
|
|
@@ -18585,12 +18708,12 @@ var Grid = function Grid(props) {
|
|
|
18585
18708
|
style = props.style,
|
|
18586
18709
|
className = props.className,
|
|
18587
18710
|
iconClassName = props.iconClassName,
|
|
18588
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18711
|
+
otherProps = _objectWithoutProperties(props, _excluded$5v);
|
|
18589
18712
|
return /*#__PURE__*/React.createElement("span", {
|
|
18590
18713
|
role: "img",
|
|
18591
18714
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18592
18715
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18593
|
-
children: loadingCircleStyle$
|
|
18716
|
+
children: loadingCircleStyle$5v
|
|
18594
18717
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18595
18718
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18596
18719
|
width: size,
|
|
@@ -18627,8 +18750,8 @@ Grid.defaultProps = {
|
|
|
18627
18750
|
size: '1em'
|
|
18628
18751
|
};
|
|
18629
18752
|
|
|
18630
|
-
var _excluded$
|
|
18631
|
-
var loadingCircleStyle$
|
|
18753
|
+
var _excluded$5w = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18754
|
+
var loadingCircleStyle$5w = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18632
18755
|
var Drag2 = function Drag2(props) {
|
|
18633
18756
|
var color = props.color,
|
|
18634
18757
|
size = props.size,
|
|
@@ -18636,12 +18759,12 @@ var Drag2 = function Drag2(props) {
|
|
|
18636
18759
|
style = props.style,
|
|
18637
18760
|
className = props.className,
|
|
18638
18761
|
iconClassName = props.iconClassName,
|
|
18639
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18762
|
+
otherProps = _objectWithoutProperties(props, _excluded$5w);
|
|
18640
18763
|
return /*#__PURE__*/React.createElement("span", {
|
|
18641
18764
|
role: "img",
|
|
18642
18765
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18643
18766
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18644
|
-
children: loadingCircleStyle$
|
|
18767
|
+
children: loadingCircleStyle$5w
|
|
18645
18768
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18646
18769
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18647
18770
|
width: size,
|
|
@@ -18680,8 +18803,8 @@ Drag2.defaultProps = {
|
|
|
18680
18803
|
size: '1em'
|
|
18681
18804
|
};
|
|
18682
18805
|
|
|
18683
|
-
var _excluded$
|
|
18684
|
-
var loadingCircleStyle$
|
|
18806
|
+
var _excluded$5x = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18807
|
+
var loadingCircleStyle$5x = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18685
18808
|
var External = function External(props) {
|
|
18686
18809
|
var color = props.color,
|
|
18687
18810
|
size = props.size,
|
|
@@ -18689,12 +18812,12 @@ var External = function External(props) {
|
|
|
18689
18812
|
style = props.style,
|
|
18690
18813
|
className = props.className,
|
|
18691
18814
|
iconClassName = props.iconClassName,
|
|
18692
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18815
|
+
otherProps = _objectWithoutProperties(props, _excluded$5x);
|
|
18693
18816
|
return /*#__PURE__*/React.createElement("span", {
|
|
18694
18817
|
role: "img",
|
|
18695
18818
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18696
18819
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18697
|
-
children: loadingCircleStyle$
|
|
18820
|
+
children: loadingCircleStyle$5x
|
|
18698
18821
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18699
18822
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18700
18823
|
width: size,
|
|
@@ -18729,8 +18852,8 @@ External.defaultProps = {
|
|
|
18729
18852
|
size: '1em'
|
|
18730
18853
|
};
|
|
18731
18854
|
|
|
18732
|
-
var _excluded$
|
|
18733
|
-
var loadingCircleStyle$
|
|
18855
|
+
var _excluded$5y = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18856
|
+
var loadingCircleStyle$5y = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18734
18857
|
var DisplayS = function DisplayS(props) {
|
|
18735
18858
|
var color = props.color,
|
|
18736
18859
|
size = props.size,
|
|
@@ -18738,12 +18861,12 @@ var DisplayS = function DisplayS(props) {
|
|
|
18738
18861
|
style = props.style,
|
|
18739
18862
|
className = props.className,
|
|
18740
18863
|
iconClassName = props.iconClassName,
|
|
18741
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18864
|
+
otherProps = _objectWithoutProperties(props, _excluded$5y);
|
|
18742
18865
|
return /*#__PURE__*/React.createElement("span", {
|
|
18743
18866
|
role: "img",
|
|
18744
18867
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18745
18868
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18746
|
-
children: loadingCircleStyle$
|
|
18869
|
+
children: loadingCircleStyle$5y
|
|
18747
18870
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18748
18871
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18749
18872
|
width: size,
|
|
@@ -18780,8 +18903,8 @@ DisplayS.defaultProps = {
|
|
|
18780
18903
|
size: '1em'
|
|
18781
18904
|
};
|
|
18782
18905
|
|
|
18783
|
-
var _excluded$
|
|
18784
|
-
var loadingCircleStyle$
|
|
18906
|
+
var _excluded$5z = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
18907
|
+
var loadingCircleStyle$5z = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
18785
18908
|
var Share = function Share(props) {
|
|
18786
18909
|
var color = props.color,
|
|
18787
18910
|
size = props.size,
|
|
@@ -18789,12 +18912,12 @@ var Share = function Share(props) {
|
|
|
18789
18912
|
style = props.style,
|
|
18790
18913
|
className = props.className,
|
|
18791
18914
|
iconClassName = props.iconClassName,
|
|
18792
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
18915
|
+
otherProps = _objectWithoutProperties(props, _excluded$5z);
|
|
18793
18916
|
return /*#__PURE__*/React.createElement("span", {
|
|
18794
18917
|
role: "img",
|
|
18795
18918
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
18796
18919
|
}, /*#__PURE__*/React.createElement("style", {
|
|
18797
|
-
children: loadingCircleStyle$
|
|
18920
|
+
children: loadingCircleStyle$5z
|
|
18798
18921
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
18799
18922
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18800
18923
|
width: size,
|
|
@@ -18854,6 +18977,8 @@ exports.TaArrowUp2 = ArrowUp2;
|
|
|
18854
18977
|
exports.TaAscent = Ascent;
|
|
18855
18978
|
exports.TaAssetConvert = AssetConvert;
|
|
18856
18979
|
exports.TaAttribution = Attribution;
|
|
18980
|
+
exports.TaAvatarGroupCl = AvatarGroupCl;
|
|
18981
|
+
exports.TaAvatarProjectCl = AvatarProjectCl;
|
|
18857
18982
|
exports.TaBackup = Backup;
|
|
18858
18983
|
exports.TaBell = Bell;
|
|
18859
18984
|
exports.TaBell2Fill = Bell2Fill;
|