@tant/icons 1.18.24 → 1.18.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/icons/pin-2.js +1 -1
- package/dist/es/icons/{pin-2-fill.js → pin-fill.js} +4 -4
- package/dist/es/index.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/lib/icons/pin-2.js +1 -1
- package/dist/lib/icons/{pin-2-fill.js → pin-fill.js} +4 -4
- package/dist/lib/index.js +4 -4
- package/dist/tant-icons.cjs.js +95 -95
- package/dist/tant-icons.esm.js +95 -95
- package/package.json +1 -1
package/dist/es/icons/pin-2.js
CHANGED
|
@@ -47,7 +47,7 @@ var Pin2 = function Pin2(props) {
|
|
|
47
47
|
}, /*#__PURE__*/React.createElement("g", {
|
|
48
48
|
clipPath: "url(#clip0_9610_29)"
|
|
49
49
|
}, /*#__PURE__*/React.createElement("path", {
|
|
50
|
-
d: "M23.314 10.
|
|
50
|
+
d: "M23.314 10.172l-1.415 1.414-.707-.707-4.242 4.242-.708 3.536-1.414 1.414-4.242-4.243-4.95 4.95-1.414-1.414 4.95-4.95-4.243-4.242 1.414-1.415 3.535-.707 4.243-4.242-.707-.707 1.414-1.415 8.486 8.486zm-7.779-4.95l-4.67 4.67-2.822.565 6.5 6.5.564-2.822 4.67-4.67-4.242-4.243z"
|
|
51
51
|
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
52
52
|
id: "clip0_9610_29"
|
|
53
53
|
}, /*#__PURE__*/React.createElement("rect", {
|
|
@@ -11,7 +11,7 @@ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t =
|
|
|
11
11
|
import React from 'react';
|
|
12
12
|
import PropTypes from 'prop-types';
|
|
13
13
|
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
-
var
|
|
14
|
+
var PinFill = function PinFill(props) {
|
|
15
15
|
var color = props.color,
|
|
16
16
|
size = props.size,
|
|
17
17
|
spin = props.spin,
|
|
@@ -48,16 +48,16 @@ var Pin2Fill = function Pin2Fill(props) {
|
|
|
48
48
|
d: "M18 5V3H6v2h1v6l-2 3v2h6v7h2v-7h6v-2l-2-3V5h1z"
|
|
49
49
|
}))));
|
|
50
50
|
};
|
|
51
|
-
|
|
51
|
+
PinFill.propTypes = {
|
|
52
52
|
iconClassName: PropTypes.string,
|
|
53
53
|
spin: PropTypes.bool,
|
|
54
54
|
color: PropTypes.string,
|
|
55
55
|
testid: PropTypes.string,
|
|
56
56
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
57
57
|
};
|
|
58
|
-
|
|
58
|
+
PinFill.defaultProps = {
|
|
59
59
|
spin: false,
|
|
60
60
|
color: 'currentColor',
|
|
61
61
|
size: '1em'
|
|
62
62
|
};
|
|
63
|
-
export default
|
|
63
|
+
export default PinFill;
|
package/dist/es/index.js
CHANGED
|
@@ -390,8 +390,10 @@ export { default as TaFullDownload } from './icons/full-download';
|
|
|
390
390
|
export { default as TaDownload } from './icons/download';
|
|
391
391
|
export { default as TaEventModify } from './icons/event-modify';
|
|
392
392
|
export { default as TaPin } from './icons/pin';
|
|
393
|
+
export { default as TaPinFill } from './icons/pin-fill';
|
|
393
394
|
export { default as TaPinUnsave } from './icons/pin-unsave';
|
|
394
395
|
export { default as TaUnpin } from './icons/unpin';
|
|
396
|
+
export { default as TaPin2 } from './icons/pin-2';
|
|
395
397
|
export { default as TaUnsave } from './icons/unsave';
|
|
396
398
|
export { default as TaSticky } from './icons/sticky';
|
|
397
399
|
export { default as TaOnline } from './icons/online';
|
|
@@ -402,8 +404,6 @@ export { default as TaArrowGoBack } from './icons/arrow-go-back';
|
|
|
402
404
|
export { default as TaArrowGoForward } from './icons/arrow-go-forward';
|
|
403
405
|
export { default as TaRecycle } from './icons/recycle';
|
|
404
406
|
export { default as TaOfflineSync } from './icons/offline-sync';
|
|
405
|
-
export { default as TaPin2 } from './icons/pin-2';
|
|
406
|
-
export { default as TaPin2Fill } from './icons/pin-2-fill';
|
|
407
407
|
export { default as TaInfo } from './icons/info';
|
|
408
408
|
export { default as TaInfoFill } from './icons/info-fill';
|
|
409
409
|
export { default as TaHelp } from './icons/help';
|
package/dist/index.d.ts
CHANGED
|
@@ -402,8 +402,10 @@ export const TaFullDownload: Icon;
|
|
|
402
402
|
export const TaDownload: Icon;
|
|
403
403
|
export const TaEventModify: Icon;
|
|
404
404
|
export const TaPin: Icon;
|
|
405
|
+
export const TaPinFill: Icon;
|
|
405
406
|
export const TaPinUnsave: Icon;
|
|
406
407
|
export const TaUnpin: Icon;
|
|
408
|
+
export const TaPin2: Icon;
|
|
407
409
|
export const TaUnsave: Icon;
|
|
408
410
|
export const TaSticky: Icon;
|
|
409
411
|
export const TaOnline: Icon;
|
|
@@ -414,8 +416,6 @@ export const TaArrowGoBack: Icon;
|
|
|
414
416
|
export const TaArrowGoForward: Icon;
|
|
415
417
|
export const TaRecycle: Icon;
|
|
416
418
|
export const TaOfflineSync: Icon;
|
|
417
|
-
export const TaPin2: Icon;
|
|
418
|
-
export const TaPin2Fill: Icon;
|
|
419
419
|
export const TaInfo: Icon;
|
|
420
420
|
export const TaInfoFill: Icon;
|
|
421
421
|
export const TaHelp: Icon;
|
package/dist/lib/icons/pin-2.js
CHANGED
|
@@ -54,7 +54,7 @@ var Pin2 = function Pin2(props) {
|
|
|
54
54
|
}, /*#__PURE__*/_react["default"].createElement("g", {
|
|
55
55
|
clipPath: "url(#clip0_9610_29)"
|
|
56
56
|
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
57
|
-
d: "M23.314 10.
|
|
57
|
+
d: "M23.314 10.172l-1.415 1.414-.707-.707-4.242 4.242-.708 3.536-1.414 1.414-4.242-4.243-4.95 4.95-1.414-1.414 4.95-4.95-4.243-4.242 1.414-1.415 3.535-.707 4.243-4.242-.707-.707 1.414-1.415 8.486 8.486zm-7.779-4.95l-4.67 4.67-2.822.565 6.5 6.5.564-2.822 4.67-4.67-4.242-4.243z"
|
|
58
58
|
})), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("clipPath", {
|
|
59
59
|
id: "clip0_9610_29"
|
|
60
60
|
}, /*#__PURE__*/_react["default"].createElement("rect", {
|
|
@@ -18,7 +18,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
18
18
|
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
19
19
|
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
20
20
|
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
-
var
|
|
21
|
+
var PinFill = function PinFill(props) {
|
|
22
22
|
var color = props.color,
|
|
23
23
|
size = props.size,
|
|
24
24
|
spin = props.spin,
|
|
@@ -55,16 +55,16 @@ var Pin2Fill = function Pin2Fill(props) {
|
|
|
55
55
|
d: "M18 5V3H6v2h1v6l-2 3v2h6v7h2v-7h6v-2l-2-3V5h1z"
|
|
56
56
|
}))));
|
|
57
57
|
};
|
|
58
|
-
|
|
58
|
+
PinFill.propTypes = {
|
|
59
59
|
iconClassName: _propTypes["default"].string,
|
|
60
60
|
spin: _propTypes["default"].bool,
|
|
61
61
|
color: _propTypes["default"].string,
|
|
62
62
|
testid: _propTypes["default"].string,
|
|
63
63
|
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
64
64
|
};
|
|
65
|
-
|
|
65
|
+
PinFill.defaultProps = {
|
|
66
66
|
spin: false,
|
|
67
67
|
color: 'currentColor',
|
|
68
68
|
size: '1em'
|
|
69
69
|
};
|
|
70
|
-
var _default = exports["default"] =
|
|
70
|
+
var _default = exports["default"] = PinFill;
|
package/dist/lib/index.js
CHANGED
|
@@ -2031,10 +2031,10 @@ Object.defineProperty(exports, "TaPin2", {
|
|
|
2031
2031
|
return _pin2["default"];
|
|
2032
2032
|
}
|
|
2033
2033
|
});
|
|
2034
|
-
Object.defineProperty(exports, "
|
|
2034
|
+
Object.defineProperty(exports, "TaPinFill", {
|
|
2035
2035
|
enumerable: true,
|
|
2036
2036
|
get: function get() {
|
|
2037
|
-
return
|
|
2037
|
+
return _pinFill["default"];
|
|
2038
2038
|
}
|
|
2039
2039
|
});
|
|
2040
2040
|
Object.defineProperty(exports, "TaPinUnsave", {
|
|
@@ -3299,8 +3299,10 @@ var _fullDownload = _interopRequireDefault(require("./icons/full-download"));
|
|
|
3299
3299
|
var _download = _interopRequireDefault(require("./icons/download"));
|
|
3300
3300
|
var _eventModify = _interopRequireDefault(require("./icons/event-modify"));
|
|
3301
3301
|
var _pin = _interopRequireDefault(require("./icons/pin"));
|
|
3302
|
+
var _pinFill = _interopRequireDefault(require("./icons/pin-fill"));
|
|
3302
3303
|
var _pinUnsave = _interopRequireDefault(require("./icons/pin-unsave"));
|
|
3303
3304
|
var _unpin = _interopRequireDefault(require("./icons/unpin"));
|
|
3305
|
+
var _pin2 = _interopRequireDefault(require("./icons/pin-2"));
|
|
3304
3306
|
var _unsave = _interopRequireDefault(require("./icons/unsave"));
|
|
3305
3307
|
var _sticky = _interopRequireDefault(require("./icons/sticky"));
|
|
3306
3308
|
var _online = _interopRequireDefault(require("./icons/online"));
|
|
@@ -3311,8 +3313,6 @@ var _arrowGoBack = _interopRequireDefault(require("./icons/arrow-go-back"));
|
|
|
3311
3313
|
var _arrowGoForward = _interopRequireDefault(require("./icons/arrow-go-forward"));
|
|
3312
3314
|
var _recycle = _interopRequireDefault(require("./icons/recycle"));
|
|
3313
3315
|
var _offlineSync = _interopRequireDefault(require("./icons/offline-sync"));
|
|
3314
|
-
var _pin2 = _interopRequireDefault(require("./icons/pin-2"));
|
|
3315
|
-
var _pin2Fill = _interopRequireDefault(require("./icons/pin-2-fill"));
|
|
3316
3316
|
var _info = _interopRequireDefault(require("./icons/info"));
|
|
3317
3317
|
var _infoFill = _interopRequireDefault(require("./icons/info-fill"));
|
|
3318
3318
|
var _help = _interopRequireDefault(require("./icons/help"));
|
package/dist/tant-icons.cjs.js
CHANGED
|
@@ -22837,7 +22837,7 @@ Pin.defaultProps = {
|
|
|
22837
22837
|
|
|
22838
22838
|
var _excluded$68 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22839
22839
|
var loadingCircleStyle$68 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22840
|
-
var
|
|
22840
|
+
var PinFill = function PinFill(props) {
|
|
22841
22841
|
var color = props.color,
|
|
22842
22842
|
size = props.size,
|
|
22843
22843
|
spin = props.spin,
|
|
@@ -22871,19 +22871,17 @@ var PinUnsave = function PinUnsave(props) {
|
|
|
22871
22871
|
height: "24",
|
|
22872
22872
|
xmlns: "http://www.w3.org/2000/svg"
|
|
22873
22873
|
}, /*#__PURE__*/React.createElement("path", {
|
|
22874
|
-
d: "M18
|
|
22875
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
22876
|
-
d: "M18.5 22a3.5 3.5 0 100-7 3.5 3.5 0 000 7z"
|
|
22874
|
+
d: "M18 5V3H6v2h1v6l-2 3v2h6v7h2v-7h6v-2l-2-3V5h1z"
|
|
22877
22875
|
}))));
|
|
22878
22876
|
};
|
|
22879
|
-
|
|
22877
|
+
PinFill.propTypes = {
|
|
22880
22878
|
iconClassName: PropTypes.string,
|
|
22881
22879
|
spin: PropTypes.bool,
|
|
22882
22880
|
color: PropTypes.string,
|
|
22883
22881
|
testid: PropTypes.string,
|
|
22884
22882
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
22885
22883
|
};
|
|
22886
|
-
|
|
22884
|
+
PinFill.defaultProps = {
|
|
22887
22885
|
spin: false,
|
|
22888
22886
|
color: 'currentColor',
|
|
22889
22887
|
size: '1em'
|
|
@@ -22891,7 +22889,7 @@ PinUnsave.defaultProps = {
|
|
|
22891
22889
|
|
|
22892
22890
|
var _excluded$69 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22893
22891
|
var loadingCircleStyle$69 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22894
|
-
var
|
|
22892
|
+
var PinUnsave = function PinUnsave(props) {
|
|
22895
22893
|
var color = props.color,
|
|
22896
22894
|
size = props.size,
|
|
22897
22895
|
spin = props.spin,
|
|
@@ -22925,21 +22923,19 @@ var Unpin = function Unpin(props) {
|
|
|
22925
22923
|
height: "24",
|
|
22926
22924
|
xmlns: "http://www.w3.org/2000/svg"
|
|
22927
22925
|
}, /*#__PURE__*/React.createElement("path", {
|
|
22928
|
-
|
|
22929
|
-
clipRule: "evenodd",
|
|
22930
|
-
d: "M7 10.182l-5.5-5.5 1.591-1.591 16.914 16.914-1.591 1.59L13 16.183V23h-2v-7H5v-2l2-3v-.818zM10.818 14H7.404l1.365-2.049L10.818 14z"
|
|
22926
|
+
d: "M18 3v2h-1v6l2 3h-2.404L15 11.606V5H9v6.606L7.404 14H14v2h-1v7h-2v-7H5v-2l2-3V5H6V3h12z"
|
|
22931
22927
|
}), /*#__PURE__*/React.createElement("path", {
|
|
22932
|
-
d: "
|
|
22928
|
+
d: "M18.5 22a3.5 3.5 0 100-7 3.5 3.5 0 000 7z"
|
|
22933
22929
|
}))));
|
|
22934
22930
|
};
|
|
22935
|
-
|
|
22931
|
+
PinUnsave.propTypes = {
|
|
22936
22932
|
iconClassName: PropTypes.string,
|
|
22937
22933
|
spin: PropTypes.bool,
|
|
22938
22934
|
color: PropTypes.string,
|
|
22939
22935
|
testid: PropTypes.string,
|
|
22940
22936
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
22941
22937
|
};
|
|
22942
|
-
|
|
22938
|
+
PinUnsave.defaultProps = {
|
|
22943
22939
|
spin: false,
|
|
22944
22940
|
color: 'currentColor',
|
|
22945
22941
|
size: '1em'
|
|
@@ -22947,7 +22943,7 @@ Unpin.defaultProps = {
|
|
|
22947
22943
|
|
|
22948
22944
|
var _excluded$6a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22949
22945
|
var loadingCircleStyle$6a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22950
|
-
var
|
|
22946
|
+
var Unpin = function Unpin(props) {
|
|
22951
22947
|
var color = props.color,
|
|
22952
22948
|
size = props.size,
|
|
22953
22949
|
spin = props.spin,
|
|
@@ -22980,20 +22976,22 @@ var Unsave = function Unsave(props) {
|
|
|
22980
22976
|
width: "24",
|
|
22981
22977
|
height: "24",
|
|
22982
22978
|
xmlns: "http://www.w3.org/2000/svg"
|
|
22983
|
-
}, /*#__PURE__*/React.createElement("
|
|
22984
|
-
|
|
22985
|
-
|
|
22986
|
-
|
|
22979
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
22980
|
+
fillRule: "evenodd",
|
|
22981
|
+
clipRule: "evenodd",
|
|
22982
|
+
d: "M7 10.182l-5.5-5.5 1.591-1.591 16.914 16.914-1.591 1.59L13 16.183V23h-2v-7H5v-2l2-3v-.818zM10.818 14H7.404l1.365-2.049L10.818 14z"
|
|
22983
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22984
|
+
d: "M15 11.606l.425.637L19 15.818V14l-2-3V5h1V3H6.182L9 5.818V5h6v6.606z"
|
|
22987
22985
|
}))));
|
|
22988
22986
|
};
|
|
22989
|
-
|
|
22987
|
+
Unpin.propTypes = {
|
|
22990
22988
|
iconClassName: PropTypes.string,
|
|
22991
22989
|
spin: PropTypes.bool,
|
|
22992
22990
|
color: PropTypes.string,
|
|
22993
22991
|
testid: PropTypes.string,
|
|
22994
22992
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
22995
22993
|
};
|
|
22996
|
-
|
|
22994
|
+
Unpin.defaultProps = {
|
|
22997
22995
|
spin: false,
|
|
22998
22996
|
color: 'currentColor',
|
|
22999
22997
|
size: '1em'
|
|
@@ -23001,7 +22999,7 @@ Unsave.defaultProps = {
|
|
|
23001
22999
|
|
|
23002
23000
|
var _excluded$6b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23003
23001
|
var loadingCircleStyle$6b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23004
|
-
var
|
|
23002
|
+
var Pin2 = function Pin2(props) {
|
|
23005
23003
|
var color = props.color,
|
|
23006
23004
|
size = props.size,
|
|
23007
23005
|
spin = props.spin,
|
|
@@ -23034,18 +23032,25 @@ var Sticky = function Sticky(props) {
|
|
|
23034
23032
|
width: "24",
|
|
23035
23033
|
height: "24",
|
|
23036
23034
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23035
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
23036
|
+
clipPath: "url(#clip0_9610_29)"
|
|
23037
23037
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23038
|
-
d: "
|
|
23039
|
-
}))
|
|
23038
|
+
d: "M23.314 10.172l-1.415 1.414-.707-.707-4.242 4.242-.708 3.536-1.414 1.414-4.242-4.243-4.95 4.95-1.414-1.414 4.95-4.95-4.243-4.242 1.414-1.415 3.535-.707 4.243-4.242-.707-.707 1.414-1.415 8.486 8.486zm-7.779-4.95l-4.67 4.67-2.822.565 6.5 6.5.564-2.822 4.67-4.67-4.242-4.243z"
|
|
23039
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
23040
|
+
id: "clip0_9610_29"
|
|
23041
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
23042
|
+
width: "24",
|
|
23043
|
+
height: "24"
|
|
23044
|
+
}))))));
|
|
23040
23045
|
};
|
|
23041
|
-
|
|
23046
|
+
Pin2.propTypes = {
|
|
23042
23047
|
iconClassName: PropTypes.string,
|
|
23043
23048
|
spin: PropTypes.bool,
|
|
23044
23049
|
color: PropTypes.string,
|
|
23045
23050
|
testid: PropTypes.string,
|
|
23046
23051
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23047
23052
|
};
|
|
23048
|
-
|
|
23053
|
+
Pin2.defaultProps = {
|
|
23049
23054
|
spin: false,
|
|
23050
23055
|
color: 'currentColor',
|
|
23051
23056
|
size: '1em'
|
|
@@ -23053,7 +23058,7 @@ Sticky.defaultProps = {
|
|
|
23053
23058
|
|
|
23054
23059
|
var _excluded$6c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23055
23060
|
var loadingCircleStyle$6c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23056
|
-
var
|
|
23061
|
+
var Unsave = function Unsave(props) {
|
|
23057
23062
|
var color = props.color,
|
|
23058
23063
|
size = props.size,
|
|
23059
23064
|
spin = props.spin,
|
|
@@ -23086,18 +23091,20 @@ var Online = function Online(props) {
|
|
|
23086
23091
|
width: "24",
|
|
23087
23092
|
height: "24",
|
|
23088
23093
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23089
|
-
}, /*#__PURE__*/React.createElement("
|
|
23090
|
-
|
|
23094
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
23095
|
+
cx: "12",
|
|
23096
|
+
cy: "12",
|
|
23097
|
+
r: "6"
|
|
23091
23098
|
}))));
|
|
23092
23099
|
};
|
|
23093
|
-
|
|
23100
|
+
Unsave.propTypes = {
|
|
23094
23101
|
iconClassName: PropTypes.string,
|
|
23095
23102
|
spin: PropTypes.bool,
|
|
23096
23103
|
color: PropTypes.string,
|
|
23097
23104
|
testid: PropTypes.string,
|
|
23098
23105
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23099
23106
|
};
|
|
23100
|
-
|
|
23107
|
+
Unsave.defaultProps = {
|
|
23101
23108
|
spin: false,
|
|
23102
23109
|
color: 'currentColor',
|
|
23103
23110
|
size: '1em'
|
|
@@ -23105,7 +23112,7 @@ Online.defaultProps = {
|
|
|
23105
23112
|
|
|
23106
23113
|
var _excluded$6d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23107
23114
|
var loadingCircleStyle$6d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23108
|
-
var
|
|
23115
|
+
var Sticky = function Sticky(props) {
|
|
23109
23116
|
var color = props.color,
|
|
23110
23117
|
size = props.size,
|
|
23111
23118
|
spin = props.spin,
|
|
@@ -23139,17 +23146,17 @@ var Offline = function Offline(props) {
|
|
|
23139
23146
|
height: "24",
|
|
23140
23147
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23141
23148
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23142
|
-
d: "
|
|
23149
|
+
d: "M8 11h3v10h2V11h3l-4-4-4 4zm12-6V3H4v2h16z"
|
|
23143
23150
|
}))));
|
|
23144
23151
|
};
|
|
23145
|
-
|
|
23152
|
+
Sticky.propTypes = {
|
|
23146
23153
|
iconClassName: PropTypes.string,
|
|
23147
23154
|
spin: PropTypes.bool,
|
|
23148
23155
|
color: PropTypes.string,
|
|
23149
23156
|
testid: PropTypes.string,
|
|
23150
23157
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23151
23158
|
};
|
|
23152
|
-
|
|
23159
|
+
Sticky.defaultProps = {
|
|
23153
23160
|
spin: false,
|
|
23154
23161
|
color: 'currentColor',
|
|
23155
23162
|
size: '1em'
|
|
@@ -23157,7 +23164,7 @@ Offline.defaultProps = {
|
|
|
23157
23164
|
|
|
23158
23165
|
var _excluded$6e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23159
23166
|
var loadingCircleStyle$6e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23160
|
-
var
|
|
23167
|
+
var Online = function Online(props) {
|
|
23161
23168
|
var color = props.color,
|
|
23162
23169
|
size = props.size,
|
|
23163
23170
|
spin = props.spin,
|
|
@@ -23191,17 +23198,17 @@ var StopCircle = function StopCircle(props) {
|
|
|
23191
23198
|
height: "24",
|
|
23192
23199
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23193
23200
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23194
|
-
d: "
|
|
23201
|
+
d: "M20.194 14.687v-.968c0-4.844-3.675-8.784-8.194-8.784-4.519 0-8.194 3.94-8.194 8.784v.968H2v-.968C2 7.809 6.486 3 12 3s10 4.808 10 10.719v.968h-1.806zM11 22l.097-10.86-2.631 2.821-1.279-1.369 4.8-5.145 4.827 5.171-1.278 1.37-2.632-2.82V22H11z"
|
|
23195
23202
|
}))));
|
|
23196
23203
|
};
|
|
23197
|
-
|
|
23204
|
+
Online.propTypes = {
|
|
23198
23205
|
iconClassName: PropTypes.string,
|
|
23199
23206
|
spin: PropTypes.bool,
|
|
23200
23207
|
color: PropTypes.string,
|
|
23201
23208
|
testid: PropTypes.string,
|
|
23202
23209
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23203
23210
|
};
|
|
23204
|
-
|
|
23211
|
+
Online.defaultProps = {
|
|
23205
23212
|
spin: false,
|
|
23206
23213
|
color: 'currentColor',
|
|
23207
23214
|
size: '1em'
|
|
@@ -23209,7 +23216,7 @@ StopCircle.defaultProps = {
|
|
|
23209
23216
|
|
|
23210
23217
|
var _excluded$6f = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23211
23218
|
var loadingCircleStyle$6f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23212
|
-
var
|
|
23219
|
+
var Offline = function Offline(props) {
|
|
23213
23220
|
var color = props.color,
|
|
23214
23221
|
size = props.size,
|
|
23215
23222
|
spin = props.spin,
|
|
@@ -23243,27 +23250,17 @@ var Find = function Find(props) {
|
|
|
23243
23250
|
height: "24",
|
|
23244
23251
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23245
23252
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23246
|
-
d: "
|
|
23247
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23248
|
-
d: "M8 3H2v6h2V5h4V3z"
|
|
23249
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23250
|
-
d: "M20 15v4h-4v2h6v-6h-2z"
|
|
23251
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23252
|
-
d: "M8 19H4v-4H2v6h6v-2z"
|
|
23253
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23254
|
-
fillRule: "evenodd",
|
|
23255
|
-
clipRule: "evenodd",
|
|
23256
|
-
d: "M12 17.5a5.48 5.48 0 003.676-1.41l1.824 1.825 1.414-1.415-2.01-2.009A5.5 5.5 0 1012 17.5zm0-2a3.5 3.5 0 100-7 3.5 3.5 0 000 7z"
|
|
23253
|
+
d: "M3.806 10.313v.968c0 4.844 3.675 8.784 8.194 8.784 4.519 0 8.194-3.94 8.194-8.784v-.968H22v.968C22 17.191 17.514 22 12 22S2 17.192 2 11.281v-.968h1.806zM13 3l-.097 10.86 2.631-2.821 1.279 1.369-4.8 5.144-4.827-5.17 1.278-1.37 2.632 2.82V3H13z"
|
|
23257
23254
|
}))));
|
|
23258
23255
|
};
|
|
23259
|
-
|
|
23256
|
+
Offline.propTypes = {
|
|
23260
23257
|
iconClassName: PropTypes.string,
|
|
23261
23258
|
spin: PropTypes.bool,
|
|
23262
23259
|
color: PropTypes.string,
|
|
23263
23260
|
testid: PropTypes.string,
|
|
23264
23261
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23265
23262
|
};
|
|
23266
|
-
|
|
23263
|
+
Offline.defaultProps = {
|
|
23267
23264
|
spin: false,
|
|
23268
23265
|
color: 'currentColor',
|
|
23269
23266
|
size: '1em'
|
|
@@ -23271,7 +23268,7 @@ Find.defaultProps = {
|
|
|
23271
23268
|
|
|
23272
23269
|
var _excluded$6g = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23273
23270
|
var loadingCircleStyle$6g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23274
|
-
var
|
|
23271
|
+
var StopCircle = function StopCircle(props) {
|
|
23275
23272
|
var color = props.color,
|
|
23276
23273
|
size = props.size,
|
|
23277
23274
|
spin = props.spin,
|
|
@@ -23305,17 +23302,17 @@ var ArrowGoBack = function ArrowGoBack(props) {
|
|
|
23305
23302
|
height: "24",
|
|
23306
23303
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23307
23304
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23308
|
-
d: "
|
|
23305
|
+
d: "M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 100-16 8 8 0 000 16zM9 9h6v6H9V9z"
|
|
23309
23306
|
}))));
|
|
23310
23307
|
};
|
|
23311
|
-
|
|
23308
|
+
StopCircle.propTypes = {
|
|
23312
23309
|
iconClassName: PropTypes.string,
|
|
23313
23310
|
spin: PropTypes.bool,
|
|
23314
23311
|
color: PropTypes.string,
|
|
23315
23312
|
testid: PropTypes.string,
|
|
23316
23313
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23317
23314
|
};
|
|
23318
|
-
|
|
23315
|
+
StopCircle.defaultProps = {
|
|
23319
23316
|
spin: false,
|
|
23320
23317
|
color: 'currentColor',
|
|
23321
23318
|
size: '1em'
|
|
@@ -23323,7 +23320,7 @@ ArrowGoBack.defaultProps = {
|
|
|
23323
23320
|
|
|
23324
23321
|
var _excluded$6h = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23325
23322
|
var loadingCircleStyle$6h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23326
|
-
var
|
|
23323
|
+
var Find = function Find(props) {
|
|
23327
23324
|
var color = props.color,
|
|
23328
23325
|
size = props.size,
|
|
23329
23326
|
spin = props.spin,
|
|
@@ -23357,17 +23354,27 @@ var ArrowGoForward = function ArrowGoForward(props) {
|
|
|
23357
23354
|
height: "24",
|
|
23358
23355
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23359
23356
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23360
|
-
d: "
|
|
23357
|
+
d: "M22 3h-6v2h4v4h2V3z"
|
|
23358
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23359
|
+
d: "M8 3H2v6h2V5h4V3z"
|
|
23360
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23361
|
+
d: "M20 15v4h-4v2h6v-6h-2z"
|
|
23362
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23363
|
+
d: "M8 19H4v-4H2v6h6v-2z"
|
|
23364
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23365
|
+
fillRule: "evenodd",
|
|
23366
|
+
clipRule: "evenodd",
|
|
23367
|
+
d: "M12 17.5a5.48 5.48 0 003.676-1.41l1.824 1.825 1.414-1.415-2.01-2.009A5.5 5.5 0 1012 17.5zm0-2a3.5 3.5 0 100-7 3.5 3.5 0 000 7z"
|
|
23361
23368
|
}))));
|
|
23362
23369
|
};
|
|
23363
|
-
|
|
23370
|
+
Find.propTypes = {
|
|
23364
23371
|
iconClassName: PropTypes.string,
|
|
23365
23372
|
spin: PropTypes.bool,
|
|
23366
23373
|
color: PropTypes.string,
|
|
23367
23374
|
testid: PropTypes.string,
|
|
23368
23375
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23369
23376
|
};
|
|
23370
|
-
|
|
23377
|
+
Find.defaultProps = {
|
|
23371
23378
|
spin: false,
|
|
23372
23379
|
color: 'currentColor',
|
|
23373
23380
|
size: '1em'
|
|
@@ -23375,7 +23382,7 @@ ArrowGoForward.defaultProps = {
|
|
|
23375
23382
|
|
|
23376
23383
|
var _excluded$6i = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23377
23384
|
var loadingCircleStyle$6i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23378
|
-
var
|
|
23385
|
+
var ArrowGoBack = function ArrowGoBack(props) {
|
|
23379
23386
|
var color = props.color,
|
|
23380
23387
|
size = props.size,
|
|
23381
23388
|
spin = props.spin,
|
|
@@ -23409,25 +23416,17 @@ var Recycle = function Recycle(props) {
|
|
|
23409
23416
|
height: "24",
|
|
23410
23417
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23411
23418
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23412
|
-
d: "
|
|
23413
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23414
|
-
d: "M10.014 14.236a2 2 0 00.852 1.412v2.189a4.001 4.001 0 01-2.792-4.605l1.94 1.004z"
|
|
23415
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23416
|
-
d: "M13.996 14.125a2 2 0 01-1.13 1.678v2.034c0 .023 0 .046-.002.07a4.002 4.002 0 003.014-4.89l-1.882 1.108z"
|
|
23417
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23418
|
-
fillRule: "evenodd",
|
|
23419
|
-
clipRule: "evenodd",
|
|
23420
|
-
d: "M22 6h-5V3a1 1 0 00-1-1H8a1 1 0 00-1 1v3H2v2h2v13a1 1 0 001 1h14a1 1 0 001-1V8h2V6zM6 8h12v12H6V8zm3-2V4h6v2H9z"
|
|
23419
|
+
d: "M5.828 7l2.536 2.535L6.95 10.95 2 6l4.95-4.95 1.414 1.415L5.828 5H13a8 8 0 110 16H4v-2h9a6 6 0 000-12H5.828z"
|
|
23421
23420
|
}))));
|
|
23422
23421
|
};
|
|
23423
|
-
|
|
23422
|
+
ArrowGoBack.propTypes = {
|
|
23424
23423
|
iconClassName: PropTypes.string,
|
|
23425
23424
|
spin: PropTypes.bool,
|
|
23426
23425
|
color: PropTypes.string,
|
|
23427
23426
|
testid: PropTypes.string,
|
|
23428
23427
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23429
23428
|
};
|
|
23430
|
-
|
|
23429
|
+
ArrowGoBack.defaultProps = {
|
|
23431
23430
|
spin: false,
|
|
23432
23431
|
color: 'currentColor',
|
|
23433
23432
|
size: '1em'
|
|
@@ -23435,7 +23434,7 @@ Recycle.defaultProps = {
|
|
|
23435
23434
|
|
|
23436
23435
|
var _excluded$6j = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23437
23436
|
var loadingCircleStyle$6j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23438
|
-
var
|
|
23437
|
+
var ArrowGoForward = function ArrowGoForward(props) {
|
|
23439
23438
|
var color = props.color,
|
|
23440
23439
|
size = props.size,
|
|
23441
23440
|
spin = props.spin,
|
|
@@ -23469,19 +23468,17 @@ var OfflineSync = function OfflineSync(props) {
|
|
|
23469
23468
|
height: "24",
|
|
23470
23469
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23471
23470
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23472
|
-
|
|
23473
|
-
clipRule: "evenodd",
|
|
23474
|
-
d: "M8.282 4.81a.913.913 0 01.768.407l.006.008.733 1.082a2.723 2.723 0 002.275 1.217h7.209a.903.903 0 01.91.905v.452c-.001.5.406.905.908.905S22 9.38 22 8.88v-.452c0-.72-.287-1.41-.799-1.92a2.734 2.734 0 00-1.928-.795h-7.21a.912.912 0 01-.758-.407l-.006-.008-.734-1.082A2.723 2.723 0 008.27 3H4.727c-.723 0-1.417.286-1.928.795A2.708 2.708 0 002 5.715v11.761c0 .72.287 1.41.799 1.92a2.734 2.734 0 001.928.794h4.546c.502 0 .909-.405.909-.904 0-.5-.407-.905-.91-.905H4.728a.911.911 0 01-.909-.905V5.714c0-.24.096-.47.266-.64a.911.911 0 01.643-.264H8.282zm9.172 11.761a.907.907 0 00-.909.905c0 .5.407.905.91.905h1.496a3.641 3.641 0 01-3.075.843 3.645 3.645 0 01-2.629-2.034.911.911 0 00-1.207-.44.903.903 0 00-.442 1.202c.366.784.914 1.47 1.6 2a5.468 5.468 0 004.908.916 5.46 5.46 0 002.076-1.155v1.382c0 .5.407.905.909.905s.909-.405.909-.905v-3.629a.898.898 0 00-.3-.661.908.908 0 00-.61-.234h-3.636zM12 9.333c.502 0 .91.405.91.905v1.68l.131-.138a5.46 5.46 0 012.246-1.315 5.48 5.48 0 014.909.916 5.433 5.433 0 011.6 2 .903.903 0 01-.442 1.202.91.91 0 01-1.207-.44 3.622 3.622 0 00-2.629-2.033 3.652 3.652 0 00-3.075.842h1.193c.502 0 .91.405.91.905s-.408.905-.91.905H12a.907.907 0 01-.91-.905v-3.619c0-.5.408-.905.91-.905z"
|
|
23471
|
+
d: "M18.172 7H11a6 6 0 000 12h9v2h-9a8 8 0 010-16h7.172l-2.536-2.536L17.05 1.05 22 6l-4.95 4.95-1.414-1.415L18.172 7z"
|
|
23475
23472
|
}))));
|
|
23476
23473
|
};
|
|
23477
|
-
|
|
23474
|
+
ArrowGoForward.propTypes = {
|
|
23478
23475
|
iconClassName: PropTypes.string,
|
|
23479
23476
|
spin: PropTypes.bool,
|
|
23480
23477
|
color: PropTypes.string,
|
|
23481
23478
|
testid: PropTypes.string,
|
|
23482
23479
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23483
23480
|
};
|
|
23484
|
-
|
|
23481
|
+
ArrowGoForward.defaultProps = {
|
|
23485
23482
|
spin: false,
|
|
23486
23483
|
color: 'currentColor',
|
|
23487
23484
|
size: '1em'
|
|
@@ -23489,7 +23486,7 @@ OfflineSync.defaultProps = {
|
|
|
23489
23486
|
|
|
23490
23487
|
var _excluded$6k = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23491
23488
|
var loadingCircleStyle$6k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23492
|
-
var
|
|
23489
|
+
var Recycle = function Recycle(props) {
|
|
23493
23490
|
var color = props.color,
|
|
23494
23491
|
size = props.size,
|
|
23495
23492
|
spin = props.spin,
|
|
@@ -23522,25 +23519,26 @@ var Pin2 = function Pin2(props) {
|
|
|
23522
23519
|
width: "24",
|
|
23523
23520
|
height: "24",
|
|
23524
23521
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23525
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
23526
|
-
clipPath: "url(#clip0_9610_29)"
|
|
23527
23522
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23528
|
-
d: "
|
|
23529
|
-
})
|
|
23530
|
-
|
|
23531
|
-
}, /*#__PURE__*/React.createElement("
|
|
23532
|
-
|
|
23533
|
-
|
|
23534
|
-
|
|
23523
|
+
d: "M13.103 12.331A1.99 1.99 0 0012 12c-.45 0-.864.148-1.198.398l-1.867-.969A3.991 3.991 0 0112 10c1.15 0 2.187.486 2.917 1.263l-1.814 1.068z"
|
|
23524
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23525
|
+
d: "M10.014 14.236a2 2 0 00.852 1.412v2.189a4.001 4.001 0 01-2.792-4.605l1.94 1.004z"
|
|
23526
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23527
|
+
d: "M13.996 14.125a2 2 0 01-1.13 1.678v2.034c0 .023 0 .046-.002.07a4.002 4.002 0 003.014-4.89l-1.882 1.108z"
|
|
23528
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23529
|
+
fillRule: "evenodd",
|
|
23530
|
+
clipRule: "evenodd",
|
|
23531
|
+
d: "M22 6h-5V3a1 1 0 00-1-1H8a1 1 0 00-1 1v3H2v2h2v13a1 1 0 001 1h14a1 1 0 001-1V8h2V6zM6 8h12v12H6V8zm3-2V4h6v2H9z"
|
|
23532
|
+
}))));
|
|
23535
23533
|
};
|
|
23536
|
-
|
|
23534
|
+
Recycle.propTypes = {
|
|
23537
23535
|
iconClassName: PropTypes.string,
|
|
23538
23536
|
spin: PropTypes.bool,
|
|
23539
23537
|
color: PropTypes.string,
|
|
23540
23538
|
testid: PropTypes.string,
|
|
23541
23539
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23542
23540
|
};
|
|
23543
|
-
|
|
23541
|
+
Recycle.defaultProps = {
|
|
23544
23542
|
spin: false,
|
|
23545
23543
|
color: 'currentColor',
|
|
23546
23544
|
size: '1em'
|
|
@@ -23548,7 +23546,7 @@ Pin2.defaultProps = {
|
|
|
23548
23546
|
|
|
23549
23547
|
var _excluded$6l = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23550
23548
|
var loadingCircleStyle$6l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23551
|
-
var
|
|
23549
|
+
var OfflineSync = function OfflineSync(props) {
|
|
23552
23550
|
var color = props.color,
|
|
23553
23551
|
size = props.size,
|
|
23554
23552
|
spin = props.spin,
|
|
@@ -23582,17 +23580,19 @@ var Pin2Fill = function Pin2Fill(props) {
|
|
|
23582
23580
|
height: "24",
|
|
23583
23581
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23584
23582
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23585
|
-
|
|
23583
|
+
fillRule: "evenodd",
|
|
23584
|
+
clipRule: "evenodd",
|
|
23585
|
+
d: "M8.282 4.81a.913.913 0 01.768.407l.006.008.733 1.082a2.723 2.723 0 002.275 1.217h7.209a.903.903 0 01.91.905v.452c-.001.5.406.905.908.905S22 9.38 22 8.88v-.452c0-.72-.287-1.41-.799-1.92a2.734 2.734 0 00-1.928-.795h-7.21a.912.912 0 01-.758-.407l-.006-.008-.734-1.082A2.723 2.723 0 008.27 3H4.727c-.723 0-1.417.286-1.928.795A2.708 2.708 0 002 5.715v11.761c0 .72.287 1.41.799 1.92a2.734 2.734 0 001.928.794h4.546c.502 0 .909-.405.909-.904 0-.5-.407-.905-.91-.905H4.728a.911.911 0 01-.909-.905V5.714c0-.24.096-.47.266-.64a.911.911 0 01.643-.264H8.282zm9.172 11.761a.907.907 0 00-.909.905c0 .5.407.905.91.905h1.496a3.641 3.641 0 01-3.075.843 3.645 3.645 0 01-2.629-2.034.911.911 0 00-1.207-.44.903.903 0 00-.442 1.202c.366.784.914 1.47 1.6 2a5.468 5.468 0 004.908.916 5.46 5.46 0 002.076-1.155v1.382c0 .5.407.905.909.905s.909-.405.909-.905v-3.629a.898.898 0 00-.3-.661.908.908 0 00-.61-.234h-3.636zM12 9.333c.502 0 .91.405.91.905v1.68l.131-.138a5.46 5.46 0 012.246-1.315 5.48 5.48 0 014.909.916 5.433 5.433 0 011.6 2 .903.903 0 01-.442 1.202.91.91 0 01-1.207-.44 3.622 3.622 0 00-2.629-2.033 3.652 3.652 0 00-3.075.842h1.193c.502 0 .91.405.91.905s-.408.905-.91.905H12a.907.907 0 01-.91-.905v-3.619c0-.5.408-.905.91-.905z"
|
|
23586
23586
|
}))));
|
|
23587
23587
|
};
|
|
23588
|
-
|
|
23588
|
+
OfflineSync.propTypes = {
|
|
23589
23589
|
iconClassName: PropTypes.string,
|
|
23590
23590
|
spin: PropTypes.bool,
|
|
23591
23591
|
color: PropTypes.string,
|
|
23592
23592
|
testid: PropTypes.string,
|
|
23593
23593
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23594
23594
|
};
|
|
23595
|
-
|
|
23595
|
+
OfflineSync.defaultProps = {
|
|
23596
23596
|
spin: false,
|
|
23597
23597
|
color: 'currentColor',
|
|
23598
23598
|
size: '1em'
|
|
@@ -28092,7 +28092,7 @@ exports.TaPause2 = Pause2;
|
|
|
28092
28092
|
exports.TaPauseCircle = PauseCircle;
|
|
28093
28093
|
exports.TaPin = Pin;
|
|
28094
28094
|
exports.TaPin2 = Pin2;
|
|
28095
|
-
exports.
|
|
28095
|
+
exports.TaPinFill = PinFill;
|
|
28096
28096
|
exports.TaPinUnsave = PinUnsave;
|
|
28097
28097
|
exports.TaPinch = Pinch;
|
|
28098
28098
|
exports.TaPlay = Play;
|
package/dist/tant-icons.esm.js
CHANGED
|
@@ -22831,7 +22831,7 @@ Pin.defaultProps = {
|
|
|
22831
22831
|
|
|
22832
22832
|
var _excluded$68 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22833
22833
|
var loadingCircleStyle$68 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22834
|
-
var
|
|
22834
|
+
var PinFill = function PinFill(props) {
|
|
22835
22835
|
var color = props.color,
|
|
22836
22836
|
size = props.size,
|
|
22837
22837
|
spin = props.spin,
|
|
@@ -22865,19 +22865,17 @@ var PinUnsave = function PinUnsave(props) {
|
|
|
22865
22865
|
height: "24",
|
|
22866
22866
|
xmlns: "http://www.w3.org/2000/svg"
|
|
22867
22867
|
}, /*#__PURE__*/React.createElement("path", {
|
|
22868
|
-
d: "M18
|
|
22869
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
22870
|
-
d: "M18.5 22a3.5 3.5 0 100-7 3.5 3.5 0 000 7z"
|
|
22868
|
+
d: "M18 5V3H6v2h1v6l-2 3v2h6v7h2v-7h6v-2l-2-3V5h1z"
|
|
22871
22869
|
}))));
|
|
22872
22870
|
};
|
|
22873
|
-
|
|
22871
|
+
PinFill.propTypes = {
|
|
22874
22872
|
iconClassName: PropTypes.string,
|
|
22875
22873
|
spin: PropTypes.bool,
|
|
22876
22874
|
color: PropTypes.string,
|
|
22877
22875
|
testid: PropTypes.string,
|
|
22878
22876
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
22879
22877
|
};
|
|
22880
|
-
|
|
22878
|
+
PinFill.defaultProps = {
|
|
22881
22879
|
spin: false,
|
|
22882
22880
|
color: 'currentColor',
|
|
22883
22881
|
size: '1em'
|
|
@@ -22885,7 +22883,7 @@ PinUnsave.defaultProps = {
|
|
|
22885
22883
|
|
|
22886
22884
|
var _excluded$69 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22887
22885
|
var loadingCircleStyle$69 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22888
|
-
var
|
|
22886
|
+
var PinUnsave = function PinUnsave(props) {
|
|
22889
22887
|
var color = props.color,
|
|
22890
22888
|
size = props.size,
|
|
22891
22889
|
spin = props.spin,
|
|
@@ -22919,21 +22917,19 @@ var Unpin = function Unpin(props) {
|
|
|
22919
22917
|
height: "24",
|
|
22920
22918
|
xmlns: "http://www.w3.org/2000/svg"
|
|
22921
22919
|
}, /*#__PURE__*/React.createElement("path", {
|
|
22922
|
-
|
|
22923
|
-
clipRule: "evenodd",
|
|
22924
|
-
d: "M7 10.182l-5.5-5.5 1.591-1.591 16.914 16.914-1.591 1.59L13 16.183V23h-2v-7H5v-2l2-3v-.818zM10.818 14H7.404l1.365-2.049L10.818 14z"
|
|
22920
|
+
d: "M18 3v2h-1v6l2 3h-2.404L15 11.606V5H9v6.606L7.404 14H14v2h-1v7h-2v-7H5v-2l2-3V5H6V3h12z"
|
|
22925
22921
|
}), /*#__PURE__*/React.createElement("path", {
|
|
22926
|
-
d: "
|
|
22922
|
+
d: "M18.5 22a3.5 3.5 0 100-7 3.5 3.5 0 000 7z"
|
|
22927
22923
|
}))));
|
|
22928
22924
|
};
|
|
22929
|
-
|
|
22925
|
+
PinUnsave.propTypes = {
|
|
22930
22926
|
iconClassName: PropTypes.string,
|
|
22931
22927
|
spin: PropTypes.bool,
|
|
22932
22928
|
color: PropTypes.string,
|
|
22933
22929
|
testid: PropTypes.string,
|
|
22934
22930
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
22935
22931
|
};
|
|
22936
|
-
|
|
22932
|
+
PinUnsave.defaultProps = {
|
|
22937
22933
|
spin: false,
|
|
22938
22934
|
color: 'currentColor',
|
|
22939
22935
|
size: '1em'
|
|
@@ -22941,7 +22937,7 @@ Unpin.defaultProps = {
|
|
|
22941
22937
|
|
|
22942
22938
|
var _excluded$6a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22943
22939
|
var loadingCircleStyle$6a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22944
|
-
var
|
|
22940
|
+
var Unpin = function Unpin(props) {
|
|
22945
22941
|
var color = props.color,
|
|
22946
22942
|
size = props.size,
|
|
22947
22943
|
spin = props.spin,
|
|
@@ -22974,20 +22970,22 @@ var Unsave = function Unsave(props) {
|
|
|
22974
22970
|
width: "24",
|
|
22975
22971
|
height: "24",
|
|
22976
22972
|
xmlns: "http://www.w3.org/2000/svg"
|
|
22977
|
-
}, /*#__PURE__*/React.createElement("
|
|
22978
|
-
|
|
22979
|
-
|
|
22980
|
-
|
|
22973
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
22974
|
+
fillRule: "evenodd",
|
|
22975
|
+
clipRule: "evenodd",
|
|
22976
|
+
d: "M7 10.182l-5.5-5.5 1.591-1.591 16.914 16.914-1.591 1.59L13 16.183V23h-2v-7H5v-2l2-3v-.818zM10.818 14H7.404l1.365-2.049L10.818 14z"
|
|
22977
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22978
|
+
d: "M15 11.606l.425.637L19 15.818V14l-2-3V5h1V3H6.182L9 5.818V5h6v6.606z"
|
|
22981
22979
|
}))));
|
|
22982
22980
|
};
|
|
22983
|
-
|
|
22981
|
+
Unpin.propTypes = {
|
|
22984
22982
|
iconClassName: PropTypes.string,
|
|
22985
22983
|
spin: PropTypes.bool,
|
|
22986
22984
|
color: PropTypes.string,
|
|
22987
22985
|
testid: PropTypes.string,
|
|
22988
22986
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
22989
22987
|
};
|
|
22990
|
-
|
|
22988
|
+
Unpin.defaultProps = {
|
|
22991
22989
|
spin: false,
|
|
22992
22990
|
color: 'currentColor',
|
|
22993
22991
|
size: '1em'
|
|
@@ -22995,7 +22993,7 @@ Unsave.defaultProps = {
|
|
|
22995
22993
|
|
|
22996
22994
|
var _excluded$6b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
22997
22995
|
var loadingCircleStyle$6b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
22998
|
-
var
|
|
22996
|
+
var Pin2 = function Pin2(props) {
|
|
22999
22997
|
var color = props.color,
|
|
23000
22998
|
size = props.size,
|
|
23001
22999
|
spin = props.spin,
|
|
@@ -23028,18 +23026,25 @@ var Sticky = function Sticky(props) {
|
|
|
23028
23026
|
width: "24",
|
|
23029
23027
|
height: "24",
|
|
23030
23028
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23029
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
23030
|
+
clipPath: "url(#clip0_9610_29)"
|
|
23031
23031
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23032
|
-
d: "
|
|
23033
|
-
}))
|
|
23032
|
+
d: "M23.314 10.172l-1.415 1.414-.707-.707-4.242 4.242-.708 3.536-1.414 1.414-4.242-4.243-4.95 4.95-1.414-1.414 4.95-4.95-4.243-4.242 1.414-1.415 3.535-.707 4.243-4.242-.707-.707 1.414-1.415 8.486 8.486zm-7.779-4.95l-4.67 4.67-2.822.565 6.5 6.5.564-2.822 4.67-4.67-4.242-4.243z"
|
|
23033
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
23034
|
+
id: "clip0_9610_29"
|
|
23035
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
23036
|
+
width: "24",
|
|
23037
|
+
height: "24"
|
|
23038
|
+
}))))));
|
|
23034
23039
|
};
|
|
23035
|
-
|
|
23040
|
+
Pin2.propTypes = {
|
|
23036
23041
|
iconClassName: PropTypes.string,
|
|
23037
23042
|
spin: PropTypes.bool,
|
|
23038
23043
|
color: PropTypes.string,
|
|
23039
23044
|
testid: PropTypes.string,
|
|
23040
23045
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23041
23046
|
};
|
|
23042
|
-
|
|
23047
|
+
Pin2.defaultProps = {
|
|
23043
23048
|
spin: false,
|
|
23044
23049
|
color: 'currentColor',
|
|
23045
23050
|
size: '1em'
|
|
@@ -23047,7 +23052,7 @@ Sticky.defaultProps = {
|
|
|
23047
23052
|
|
|
23048
23053
|
var _excluded$6c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23049
23054
|
var loadingCircleStyle$6c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23050
|
-
var
|
|
23055
|
+
var Unsave = function Unsave(props) {
|
|
23051
23056
|
var color = props.color,
|
|
23052
23057
|
size = props.size,
|
|
23053
23058
|
spin = props.spin,
|
|
@@ -23080,18 +23085,20 @@ var Online = function Online(props) {
|
|
|
23080
23085
|
width: "24",
|
|
23081
23086
|
height: "24",
|
|
23082
23087
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23083
|
-
}, /*#__PURE__*/React.createElement("
|
|
23084
|
-
|
|
23088
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
23089
|
+
cx: "12",
|
|
23090
|
+
cy: "12",
|
|
23091
|
+
r: "6"
|
|
23085
23092
|
}))));
|
|
23086
23093
|
};
|
|
23087
|
-
|
|
23094
|
+
Unsave.propTypes = {
|
|
23088
23095
|
iconClassName: PropTypes.string,
|
|
23089
23096
|
spin: PropTypes.bool,
|
|
23090
23097
|
color: PropTypes.string,
|
|
23091
23098
|
testid: PropTypes.string,
|
|
23092
23099
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23093
23100
|
};
|
|
23094
|
-
|
|
23101
|
+
Unsave.defaultProps = {
|
|
23095
23102
|
spin: false,
|
|
23096
23103
|
color: 'currentColor',
|
|
23097
23104
|
size: '1em'
|
|
@@ -23099,7 +23106,7 @@ Online.defaultProps = {
|
|
|
23099
23106
|
|
|
23100
23107
|
var _excluded$6d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23101
23108
|
var loadingCircleStyle$6d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23102
|
-
var
|
|
23109
|
+
var Sticky = function Sticky(props) {
|
|
23103
23110
|
var color = props.color,
|
|
23104
23111
|
size = props.size,
|
|
23105
23112
|
spin = props.spin,
|
|
@@ -23133,17 +23140,17 @@ var Offline = function Offline(props) {
|
|
|
23133
23140
|
height: "24",
|
|
23134
23141
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23135
23142
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23136
|
-
d: "
|
|
23143
|
+
d: "M8 11h3v10h2V11h3l-4-4-4 4zm12-6V3H4v2h16z"
|
|
23137
23144
|
}))));
|
|
23138
23145
|
};
|
|
23139
|
-
|
|
23146
|
+
Sticky.propTypes = {
|
|
23140
23147
|
iconClassName: PropTypes.string,
|
|
23141
23148
|
spin: PropTypes.bool,
|
|
23142
23149
|
color: PropTypes.string,
|
|
23143
23150
|
testid: PropTypes.string,
|
|
23144
23151
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23145
23152
|
};
|
|
23146
|
-
|
|
23153
|
+
Sticky.defaultProps = {
|
|
23147
23154
|
spin: false,
|
|
23148
23155
|
color: 'currentColor',
|
|
23149
23156
|
size: '1em'
|
|
@@ -23151,7 +23158,7 @@ Offline.defaultProps = {
|
|
|
23151
23158
|
|
|
23152
23159
|
var _excluded$6e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23153
23160
|
var loadingCircleStyle$6e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23154
|
-
var
|
|
23161
|
+
var Online = function Online(props) {
|
|
23155
23162
|
var color = props.color,
|
|
23156
23163
|
size = props.size,
|
|
23157
23164
|
spin = props.spin,
|
|
@@ -23185,17 +23192,17 @@ var StopCircle = function StopCircle(props) {
|
|
|
23185
23192
|
height: "24",
|
|
23186
23193
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23187
23194
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23188
|
-
d: "
|
|
23195
|
+
d: "M20.194 14.687v-.968c0-4.844-3.675-8.784-8.194-8.784-4.519 0-8.194 3.94-8.194 8.784v.968H2v-.968C2 7.809 6.486 3 12 3s10 4.808 10 10.719v.968h-1.806zM11 22l.097-10.86-2.631 2.821-1.279-1.369 4.8-5.145 4.827 5.171-1.278 1.37-2.632-2.82V22H11z"
|
|
23189
23196
|
}))));
|
|
23190
23197
|
};
|
|
23191
|
-
|
|
23198
|
+
Online.propTypes = {
|
|
23192
23199
|
iconClassName: PropTypes.string,
|
|
23193
23200
|
spin: PropTypes.bool,
|
|
23194
23201
|
color: PropTypes.string,
|
|
23195
23202
|
testid: PropTypes.string,
|
|
23196
23203
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23197
23204
|
};
|
|
23198
|
-
|
|
23205
|
+
Online.defaultProps = {
|
|
23199
23206
|
spin: false,
|
|
23200
23207
|
color: 'currentColor',
|
|
23201
23208
|
size: '1em'
|
|
@@ -23203,7 +23210,7 @@ StopCircle.defaultProps = {
|
|
|
23203
23210
|
|
|
23204
23211
|
var _excluded$6f = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23205
23212
|
var loadingCircleStyle$6f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23206
|
-
var
|
|
23213
|
+
var Offline = function Offline(props) {
|
|
23207
23214
|
var color = props.color,
|
|
23208
23215
|
size = props.size,
|
|
23209
23216
|
spin = props.spin,
|
|
@@ -23237,27 +23244,17 @@ var Find = function Find(props) {
|
|
|
23237
23244
|
height: "24",
|
|
23238
23245
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23239
23246
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23240
|
-
d: "
|
|
23241
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23242
|
-
d: "M8 3H2v6h2V5h4V3z"
|
|
23243
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23244
|
-
d: "M20 15v4h-4v2h6v-6h-2z"
|
|
23245
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23246
|
-
d: "M8 19H4v-4H2v6h6v-2z"
|
|
23247
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23248
|
-
fillRule: "evenodd",
|
|
23249
|
-
clipRule: "evenodd",
|
|
23250
|
-
d: "M12 17.5a5.48 5.48 0 003.676-1.41l1.824 1.825 1.414-1.415-2.01-2.009A5.5 5.5 0 1012 17.5zm0-2a3.5 3.5 0 100-7 3.5 3.5 0 000 7z"
|
|
23247
|
+
d: "M3.806 10.313v.968c0 4.844 3.675 8.784 8.194 8.784 4.519 0 8.194-3.94 8.194-8.784v-.968H22v.968C22 17.191 17.514 22 12 22S2 17.192 2 11.281v-.968h1.806zM13 3l-.097 10.86 2.631-2.821 1.279 1.369-4.8 5.144-4.827-5.17 1.278-1.37 2.632 2.82V3H13z"
|
|
23251
23248
|
}))));
|
|
23252
23249
|
};
|
|
23253
|
-
|
|
23250
|
+
Offline.propTypes = {
|
|
23254
23251
|
iconClassName: PropTypes.string,
|
|
23255
23252
|
spin: PropTypes.bool,
|
|
23256
23253
|
color: PropTypes.string,
|
|
23257
23254
|
testid: PropTypes.string,
|
|
23258
23255
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23259
23256
|
};
|
|
23260
|
-
|
|
23257
|
+
Offline.defaultProps = {
|
|
23261
23258
|
spin: false,
|
|
23262
23259
|
color: 'currentColor',
|
|
23263
23260
|
size: '1em'
|
|
@@ -23265,7 +23262,7 @@ Find.defaultProps = {
|
|
|
23265
23262
|
|
|
23266
23263
|
var _excluded$6g = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23267
23264
|
var loadingCircleStyle$6g = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23268
|
-
var
|
|
23265
|
+
var StopCircle = function StopCircle(props) {
|
|
23269
23266
|
var color = props.color,
|
|
23270
23267
|
size = props.size,
|
|
23271
23268
|
spin = props.spin,
|
|
@@ -23299,17 +23296,17 @@ var ArrowGoBack = function ArrowGoBack(props) {
|
|
|
23299
23296
|
height: "24",
|
|
23300
23297
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23301
23298
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23302
|
-
d: "
|
|
23299
|
+
d: "M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 100-16 8 8 0 000 16zM9 9h6v6H9V9z"
|
|
23303
23300
|
}))));
|
|
23304
23301
|
};
|
|
23305
|
-
|
|
23302
|
+
StopCircle.propTypes = {
|
|
23306
23303
|
iconClassName: PropTypes.string,
|
|
23307
23304
|
spin: PropTypes.bool,
|
|
23308
23305
|
color: PropTypes.string,
|
|
23309
23306
|
testid: PropTypes.string,
|
|
23310
23307
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23311
23308
|
};
|
|
23312
|
-
|
|
23309
|
+
StopCircle.defaultProps = {
|
|
23313
23310
|
spin: false,
|
|
23314
23311
|
color: 'currentColor',
|
|
23315
23312
|
size: '1em'
|
|
@@ -23317,7 +23314,7 @@ ArrowGoBack.defaultProps = {
|
|
|
23317
23314
|
|
|
23318
23315
|
var _excluded$6h = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23319
23316
|
var loadingCircleStyle$6h = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23320
|
-
var
|
|
23317
|
+
var Find = function Find(props) {
|
|
23321
23318
|
var color = props.color,
|
|
23322
23319
|
size = props.size,
|
|
23323
23320
|
spin = props.spin,
|
|
@@ -23351,17 +23348,27 @@ var ArrowGoForward = function ArrowGoForward(props) {
|
|
|
23351
23348
|
height: "24",
|
|
23352
23349
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23353
23350
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23354
|
-
d: "
|
|
23351
|
+
d: "M22 3h-6v2h4v4h2V3z"
|
|
23352
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23353
|
+
d: "M8 3H2v6h2V5h4V3z"
|
|
23354
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23355
|
+
d: "M20 15v4h-4v2h6v-6h-2z"
|
|
23356
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23357
|
+
d: "M8 19H4v-4H2v6h6v-2z"
|
|
23358
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23359
|
+
fillRule: "evenodd",
|
|
23360
|
+
clipRule: "evenodd",
|
|
23361
|
+
d: "M12 17.5a5.48 5.48 0 003.676-1.41l1.824 1.825 1.414-1.415-2.01-2.009A5.5 5.5 0 1012 17.5zm0-2a3.5 3.5 0 100-7 3.5 3.5 0 000 7z"
|
|
23355
23362
|
}))));
|
|
23356
23363
|
};
|
|
23357
|
-
|
|
23364
|
+
Find.propTypes = {
|
|
23358
23365
|
iconClassName: PropTypes.string,
|
|
23359
23366
|
spin: PropTypes.bool,
|
|
23360
23367
|
color: PropTypes.string,
|
|
23361
23368
|
testid: PropTypes.string,
|
|
23362
23369
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23363
23370
|
};
|
|
23364
|
-
|
|
23371
|
+
Find.defaultProps = {
|
|
23365
23372
|
spin: false,
|
|
23366
23373
|
color: 'currentColor',
|
|
23367
23374
|
size: '1em'
|
|
@@ -23369,7 +23376,7 @@ ArrowGoForward.defaultProps = {
|
|
|
23369
23376
|
|
|
23370
23377
|
var _excluded$6i = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23371
23378
|
var loadingCircleStyle$6i = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23372
|
-
var
|
|
23379
|
+
var ArrowGoBack = function ArrowGoBack(props) {
|
|
23373
23380
|
var color = props.color,
|
|
23374
23381
|
size = props.size,
|
|
23375
23382
|
spin = props.spin,
|
|
@@ -23403,25 +23410,17 @@ var Recycle = function Recycle(props) {
|
|
|
23403
23410
|
height: "24",
|
|
23404
23411
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23405
23412
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23406
|
-
d: "
|
|
23407
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23408
|
-
d: "M10.014 14.236a2 2 0 00.852 1.412v2.189a4.001 4.001 0 01-2.792-4.605l1.94 1.004z"
|
|
23409
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23410
|
-
d: "M13.996 14.125a2 2 0 01-1.13 1.678v2.034c0 .023 0 .046-.002.07a4.002 4.002 0 003.014-4.89l-1.882 1.108z"
|
|
23411
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
23412
|
-
fillRule: "evenodd",
|
|
23413
|
-
clipRule: "evenodd",
|
|
23414
|
-
d: "M22 6h-5V3a1 1 0 00-1-1H8a1 1 0 00-1 1v3H2v2h2v13a1 1 0 001 1h14a1 1 0 001-1V8h2V6zM6 8h12v12H6V8zm3-2V4h6v2H9z"
|
|
23413
|
+
d: "M5.828 7l2.536 2.535L6.95 10.95 2 6l4.95-4.95 1.414 1.415L5.828 5H13a8 8 0 110 16H4v-2h9a6 6 0 000-12H5.828z"
|
|
23415
23414
|
}))));
|
|
23416
23415
|
};
|
|
23417
|
-
|
|
23416
|
+
ArrowGoBack.propTypes = {
|
|
23418
23417
|
iconClassName: PropTypes.string,
|
|
23419
23418
|
spin: PropTypes.bool,
|
|
23420
23419
|
color: PropTypes.string,
|
|
23421
23420
|
testid: PropTypes.string,
|
|
23422
23421
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23423
23422
|
};
|
|
23424
|
-
|
|
23423
|
+
ArrowGoBack.defaultProps = {
|
|
23425
23424
|
spin: false,
|
|
23426
23425
|
color: 'currentColor',
|
|
23427
23426
|
size: '1em'
|
|
@@ -23429,7 +23428,7 @@ Recycle.defaultProps = {
|
|
|
23429
23428
|
|
|
23430
23429
|
var _excluded$6j = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23431
23430
|
var loadingCircleStyle$6j = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23432
|
-
var
|
|
23431
|
+
var ArrowGoForward = function ArrowGoForward(props) {
|
|
23433
23432
|
var color = props.color,
|
|
23434
23433
|
size = props.size,
|
|
23435
23434
|
spin = props.spin,
|
|
@@ -23463,19 +23462,17 @@ var OfflineSync = function OfflineSync(props) {
|
|
|
23463
23462
|
height: "24",
|
|
23464
23463
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23465
23464
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23466
|
-
|
|
23467
|
-
clipRule: "evenodd",
|
|
23468
|
-
d: "M8.282 4.81a.913.913 0 01.768.407l.006.008.733 1.082a2.723 2.723 0 002.275 1.217h7.209a.903.903 0 01.91.905v.452c-.001.5.406.905.908.905S22 9.38 22 8.88v-.452c0-.72-.287-1.41-.799-1.92a2.734 2.734 0 00-1.928-.795h-7.21a.912.912 0 01-.758-.407l-.006-.008-.734-1.082A2.723 2.723 0 008.27 3H4.727c-.723 0-1.417.286-1.928.795A2.708 2.708 0 002 5.715v11.761c0 .72.287 1.41.799 1.92a2.734 2.734 0 001.928.794h4.546c.502 0 .909-.405.909-.904 0-.5-.407-.905-.91-.905H4.728a.911.911 0 01-.909-.905V5.714c0-.24.096-.47.266-.64a.911.911 0 01.643-.264H8.282zm9.172 11.761a.907.907 0 00-.909.905c0 .5.407.905.91.905h1.496a3.641 3.641 0 01-3.075.843 3.645 3.645 0 01-2.629-2.034.911.911 0 00-1.207-.44.903.903 0 00-.442 1.202c.366.784.914 1.47 1.6 2a5.468 5.468 0 004.908.916 5.46 5.46 0 002.076-1.155v1.382c0 .5.407.905.909.905s.909-.405.909-.905v-3.629a.898.898 0 00-.3-.661.908.908 0 00-.61-.234h-3.636zM12 9.333c.502 0 .91.405.91.905v1.68l.131-.138a5.46 5.46 0 012.246-1.315 5.48 5.48 0 014.909.916 5.433 5.433 0 011.6 2 .903.903 0 01-.442 1.202.91.91 0 01-1.207-.44 3.622 3.622 0 00-2.629-2.033 3.652 3.652 0 00-3.075.842h1.193c.502 0 .91.405.91.905s-.408.905-.91.905H12a.907.907 0 01-.91-.905v-3.619c0-.5.408-.905.91-.905z"
|
|
23465
|
+
d: "M18.172 7H11a6 6 0 000 12h9v2h-9a8 8 0 010-16h7.172l-2.536-2.536L17.05 1.05 22 6l-4.95 4.95-1.414-1.415L18.172 7z"
|
|
23469
23466
|
}))));
|
|
23470
23467
|
};
|
|
23471
|
-
|
|
23468
|
+
ArrowGoForward.propTypes = {
|
|
23472
23469
|
iconClassName: PropTypes.string,
|
|
23473
23470
|
spin: PropTypes.bool,
|
|
23474
23471
|
color: PropTypes.string,
|
|
23475
23472
|
testid: PropTypes.string,
|
|
23476
23473
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23477
23474
|
};
|
|
23478
|
-
|
|
23475
|
+
ArrowGoForward.defaultProps = {
|
|
23479
23476
|
spin: false,
|
|
23480
23477
|
color: 'currentColor',
|
|
23481
23478
|
size: '1em'
|
|
@@ -23483,7 +23480,7 @@ OfflineSync.defaultProps = {
|
|
|
23483
23480
|
|
|
23484
23481
|
var _excluded$6k = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23485
23482
|
var loadingCircleStyle$6k = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23486
|
-
var
|
|
23483
|
+
var Recycle = function Recycle(props) {
|
|
23487
23484
|
var color = props.color,
|
|
23488
23485
|
size = props.size,
|
|
23489
23486
|
spin = props.spin,
|
|
@@ -23516,25 +23513,26 @@ var Pin2 = function Pin2(props) {
|
|
|
23516
23513
|
width: "24",
|
|
23517
23514
|
height: "24",
|
|
23518
23515
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23519
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
23520
|
-
clipPath: "url(#clip0_9610_29)"
|
|
23521
23516
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23522
|
-
d: "
|
|
23523
|
-
})
|
|
23524
|
-
|
|
23525
|
-
}, /*#__PURE__*/React.createElement("
|
|
23526
|
-
|
|
23527
|
-
|
|
23528
|
-
|
|
23517
|
+
d: "M13.103 12.331A1.99 1.99 0 0012 12c-.45 0-.864.148-1.198.398l-1.867-.969A3.991 3.991 0 0112 10c1.15 0 2.187.486 2.917 1.263l-1.814 1.068z"
|
|
23518
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23519
|
+
d: "M10.014 14.236a2 2 0 00.852 1.412v2.189a4.001 4.001 0 01-2.792-4.605l1.94 1.004z"
|
|
23520
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23521
|
+
d: "M13.996 14.125a2 2 0 01-1.13 1.678v2.034c0 .023 0 .046-.002.07a4.002 4.002 0 003.014-4.89l-1.882 1.108z"
|
|
23522
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23523
|
+
fillRule: "evenodd",
|
|
23524
|
+
clipRule: "evenodd",
|
|
23525
|
+
d: "M22 6h-5V3a1 1 0 00-1-1H8a1 1 0 00-1 1v3H2v2h2v13a1 1 0 001 1h14a1 1 0 001-1V8h2V6zM6 8h12v12H6V8zm3-2V4h6v2H9z"
|
|
23526
|
+
}))));
|
|
23529
23527
|
};
|
|
23530
|
-
|
|
23528
|
+
Recycle.propTypes = {
|
|
23531
23529
|
iconClassName: PropTypes.string,
|
|
23532
23530
|
spin: PropTypes.bool,
|
|
23533
23531
|
color: PropTypes.string,
|
|
23534
23532
|
testid: PropTypes.string,
|
|
23535
23533
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23536
23534
|
};
|
|
23537
|
-
|
|
23535
|
+
Recycle.defaultProps = {
|
|
23538
23536
|
spin: false,
|
|
23539
23537
|
color: 'currentColor',
|
|
23540
23538
|
size: '1em'
|
|
@@ -23542,7 +23540,7 @@ Pin2.defaultProps = {
|
|
|
23542
23540
|
|
|
23543
23541
|
var _excluded$6l = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
23544
23542
|
var loadingCircleStyle$6l = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
23545
|
-
var
|
|
23543
|
+
var OfflineSync = function OfflineSync(props) {
|
|
23546
23544
|
var color = props.color,
|
|
23547
23545
|
size = props.size,
|
|
23548
23546
|
spin = props.spin,
|
|
@@ -23576,17 +23574,19 @@ var Pin2Fill = function Pin2Fill(props) {
|
|
|
23576
23574
|
height: "24",
|
|
23577
23575
|
xmlns: "http://www.w3.org/2000/svg"
|
|
23578
23576
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23579
|
-
|
|
23577
|
+
fillRule: "evenodd",
|
|
23578
|
+
clipRule: "evenodd",
|
|
23579
|
+
d: "M8.282 4.81a.913.913 0 01.768.407l.006.008.733 1.082a2.723 2.723 0 002.275 1.217h7.209a.903.903 0 01.91.905v.452c-.001.5.406.905.908.905S22 9.38 22 8.88v-.452c0-.72-.287-1.41-.799-1.92a2.734 2.734 0 00-1.928-.795h-7.21a.912.912 0 01-.758-.407l-.006-.008-.734-1.082A2.723 2.723 0 008.27 3H4.727c-.723 0-1.417.286-1.928.795A2.708 2.708 0 002 5.715v11.761c0 .72.287 1.41.799 1.92a2.734 2.734 0 001.928.794h4.546c.502 0 .909-.405.909-.904 0-.5-.407-.905-.91-.905H4.728a.911.911 0 01-.909-.905V5.714c0-.24.096-.47.266-.64a.911.911 0 01.643-.264H8.282zm9.172 11.761a.907.907 0 00-.909.905c0 .5.407.905.91.905h1.496a3.641 3.641 0 01-3.075.843 3.645 3.645 0 01-2.629-2.034.911.911 0 00-1.207-.44.903.903 0 00-.442 1.202c.366.784.914 1.47 1.6 2a5.468 5.468 0 004.908.916 5.46 5.46 0 002.076-1.155v1.382c0 .5.407.905.909.905s.909-.405.909-.905v-3.629a.898.898 0 00-.3-.661.908.908 0 00-.61-.234h-3.636zM12 9.333c.502 0 .91.405.91.905v1.68l.131-.138a5.46 5.46 0 012.246-1.315 5.48 5.48 0 014.909.916 5.433 5.433 0 011.6 2 .903.903 0 01-.442 1.202.91.91 0 01-1.207-.44 3.622 3.622 0 00-2.629-2.033 3.652 3.652 0 00-3.075.842h1.193c.502 0 .91.405.91.905s-.408.905-.91.905H12a.907.907 0 01-.91-.905v-3.619c0-.5.408-.905.91-.905z"
|
|
23580
23580
|
}))));
|
|
23581
23581
|
};
|
|
23582
|
-
|
|
23582
|
+
OfflineSync.propTypes = {
|
|
23583
23583
|
iconClassName: PropTypes.string,
|
|
23584
23584
|
spin: PropTypes.bool,
|
|
23585
23585
|
color: PropTypes.string,
|
|
23586
23586
|
testid: PropTypes.string,
|
|
23587
23587
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
23588
23588
|
};
|
|
23589
|
-
|
|
23589
|
+
OfflineSync.defaultProps = {
|
|
23590
23590
|
spin: false,
|
|
23591
23591
|
color: 'currentColor',
|
|
23592
23592
|
size: '1em'
|
|
@@ -27748,4 +27748,4 @@ SatelliteDish.defaultProps = {
|
|
|
27748
27748
|
size: '1em'
|
|
27749
27749
|
};
|
|
27750
27750
|
|
|
27751
|
-
export { Add1 as TaAdd1, Add2 as TaAdd2, Add3 as TaAdd3, Add3Fill as TaAdd3Fill, AddToPage as TaAddToPage, Alert as TaAlert, AlertCl as TaAlertCl, AlignCenter as TaAlignCenter, AlignLeft as TaAlignLeft, AlignRight as TaAlignRight, AllGroupSm as TaAllGroupSm, Analysis as TaAnalysis, Anchor as TaAnchor, Application as TaApplication, Approve as TaApprove, ArrayRowsSm as TaArrayRowsSm, ArrowDown as TaArrowDown, ArrowDown2 as TaArrowDown2, ArrowGoBack as TaArrowGoBack, ArrowGoForward as TaArrowGoForward, ArrowLeft as TaArrowLeft, ArrowLeft2 as TaArrowLeft2, ArrowLeftDown as TaArrowLeftDown, ArrowRight as TaArrowRight, ArrowRight2 as TaArrowRight2, ArrowUp as TaArrowUp, ArrowUp2 as TaArrowUp2, Ascent as TaAscent, Attachment as TaAttachment, Attribution as TaAttribution, AutoLayout as TaAutoLayout, AvatarGroupCl as TaAvatarGroupCl, AvatarProjectCl as TaAvatarProjectCl, Backup as TaBackup, Bell as TaBell, Bell2Fill as TaBell2Fill, Book as TaBook, Book2 as TaBook2, Bookmark as TaBookmark, Bookmark2 as TaBookmark2, BooleanSm as TaBooleanSm, Box as TaBox, BoxOpen as TaBoxOpen, Branch as TaBranch, Bring as TaBring, BuildMode as TaBuildMode, BuiltIn as TaBuiltIn, Calendar as TaCalendar, 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, ChartGantt as TaChartGantt, ChartHistogram as TaChartHistogram, ChartInterval as TaChartInterval, ChartLine as TaChartLine, ChartLineTable as TaChartLineTable, ChartPercentageBar as TaChartPercentageBar, ChartPie as TaChartPie, ChartScatter as TaChartScatter, ChartScorecard as TaChartScorecard, ChartSqltable as TaChartSqltable, ChartStack as TaChartStack, ChartStackPerc as TaChartStackPerc, ChartStackedBar as TaChartStackedBar, ChartStackn as TaChartStackn, ChartTable as TaChartTable, Click as TaClick, Clock as TaClock, Close as TaClose, Code as TaCode, CodeVariable as TaCodeVariable, Comment as TaComment, Config as TaConfig, Consent as TaConsent, Contrast as TaContrast, Copy as TaCopy, Copy2 as TaCopy2, CopyDdl as TaCopyDdl, CopyQuery as TaCopyQuery, Cost as TaCost, Currency as TaCurrency, CustomPartition as TaCustomPartition, DArrowB as TaDArrowB, DArrowL as TaDArrowL, DArrowR as TaDArrowR, DArrowT as TaDArrowT, DAssetsCl as TaDAssetsCl, DIntegrationCl as TaDIntegrationCl, DManageCl as TaDManageCl, DTrackingCl as TaDTrackingCl, Dag as TaDag, Dashboard as TaDashboard, DashboardCl as TaDashboardCl, DashboardMgr as TaDashboardMgr, DataInput as TaDataInput, DataOutput as TaDataOutput, Database as TaDatabase, DateMarkCl as TaDateMarkCl, Debug as TaDebug, DebugPlay as TaDebugPlay, Delete1 as TaDelete1, Delete2 as TaDelete2, Delete2Fill as TaDelete2Fill, Demo as TaDemo, Descent as TaDescent, Desktop as TaDesktop, Detail as TaDetail, DirectConnect as TaDirectConnect, Disable as TaDisable, DisplayS as TaDisplayS, Done as TaDone, Dot as TaDot, DoubleList as TaDoubleList, Download as TaDownload, Drag as TaDrag, Drag2 as TaDrag2, DropDown as TaDropDown, DropUp as TaDropUp, ECampaignCl as TaECampaignCl, EChartsCl as TaEChartsCl, EConfigCl as TaEConfigCl, 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, FileSqlFill as TaFileSqlFill, Filter as TaFilter, Filter2 as TaFilter2, Find as TaFind, FirstLast as TaFirstLast, FlagCn as TaFlagCn, FlagJp as TaFlagJp, FlagKr as TaFlagKr, FlagUs as TaFlagUs, Flash as TaFlash, Folder as TaFolder, FolderLine as TaFolderLine, FolderOpen as TaFolderOpen, FolderOpenLine as TaFolderOpenLine, FontBgColor as TaFontBgColor, FontBold as TaFontBold, FontColor as TaFontColor, FontItalic as TaFontItalic, FontSize as TaFontSize, Forewarning as TaForewarning, Format as TaFormat, FullDownload as TaFullDownload, Fullscreen as TaFullscreen, Function as TaFunction, Game as TaGame, GameFill as TaGameFill, Gift as TaGift, Goal as TaGoal, Grid as TaGrid, Group as TaGroup, GroupA2b as TaGroupA2b, GroupAddFill as TaGroupAddFill, GroupAddSm as TaGroupAddSm, GroupCl as TaGroupCl, GroupFill as TaGroupFill, GroupFill2 as TaGroupFill2, Groups as TaGroups, Hand as TaHand, 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, JsonSm as TaJsonSm, Lab as TaLab, Landscape as TaLandscape, Language as TaLanguage, LayoutFocus as TaLayoutFocus, LayoutSide as TaLayoutSide, Link as TaLink, Link2 as TaLink2, List as TaList, ListNested as TaListNested, ListOrdered as TaListOrdered, ListSm as TaListSm, ListUnordered as TaListUnordered, Live as TaLive, Location as TaLocation, LockClose as TaLockClose, LockCloseFill as TaLockCloseFill, LockOpen as TaLockOpen, LockOpenFill as TaLockOpenFill, LogoAndroidGray as TaLogoAndroidGray, LogoApiGray as TaLogoApiGray, LogoAppPushGray as TaLogoAppPushGray, LogoAppleGray as TaLogoAppleGray, LogoBitkeepCl as TaLogoBitkeepCl, LogoClientsideGray as TaLogoClientsideGray, LogoCurrencylayerCl as TaLogoCurrencylayerCl, LogoDingdingCl as TaLogoDingdingCl, LogoDingdingGray as TaLogoDingdingGray, LogoDouyinGray as TaLogoDouyinGray, LogoFcmCl as TaLogoFcmCl, LogoFeishuCl as TaLogoFeishuCl, LogoFutuCl as TaLogoFutuCl, LogoGarenaCl as TaLogoGarenaCl, LogoHappyelementCl as TaLogoHappyelementCl, LogoIggCl as TaLogoIggCl, LogoJiguangCl as TaLogoJiguangCl, LogoKingCl as TaLogoKingCl, LogoLitmatchCl as TaLogoLitmatchCl, LogoStarrocksCl as TaLogoStarrocksCl, LogoTrinoCl as TaLogoTrinoCl, LogoWebhookGray as TaLogoWebhookGray, LogoWechatCl as TaLogoWechatCl, LogoWechatGray as TaLogoWechatGray, LogoWecomCl as TaLogoWecomCl, LogoWecomGray as TaLogoWecomGray, LogoWepieCl as TaLogoWepieCl, LogoXiaomiCl as TaLogoXiaomiCl, LogoYaojiCl as TaLogoYaojiCl, Logout as TaLogout, MAttributionCl as TaMAttributionCl, MDistribution as TaMDistribution, MDistributionCl as TaMDistributionCl, MEvent as TaMEvent, MEventCl as TaMEventCl, MFlow as TaMFlow, MFlowCl as TaMFlowCl, MFunnel as TaMFunnel, MFunnelCl as TaMFunnelCl, MHeatmapCl as TaMHeatmapCl, MInterval as TaMInterval, MIntervalCl as TaMIntervalCl, MPropCl as TaMPropCl, MProperty as TaMProperty, MRetention as TaMRetention, MRetentionCl as TaMRetentionCl, MSql as TaMSql, MSqlCl as TaMSqlCl, MTrophyCl as TaMTrophyCl, MagicWand as TaMagicWand, ManageQuery as TaManageQuery, Manual as TaManual, Map as TaMap, MenuFold as TaMenuFold, MenuUnfold as TaMenuUnfold, MessageCenter as TaMessageCenter, Mfa as TaMfa, More1 as TaMore1, More2 as TaMore2, Mute as TaMute, Name as TaName, NewIndicator as TaNewIndicator, NewTask as TaNewTask, Notice as TaNotice, NumSm as TaNumSm, Offline as TaOffline, OfflineSync as TaOfflineSync, OneTime as TaOneTime, Online as TaOnline, OperatorBigger as TaOperatorBigger, OperatorDivide as TaOperatorDivide, OperatorEqual as TaOperatorEqual, OperatorFalse as TaOperatorFalse, OperatorHasValue as TaOperatorHasValue, OperatorInclude as TaOperatorInclude, OperatorInside as TaOperatorInside, OperatorLess as TaOperatorLess, OperatorNoBigger as TaOperatorNoBigger, OperatorNoLess as TaOperatorNoLess, OperatorNoRegex as TaOperatorNoRegex, OperatorNoValue as TaOperatorNoValue, OperatorNotInclude as TaOperatorNotInclude, OperatorRegex as TaOperatorRegex, OperatorTrue as TaOperatorTrue, OperatorUnequal as TaOperatorUnequal, PageLine as TaPageLine, PageOpenCl as TaPageOpenCl, Palette as TaPalette, ParallelFilter as TaParallelFilter, Parameter as TaParameter, Partition as TaPartition, Password as TaPassword, Pattern as TaPattern, Pause2 as TaPause2, PauseCircle as TaPauseCircle, Pin as TaPin, Pin2 as TaPin2, Pin2Fill as TaPin2Fill, 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, Pulse as TaPulse, Recurring as TaRecurring, Recycle as TaRecycle, Reject as TaReject, RelatedProp as TaRelatedProp, Rename as TaRename, Renew as TaRenew, Report as TaReport, ReportCl as TaReportCl, ReportRemoval as TaReportRemoval, ResetPassword as TaResetPassword, Result as TaResult, Revert as TaRevert, RowsSm as TaRowsSm, Ruler as TaRuler, SAdministrator as TaSAdministrator, SSpace as TaSSpace, SWorkspace as TaSWorkspace, SatelliteDish as TaSatelliteDish, Save as TaSave, Schedule as TaSchedule, Search as TaSearch, Send as TaSend, Server as TaServer, Setting as TaSetting, Share as TaShare, ShieldCheck as TaShieldCheck, ShieldCross as TaShieldCross, ShieldKeyhole as TaShieldKeyhole, Shop as TaShop, ShopFill as TaShopFill, ShutDown as TaShutDown, Smile as TaSmile, Sort as TaSort, SortA2z as TaSortA2z, SortDown as TaSortDown, SortDrop as TaSortDrop, SortResult as TaSortResult, SortRise as TaSortRise, SortUp as TaSortUp, SortZ2a as TaSortZ2a, Space as TaSpace, SpaceLine as TaSpaceLine, SpaceOpen as TaSpaceOpen, SpaceOpenLine as TaSpaceOpenLine, Speed as TaSpeed, Split as TaSplit, Sql1 as TaSql1, Sql2 as TaSql2, Sql3 as TaSql3, SqlTableView as TaSqlTableView, StarFill as TaStarFill, StarOutline as TaStarOutline, Sticker as TaSticker, StickerFill as TaStickerFill, Sticky as TaSticky, StopCircle as TaStopCircle, StringSm as TaStringSm, Submit as TaSubmit, Subtract as TaSubtract, Subtract2 as TaSubtract2, Subtract3 as TaSubtract3, Success as TaSuccess, SuccessFill as TaSuccessFill, SvipFill as TaSvipFill, SwapFill as TaSwapFill, SystemBuild as TaSystemBuild, SystemMgr as TaSystemMgr, SystemMsg as TaSystemMsg, TA2b as TaTA2b, TX2y as TaTX2y, Table1dtable as TaTable1dtable, TableClassic as TaTableClassic, TableCol as TaTableCol, TableKey as TaTableKey, TableRow as TaTableRow, TableSimple as TaTableSimple, TableStriped as TaTableStriped, Task as TaTask, TaskFlow as TaTaskFlow, TdLogo as TaTdLogo, TemplateCl as TaTemplateCl, Terminal as TaTerminal, TestRace as TaTestRace, TestSplit as TaTestSplit, TextCase as TaTextCase, TextWholeMatch as TaTextWholeMatch, ThumbDown as TaThumbDown, ThumbDownOutline as TaThumbDownOutline, ThumbUp as TaThumbUp, ThumbUpOutline as TaThumbUpOutline, TimeLock as TaTimeLock, TimeSm as TaTimeSm, Tips as TaTips, Tracking as TaTracking, TransferOwnership as TaTransferOwnership, 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, UndoApproval as TaUndoApproval, Unlink as TaUnlink, Unpin as TaUnpin, Unsave as TaUnsave, Update as TaUpdate, UpdateData as TaUpdateData, Upload as TaUpload, UploadId as TaUploadId, Usb as TaUsb, User1 as TaUser1, User1Fill as TaUser1Fill, User2 as TaUser2, UserAddFill as TaUserAddFill, UserSettings as TaUserSettings, UserTagCl as TaUserTagCl, Usertag as TaUsertag, VPropCl as TaVPropCl, VProperty as TaVProperty, VPropertySm as TaVPropertySm, Validate as TaValidate, ViewOriginal as TaViewOriginal, Vip as TaVip, VipFill as TaVipFill, Warehouse as TaWarehouse };
|
|
27751
|
+
export { Add1 as TaAdd1, Add2 as TaAdd2, Add3 as TaAdd3, Add3Fill as TaAdd3Fill, AddToPage as TaAddToPage, Alert as TaAlert, AlertCl as TaAlertCl, AlignCenter as TaAlignCenter, AlignLeft as TaAlignLeft, AlignRight as TaAlignRight, AllGroupSm as TaAllGroupSm, Analysis as TaAnalysis, Anchor as TaAnchor, Application as TaApplication, Approve as TaApprove, ArrayRowsSm as TaArrayRowsSm, ArrowDown as TaArrowDown, ArrowDown2 as TaArrowDown2, ArrowGoBack as TaArrowGoBack, ArrowGoForward as TaArrowGoForward, ArrowLeft as TaArrowLeft, ArrowLeft2 as TaArrowLeft2, ArrowLeftDown as TaArrowLeftDown, ArrowRight as TaArrowRight, ArrowRight2 as TaArrowRight2, ArrowUp as TaArrowUp, ArrowUp2 as TaArrowUp2, Ascent as TaAscent, Attachment as TaAttachment, Attribution as TaAttribution, AutoLayout as TaAutoLayout, AvatarGroupCl as TaAvatarGroupCl, AvatarProjectCl as TaAvatarProjectCl, Backup as TaBackup, Bell as TaBell, Bell2Fill as TaBell2Fill, Book as TaBook, Book2 as TaBook2, Bookmark as TaBookmark, Bookmark2 as TaBookmark2, BooleanSm as TaBooleanSm, Box as TaBox, BoxOpen as TaBoxOpen, Branch as TaBranch, Bring as TaBring, BuildMode as TaBuildMode, BuiltIn as TaBuiltIn, Calendar as TaCalendar, 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, ChartGantt as TaChartGantt, ChartHistogram as TaChartHistogram, ChartInterval as TaChartInterval, ChartLine as TaChartLine, ChartLineTable as TaChartLineTable, ChartPercentageBar as TaChartPercentageBar, ChartPie as TaChartPie, ChartScatter as TaChartScatter, ChartScorecard as TaChartScorecard, ChartSqltable as TaChartSqltable, ChartStack as TaChartStack, ChartStackPerc as TaChartStackPerc, ChartStackedBar as TaChartStackedBar, ChartStackn as TaChartStackn, ChartTable as TaChartTable, Click as TaClick, Clock as TaClock, Close as TaClose, Code as TaCode, CodeVariable as TaCodeVariable, Comment as TaComment, Config as TaConfig, Consent as TaConsent, Contrast as TaContrast, Copy as TaCopy, Copy2 as TaCopy2, CopyDdl as TaCopyDdl, CopyQuery as TaCopyQuery, Cost as TaCost, Currency as TaCurrency, CustomPartition as TaCustomPartition, DArrowB as TaDArrowB, DArrowL as TaDArrowL, DArrowR as TaDArrowR, DArrowT as TaDArrowT, DAssetsCl as TaDAssetsCl, DIntegrationCl as TaDIntegrationCl, DManageCl as TaDManageCl, DTrackingCl as TaDTrackingCl, Dag as TaDag, Dashboard as TaDashboard, DashboardCl as TaDashboardCl, DashboardMgr as TaDashboardMgr, DataInput as TaDataInput, DataOutput as TaDataOutput, Database as TaDatabase, DateMarkCl as TaDateMarkCl, Debug as TaDebug, DebugPlay as TaDebugPlay, Delete1 as TaDelete1, Delete2 as TaDelete2, Delete2Fill as TaDelete2Fill, Demo as TaDemo, Descent as TaDescent, Desktop as TaDesktop, Detail as TaDetail, DirectConnect as TaDirectConnect, Disable as TaDisable, DisplayS as TaDisplayS, Done as TaDone, Dot as TaDot, DoubleList as TaDoubleList, Download as TaDownload, Drag as TaDrag, Drag2 as TaDrag2, DropDown as TaDropDown, DropUp as TaDropUp, ECampaignCl as TaECampaignCl, EChartsCl as TaEChartsCl, EConfigCl as TaEConfigCl, 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, FileSqlFill as TaFileSqlFill, Filter as TaFilter, Filter2 as TaFilter2, Find as TaFind, FirstLast as TaFirstLast, FlagCn as TaFlagCn, FlagJp as TaFlagJp, FlagKr as TaFlagKr, FlagUs as TaFlagUs, Flash as TaFlash, Folder as TaFolder, FolderLine as TaFolderLine, FolderOpen as TaFolderOpen, FolderOpenLine as TaFolderOpenLine, FontBgColor as TaFontBgColor, FontBold as TaFontBold, FontColor as TaFontColor, FontItalic as TaFontItalic, FontSize as TaFontSize, Forewarning as TaForewarning, Format as TaFormat, FullDownload as TaFullDownload, Fullscreen as TaFullscreen, Function as TaFunction, Game as TaGame, GameFill as TaGameFill, Gift as TaGift, Goal as TaGoal, Grid as TaGrid, Group as TaGroup, GroupA2b as TaGroupA2b, GroupAddFill as TaGroupAddFill, GroupAddSm as TaGroupAddSm, GroupCl as TaGroupCl, GroupFill as TaGroupFill, GroupFill2 as TaGroupFill2, Groups as TaGroups, Hand as TaHand, 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, JsonSm as TaJsonSm, Lab as TaLab, Landscape as TaLandscape, Language as TaLanguage, LayoutFocus as TaLayoutFocus, LayoutSide as TaLayoutSide, Link as TaLink, Link2 as TaLink2, List as TaList, ListNested as TaListNested, ListOrdered as TaListOrdered, ListSm as TaListSm, ListUnordered as TaListUnordered, Live as TaLive, Location as TaLocation, LockClose as TaLockClose, LockCloseFill as TaLockCloseFill, LockOpen as TaLockOpen, LockOpenFill as TaLockOpenFill, LogoAndroidGray as TaLogoAndroidGray, LogoApiGray as TaLogoApiGray, LogoAppPushGray as TaLogoAppPushGray, LogoAppleGray as TaLogoAppleGray, LogoBitkeepCl as TaLogoBitkeepCl, LogoClientsideGray as TaLogoClientsideGray, LogoCurrencylayerCl as TaLogoCurrencylayerCl, LogoDingdingCl as TaLogoDingdingCl, LogoDingdingGray as TaLogoDingdingGray, LogoDouyinGray as TaLogoDouyinGray, LogoFcmCl as TaLogoFcmCl, LogoFeishuCl as TaLogoFeishuCl, LogoFutuCl as TaLogoFutuCl, LogoGarenaCl as TaLogoGarenaCl, LogoHappyelementCl as TaLogoHappyelementCl, LogoIggCl as TaLogoIggCl, LogoJiguangCl as TaLogoJiguangCl, LogoKingCl as TaLogoKingCl, LogoLitmatchCl as TaLogoLitmatchCl, LogoStarrocksCl as TaLogoStarrocksCl, LogoTrinoCl as TaLogoTrinoCl, LogoWebhookGray as TaLogoWebhookGray, LogoWechatCl as TaLogoWechatCl, LogoWechatGray as TaLogoWechatGray, LogoWecomCl as TaLogoWecomCl, LogoWecomGray as TaLogoWecomGray, LogoWepieCl as TaLogoWepieCl, LogoXiaomiCl as TaLogoXiaomiCl, LogoYaojiCl as TaLogoYaojiCl, Logout as TaLogout, MAttributionCl as TaMAttributionCl, MDistribution as TaMDistribution, MDistributionCl as TaMDistributionCl, MEvent as TaMEvent, MEventCl as TaMEventCl, MFlow as TaMFlow, MFlowCl as TaMFlowCl, MFunnel as TaMFunnel, MFunnelCl as TaMFunnelCl, MHeatmapCl as TaMHeatmapCl, MInterval as TaMInterval, MIntervalCl as TaMIntervalCl, MPropCl as TaMPropCl, MProperty as TaMProperty, MRetention as TaMRetention, MRetentionCl as TaMRetentionCl, MSql as TaMSql, MSqlCl as TaMSqlCl, MTrophyCl as TaMTrophyCl, MagicWand as TaMagicWand, ManageQuery as TaManageQuery, Manual as TaManual, Map as TaMap, MenuFold as TaMenuFold, MenuUnfold as TaMenuUnfold, MessageCenter as TaMessageCenter, Mfa as TaMfa, More1 as TaMore1, More2 as TaMore2, Mute as TaMute, Name as TaName, NewIndicator as TaNewIndicator, NewTask as TaNewTask, Notice as TaNotice, NumSm as TaNumSm, Offline as TaOffline, OfflineSync as TaOfflineSync, OneTime as TaOneTime, Online as TaOnline, OperatorBigger as TaOperatorBigger, OperatorDivide as TaOperatorDivide, OperatorEqual as TaOperatorEqual, OperatorFalse as TaOperatorFalse, OperatorHasValue as TaOperatorHasValue, OperatorInclude as TaOperatorInclude, OperatorInside as TaOperatorInside, OperatorLess as TaOperatorLess, OperatorNoBigger as TaOperatorNoBigger, OperatorNoLess as TaOperatorNoLess, OperatorNoRegex as TaOperatorNoRegex, OperatorNoValue as TaOperatorNoValue, OperatorNotInclude as TaOperatorNotInclude, OperatorRegex as TaOperatorRegex, OperatorTrue as TaOperatorTrue, OperatorUnequal as TaOperatorUnequal, PageLine as TaPageLine, PageOpenCl as TaPageOpenCl, Palette as TaPalette, ParallelFilter as TaParallelFilter, Parameter as TaParameter, Partition as TaPartition, Password as TaPassword, Pattern as TaPattern, Pause2 as TaPause2, PauseCircle as TaPauseCircle, Pin as TaPin, Pin2 as TaPin2, PinFill as TaPinFill, 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, Pulse as TaPulse, Recurring as TaRecurring, Recycle as TaRecycle, Reject as TaReject, RelatedProp as TaRelatedProp, Rename as TaRename, Renew as TaRenew, Report as TaReport, ReportCl as TaReportCl, ReportRemoval as TaReportRemoval, ResetPassword as TaResetPassword, Result as TaResult, Revert as TaRevert, RowsSm as TaRowsSm, Ruler as TaRuler, SAdministrator as TaSAdministrator, SSpace as TaSSpace, SWorkspace as TaSWorkspace, SatelliteDish as TaSatelliteDish, Save as TaSave, Schedule as TaSchedule, Search as TaSearch, Send as TaSend, Server as TaServer, Setting as TaSetting, Share as TaShare, ShieldCheck as TaShieldCheck, ShieldCross as TaShieldCross, ShieldKeyhole as TaShieldKeyhole, Shop as TaShop, ShopFill as TaShopFill, ShutDown as TaShutDown, Smile as TaSmile, Sort as TaSort, SortA2z as TaSortA2z, SortDown as TaSortDown, SortDrop as TaSortDrop, SortResult as TaSortResult, SortRise as TaSortRise, SortUp as TaSortUp, SortZ2a as TaSortZ2a, Space as TaSpace, SpaceLine as TaSpaceLine, SpaceOpen as TaSpaceOpen, SpaceOpenLine as TaSpaceOpenLine, Speed as TaSpeed, Split as TaSplit, Sql1 as TaSql1, Sql2 as TaSql2, Sql3 as TaSql3, SqlTableView as TaSqlTableView, StarFill as TaStarFill, StarOutline as TaStarOutline, Sticker as TaSticker, StickerFill as TaStickerFill, Sticky as TaSticky, StopCircle as TaStopCircle, StringSm as TaStringSm, Submit as TaSubmit, Subtract as TaSubtract, Subtract2 as TaSubtract2, Subtract3 as TaSubtract3, Success as TaSuccess, SuccessFill as TaSuccessFill, SvipFill as TaSvipFill, SwapFill as TaSwapFill, SystemBuild as TaSystemBuild, SystemMgr as TaSystemMgr, SystemMsg as TaSystemMsg, TA2b as TaTA2b, TX2y as TaTX2y, Table1dtable as TaTable1dtable, TableClassic as TaTableClassic, TableCol as TaTableCol, TableKey as TaTableKey, TableRow as TaTableRow, TableSimple as TaTableSimple, TableStriped as TaTableStriped, Task as TaTask, TaskFlow as TaTaskFlow, TdLogo as TaTdLogo, TemplateCl as TaTemplateCl, Terminal as TaTerminal, TestRace as TaTestRace, TestSplit as TaTestSplit, TextCase as TaTextCase, TextWholeMatch as TaTextWholeMatch, ThumbDown as TaThumbDown, ThumbDownOutline as TaThumbDownOutline, ThumbUp as TaThumbUp, ThumbUpOutline as TaThumbUpOutline, TimeLock as TaTimeLock, TimeSm as TaTimeSm, Tips as TaTips, Tracking as TaTracking, TransferOwnership as TaTransferOwnership, 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, UndoApproval as TaUndoApproval, Unlink as TaUnlink, Unpin as TaUnpin, Unsave as TaUnsave, Update as TaUpdate, UpdateData as TaUpdateData, Upload as TaUpload, UploadId as TaUploadId, Usb as TaUsb, User1 as TaUser1, User1Fill as TaUser1Fill, User2 as TaUser2, UserAddFill as TaUserAddFill, UserSettings as TaUserSettings, UserTagCl as TaUserTagCl, Usertag as TaUsertag, VPropCl as TaVPropCl, VProperty as TaVProperty, VPropertySm as TaVPropertySm, Validate as TaValidate, ViewOriginal as TaViewOriginal, Vip as TaVip, VipFill as TaVipFill, Warehouse as TaWarehouse };
|