@tant/icons 1.21.73 → 1.21.75
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/{circular-progress-cl.js → chart-view.js} +9 -18
- package/dist/es/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/lib/icons/{circular-progress-cl.js → chart-view.js} +9 -18
- package/dist/lib/index.js +5 -5
- package/dist/tant-icons.cjs.js +94 -103
- package/dist/tant-icons.esm.js +94 -103
- package/package.json +1 -1
|
@@ -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 ChartView = function ChartView(props) {
|
|
15
15
|
var color = props.color,
|
|
16
16
|
size = props.size,
|
|
17
17
|
spin = props.spin,
|
|
@@ -43,34 +43,25 @@ var CircularProgressCl = function CircularProgressCl(props) {
|
|
|
43
43
|
}), /*#__PURE__*/React.createElement("svg", {
|
|
44
44
|
width: "24",
|
|
45
45
|
height: "24",
|
|
46
|
-
fill: "none",
|
|
47
46
|
xmlns: "http://www.w3.org/2000/svg"
|
|
48
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
49
|
-
clipPath: "url(#clip0_11001_251)",
|
|
50
|
-
fill: "#7E7F80"
|
|
51
47
|
}, /*#__PURE__*/React.createElement("path", {
|
|
52
|
-
|
|
53
|
-
d: "M12 23.55a11.4 11.4 0 100-22.8 11.4 11.4 0 000 22.8zm5.515-16.915C19.038 8.158 19.8 9.996 19.8 12.15c0 2.154-.762 3.992-2.285 5.515-1.523 1.523-3.361 2.285-5.515 2.285-2.153 0-3.992-.762-5.515-2.285C4.962 16.142 4.2 14.304 4.2 12.15c0-2.154.762-3.992 2.285-5.515C8.008 5.112 9.847 4.35 12 4.35c2.154 0 3.992.762 5.515 2.285z"
|
|
48
|
+
d: "M15 11c2.28 0 4.004 1.018 5.129 1.994.564.49.99.977 1.275 1.345a7.998 7.998 0 01.418.59l.026.04.008.013.002.005.001.002.14.498-.152.544-.001.003-.003.005-.009.013a8.378 8.378 0 01-.118.175 10.215 10.215 0 01-1.639 1.784C18.947 18.977 17.224 20 15 20c-2.224 0-3.946-1.023-5.077-1.99a10.217 10.217 0 01-1.639-1.783 5.575 5.575 0 01-.118-.175l-.009-.013c0-.002-.003-.005-.003-.005v-.002L8 15.487l.14-.497.002-.003.003-.005.007-.012a3.934 3.934 0 01.115-.178c.076-.113.185-.269.329-.453a9.62 9.62 0 011.275-1.345C10.996 12.018 12.72 11 15 11zm0 2c-1.65 0-2.926.732-3.818 1.506a7.645 7.645 0 00-.945.981c.234.283.565.643.985 1.002C12.139 17.273 13.417 18 15 18c1.583 0 2.861-.727 3.778-1.51.42-.36.75-.72.984-1.003a7.622 7.622 0 00-.944-.981C17.926 13.732 16.65 13 15 13zm-7 2.487l.152.544a1.002 1.002 0 01-.012-1.04l-.14.496zm13.86-.496a1 1 0 01-.013 1.04l.152-.544-.139-.496z"
|
|
54
49
|
}), /*#__PURE__*/React.createElement("path", {
|
|
55
|
-
d: "
|
|
56
|
-
})
|
|
57
|
-
|
|
58
|
-
}
|
|
59
|
-
width: "24",
|
|
60
|
-
height: "24",
|
|
61
|
-
fill: "#fff"
|
|
62
|
-
}))))));
|
|
50
|
+
d: "M21 4a1 1 0 011 1v6h-2V8H4v10h4v2H3a1 1 0 01-1-1V5a1 1 0 011-1h18z"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
52
|
+
d: "M17 15.5a2 2 0 11-4 0 2 2 0 014 0z"
|
|
53
|
+
}))));
|
|
63
54
|
};
|
|
64
|
-
|
|
55
|
+
ChartView.propTypes = {
|
|
65
56
|
iconClassName: PropTypes.string,
|
|
66
57
|
spin: PropTypes.bool,
|
|
67
58
|
color: PropTypes.string,
|
|
68
59
|
testid: PropTypes.string,
|
|
69
60
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
70
61
|
};
|
|
71
|
-
|
|
62
|
+
ChartView.defaultProps = {
|
|
72
63
|
spin: false,
|
|
73
64
|
color: 'currentColor',
|
|
74
65
|
size: '1em'
|
|
75
66
|
};
|
|
76
|
-
export default
|
|
67
|
+
export default ChartView;
|
package/dist/es/index.js
CHANGED
|
@@ -193,6 +193,7 @@ export { default as TaChartTrophy } from './icons/chart-trophy';
|
|
|
193
193
|
export { default as TaProgress } from './icons/progress';
|
|
194
194
|
export { default as TaDashboardPlan } from './icons/dashboard-plan';
|
|
195
195
|
export { default as TaRipple } from './icons/ripple';
|
|
196
|
+
export { default as TaChartView } from './icons/chart-view';
|
|
196
197
|
export { default as TaMEvent } from './icons/m-event';
|
|
197
198
|
export { default as TaMRetention } from './icons/m-retention';
|
|
198
199
|
export { default as TaMFunnel } from './icons/m-funnel';
|
|
@@ -203,7 +204,6 @@ export { default as TaMSql } from './icons/m-sql';
|
|
|
203
204
|
export { default as TaUTag } from './icons/u-tag';
|
|
204
205
|
export { default as TaMProperty } from './icons/m-property';
|
|
205
206
|
export { default as TaUGroup } from './icons/u-group';
|
|
206
|
-
export { default as TaCircularProgressCl } from './icons/circular-progress-cl';
|
|
207
207
|
export { default as TaSSpace } from './icons/s-space';
|
|
208
208
|
export { default as TaProject } from './icons/project';
|
|
209
209
|
export { default as TaSpace } from './icons/space';
|
package/dist/index.d.ts
CHANGED
|
@@ -205,6 +205,7 @@ export const TaChartTrophy: Icon;
|
|
|
205
205
|
export const TaProgress: Icon;
|
|
206
206
|
export const TaDashboardPlan: Icon;
|
|
207
207
|
export const TaRipple: Icon;
|
|
208
|
+
export const TaChartView: Icon;
|
|
208
209
|
export const TaMEvent: Icon;
|
|
209
210
|
export const TaMRetention: Icon;
|
|
210
211
|
export const TaMFunnel: Icon;
|
|
@@ -215,7 +216,6 @@ export const TaMSql: Icon;
|
|
|
215
216
|
export const TaUTag: Icon;
|
|
216
217
|
export const TaMProperty: Icon;
|
|
217
218
|
export const TaUGroup: Icon;
|
|
218
|
-
export const TaCircularProgressCl: Icon;
|
|
219
219
|
export const TaSSpace: Icon;
|
|
220
220
|
export const TaProject: Icon;
|
|
221
221
|
export const TaSpace: Icon;
|
|
@@ -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 ChartView = function ChartView(props) {
|
|
22
22
|
var color = props.color,
|
|
23
23
|
size = props.size,
|
|
24
24
|
spin = props.spin,
|
|
@@ -50,34 +50,25 @@ var CircularProgressCl = function CircularProgressCl(props) {
|
|
|
50
50
|
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
51
51
|
width: "24",
|
|
52
52
|
height: "24",
|
|
53
|
-
fill: "none",
|
|
54
53
|
xmlns: "http://www.w3.org/2000/svg"
|
|
55
|
-
}, /*#__PURE__*/_react["default"].createElement("g", {
|
|
56
|
-
clipPath: "url(#clip0_11001_251)",
|
|
57
|
-
fill: "#7E7F80"
|
|
58
54
|
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
59
|
-
|
|
60
|
-
d: "M12 23.55a11.4 11.4 0 100-22.8 11.4 11.4 0 000 22.8zm5.515-16.915C19.038 8.158 19.8 9.996 19.8 12.15c0 2.154-.762 3.992-2.285 5.515-1.523 1.523-3.361 2.285-5.515 2.285-2.153 0-3.992-.762-5.515-2.285C4.962 16.142 4.2 14.304 4.2 12.15c0-2.154.762-3.992 2.285-5.515C8.008 5.112 9.847 4.35 12 4.35c2.154 0 3.992.762 5.515 2.285z"
|
|
55
|
+
d: "M15 11c2.28 0 4.004 1.018 5.129 1.994.564.49.99.977 1.275 1.345a7.998 7.998 0 01.418.59l.026.04.008.013.002.005.001.002.14.498-.152.544-.001.003-.003.005-.009.013a8.378 8.378 0 01-.118.175 10.215 10.215 0 01-1.639 1.784C18.947 18.977 17.224 20 15 20c-2.224 0-3.946-1.023-5.077-1.99a10.217 10.217 0 01-1.639-1.783 5.575 5.575 0 01-.118-.175l-.009-.013c0-.002-.003-.005-.003-.005v-.002L8 15.487l.14-.497.002-.003.003-.005.007-.012a3.934 3.934 0 01.115-.178c.076-.113.185-.269.329-.453a9.62 9.62 0 011.275-1.345C10.996 12.018 12.72 11 15 11zm0 2c-1.65 0-2.926.732-3.818 1.506a7.645 7.645 0 00-.945.981c.234.283.565.643.985 1.002C12.139 17.273 13.417 18 15 18c1.583 0 2.861-.727 3.778-1.51.42-.36.75-.72.984-1.003a7.622 7.622 0 00-.944-.981C17.926 13.732 16.65 13 15 13zm-7 2.487l.152.544a1.002 1.002 0 01-.012-1.04l-.14.496zm13.86-.496a1 1 0 01-.013 1.04l.152-.544-.139-.496z"
|
|
61
56
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
62
|
-
d: "
|
|
63
|
-
})
|
|
64
|
-
|
|
65
|
-
}
|
|
66
|
-
width: "24",
|
|
67
|
-
height: "24",
|
|
68
|
-
fill: "#fff"
|
|
69
|
-
}))))));
|
|
57
|
+
d: "M21 4a1 1 0 011 1v6h-2V8H4v10h4v2H3a1 1 0 01-1-1V5a1 1 0 011-1h18z"
|
|
58
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
59
|
+
d: "M17 15.5a2 2 0 11-4 0 2 2 0 014 0z"
|
|
60
|
+
}))));
|
|
70
61
|
};
|
|
71
|
-
|
|
62
|
+
ChartView.propTypes = {
|
|
72
63
|
iconClassName: _propTypes["default"].string,
|
|
73
64
|
spin: _propTypes["default"].bool,
|
|
74
65
|
color: _propTypes["default"].string,
|
|
75
66
|
testid: _propTypes["default"].string,
|
|
76
67
|
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
77
68
|
};
|
|
78
|
-
|
|
69
|
+
ChartView.defaultProps = {
|
|
79
70
|
spin: false,
|
|
80
71
|
color: 'currentColor',
|
|
81
72
|
size: '1em'
|
|
82
73
|
};
|
|
83
|
-
var _default = exports["default"] =
|
|
74
|
+
var _default = exports["default"] = ChartView;
|
package/dist/lib/index.js
CHANGED
|
@@ -543,16 +543,16 @@ Object.defineProperty(exports, "TaChartTrophy", {
|
|
|
543
543
|
return _chartTrophy["default"];
|
|
544
544
|
}
|
|
545
545
|
});
|
|
546
|
-
Object.defineProperty(exports, "
|
|
546
|
+
Object.defineProperty(exports, "TaChartView", {
|
|
547
547
|
enumerable: true,
|
|
548
548
|
get: function get() {
|
|
549
|
-
return
|
|
549
|
+
return _chartView["default"];
|
|
550
550
|
}
|
|
551
551
|
});
|
|
552
|
-
Object.defineProperty(exports, "
|
|
552
|
+
Object.defineProperty(exports, "TaChartWordcloud", {
|
|
553
553
|
enumerable: true,
|
|
554
554
|
get: function get() {
|
|
555
|
-
return
|
|
555
|
+
return _chartWordcloud["default"];
|
|
556
556
|
}
|
|
557
557
|
});
|
|
558
558
|
Object.defineProperty(exports, "TaClean", {
|
|
@@ -3504,6 +3504,7 @@ var _chartTrophy = _interopRequireDefault(require("./icons/chart-trophy"));
|
|
|
3504
3504
|
var _progress = _interopRequireDefault(require("./icons/progress"));
|
|
3505
3505
|
var _dashboardPlan = _interopRequireDefault(require("./icons/dashboard-plan"));
|
|
3506
3506
|
var _ripple = _interopRequireDefault(require("./icons/ripple"));
|
|
3507
|
+
var _chartView = _interopRequireDefault(require("./icons/chart-view"));
|
|
3507
3508
|
var _mEvent = _interopRequireDefault(require("./icons/m-event"));
|
|
3508
3509
|
var _mRetention = _interopRequireDefault(require("./icons/m-retention"));
|
|
3509
3510
|
var _mFunnel = _interopRequireDefault(require("./icons/m-funnel"));
|
|
@@ -3514,7 +3515,6 @@ var _mSql = _interopRequireDefault(require("./icons/m-sql"));
|
|
|
3514
3515
|
var _uTag = _interopRequireDefault(require("./icons/u-tag"));
|
|
3515
3516
|
var _mProperty = _interopRequireDefault(require("./icons/m-property"));
|
|
3516
3517
|
var _uGroup = _interopRequireDefault(require("./icons/u-group"));
|
|
3517
|
-
var _circularProgressCl = _interopRequireDefault(require("./icons/circular-progress-cl"));
|
|
3518
3518
|
var _sSpace = _interopRequireDefault(require("./icons/s-space"));
|
|
3519
3519
|
var _project = _interopRequireDefault(require("./icons/project"));
|
|
3520
3520
|
var _space = _interopRequireDefault(require("./icons/space"));
|
package/dist/tant-icons.cjs.js
CHANGED
|
@@ -13107,7 +13107,7 @@ Ripple.defaultProps = {
|
|
|
13107
13107
|
|
|
13108
13108
|
var _excluded$33 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13109
13109
|
var loadingCircleStyle$33 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13110
|
-
var
|
|
13110
|
+
var ChartView = function ChartView(props) {
|
|
13111
13111
|
var color = props.color,
|
|
13112
13112
|
size = props.size,
|
|
13113
13113
|
spin = props.spin,
|
|
@@ -13140,6 +13140,62 @@ var MEvent = function MEvent(props) {
|
|
|
13140
13140
|
width: "24",
|
|
13141
13141
|
height: "24",
|
|
13142
13142
|
xmlns: "http://www.w3.org/2000/svg"
|
|
13143
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
13144
|
+
d: "M15 11c2.28 0 4.004 1.018 5.129 1.994.564.49.99.977 1.275 1.345a7.998 7.998 0 01.418.59l.026.04.008.013.002.005.001.002.14.498-.152.544-.001.003-.003.005-.009.013a8.378 8.378 0 01-.118.175 10.215 10.215 0 01-1.639 1.784C18.947 18.977 17.224 20 15 20c-2.224 0-3.946-1.023-5.077-1.99a10.217 10.217 0 01-1.639-1.783 5.575 5.575 0 01-.118-.175l-.009-.013c0-.002-.003-.005-.003-.005v-.002L8 15.487l.14-.497.002-.003.003-.005.007-.012a3.934 3.934 0 01.115-.178c.076-.113.185-.269.329-.453a9.62 9.62 0 011.275-1.345C10.996 12.018 12.72 11 15 11zm0 2c-1.65 0-2.926.732-3.818 1.506a7.645 7.645 0 00-.945.981c.234.283.565.643.985 1.002C12.139 17.273 13.417 18 15 18c1.583 0 2.861-.727 3.778-1.51.42-.36.75-.72.984-1.003a7.622 7.622 0 00-.944-.981C17.926 13.732 16.65 13 15 13zm-7 2.487l.152.544a1.002 1.002 0 01-.012-1.04l-.14.496zm13.86-.496a1 1 0 01-.013 1.04l.152-.544-.139-.496z"
|
|
13145
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
13146
|
+
d: "M21 4a1 1 0 011 1v6h-2V8H4v10h4v2H3a1 1 0 01-1-1V5a1 1 0 011-1h18z"
|
|
13147
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
13148
|
+
d: "M17 15.5a2 2 0 11-4 0 2 2 0 014 0z"
|
|
13149
|
+
}))));
|
|
13150
|
+
};
|
|
13151
|
+
ChartView.propTypes = {
|
|
13152
|
+
iconClassName: PropTypes.string,
|
|
13153
|
+
spin: PropTypes.bool,
|
|
13154
|
+
color: PropTypes.string,
|
|
13155
|
+
testid: PropTypes.string,
|
|
13156
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
13157
|
+
};
|
|
13158
|
+
ChartView.defaultProps = {
|
|
13159
|
+
spin: false,
|
|
13160
|
+
color: 'currentColor',
|
|
13161
|
+
size: '1em'
|
|
13162
|
+
};
|
|
13163
|
+
|
|
13164
|
+
var _excluded$34 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13165
|
+
var loadingCircleStyle$34 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13166
|
+
var MEvent = function MEvent(props) {
|
|
13167
|
+
var color = props.color,
|
|
13168
|
+
size = props.size,
|
|
13169
|
+
spin = props.spin,
|
|
13170
|
+
style = props.style,
|
|
13171
|
+
className = props.className,
|
|
13172
|
+
iconClassName = props.iconClassName,
|
|
13173
|
+
testid = props.testid,
|
|
13174
|
+
otherProps = _objectWithoutProperties(props, _excluded$34);
|
|
13175
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
13176
|
+
role: "img",
|
|
13177
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13178
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
13179
|
+
children: loadingCircleStyle$34
|
|
13180
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13181
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13182
|
+
width: size,
|
|
13183
|
+
height: size,
|
|
13184
|
+
viewBox: "0 0 24 24",
|
|
13185
|
+
fill: color
|
|
13186
|
+
}, otherProps, {
|
|
13187
|
+
className: iconClassName,
|
|
13188
|
+
"data-testid": testid,
|
|
13189
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
13190
|
+
animationDuration: '1s',
|
|
13191
|
+
animationIterationCount: 'infinite',
|
|
13192
|
+
animationName: 'loadingCircle',
|
|
13193
|
+
animationTimingFunction: 'linear'
|
|
13194
|
+
} : {})
|
|
13195
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
13196
|
+
width: "24",
|
|
13197
|
+
height: "24",
|
|
13198
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
13143
13199
|
}, /*#__PURE__*/React.createElement("path", {
|
|
13144
13200
|
d: "M21 12a9 9 0 01-12.25 8.395 4.009 4.009 0 01-1.185 1.674C8.922 22.668 10.422 23 12 23c6.075 0 11-4.925 11-11 0-1.578-.332-3.078-.93-4.435a4.009 4.009 0 01-1.675 1.185A8.979 8.979 0 0121 12z"
|
|
13145
13201
|
}), /*#__PURE__*/React.createElement("path", {
|
|
@@ -13165,8 +13221,8 @@ MEvent.defaultProps = {
|
|
|
13165
13221
|
size: '1em'
|
|
13166
13222
|
};
|
|
13167
13223
|
|
|
13168
|
-
var _excluded$
|
|
13169
|
-
var loadingCircleStyle$
|
|
13224
|
+
var _excluded$35 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13225
|
+
var loadingCircleStyle$35 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13170
13226
|
var MRetention = function MRetention(props) {
|
|
13171
13227
|
var color = props.color,
|
|
13172
13228
|
size = props.size,
|
|
@@ -13175,12 +13231,12 @@ var MRetention = function MRetention(props) {
|
|
|
13175
13231
|
className = props.className,
|
|
13176
13232
|
iconClassName = props.iconClassName,
|
|
13177
13233
|
testid = props.testid,
|
|
13178
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13234
|
+
otherProps = _objectWithoutProperties(props, _excluded$35);
|
|
13179
13235
|
return /*#__PURE__*/React.createElement("span", {
|
|
13180
13236
|
role: "img",
|
|
13181
13237
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13182
13238
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13183
|
-
children: loadingCircleStyle$
|
|
13239
|
+
children: loadingCircleStyle$35
|
|
13184
13240
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13185
13241
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13186
13242
|
width: size,
|
|
@@ -13227,8 +13283,8 @@ MRetention.defaultProps = {
|
|
|
13227
13283
|
size: '1em'
|
|
13228
13284
|
};
|
|
13229
13285
|
|
|
13230
|
-
var _excluded$
|
|
13231
|
-
var loadingCircleStyle$
|
|
13286
|
+
var _excluded$36 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13287
|
+
var loadingCircleStyle$36 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13232
13288
|
var MFunnel = function MFunnel(props) {
|
|
13233
13289
|
var color = props.color,
|
|
13234
13290
|
size = props.size,
|
|
@@ -13237,12 +13293,12 @@ var MFunnel = function MFunnel(props) {
|
|
|
13237
13293
|
className = props.className,
|
|
13238
13294
|
iconClassName = props.iconClassName,
|
|
13239
13295
|
testid = props.testid,
|
|
13240
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13296
|
+
otherProps = _objectWithoutProperties(props, _excluded$36);
|
|
13241
13297
|
return /*#__PURE__*/React.createElement("span", {
|
|
13242
13298
|
role: "img",
|
|
13243
13299
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13244
13300
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13245
|
-
children: loadingCircleStyle$
|
|
13301
|
+
children: loadingCircleStyle$36
|
|
13246
13302
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13247
13303
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13248
13304
|
width: size,
|
|
@@ -13283,8 +13339,8 @@ MFunnel.defaultProps = {
|
|
|
13283
13339
|
size: '1em'
|
|
13284
13340
|
};
|
|
13285
13341
|
|
|
13286
|
-
var _excluded$
|
|
13287
|
-
var loadingCircleStyle$
|
|
13342
|
+
var _excluded$37 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13343
|
+
var loadingCircleStyle$37 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13288
13344
|
var MDistribution = function MDistribution(props) {
|
|
13289
13345
|
var color = props.color,
|
|
13290
13346
|
size = props.size,
|
|
@@ -13293,12 +13349,12 @@ var MDistribution = function MDistribution(props) {
|
|
|
13293
13349
|
className = props.className,
|
|
13294
13350
|
iconClassName = props.iconClassName,
|
|
13295
13351
|
testid = props.testid,
|
|
13296
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13352
|
+
otherProps = _objectWithoutProperties(props, _excluded$37);
|
|
13297
13353
|
return /*#__PURE__*/React.createElement("span", {
|
|
13298
13354
|
role: "img",
|
|
13299
13355
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13300
13356
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13301
|
-
children: loadingCircleStyle$
|
|
13357
|
+
children: loadingCircleStyle$37
|
|
13302
13358
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13303
13359
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13304
13360
|
width: size,
|
|
@@ -13345,8 +13401,8 @@ MDistribution.defaultProps = {
|
|
|
13345
13401
|
size: '1em'
|
|
13346
13402
|
};
|
|
13347
13403
|
|
|
13348
|
-
var _excluded$
|
|
13349
|
-
var loadingCircleStyle$
|
|
13404
|
+
var _excluded$38 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13405
|
+
var loadingCircleStyle$38 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13350
13406
|
var MInterval = function MInterval(props) {
|
|
13351
13407
|
var color = props.color,
|
|
13352
13408
|
size = props.size,
|
|
@@ -13355,12 +13411,12 @@ var MInterval = function MInterval(props) {
|
|
|
13355
13411
|
className = props.className,
|
|
13356
13412
|
iconClassName = props.iconClassName,
|
|
13357
13413
|
testid = props.testid,
|
|
13358
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13414
|
+
otherProps = _objectWithoutProperties(props, _excluded$38);
|
|
13359
13415
|
return /*#__PURE__*/React.createElement("span", {
|
|
13360
13416
|
role: "img",
|
|
13361
13417
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13362
13418
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13363
|
-
children: loadingCircleStyle$
|
|
13419
|
+
children: loadingCircleStyle$38
|
|
13364
13420
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13365
13421
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13366
13422
|
width: size,
|
|
@@ -13403,8 +13459,8 @@ MInterval.defaultProps = {
|
|
|
13403
13459
|
size: '1em'
|
|
13404
13460
|
};
|
|
13405
13461
|
|
|
13406
|
-
var _excluded$
|
|
13407
|
-
var loadingCircleStyle$
|
|
13462
|
+
var _excluded$39 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13463
|
+
var loadingCircleStyle$39 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13408
13464
|
var MFlow = function MFlow(props) {
|
|
13409
13465
|
var color = props.color,
|
|
13410
13466
|
size = props.size,
|
|
@@ -13413,12 +13469,12 @@ var MFlow = function MFlow(props) {
|
|
|
13413
13469
|
className = props.className,
|
|
13414
13470
|
iconClassName = props.iconClassName,
|
|
13415
13471
|
testid = props.testid,
|
|
13416
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13472
|
+
otherProps = _objectWithoutProperties(props, _excluded$39);
|
|
13417
13473
|
return /*#__PURE__*/React.createElement("span", {
|
|
13418
13474
|
role: "img",
|
|
13419
13475
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13420
13476
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13421
|
-
children: loadingCircleStyle$
|
|
13477
|
+
children: loadingCircleStyle$39
|
|
13422
13478
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13423
13479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13424
13480
|
width: size,
|
|
@@ -13459,8 +13515,8 @@ MFlow.defaultProps = {
|
|
|
13459
13515
|
size: '1em'
|
|
13460
13516
|
};
|
|
13461
13517
|
|
|
13462
|
-
var _excluded$
|
|
13463
|
-
var loadingCircleStyle$
|
|
13518
|
+
var _excluded$3a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13519
|
+
var loadingCircleStyle$3a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13464
13520
|
var MSql = function MSql(props) {
|
|
13465
13521
|
var color = props.color,
|
|
13466
13522
|
size = props.size,
|
|
@@ -13469,12 +13525,12 @@ var MSql = function MSql(props) {
|
|
|
13469
13525
|
className = props.className,
|
|
13470
13526
|
iconClassName = props.iconClassName,
|
|
13471
13527
|
testid = props.testid,
|
|
13472
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13528
|
+
otherProps = _objectWithoutProperties(props, _excluded$3a);
|
|
13473
13529
|
return /*#__PURE__*/React.createElement("span", {
|
|
13474
13530
|
role: "img",
|
|
13475
13531
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13476
13532
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13477
|
-
children: loadingCircleStyle$
|
|
13533
|
+
children: loadingCircleStyle$3a
|
|
13478
13534
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13479
13535
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13480
13536
|
width: size,
|
|
@@ -13521,8 +13577,8 @@ MSql.defaultProps = {
|
|
|
13521
13577
|
size: '1em'
|
|
13522
13578
|
};
|
|
13523
13579
|
|
|
13524
|
-
var _excluded$
|
|
13525
|
-
var loadingCircleStyle$
|
|
13580
|
+
var _excluded$3b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13581
|
+
var loadingCircleStyle$3b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13526
13582
|
var UTag = function UTag(props) {
|
|
13527
13583
|
var color = props.color,
|
|
13528
13584
|
size = props.size,
|
|
@@ -13531,12 +13587,12 @@ var UTag = function UTag(props) {
|
|
|
13531
13587
|
className = props.className,
|
|
13532
13588
|
iconClassName = props.iconClassName,
|
|
13533
13589
|
testid = props.testid,
|
|
13534
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13590
|
+
otherProps = _objectWithoutProperties(props, _excluded$3b);
|
|
13535
13591
|
return /*#__PURE__*/React.createElement("span", {
|
|
13536
13592
|
role: "img",
|
|
13537
13593
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13538
13594
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13539
|
-
children: loadingCircleStyle$
|
|
13595
|
+
children: loadingCircleStyle$3b
|
|
13540
13596
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13541
13597
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13542
13598
|
width: size,
|
|
@@ -13579,8 +13635,8 @@ UTag.defaultProps = {
|
|
|
13579
13635
|
size: '1em'
|
|
13580
13636
|
};
|
|
13581
13637
|
|
|
13582
|
-
var _excluded$
|
|
13583
|
-
var loadingCircleStyle$
|
|
13638
|
+
var _excluded$3c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13639
|
+
var loadingCircleStyle$3c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13584
13640
|
var MProperty = function MProperty(props) {
|
|
13585
13641
|
var color = props.color,
|
|
13586
13642
|
size = props.size,
|
|
@@ -13589,12 +13645,12 @@ var MProperty = function MProperty(props) {
|
|
|
13589
13645
|
className = props.className,
|
|
13590
13646
|
iconClassName = props.iconClassName,
|
|
13591
13647
|
testid = props.testid,
|
|
13592
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13648
|
+
otherProps = _objectWithoutProperties(props, _excluded$3c);
|
|
13593
13649
|
return /*#__PURE__*/React.createElement("span", {
|
|
13594
13650
|
role: "img",
|
|
13595
13651
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13596
13652
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13597
|
-
children: loadingCircleStyle$
|
|
13653
|
+
children: loadingCircleStyle$3c
|
|
13598
13654
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13599
13655
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13600
13656
|
width: size,
|
|
@@ -13639,8 +13695,8 @@ MProperty.defaultProps = {
|
|
|
13639
13695
|
size: '1em'
|
|
13640
13696
|
};
|
|
13641
13697
|
|
|
13642
|
-
var _excluded$
|
|
13643
|
-
var loadingCircleStyle$
|
|
13698
|
+
var _excluded$3d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13699
|
+
var loadingCircleStyle$3d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13644
13700
|
var UGroup = function UGroup(props) {
|
|
13645
13701
|
var color = props.color,
|
|
13646
13702
|
size = props.size,
|
|
@@ -13649,12 +13705,12 @@ var UGroup = function UGroup(props) {
|
|
|
13649
13705
|
className = props.className,
|
|
13650
13706
|
iconClassName = props.iconClassName,
|
|
13651
13707
|
testid = props.testid,
|
|
13652
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13708
|
+
otherProps = _objectWithoutProperties(props, _excluded$3d);
|
|
13653
13709
|
return /*#__PURE__*/React.createElement("span", {
|
|
13654
13710
|
role: "img",
|
|
13655
13711
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13656
13712
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13657
|
-
children: loadingCircleStyle$
|
|
13713
|
+
children: loadingCircleStyle$3d
|
|
13658
13714
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13659
13715
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13660
13716
|
width: size,
|
|
@@ -13699,71 +13755,6 @@ UGroup.defaultProps = {
|
|
|
13699
13755
|
size: '1em'
|
|
13700
13756
|
};
|
|
13701
13757
|
|
|
13702
|
-
var _excluded$3d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13703
|
-
var loadingCircleStyle$3d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13704
|
-
var CircularProgressCl = function CircularProgressCl(props) {
|
|
13705
|
-
var color = props.color,
|
|
13706
|
-
size = props.size,
|
|
13707
|
-
spin = props.spin,
|
|
13708
|
-
style = props.style,
|
|
13709
|
-
className = props.className,
|
|
13710
|
-
iconClassName = props.iconClassName,
|
|
13711
|
-
testid = props.testid,
|
|
13712
|
-
otherProps = _objectWithoutProperties(props, _excluded$3d);
|
|
13713
|
-
return /*#__PURE__*/React.createElement("span", {
|
|
13714
|
-
role: "img",
|
|
13715
|
-
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13716
|
-
}, /*#__PURE__*/React.createElement("style", {
|
|
13717
|
-
children: loadingCircleStyle$3d
|
|
13718
|
-
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13719
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
13720
|
-
width: size,
|
|
13721
|
-
height: size,
|
|
13722
|
-
viewBox: "0 0 24 24",
|
|
13723
|
-
fill: color
|
|
13724
|
-
}, otherProps, {
|
|
13725
|
-
className: iconClassName,
|
|
13726
|
-
"data-testid": testid,
|
|
13727
|
-
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
13728
|
-
animationDuration: '1s',
|
|
13729
|
-
animationIterationCount: 'infinite',
|
|
13730
|
-
animationName: 'loadingCircle',
|
|
13731
|
-
animationTimingFunction: 'linear'
|
|
13732
|
-
} : {})
|
|
13733
|
-
}), /*#__PURE__*/React.createElement("svg", {
|
|
13734
|
-
width: "24",
|
|
13735
|
-
height: "24",
|
|
13736
|
-
fill: "none",
|
|
13737
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
13738
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
13739
|
-
clipPath: "url(#clip0_11001_251)",
|
|
13740
|
-
fill: "#7E7F80"
|
|
13741
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
13742
|
-
opacity: ".3",
|
|
13743
|
-
d: "M12 23.55a11.4 11.4 0 100-22.8 11.4 11.4 0 000 22.8zm5.515-16.915C19.038 8.158 19.8 9.996 19.8 12.15c0 2.154-.762 3.992-2.285 5.515-1.523 1.523-3.361 2.285-5.515 2.285-2.153 0-3.992-.762-5.515-2.285C4.962 16.142 4.2 14.304 4.2 12.15c0-2.154.762-3.992 2.285-5.515C8.008 5.112 9.847 4.35 12 4.35c2.154 0 3.992.762 5.515 2.285z"
|
|
13744
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
13745
|
-
d: "M23.4 12.15A11.4 11.4 0 0012 .75v3.6c2.154 0 3.992.762 5.515 2.285C19.038 8.158 19.8 9.996 19.8 12.15h3.6z"
|
|
13746
|
-
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
13747
|
-
id: "clip0_11001_251"
|
|
13748
|
-
}, /*#__PURE__*/React.createElement("rect", {
|
|
13749
|
-
width: "24",
|
|
13750
|
-
height: "24",
|
|
13751
|
-
fill: "#fff"
|
|
13752
|
-
}))))));
|
|
13753
|
-
};
|
|
13754
|
-
CircularProgressCl.propTypes = {
|
|
13755
|
-
iconClassName: PropTypes.string,
|
|
13756
|
-
spin: PropTypes.bool,
|
|
13757
|
-
color: PropTypes.string,
|
|
13758
|
-
testid: PropTypes.string,
|
|
13759
|
-
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
13760
|
-
};
|
|
13761
|
-
CircularProgressCl.defaultProps = {
|
|
13762
|
-
spin: false,
|
|
13763
|
-
color: 'currentColor',
|
|
13764
|
-
size: '1em'
|
|
13765
|
-
};
|
|
13766
|
-
|
|
13767
13758
|
var _excluded$3e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13768
13759
|
var loadingCircleStyle$3e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13769
13760
|
var SSpace = function SSpace(props) {
|
|
@@ -32413,8 +32404,8 @@ exports.TaChartStackedBar = ChartStackedBar;
|
|
|
32413
32404
|
exports.TaChartStackn = ChartStackn;
|
|
32414
32405
|
exports.TaChartTable = ChartTable;
|
|
32415
32406
|
exports.TaChartTrophy = ChartTrophy;
|
|
32407
|
+
exports.TaChartView = ChartView;
|
|
32416
32408
|
exports.TaChartWordcloud = ChartWordcloud;
|
|
32417
|
-
exports.TaCircularProgressCl = CircularProgressCl;
|
|
32418
32409
|
exports.TaClean = Clean;
|
|
32419
32410
|
exports.TaClick = Click;
|
|
32420
32411
|
exports.TaClock = Clock;
|
package/dist/tant-icons.esm.js
CHANGED
|
@@ -13101,7 +13101,7 @@ Ripple.defaultProps = {
|
|
|
13101
13101
|
|
|
13102
13102
|
var _excluded$33 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13103
13103
|
var loadingCircleStyle$33 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13104
|
-
var
|
|
13104
|
+
var ChartView = function ChartView(props) {
|
|
13105
13105
|
var color = props.color,
|
|
13106
13106
|
size = props.size,
|
|
13107
13107
|
spin = props.spin,
|
|
@@ -13134,6 +13134,62 @@ var MEvent = function MEvent(props) {
|
|
|
13134
13134
|
width: "24",
|
|
13135
13135
|
height: "24",
|
|
13136
13136
|
xmlns: "http://www.w3.org/2000/svg"
|
|
13137
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
13138
|
+
d: "M15 11c2.28 0 4.004 1.018 5.129 1.994.564.49.99.977 1.275 1.345a7.998 7.998 0 01.418.59l.026.04.008.013.002.005.001.002.14.498-.152.544-.001.003-.003.005-.009.013a8.378 8.378 0 01-.118.175 10.215 10.215 0 01-1.639 1.784C18.947 18.977 17.224 20 15 20c-2.224 0-3.946-1.023-5.077-1.99a10.217 10.217 0 01-1.639-1.783 5.575 5.575 0 01-.118-.175l-.009-.013c0-.002-.003-.005-.003-.005v-.002L8 15.487l.14-.497.002-.003.003-.005.007-.012a3.934 3.934 0 01.115-.178c.076-.113.185-.269.329-.453a9.62 9.62 0 011.275-1.345C10.996 12.018 12.72 11 15 11zm0 2c-1.65 0-2.926.732-3.818 1.506a7.645 7.645 0 00-.945.981c.234.283.565.643.985 1.002C12.139 17.273 13.417 18 15 18c1.583 0 2.861-.727 3.778-1.51.42-.36.75-.72.984-1.003a7.622 7.622 0 00-.944-.981C17.926 13.732 16.65 13 15 13zm-7 2.487l.152.544a1.002 1.002 0 01-.012-1.04l-.14.496zm13.86-.496a1 1 0 01-.013 1.04l.152-.544-.139-.496z"
|
|
13139
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
13140
|
+
d: "M21 4a1 1 0 011 1v6h-2V8H4v10h4v2H3a1 1 0 01-1-1V5a1 1 0 011-1h18z"
|
|
13141
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
13142
|
+
d: "M17 15.5a2 2 0 11-4 0 2 2 0 014 0z"
|
|
13143
|
+
}))));
|
|
13144
|
+
};
|
|
13145
|
+
ChartView.propTypes = {
|
|
13146
|
+
iconClassName: PropTypes.string,
|
|
13147
|
+
spin: PropTypes.bool,
|
|
13148
|
+
color: PropTypes.string,
|
|
13149
|
+
testid: PropTypes.string,
|
|
13150
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
13151
|
+
};
|
|
13152
|
+
ChartView.defaultProps = {
|
|
13153
|
+
spin: false,
|
|
13154
|
+
color: 'currentColor',
|
|
13155
|
+
size: '1em'
|
|
13156
|
+
};
|
|
13157
|
+
|
|
13158
|
+
var _excluded$34 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13159
|
+
var loadingCircleStyle$34 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13160
|
+
var MEvent = function MEvent(props) {
|
|
13161
|
+
var color = props.color,
|
|
13162
|
+
size = props.size,
|
|
13163
|
+
spin = props.spin,
|
|
13164
|
+
style = props.style,
|
|
13165
|
+
className = props.className,
|
|
13166
|
+
iconClassName = props.iconClassName,
|
|
13167
|
+
testid = props.testid,
|
|
13168
|
+
otherProps = _objectWithoutProperties(props, _excluded$34);
|
|
13169
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
13170
|
+
role: "img",
|
|
13171
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13172
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
13173
|
+
children: loadingCircleStyle$34
|
|
13174
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13175
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13176
|
+
width: size,
|
|
13177
|
+
height: size,
|
|
13178
|
+
viewBox: "0 0 24 24",
|
|
13179
|
+
fill: color
|
|
13180
|
+
}, otherProps, {
|
|
13181
|
+
className: iconClassName,
|
|
13182
|
+
"data-testid": testid,
|
|
13183
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
13184
|
+
animationDuration: '1s',
|
|
13185
|
+
animationIterationCount: 'infinite',
|
|
13186
|
+
animationName: 'loadingCircle',
|
|
13187
|
+
animationTimingFunction: 'linear'
|
|
13188
|
+
} : {})
|
|
13189
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
13190
|
+
width: "24",
|
|
13191
|
+
height: "24",
|
|
13192
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
13137
13193
|
}, /*#__PURE__*/React.createElement("path", {
|
|
13138
13194
|
d: "M21 12a9 9 0 01-12.25 8.395 4.009 4.009 0 01-1.185 1.674C8.922 22.668 10.422 23 12 23c6.075 0 11-4.925 11-11 0-1.578-.332-3.078-.93-4.435a4.009 4.009 0 01-1.675 1.185A8.979 8.979 0 0121 12z"
|
|
13139
13195
|
}), /*#__PURE__*/React.createElement("path", {
|
|
@@ -13159,8 +13215,8 @@ MEvent.defaultProps = {
|
|
|
13159
13215
|
size: '1em'
|
|
13160
13216
|
};
|
|
13161
13217
|
|
|
13162
|
-
var _excluded$
|
|
13163
|
-
var loadingCircleStyle$
|
|
13218
|
+
var _excluded$35 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13219
|
+
var loadingCircleStyle$35 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13164
13220
|
var MRetention = function MRetention(props) {
|
|
13165
13221
|
var color = props.color,
|
|
13166
13222
|
size = props.size,
|
|
@@ -13169,12 +13225,12 @@ var MRetention = function MRetention(props) {
|
|
|
13169
13225
|
className = props.className,
|
|
13170
13226
|
iconClassName = props.iconClassName,
|
|
13171
13227
|
testid = props.testid,
|
|
13172
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13228
|
+
otherProps = _objectWithoutProperties(props, _excluded$35);
|
|
13173
13229
|
return /*#__PURE__*/React.createElement("span", {
|
|
13174
13230
|
role: "img",
|
|
13175
13231
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13176
13232
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13177
|
-
children: loadingCircleStyle$
|
|
13233
|
+
children: loadingCircleStyle$35
|
|
13178
13234
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13179
13235
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13180
13236
|
width: size,
|
|
@@ -13221,8 +13277,8 @@ MRetention.defaultProps = {
|
|
|
13221
13277
|
size: '1em'
|
|
13222
13278
|
};
|
|
13223
13279
|
|
|
13224
|
-
var _excluded$
|
|
13225
|
-
var loadingCircleStyle$
|
|
13280
|
+
var _excluded$36 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13281
|
+
var loadingCircleStyle$36 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13226
13282
|
var MFunnel = function MFunnel(props) {
|
|
13227
13283
|
var color = props.color,
|
|
13228
13284
|
size = props.size,
|
|
@@ -13231,12 +13287,12 @@ var MFunnel = function MFunnel(props) {
|
|
|
13231
13287
|
className = props.className,
|
|
13232
13288
|
iconClassName = props.iconClassName,
|
|
13233
13289
|
testid = props.testid,
|
|
13234
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13290
|
+
otherProps = _objectWithoutProperties(props, _excluded$36);
|
|
13235
13291
|
return /*#__PURE__*/React.createElement("span", {
|
|
13236
13292
|
role: "img",
|
|
13237
13293
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13238
13294
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13239
|
-
children: loadingCircleStyle$
|
|
13295
|
+
children: loadingCircleStyle$36
|
|
13240
13296
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13241
13297
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13242
13298
|
width: size,
|
|
@@ -13277,8 +13333,8 @@ MFunnel.defaultProps = {
|
|
|
13277
13333
|
size: '1em'
|
|
13278
13334
|
};
|
|
13279
13335
|
|
|
13280
|
-
var _excluded$
|
|
13281
|
-
var loadingCircleStyle$
|
|
13336
|
+
var _excluded$37 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13337
|
+
var loadingCircleStyle$37 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13282
13338
|
var MDistribution = function MDistribution(props) {
|
|
13283
13339
|
var color = props.color,
|
|
13284
13340
|
size = props.size,
|
|
@@ -13287,12 +13343,12 @@ var MDistribution = function MDistribution(props) {
|
|
|
13287
13343
|
className = props.className,
|
|
13288
13344
|
iconClassName = props.iconClassName,
|
|
13289
13345
|
testid = props.testid,
|
|
13290
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13346
|
+
otherProps = _objectWithoutProperties(props, _excluded$37);
|
|
13291
13347
|
return /*#__PURE__*/React.createElement("span", {
|
|
13292
13348
|
role: "img",
|
|
13293
13349
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13294
13350
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13295
|
-
children: loadingCircleStyle$
|
|
13351
|
+
children: loadingCircleStyle$37
|
|
13296
13352
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13297
13353
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13298
13354
|
width: size,
|
|
@@ -13339,8 +13395,8 @@ MDistribution.defaultProps = {
|
|
|
13339
13395
|
size: '1em'
|
|
13340
13396
|
};
|
|
13341
13397
|
|
|
13342
|
-
var _excluded$
|
|
13343
|
-
var loadingCircleStyle$
|
|
13398
|
+
var _excluded$38 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13399
|
+
var loadingCircleStyle$38 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13344
13400
|
var MInterval = function MInterval(props) {
|
|
13345
13401
|
var color = props.color,
|
|
13346
13402
|
size = props.size,
|
|
@@ -13349,12 +13405,12 @@ var MInterval = function MInterval(props) {
|
|
|
13349
13405
|
className = props.className,
|
|
13350
13406
|
iconClassName = props.iconClassName,
|
|
13351
13407
|
testid = props.testid,
|
|
13352
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13408
|
+
otherProps = _objectWithoutProperties(props, _excluded$38);
|
|
13353
13409
|
return /*#__PURE__*/React.createElement("span", {
|
|
13354
13410
|
role: "img",
|
|
13355
13411
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13356
13412
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13357
|
-
children: loadingCircleStyle$
|
|
13413
|
+
children: loadingCircleStyle$38
|
|
13358
13414
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13359
13415
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13360
13416
|
width: size,
|
|
@@ -13397,8 +13453,8 @@ MInterval.defaultProps = {
|
|
|
13397
13453
|
size: '1em'
|
|
13398
13454
|
};
|
|
13399
13455
|
|
|
13400
|
-
var _excluded$
|
|
13401
|
-
var loadingCircleStyle$
|
|
13456
|
+
var _excluded$39 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13457
|
+
var loadingCircleStyle$39 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13402
13458
|
var MFlow = function MFlow(props) {
|
|
13403
13459
|
var color = props.color,
|
|
13404
13460
|
size = props.size,
|
|
@@ -13407,12 +13463,12 @@ var MFlow = function MFlow(props) {
|
|
|
13407
13463
|
className = props.className,
|
|
13408
13464
|
iconClassName = props.iconClassName,
|
|
13409
13465
|
testid = props.testid,
|
|
13410
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13466
|
+
otherProps = _objectWithoutProperties(props, _excluded$39);
|
|
13411
13467
|
return /*#__PURE__*/React.createElement("span", {
|
|
13412
13468
|
role: "img",
|
|
13413
13469
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13414
13470
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13415
|
-
children: loadingCircleStyle$
|
|
13471
|
+
children: loadingCircleStyle$39
|
|
13416
13472
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13417
13473
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13418
13474
|
width: size,
|
|
@@ -13453,8 +13509,8 @@ MFlow.defaultProps = {
|
|
|
13453
13509
|
size: '1em'
|
|
13454
13510
|
};
|
|
13455
13511
|
|
|
13456
|
-
var _excluded$
|
|
13457
|
-
var loadingCircleStyle$
|
|
13512
|
+
var _excluded$3a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13513
|
+
var loadingCircleStyle$3a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13458
13514
|
var MSql = function MSql(props) {
|
|
13459
13515
|
var color = props.color,
|
|
13460
13516
|
size = props.size,
|
|
@@ -13463,12 +13519,12 @@ var MSql = function MSql(props) {
|
|
|
13463
13519
|
className = props.className,
|
|
13464
13520
|
iconClassName = props.iconClassName,
|
|
13465
13521
|
testid = props.testid,
|
|
13466
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13522
|
+
otherProps = _objectWithoutProperties(props, _excluded$3a);
|
|
13467
13523
|
return /*#__PURE__*/React.createElement("span", {
|
|
13468
13524
|
role: "img",
|
|
13469
13525
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13470
13526
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13471
|
-
children: loadingCircleStyle$
|
|
13527
|
+
children: loadingCircleStyle$3a
|
|
13472
13528
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13473
13529
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13474
13530
|
width: size,
|
|
@@ -13515,8 +13571,8 @@ MSql.defaultProps = {
|
|
|
13515
13571
|
size: '1em'
|
|
13516
13572
|
};
|
|
13517
13573
|
|
|
13518
|
-
var _excluded$
|
|
13519
|
-
var loadingCircleStyle$
|
|
13574
|
+
var _excluded$3b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13575
|
+
var loadingCircleStyle$3b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13520
13576
|
var UTag = function UTag(props) {
|
|
13521
13577
|
var color = props.color,
|
|
13522
13578
|
size = props.size,
|
|
@@ -13525,12 +13581,12 @@ var UTag = function UTag(props) {
|
|
|
13525
13581
|
className = props.className,
|
|
13526
13582
|
iconClassName = props.iconClassName,
|
|
13527
13583
|
testid = props.testid,
|
|
13528
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13584
|
+
otherProps = _objectWithoutProperties(props, _excluded$3b);
|
|
13529
13585
|
return /*#__PURE__*/React.createElement("span", {
|
|
13530
13586
|
role: "img",
|
|
13531
13587
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13532
13588
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13533
|
-
children: loadingCircleStyle$
|
|
13589
|
+
children: loadingCircleStyle$3b
|
|
13534
13590
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13535
13591
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13536
13592
|
width: size,
|
|
@@ -13573,8 +13629,8 @@ UTag.defaultProps = {
|
|
|
13573
13629
|
size: '1em'
|
|
13574
13630
|
};
|
|
13575
13631
|
|
|
13576
|
-
var _excluded$
|
|
13577
|
-
var loadingCircleStyle$
|
|
13632
|
+
var _excluded$3c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13633
|
+
var loadingCircleStyle$3c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13578
13634
|
var MProperty = function MProperty(props) {
|
|
13579
13635
|
var color = props.color,
|
|
13580
13636
|
size = props.size,
|
|
@@ -13583,12 +13639,12 @@ var MProperty = function MProperty(props) {
|
|
|
13583
13639
|
className = props.className,
|
|
13584
13640
|
iconClassName = props.iconClassName,
|
|
13585
13641
|
testid = props.testid,
|
|
13586
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13642
|
+
otherProps = _objectWithoutProperties(props, _excluded$3c);
|
|
13587
13643
|
return /*#__PURE__*/React.createElement("span", {
|
|
13588
13644
|
role: "img",
|
|
13589
13645
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13590
13646
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13591
|
-
children: loadingCircleStyle$
|
|
13647
|
+
children: loadingCircleStyle$3c
|
|
13592
13648
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13593
13649
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13594
13650
|
width: size,
|
|
@@ -13633,8 +13689,8 @@ MProperty.defaultProps = {
|
|
|
13633
13689
|
size: '1em'
|
|
13634
13690
|
};
|
|
13635
13691
|
|
|
13636
|
-
var _excluded$
|
|
13637
|
-
var loadingCircleStyle$
|
|
13692
|
+
var _excluded$3d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13693
|
+
var loadingCircleStyle$3d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13638
13694
|
var UGroup = function UGroup(props) {
|
|
13639
13695
|
var color = props.color,
|
|
13640
13696
|
size = props.size,
|
|
@@ -13643,12 +13699,12 @@ var UGroup = function UGroup(props) {
|
|
|
13643
13699
|
className = props.className,
|
|
13644
13700
|
iconClassName = props.iconClassName,
|
|
13645
13701
|
testid = props.testid,
|
|
13646
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13702
|
+
otherProps = _objectWithoutProperties(props, _excluded$3d);
|
|
13647
13703
|
return /*#__PURE__*/React.createElement("span", {
|
|
13648
13704
|
role: "img",
|
|
13649
13705
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13650
13706
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13651
|
-
children: loadingCircleStyle$
|
|
13707
|
+
children: loadingCircleStyle$3d
|
|
13652
13708
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13653
13709
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13654
13710
|
width: size,
|
|
@@ -13693,71 +13749,6 @@ UGroup.defaultProps = {
|
|
|
13693
13749
|
size: '1em'
|
|
13694
13750
|
};
|
|
13695
13751
|
|
|
13696
|
-
var _excluded$3d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13697
|
-
var loadingCircleStyle$3d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13698
|
-
var CircularProgressCl = function CircularProgressCl(props) {
|
|
13699
|
-
var color = props.color,
|
|
13700
|
-
size = props.size,
|
|
13701
|
-
spin = props.spin,
|
|
13702
|
-
style = props.style,
|
|
13703
|
-
className = props.className,
|
|
13704
|
-
iconClassName = props.iconClassName,
|
|
13705
|
-
testid = props.testid,
|
|
13706
|
-
otherProps = _objectWithoutProperties(props, _excluded$3d);
|
|
13707
|
-
return /*#__PURE__*/React.createElement("span", {
|
|
13708
|
-
role: "img",
|
|
13709
|
-
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13710
|
-
}, /*#__PURE__*/React.createElement("style", {
|
|
13711
|
-
children: loadingCircleStyle$3d
|
|
13712
|
-
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13713
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
13714
|
-
width: size,
|
|
13715
|
-
height: size,
|
|
13716
|
-
viewBox: "0 0 24 24",
|
|
13717
|
-
fill: color
|
|
13718
|
-
}, otherProps, {
|
|
13719
|
-
className: iconClassName,
|
|
13720
|
-
"data-testid": testid,
|
|
13721
|
-
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
13722
|
-
animationDuration: '1s',
|
|
13723
|
-
animationIterationCount: 'infinite',
|
|
13724
|
-
animationName: 'loadingCircle',
|
|
13725
|
-
animationTimingFunction: 'linear'
|
|
13726
|
-
} : {})
|
|
13727
|
-
}), /*#__PURE__*/React.createElement("svg", {
|
|
13728
|
-
width: "24",
|
|
13729
|
-
height: "24",
|
|
13730
|
-
fill: "none",
|
|
13731
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
13732
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
13733
|
-
clipPath: "url(#clip0_11001_251)",
|
|
13734
|
-
fill: "#7E7F80"
|
|
13735
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
13736
|
-
opacity: ".3",
|
|
13737
|
-
d: "M12 23.55a11.4 11.4 0 100-22.8 11.4 11.4 0 000 22.8zm5.515-16.915C19.038 8.158 19.8 9.996 19.8 12.15c0 2.154-.762 3.992-2.285 5.515-1.523 1.523-3.361 2.285-5.515 2.285-2.153 0-3.992-.762-5.515-2.285C4.962 16.142 4.2 14.304 4.2 12.15c0-2.154.762-3.992 2.285-5.515C8.008 5.112 9.847 4.35 12 4.35c2.154 0 3.992.762 5.515 2.285z"
|
|
13738
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
13739
|
-
d: "M23.4 12.15A11.4 11.4 0 0012 .75v3.6c2.154 0 3.992.762 5.515 2.285C19.038 8.158 19.8 9.996 19.8 12.15h3.6z"
|
|
13740
|
-
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
13741
|
-
id: "clip0_11001_251"
|
|
13742
|
-
}, /*#__PURE__*/React.createElement("rect", {
|
|
13743
|
-
width: "24",
|
|
13744
|
-
height: "24",
|
|
13745
|
-
fill: "#fff"
|
|
13746
|
-
}))))));
|
|
13747
|
-
};
|
|
13748
|
-
CircularProgressCl.propTypes = {
|
|
13749
|
-
iconClassName: PropTypes.string,
|
|
13750
|
-
spin: PropTypes.bool,
|
|
13751
|
-
color: PropTypes.string,
|
|
13752
|
-
testid: PropTypes.string,
|
|
13753
|
-
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
13754
|
-
};
|
|
13755
|
-
CircularProgressCl.defaultProps = {
|
|
13756
|
-
spin: false,
|
|
13757
|
-
color: 'currentColor',
|
|
13758
|
-
size: '1em'
|
|
13759
|
-
};
|
|
13760
|
-
|
|
13761
13752
|
var _excluded$3e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13762
13753
|
var loadingCircleStyle$3e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13763
13754
|
var SSpace = function SSpace(props) {
|
|
@@ -32317,4 +32308,4 @@ CalendarCheck.defaultProps = {
|
|
|
32317
32308
|
size: '1em'
|
|
32318
32309
|
};
|
|
32319
32310
|
|
|
32320
|
-
export { Add1 as TaAdd1, Add2 as TaAdd2, Add3 as TaAdd3, Add3Fill as TaAdd3Fill, AddIndexCl as TaAddIndexCl, AddToPage as TaAddToPage, Alert as TaAlert, AlertCl as TaAlertCl, AlignCenter as TaAlignCenter, AlignLeft as TaAlignLeft, AlignLegendBottom as TaAlignLegendBottom, AlignLegendLeft as TaAlignLegendLeft, AlignLegendRight as TaAlignLegendRight, AlignLegendTop as TaAlignLegendTop, AlignRight as TaAlignRight, AllGroupSm as TaAllGroupSm, Analysis as TaAnalysis, Anchor as TaAnchor, Application as TaApplication, Approve as TaApprove, ArrayRowsSm as TaArrayRowsSm, ArrowClose as TaArrowClose, ArrowDown as TaArrowDown, ArrowDown2 as TaArrowDown2, ArrowExpand as TaArrowExpand, ArrowGoBack as TaArrowGoBack, ArrowGoForward as TaArrowGoForward, ArrowLeft as TaArrowLeft, ArrowLeft2 as TaArrowLeft2, ArrowLeftDown as TaArrowLeftDown, ArrowRight as TaArrowRight, ArrowRight2 as TaArrowRight2, ArrowRightup as TaArrowRightup, ArrowUp as TaArrowUp, ArrowUp2 as TaArrowUp2, Ascent as TaAscent, Attachment as TaAttachment, Attribution as TaAttribution, AutoLayout as TaAutoLayout, AvatarGroupCl as TaAvatarGroupCl, AvatarProjectCl as TaAvatarProjectCl, Backup as TaBackup, Bell as TaBell, Bell2Fill as TaBell2Fill, BiPage as TaBiPage, BiVendor as TaBiVendor, BiVendorFillCl as TaBiVendorFillCl, Book as TaBook, Book2 as TaBook2, Bookmark as TaBookmark, Bookmark2 as TaBookmark2, BooleanSm as TaBooleanSm, Box as TaBox, BoxOpen as TaBoxOpen, Branch as TaBranch, Bring as TaBring, BuildMode as TaBuildMode, BuiltIn as TaBuiltIn, Calendar as TaCalendar, CalendarCheck as TaCalendarCheck, CalendarSm as TaCalendarSm, Card as TaCard, Cellphone as TaCellphone, Certified as TaCertified, ChartBar as TaChartBar, ChartBarTable as TaChartBarTable, ChartCombinedTable as TaChartCombinedTable, ChartComplex as TaChartComplex, ChartCum as TaChartCum, ChartDNRe as TaChartDNRe, ChartDRe as TaChartDRe, ChartDistTable as TaChartDistTable, ChartFieldlist as TaChartFieldlist, ChartFunnel as TaChartFunnel, ChartGantt as TaChartGantt, ChartHistogram as TaChartHistogram, ChartInterval as TaChartInterval, ChartLine as TaChartLine, ChartLineTable as TaChartLineTable, ChartPercentageBar as TaChartPercentageBar, ChartPie as TaChartPie, ChartScatter as TaChartScatter, ChartScorecard as TaChartScorecard, ChartSqltable as TaChartSqltable, ChartStack as TaChartStack, ChartStackPerc as TaChartStackPerc, ChartStackedBar as TaChartStackedBar, ChartStackn as TaChartStackn, ChartTable as TaChartTable, ChartTrophy as TaChartTrophy, ChartWordcloud as TaChartWordcloud, CircularProgressCl as TaCircularProgressCl, Clean as TaClean, Click as TaClick, Clock as TaClock, Close as TaClose, Code as TaCode, CodeVariable as TaCodeVariable, CollectCl as TaCollectCl, Comment as TaComment, Compass as TaCompass, Config as TaConfig, Consent as TaConsent, Contrast as TaContrast, Copy as TaCopy, Copy2 as TaCopy2, CopyDdl as TaCopyDdl, CopyQuery as TaCopyQuery, CopywritingAiCl as TaCopywritingAiCl, Cost as TaCost, Currency as TaCurrency, CustomPartition as TaCustomPartition, DArrowB as TaDArrowB, DArrowL as TaDArrowL, DArrowR as TaDArrowR, DArrowT as TaDArrowT, DAssetsCl as TaDAssetsCl, DIntegrationCl as TaDIntegrationCl, DManageCl as TaDManageCl, DTrackingCl as TaDTrackingCl, Dag as TaDag, Danmaku as TaDanmaku, Dashboard as TaDashboard, DashboardAiCl as TaDashboardAiCl, DashboardCl as TaDashboardCl, DashboardGenerateCl as TaDashboardGenerateCl, DashboardMgr as TaDashboardMgr, DashboardPlan as TaDashboardPlan, DashboardReadingCl as TaDashboardReadingCl, DataInput as TaDataInput, DataOpsAiCl as TaDataOpsAiCl, DataOutput as TaDataOutput, Database as TaDatabase, DateMarkCl as TaDateMarkCl, Debug as TaDebug, DebugPlay as TaDebugPlay, Delete1 as TaDelete1, Delete2 as TaDelete2, Delete2Fill as TaDelete2Fill, Demo as TaDemo, Descent as TaDescent, Desktop as TaDesktop, Detail as TaDetail, DirectConnect as TaDirectConnect, Disable as TaDisable, DisplayS as TaDisplayS, Done as TaDone, Dot as TaDot, DoubleList as TaDoubleList, Download as TaDownload, Drag as TaDrag, Drag2 as TaDrag2, DrillDown as TaDrillDown, DropDown as TaDropDown, DropUp as TaDropUp, ECampaignCl as TaECampaignCl, EChartsCl as TaEChartsCl, EConfigCl as TaEConfigCl, EFlowCl as TaEFlowCl, EPropertySm as TaEPropertySm, ESettingCl as TaESettingCl, ETaskCl as TaETaskCl, Earth as TaEarth, Edit as TaEdit, EditFill as TaEditFill, Education as TaEducation, EducationFill as TaEducationFill, Email as TaEmail, EndTask as TaEndTask, EngageAiCl as TaEngageAiCl, Error as TaError, Error2 as TaError2, Error2Fill as TaError2Fill, ErrorFill as TaErrorFill, EventMgr as TaEventMgr, EventModify as TaEventModify, EventPropMgr as TaEventPropMgr, EventShunt as TaEventShunt, EventSm as TaEventSm, EventTree as TaEventTree, Exchange as TaExchange, Expand as TaExpand, Export as TaExport, Exposure as TaExposure, Expression as TaExpression, Expression2 as TaExpression2, External as TaExternal, EyeOff as TaEyeOff, EyeOffFill as TaEyeOffFill, EyeOn as TaEyeOn, EyeOnFill as TaEyeOnFill, FileAdd as TaFileAdd, FileConvert as TaFileConvert, FileExport as TaFileExport, FileImport as TaFileImport, FileInfo as TaFileInfo, FileLock as TaFileLock, FileMove as TaFileMove, FilePdf as TaFilePdf, FileRemove as TaFileRemove, FileSqlFill as TaFileSqlFill, Filter as TaFilter, Filter2 as TaFilter2, Find as TaFind, FirstLast as TaFirstLast, FlagCn as TaFlagCn, FlagJp as TaFlagJp, FlagKr as TaFlagKr, FlagUs as TaFlagUs, Flash as TaFlash, Folder as TaFolder, FolderLine as TaFolderLine, FolderOpen as TaFolderOpen, FolderOpenLine as TaFolderOpenLine, FontBgColor as TaFontBgColor, FontBold as TaFontBold, FontColor as TaFontColor, FontItalic as TaFontItalic, FontSize as TaFontSize, Forewarning as TaForewarning, Format as TaFormat, FullDownload as TaFullDownload, Fullscreen as TaFullscreen, Function as TaFunction, Game as TaGame, GameFill as TaGameFill, Gift as TaGift, Goal as TaGoal, GoalFill as TaGoalFill, Grid as TaGrid, Group as TaGroup, GroupA2b as TaGroupA2b, GroupAddFill as TaGroupAddFill, GroupAddSm as TaGroupAddSm, GroupCl as TaGroupCl, GroupFill as TaGroupFill, GroupFill2 as TaGroupFill2, Groups as TaGroups, Hand as TaHand, Hashtag as TaHashtag, Heart as TaHeart, Heat as TaHeat, Help as TaHelp, History as TaHistory, IdFreeze as TaIdFreeze, Image as TaImage, Import as TaImport, Index as TaIndex, IndexFill as TaIndexFill, Indicator as TaIndicator, IndicatorSm as TaIndicatorSm, Info as TaInfo, InfoFill as TaInfoFill, Insert as TaInsert, Install as TaInstall, Interval as TaInterval, JsonSm as TaJsonSm, Lab as TaLab, Landscape as TaLandscape, Language as TaLanguage, LayoutFocus as TaLayoutFocus, LayoutSide as TaLayoutSide, LineCircle as TaLineCircle, LineDiamond as TaLineDiamond, LineSquare as TaLineSquare, Link as TaLink, Link2 as TaLink2, List as TaList, ListNested as TaListNested, ListOrdered as TaListOrdered, ListSm as TaListSm, ListUnordered as TaListUnordered, Live as TaLive, Location as TaLocation, LockClose as TaLockClose, LockCloseFill as TaLockCloseFill, LockOpen as TaLockOpen, LockOpenFill as TaLockOpenFill, LogoAndroidGray as TaLogoAndroidGray, LogoApiGray as TaLogoApiGray, LogoAppPushGray as TaLogoAppPushGray, LogoAppleGray as TaLogoAppleGray, LogoBitkeepCl as TaLogoBitkeepCl, LogoClientsideGray as TaLogoClientsideGray, LogoCurrencylayerCl as TaLogoCurrencylayerCl, LogoDingdingCl as TaLogoDingdingCl, LogoDingdingGray as TaLogoDingdingGray, LogoDouyinGray as TaLogoDouyinGray, LogoFcmCl as TaLogoFcmCl, LogoFeishuCl as TaLogoFeishuCl, LogoFlinkCl as TaLogoFlinkCl, LogoFutuCl as TaLogoFutuCl, LogoGarenaCl as TaLogoGarenaCl, LogoHappyelementCl as TaLogoHappyelementCl, LogoIggCl as TaLogoIggCl, LogoJiguangCl as TaLogoJiguangCl, LogoKingCl as TaLogoKingCl, LogoLitmatchCl as TaLogoLitmatchCl, LogoSparkCl as TaLogoSparkCl, LogoStarrocksCl as TaLogoStarrocksCl, LogoTrinoCl as TaLogoTrinoCl, LogoWebhookGray as TaLogoWebhookGray, LogoWechatCl as TaLogoWechatCl, LogoWechatGray as TaLogoWechatGray, LogoWecomCl as TaLogoWecomCl, LogoWecomGray as TaLogoWecomGray, LogoWepieCl as TaLogoWepieCl, LogoXiaomiCl as TaLogoXiaomiCl, LogoYaojiCl as TaLogoYaojiCl, Logout as TaLogout, MAttributionCl as TaMAttributionCl, MDistribution as TaMDistribution, MDistributionCl as TaMDistributionCl, MEvent as TaMEvent, MEventCl as TaMEventCl, MFlow as TaMFlow, MFlowCl as TaMFlowCl, MFunnel as TaMFunnel, MFunnelCl as TaMFunnelCl, MHeatmapCl as TaMHeatmapCl, MInterval as TaMInterval, MIntervalCl as TaMIntervalCl, MPropCl as TaMPropCl, MProperty as TaMProperty, MRetention as TaMRetention, MRetentionCl as TaMRetentionCl, MSql as TaMSql, MSqlCl as TaMSqlCl, MTrophyCl as TaMTrophyCl, MagicWand as TaMagicWand, ManageQuery as TaManageQuery, Manual as TaManual, ManualVerification as TaManualVerification, Map as TaMap, MenuFold as TaMenuFold, MenuUnfold as TaMenuUnfold, MessageCenter as TaMessageCenter, Mfa as TaMfa, More1 as TaMore1, More2 as TaMore2, Mute as TaMute, Name as TaName, Neutral as TaNeutral, NewIndicator as TaNewIndicator, NewTask as TaNewTask, Notice as TaNotice, Null as TaNull, NumSm as TaNumSm, Official as TaOfficial, Offline as TaOffline, OfflineSync as TaOfflineSync, OneTime as TaOneTime, Online as TaOnline, OperatorBigger as TaOperatorBigger, OperatorDivide as TaOperatorDivide, OperatorEqual as TaOperatorEqual, OperatorFalse as TaOperatorFalse, OperatorHasValue as TaOperatorHasValue, OperatorInclude as TaOperatorInclude, OperatorInside as TaOperatorInside, OperatorLess as TaOperatorLess, OperatorNoBigger as TaOperatorNoBigger, OperatorNoLess as TaOperatorNoLess, OperatorNoRegex as TaOperatorNoRegex, OperatorNoValue as TaOperatorNoValue, OperatorNotInclude as TaOperatorNotInclude, OperatorRegex as TaOperatorRegex, OperatorTrue as TaOperatorTrue, OperatorUnequal as TaOperatorUnequal, PageLine as TaPageLine, PageOpenCl as TaPageOpenCl, Palette as TaPalette, ParallelFilter as TaParallelFilter, Parameter as TaParameter, ParameterControl as TaParameterControl, Partition as TaPartition, Password as TaPassword, Paste as TaPaste, Paste2 as TaPaste2, Pattern as TaPattern, Pause2 as TaPause2, PauseCircle as TaPauseCircle, Pending as TaPending, Phrase as TaPhrase, Pin as TaPin, Pin2 as TaPin2, PinFill as TaPinFill, PinUnsave as TaPinUnsave, Pinch as TaPinch, PlanetCl as TaPlanetCl, PlatformAnalyticsCl as TaPlatformAnalyticsCl, PlatformDataopsCl as TaPlatformDataopsCl, PlatformSystemCl as TaPlatformSystemCl, Play as TaPlay, PlayCircle as TaPlayCircle, Plug as TaPlug, Post as TaPost, Private as TaPrivate, Processing as TaProcessing, Processing2 as TaProcessing2, Progress as TaProgress, Project as TaProject, ProjectMgr as TaProjectMgr, Property as TaProperty, Pulse as TaPulse, Recurring as TaRecurring, Recycle as TaRecycle, Reject as TaReject, RelatedProp as TaRelatedProp, Rename as TaRename, Renew as TaRenew, Report as TaReport, ReportCl as TaReportCl, ReportReadingCl as TaReportReadingCl, ReportRemoval as TaReportRemoval, ResetPassword as TaResetPassword, Resizer as TaResizer, Result as TaResult, Revert as TaRevert, Ripple as TaRipple, Robot as TaRobot, RowsSm as TaRowsSm, Ruler as TaRuler, SAdministrator as TaSAdministrator, SSpace as TaSSpace, SWorkspace as TaSWorkspace, Sad as TaSad, SatelliteDish as TaSatelliteDish, Save as TaSave, Schedule as TaSchedule, Search as TaSearch, Send as TaSend, Server as TaServer, Setting as TaSetting, Share as TaShare, ShieldCheck as TaShieldCheck, ShieldCross as TaShieldCross, ShieldKeyhole as TaShieldKeyhole, Shop as TaShop, ShopFill as TaShopFill, ShutDown as TaShutDown, Smile as TaSmile, Sort as TaSort, SortA2z as TaSortA2z, SortDown as TaSortDown, SortDrop as TaSortDrop, SortResult as TaSortResult, SortRise as TaSortRise, SortUp as TaSortUp, SortZ2a as TaSortZ2a, Space as TaSpace, SpaceLine as TaSpaceLine, SpaceOpen as TaSpaceOpen, SpaceOpenLine as TaSpaceOpenLine, Speed as TaSpeed, Split as TaSplit, Sql1 as TaSql1, Sql2 as TaSql2, Sql3 as TaSql3, SqlTableView as TaSqlTableView, StarFill as TaStarFill, StarOutline as TaStarOutline, Sticker as TaSticker, StickerFill as TaStickerFill, Sticky as TaSticky, StopCircle as TaStopCircle, Stream as TaStream, StringSm as TaStringSm, Submit as TaSubmit, Subtract as TaSubtract, Subtract2 as TaSubtract2, Subtract3 as TaSubtract3, Success as TaSuccess, SuccessFill as TaSuccessFill, SvipFill as TaSvipFill, SwapFill as TaSwapFill, Switch as TaSwitch, SystemBuild as TaSystemBuild, SystemMgr as TaSystemMgr, SystemMsg as TaSystemMsg, TA2b as TaTA2b, TX2y as TaTX2y, Table1dtable as TaTable1dtable, TableClassic as TaTableClassic, TableCol as TaTableCol, TableKey as TaTableKey, TableRow as TaTableRow, TableSimple as TaTableSimple, TableStriped as TaTableStriped, Task as TaTask, TaskFlow as TaTaskFlow, TdLogo as TaTdLogo, TemplateCl as TaTemplateCl, Terminal as TaTerminal, TestRace as TaTestRace, TestSplit as TaTestSplit, TextCase as TaTextCase, TextWholeMatch as TaTextWholeMatch, ThumbDown as TaThumbDown, ThumbDownOutline as TaThumbDownOutline, ThumbUp as TaThumbUp, ThumbUpOutline as TaThumbUpOutline, TimeLock as TaTimeLock, TimeSm as TaTimeSm, Tips as TaTips, Tracking as TaTracking, TransferOwnership as TaTransferOwnership, Translation as TaTranslation, TriDown as TaTriDown, TriLeft as TaTriLeft, TriRight as TaTriRight, TriUp as TaTriUp, UCohortCl as TaUCohortCl, UGroup as TaUGroup, UGroupSm as TaUGroupSm, UPropMgr as TaUPropMgr, UPropertyShunt as TaUPropertyShunt, UPropertySm as TaUPropertySm, USearchCl as TaUSearchCl, UTag as TaUTag, UTagCl as TaUTagCl, UTagSm as TaUTagSm, Uncertified as TaUncertified, Undo as TaUndo, UndoApproval as TaUndoApproval, Unlink as TaUnlink, Unpin as TaUnpin, Unsave as TaUnsave, Update as TaUpdate, UpdateData as TaUpdateData, Upload as TaUpload, UploadId as TaUploadId, Usb as TaUsb, User1 as TaUser1, User1Fill as TaUser1Fill, User2 as TaUser2, UserAddFill as TaUserAddFill, UserSettings as TaUserSettings, UserTagCl as TaUserTagCl, Usertag as TaUsertag, VDashboardCl as TaVDashboardCl, VManageDashboardCl as TaVManageDashboardCl, VPropCl as TaVPropCl, VProperty as TaVProperty, VPropertySm as TaVPropertySm, Validate as TaValidate, Video as TaVideo, ViewOriginal as TaViewOriginal, Vip as TaVip, VipFill as TaVipFill, Warehouse as TaWarehouse };
|
|
32311
|
+
export { Add1 as TaAdd1, Add2 as TaAdd2, Add3 as TaAdd3, Add3Fill as TaAdd3Fill, AddIndexCl as TaAddIndexCl, AddToPage as TaAddToPage, Alert as TaAlert, AlertCl as TaAlertCl, AlignCenter as TaAlignCenter, AlignLeft as TaAlignLeft, AlignLegendBottom as TaAlignLegendBottom, AlignLegendLeft as TaAlignLegendLeft, AlignLegendRight as TaAlignLegendRight, AlignLegendTop as TaAlignLegendTop, AlignRight as TaAlignRight, AllGroupSm as TaAllGroupSm, Analysis as TaAnalysis, Anchor as TaAnchor, Application as TaApplication, Approve as TaApprove, ArrayRowsSm as TaArrayRowsSm, ArrowClose as TaArrowClose, ArrowDown as TaArrowDown, ArrowDown2 as TaArrowDown2, ArrowExpand as TaArrowExpand, ArrowGoBack as TaArrowGoBack, ArrowGoForward as TaArrowGoForward, ArrowLeft as TaArrowLeft, ArrowLeft2 as TaArrowLeft2, ArrowLeftDown as TaArrowLeftDown, ArrowRight as TaArrowRight, ArrowRight2 as TaArrowRight2, ArrowRightup as TaArrowRightup, ArrowUp as TaArrowUp, ArrowUp2 as TaArrowUp2, Ascent as TaAscent, Attachment as TaAttachment, Attribution as TaAttribution, AutoLayout as TaAutoLayout, AvatarGroupCl as TaAvatarGroupCl, AvatarProjectCl as TaAvatarProjectCl, Backup as TaBackup, Bell as TaBell, Bell2Fill as TaBell2Fill, BiPage as TaBiPage, BiVendor as TaBiVendor, BiVendorFillCl as TaBiVendorFillCl, Book as TaBook, Book2 as TaBook2, Bookmark as TaBookmark, Bookmark2 as TaBookmark2, BooleanSm as TaBooleanSm, Box as TaBox, BoxOpen as TaBoxOpen, Branch as TaBranch, Bring as TaBring, BuildMode as TaBuildMode, BuiltIn as TaBuiltIn, Calendar as TaCalendar, CalendarCheck as TaCalendarCheck, CalendarSm as TaCalendarSm, Card as TaCard, Cellphone as TaCellphone, Certified as TaCertified, ChartBar as TaChartBar, ChartBarTable as TaChartBarTable, ChartCombinedTable as TaChartCombinedTable, ChartComplex as TaChartComplex, ChartCum as TaChartCum, ChartDNRe as TaChartDNRe, ChartDRe as TaChartDRe, ChartDistTable as TaChartDistTable, ChartFieldlist as TaChartFieldlist, ChartFunnel as TaChartFunnel, ChartGantt as TaChartGantt, ChartHistogram as TaChartHistogram, ChartInterval as TaChartInterval, ChartLine as TaChartLine, ChartLineTable as TaChartLineTable, ChartPercentageBar as TaChartPercentageBar, ChartPie as TaChartPie, ChartScatter as TaChartScatter, ChartScorecard as TaChartScorecard, ChartSqltable as TaChartSqltable, ChartStack as TaChartStack, ChartStackPerc as TaChartStackPerc, ChartStackedBar as TaChartStackedBar, ChartStackn as TaChartStackn, ChartTable as TaChartTable, ChartTrophy as TaChartTrophy, ChartView as TaChartView, ChartWordcloud as TaChartWordcloud, Clean as TaClean, Click as TaClick, Clock as TaClock, Close as TaClose, Code as TaCode, CodeVariable as TaCodeVariable, CollectCl as TaCollectCl, Comment as TaComment, Compass as TaCompass, Config as TaConfig, Consent as TaConsent, Contrast as TaContrast, Copy as TaCopy, Copy2 as TaCopy2, CopyDdl as TaCopyDdl, CopyQuery as TaCopyQuery, CopywritingAiCl as TaCopywritingAiCl, Cost as TaCost, Currency as TaCurrency, CustomPartition as TaCustomPartition, DArrowB as TaDArrowB, DArrowL as TaDArrowL, DArrowR as TaDArrowR, DArrowT as TaDArrowT, DAssetsCl as TaDAssetsCl, DIntegrationCl as TaDIntegrationCl, DManageCl as TaDManageCl, DTrackingCl as TaDTrackingCl, Dag as TaDag, Danmaku as TaDanmaku, Dashboard as TaDashboard, DashboardAiCl as TaDashboardAiCl, DashboardCl as TaDashboardCl, DashboardGenerateCl as TaDashboardGenerateCl, DashboardMgr as TaDashboardMgr, DashboardPlan as TaDashboardPlan, DashboardReadingCl as TaDashboardReadingCl, DataInput as TaDataInput, DataOpsAiCl as TaDataOpsAiCl, DataOutput as TaDataOutput, Database as TaDatabase, DateMarkCl as TaDateMarkCl, Debug as TaDebug, DebugPlay as TaDebugPlay, Delete1 as TaDelete1, Delete2 as TaDelete2, Delete2Fill as TaDelete2Fill, Demo as TaDemo, Descent as TaDescent, Desktop as TaDesktop, Detail as TaDetail, DirectConnect as TaDirectConnect, Disable as TaDisable, DisplayS as TaDisplayS, Done as TaDone, Dot as TaDot, DoubleList as TaDoubleList, Download as TaDownload, Drag as TaDrag, Drag2 as TaDrag2, DrillDown as TaDrillDown, DropDown as TaDropDown, DropUp as TaDropUp, ECampaignCl as TaECampaignCl, EChartsCl as TaEChartsCl, EConfigCl as TaEConfigCl, EFlowCl as TaEFlowCl, EPropertySm as TaEPropertySm, ESettingCl as TaESettingCl, ETaskCl as TaETaskCl, Earth as TaEarth, Edit as TaEdit, EditFill as TaEditFill, Education as TaEducation, EducationFill as TaEducationFill, Email as TaEmail, EndTask as TaEndTask, EngageAiCl as TaEngageAiCl, Error as TaError, Error2 as TaError2, Error2Fill as TaError2Fill, ErrorFill as TaErrorFill, EventMgr as TaEventMgr, EventModify as TaEventModify, EventPropMgr as TaEventPropMgr, EventShunt as TaEventShunt, EventSm as TaEventSm, EventTree as TaEventTree, Exchange as TaExchange, Expand as TaExpand, Export as TaExport, Exposure as TaExposure, Expression as TaExpression, Expression2 as TaExpression2, External as TaExternal, EyeOff as TaEyeOff, EyeOffFill as TaEyeOffFill, EyeOn as TaEyeOn, EyeOnFill as TaEyeOnFill, FileAdd as TaFileAdd, FileConvert as TaFileConvert, FileExport as TaFileExport, FileImport as TaFileImport, FileInfo as TaFileInfo, FileLock as TaFileLock, FileMove as TaFileMove, FilePdf as TaFilePdf, FileRemove as TaFileRemove, FileSqlFill as TaFileSqlFill, Filter as TaFilter, Filter2 as TaFilter2, Find as TaFind, FirstLast as TaFirstLast, FlagCn as TaFlagCn, FlagJp as TaFlagJp, FlagKr as TaFlagKr, FlagUs as TaFlagUs, Flash as TaFlash, Folder as TaFolder, FolderLine as TaFolderLine, FolderOpen as TaFolderOpen, FolderOpenLine as TaFolderOpenLine, FontBgColor as TaFontBgColor, FontBold as TaFontBold, FontColor as TaFontColor, FontItalic as TaFontItalic, FontSize as TaFontSize, Forewarning as TaForewarning, Format as TaFormat, FullDownload as TaFullDownload, Fullscreen as TaFullscreen, Function as TaFunction, Game as TaGame, GameFill as TaGameFill, Gift as TaGift, Goal as TaGoal, GoalFill as TaGoalFill, Grid as TaGrid, Group as TaGroup, GroupA2b as TaGroupA2b, GroupAddFill as TaGroupAddFill, GroupAddSm as TaGroupAddSm, GroupCl as TaGroupCl, GroupFill as TaGroupFill, GroupFill2 as TaGroupFill2, Groups as TaGroups, Hand as TaHand, Hashtag as TaHashtag, Heart as TaHeart, Heat as TaHeat, Help as TaHelp, History as TaHistory, IdFreeze as TaIdFreeze, Image as TaImage, Import as TaImport, Index as TaIndex, IndexFill as TaIndexFill, Indicator as TaIndicator, IndicatorSm as TaIndicatorSm, Info as TaInfo, InfoFill as TaInfoFill, Insert as TaInsert, Install as TaInstall, Interval as TaInterval, JsonSm as TaJsonSm, Lab as TaLab, Landscape as TaLandscape, Language as TaLanguage, LayoutFocus as TaLayoutFocus, LayoutSide as TaLayoutSide, LineCircle as TaLineCircle, LineDiamond as TaLineDiamond, LineSquare as TaLineSquare, Link as TaLink, Link2 as TaLink2, List as TaList, ListNested as TaListNested, ListOrdered as TaListOrdered, ListSm as TaListSm, ListUnordered as TaListUnordered, Live as TaLive, Location as TaLocation, LockClose as TaLockClose, LockCloseFill as TaLockCloseFill, LockOpen as TaLockOpen, LockOpenFill as TaLockOpenFill, LogoAndroidGray as TaLogoAndroidGray, LogoApiGray as TaLogoApiGray, LogoAppPushGray as TaLogoAppPushGray, LogoAppleGray as TaLogoAppleGray, LogoBitkeepCl as TaLogoBitkeepCl, LogoClientsideGray as TaLogoClientsideGray, LogoCurrencylayerCl as TaLogoCurrencylayerCl, LogoDingdingCl as TaLogoDingdingCl, LogoDingdingGray as TaLogoDingdingGray, LogoDouyinGray as TaLogoDouyinGray, LogoFcmCl as TaLogoFcmCl, LogoFeishuCl as TaLogoFeishuCl, LogoFlinkCl as TaLogoFlinkCl, LogoFutuCl as TaLogoFutuCl, LogoGarenaCl as TaLogoGarenaCl, LogoHappyelementCl as TaLogoHappyelementCl, LogoIggCl as TaLogoIggCl, LogoJiguangCl as TaLogoJiguangCl, LogoKingCl as TaLogoKingCl, LogoLitmatchCl as TaLogoLitmatchCl, LogoSparkCl as TaLogoSparkCl, LogoStarrocksCl as TaLogoStarrocksCl, LogoTrinoCl as TaLogoTrinoCl, LogoWebhookGray as TaLogoWebhookGray, LogoWechatCl as TaLogoWechatCl, LogoWechatGray as TaLogoWechatGray, LogoWecomCl as TaLogoWecomCl, LogoWecomGray as TaLogoWecomGray, LogoWepieCl as TaLogoWepieCl, LogoXiaomiCl as TaLogoXiaomiCl, LogoYaojiCl as TaLogoYaojiCl, Logout as TaLogout, MAttributionCl as TaMAttributionCl, MDistribution as TaMDistribution, MDistributionCl as TaMDistributionCl, MEvent as TaMEvent, MEventCl as TaMEventCl, MFlow as TaMFlow, MFlowCl as TaMFlowCl, MFunnel as TaMFunnel, MFunnelCl as TaMFunnelCl, MHeatmapCl as TaMHeatmapCl, MInterval as TaMInterval, MIntervalCl as TaMIntervalCl, MPropCl as TaMPropCl, MProperty as TaMProperty, MRetention as TaMRetention, MRetentionCl as TaMRetentionCl, MSql as TaMSql, MSqlCl as TaMSqlCl, MTrophyCl as TaMTrophyCl, MagicWand as TaMagicWand, ManageQuery as TaManageQuery, Manual as TaManual, ManualVerification as TaManualVerification, Map as TaMap, MenuFold as TaMenuFold, MenuUnfold as TaMenuUnfold, MessageCenter as TaMessageCenter, Mfa as TaMfa, More1 as TaMore1, More2 as TaMore2, Mute as TaMute, Name as TaName, Neutral as TaNeutral, NewIndicator as TaNewIndicator, NewTask as TaNewTask, Notice as TaNotice, Null as TaNull, NumSm as TaNumSm, Official as TaOfficial, Offline as TaOffline, OfflineSync as TaOfflineSync, OneTime as TaOneTime, Online as TaOnline, OperatorBigger as TaOperatorBigger, OperatorDivide as TaOperatorDivide, OperatorEqual as TaOperatorEqual, OperatorFalse as TaOperatorFalse, OperatorHasValue as TaOperatorHasValue, OperatorInclude as TaOperatorInclude, OperatorInside as TaOperatorInside, OperatorLess as TaOperatorLess, OperatorNoBigger as TaOperatorNoBigger, OperatorNoLess as TaOperatorNoLess, OperatorNoRegex as TaOperatorNoRegex, OperatorNoValue as TaOperatorNoValue, OperatorNotInclude as TaOperatorNotInclude, OperatorRegex as TaOperatorRegex, OperatorTrue as TaOperatorTrue, OperatorUnequal as TaOperatorUnequal, PageLine as TaPageLine, PageOpenCl as TaPageOpenCl, Palette as TaPalette, ParallelFilter as TaParallelFilter, Parameter as TaParameter, ParameterControl as TaParameterControl, Partition as TaPartition, Password as TaPassword, Paste as TaPaste, Paste2 as TaPaste2, Pattern as TaPattern, Pause2 as TaPause2, PauseCircle as TaPauseCircle, Pending as TaPending, Phrase as TaPhrase, Pin as TaPin, Pin2 as TaPin2, PinFill as TaPinFill, PinUnsave as TaPinUnsave, Pinch as TaPinch, PlanetCl as TaPlanetCl, PlatformAnalyticsCl as TaPlatformAnalyticsCl, PlatformDataopsCl as TaPlatformDataopsCl, PlatformSystemCl as TaPlatformSystemCl, Play as TaPlay, PlayCircle as TaPlayCircle, Plug as TaPlug, Post as TaPost, Private as TaPrivate, Processing as TaProcessing, Processing2 as TaProcessing2, Progress as TaProgress, Project as TaProject, ProjectMgr as TaProjectMgr, Property as TaProperty, Pulse as TaPulse, Recurring as TaRecurring, Recycle as TaRecycle, Reject as TaReject, RelatedProp as TaRelatedProp, Rename as TaRename, Renew as TaRenew, Report as TaReport, ReportCl as TaReportCl, ReportReadingCl as TaReportReadingCl, ReportRemoval as TaReportRemoval, ResetPassword as TaResetPassword, Resizer as TaResizer, Result as TaResult, Revert as TaRevert, Ripple as TaRipple, Robot as TaRobot, RowsSm as TaRowsSm, Ruler as TaRuler, SAdministrator as TaSAdministrator, SSpace as TaSSpace, SWorkspace as TaSWorkspace, Sad as TaSad, SatelliteDish as TaSatelliteDish, Save as TaSave, Schedule as TaSchedule, Search as TaSearch, Send as TaSend, Server as TaServer, Setting as TaSetting, Share as TaShare, ShieldCheck as TaShieldCheck, ShieldCross as TaShieldCross, ShieldKeyhole as TaShieldKeyhole, Shop as TaShop, ShopFill as TaShopFill, ShutDown as TaShutDown, Smile as TaSmile, Sort as TaSort, SortA2z as TaSortA2z, SortDown as TaSortDown, SortDrop as TaSortDrop, SortResult as TaSortResult, SortRise as TaSortRise, SortUp as TaSortUp, SortZ2a as TaSortZ2a, Space as TaSpace, SpaceLine as TaSpaceLine, SpaceOpen as TaSpaceOpen, SpaceOpenLine as TaSpaceOpenLine, Speed as TaSpeed, Split as TaSplit, Sql1 as TaSql1, Sql2 as TaSql2, Sql3 as TaSql3, SqlTableView as TaSqlTableView, StarFill as TaStarFill, StarOutline as TaStarOutline, Sticker as TaSticker, StickerFill as TaStickerFill, Sticky as TaSticky, StopCircle as TaStopCircle, Stream as TaStream, StringSm as TaStringSm, Submit as TaSubmit, Subtract as TaSubtract, Subtract2 as TaSubtract2, Subtract3 as TaSubtract3, Success as TaSuccess, SuccessFill as TaSuccessFill, SvipFill as TaSvipFill, SwapFill as TaSwapFill, Switch as TaSwitch, SystemBuild as TaSystemBuild, SystemMgr as TaSystemMgr, SystemMsg as TaSystemMsg, TA2b as TaTA2b, TX2y as TaTX2y, Table1dtable as TaTable1dtable, TableClassic as TaTableClassic, TableCol as TaTableCol, TableKey as TaTableKey, TableRow as TaTableRow, TableSimple as TaTableSimple, TableStriped as TaTableStriped, Task as TaTask, TaskFlow as TaTaskFlow, TdLogo as TaTdLogo, TemplateCl as TaTemplateCl, Terminal as TaTerminal, TestRace as TaTestRace, TestSplit as TaTestSplit, TextCase as TaTextCase, TextWholeMatch as TaTextWholeMatch, ThumbDown as TaThumbDown, ThumbDownOutline as TaThumbDownOutline, ThumbUp as TaThumbUp, ThumbUpOutline as TaThumbUpOutline, TimeLock as TaTimeLock, TimeSm as TaTimeSm, Tips as TaTips, Tracking as TaTracking, TransferOwnership as TaTransferOwnership, Translation as TaTranslation, TriDown as TaTriDown, TriLeft as TaTriLeft, TriRight as TaTriRight, TriUp as TaTriUp, UCohortCl as TaUCohortCl, UGroup as TaUGroup, UGroupSm as TaUGroupSm, UPropMgr as TaUPropMgr, UPropertyShunt as TaUPropertyShunt, UPropertySm as TaUPropertySm, USearchCl as TaUSearchCl, UTag as TaUTag, UTagCl as TaUTagCl, UTagSm as TaUTagSm, Uncertified as TaUncertified, Undo as TaUndo, UndoApproval as TaUndoApproval, Unlink as TaUnlink, Unpin as TaUnpin, Unsave as TaUnsave, Update as TaUpdate, UpdateData as TaUpdateData, Upload as TaUpload, UploadId as TaUploadId, Usb as TaUsb, User1 as TaUser1, User1Fill as TaUser1Fill, User2 as TaUser2, UserAddFill as TaUserAddFill, UserSettings as TaUserSettings, UserTagCl as TaUserTagCl, Usertag as TaUsertag, VDashboardCl as TaVDashboardCl, VManageDashboardCl as TaVManageDashboardCl, VPropCl as TaVPropCl, VProperty as TaVProperty, VPropertySm as TaVPropertySm, Validate as TaValidate, Video as TaVideo, ViewOriginal as TaViewOriginal, Vip as TaVip, VipFill as TaVipFill, Warehouse as TaWarehouse };
|