@tant/icons 1.3.7 → 1.3.9

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.
Files changed (62) hide show
  1. package/dist/es/icons/alert-cl.js +75 -0
  2. package/dist/es/icons/d-integration-cl.js +66 -0
  3. package/dist/es/icons/d-manage-cl.js +72 -0
  4. package/dist/es/icons/d-tracking-cl.js +69 -0
  5. package/dist/es/icons/date-mark-cl.js +59 -0
  6. package/dist/es/icons/e-setting-cl.js +68 -0
  7. package/dist/es/icons/e-task-cl.js +58 -0
  8. package/dist/es/icons/edit-fill.js +2 -9
  9. package/dist/es/icons/folder-cl.js +2 -2
  10. package/dist/es/icons/folder-open-cl.js +2 -2
  11. package/dist/es/icons/m-distribution-cl.js +79 -0
  12. package/dist/es/icons/m-event-cl.js +59 -0
  13. package/dist/es/icons/m-flow-cl.js +71 -0
  14. package/dist/es/icons/m-funnel-cl.js +57 -0
  15. package/dist/es/icons/m-interval-cl.js +95 -0
  16. package/dist/es/icons/m-prop-cl.js +62 -0
  17. package/dist/es/icons/m-retention-cl.js +69 -0
  18. package/dist/es/icons/m-sql-cl.js +75 -0
  19. package/dist/es/icons/page-cl.js +3 -3
  20. package/dist/es/icons/page-open-cl.js +1 -1
  21. package/dist/es/icons/recurring.js +3 -3
  22. package/dist/es/icons/space-cl.js +3 -3
  23. package/dist/es/icons/space-open-cl.js +4 -4
  24. package/dist/es/icons/template-cl.js +60 -0
  25. package/dist/es/icons/u-cohort-cl.js +69 -0
  26. package/dist/es/icons/u-search-cl.js +75 -0
  27. package/dist/es/icons/u-tag-cl.js +61 -0
  28. package/dist/es/icons/user-tag-cl.js +1 -1
  29. package/dist/es/index.js +19 -0
  30. package/dist/index.d.ts +19 -0
  31. package/dist/lib/icons/alert-cl.js +83 -0
  32. package/dist/lib/icons/d-integration-cl.js +74 -0
  33. package/dist/lib/icons/d-manage-cl.js +80 -0
  34. package/dist/lib/icons/d-tracking-cl.js +77 -0
  35. package/dist/lib/icons/date-mark-cl.js +67 -0
  36. package/dist/lib/icons/e-setting-cl.js +76 -0
  37. package/dist/lib/icons/e-task-cl.js +66 -0
  38. package/dist/lib/icons/edit-fill.js +2 -9
  39. package/dist/lib/icons/folder-cl.js +2 -2
  40. package/dist/lib/icons/folder-open-cl.js +2 -2
  41. package/dist/lib/icons/m-distribution-cl.js +87 -0
  42. package/dist/lib/icons/m-event-cl.js +67 -0
  43. package/dist/lib/icons/m-flow-cl.js +79 -0
  44. package/dist/lib/icons/m-funnel-cl.js +65 -0
  45. package/dist/lib/icons/m-interval-cl.js +103 -0
  46. package/dist/lib/icons/m-prop-cl.js +70 -0
  47. package/dist/lib/icons/m-retention-cl.js +77 -0
  48. package/dist/lib/icons/m-sql-cl.js +83 -0
  49. package/dist/lib/icons/page-cl.js +3 -3
  50. package/dist/lib/icons/page-open-cl.js +1 -1
  51. package/dist/lib/icons/recurring.js +3 -3
  52. package/dist/lib/icons/space-cl.js +3 -3
  53. package/dist/lib/icons/space-open-cl.js +4 -4
  54. package/dist/lib/icons/template-cl.js +68 -0
  55. package/dist/lib/icons/u-cohort-cl.js +77 -0
  56. package/dist/lib/icons/u-search-cl.js +83 -0
  57. package/dist/lib/icons/u-tag-cl.js +69 -0
  58. package/dist/lib/icons/user-tag-cl.js +1 -1
  59. package/dist/lib/index.js +133 -0
  60. package/dist/tant-icons.cjs.js +1870 -711
  61. package/dist/tant-icons.esm.js +1852 -712
  62. package/package.json +1 -1
@@ -0,0 +1,75 @@
1
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
2
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
3
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
5
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8
+ import React from 'react';
9
+ import PropTypes from 'prop-types';
10
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
11
+ var AlertCl = function AlertCl(props) {
12
+ var color = props.color,
13
+ size = props.size,
14
+ spin = props.spin,
15
+ style = props.style,
16
+ className = props.className,
17
+ iconClassName = props.iconClassName,
18
+ otherProps = _objectWithoutProperties(props, _excluded);
19
+ return /*#__PURE__*/React.createElement("span", {
20
+ role: "img",
21
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
22
+ }, /*#__PURE__*/React.createElement("style", {
23
+ children: loadingCircleStyle
24
+ }), /*#__PURE__*/React.createElement("svg", _extends({
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ width: size,
27
+ height: size,
28
+ viewBox: "0 0 24 24",
29
+ fill: color
30
+ }, otherProps, {
31
+ className: iconClassName,
32
+ style: _objectSpread(_objectSpread({}, style), spin ? {
33
+ animationDuration: '1s',
34
+ animationIterationCount: 'infinite',
35
+ animationName: 'loadingCircle',
36
+ animationTimingFunction: 'linear'
37
+ } : {})
38
+ }), /*#__PURE__*/React.createElement("rect", {
39
+ x: "2",
40
+ y: "19",
41
+ width: "20",
42
+ height: "3",
43
+ fill: "#1673F6",
44
+ fillOpacity: ".3"
45
+ }), /*#__PURE__*/React.createElement("path", {
46
+ d: "M11 2h2v3h-2V2z",
47
+ fill: "#1E76F0",
48
+ fillOpacity: ".3"
49
+ }), /*#__PURE__*/React.createElement("path", {
50
+ d: "M19.121 4l1.415 1.414-2.122 2.122L17 6.12 19.121 4z",
51
+ fill: "#1E76F0",
52
+ fillOpacity: ".3"
53
+ }), /*#__PURE__*/React.createElement("path", {
54
+ d: "M3 5.434L4.394 4l2.151 2.09-1.394 1.435L3 5.435z",
55
+ fill: "#1E76F0",
56
+ fillOpacity: ".3"
57
+ }), /*#__PURE__*/React.createElement("path", {
58
+ fillRule: "evenodd",
59
+ clipRule: "evenodd",
60
+ d: "M12 6.229a7 7 0 00-7 7V20.5h14v-7.271a7 7 0 00-7-7zM10 13H8v4h2v-4z",
61
+ fill: "#1E76F0"
62
+ })));
63
+ };
64
+ AlertCl.propTypes = {
65
+ iconClassName: PropTypes.string,
66
+ spin: PropTypes.bool,
67
+ color: PropTypes.string,
68
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
69
+ };
70
+ AlertCl.defaultProps = {
71
+ spin: false,
72
+ color: 'currentColor',
73
+ size: '1em'
74
+ };
75
+ export default AlertCl;
@@ -0,0 +1,66 @@
1
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
2
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
3
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
5
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8
+ import React from 'react';
9
+ import PropTypes from 'prop-types';
10
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
11
+ var DIntegrationCl = function DIntegrationCl(props) {
12
+ var color = props.color,
13
+ size = props.size,
14
+ spin = props.spin,
15
+ style = props.style,
16
+ className = props.className,
17
+ iconClassName = props.iconClassName,
18
+ otherProps = _objectWithoutProperties(props, _excluded);
19
+ return /*#__PURE__*/React.createElement("span", {
20
+ role: "img",
21
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
22
+ }, /*#__PURE__*/React.createElement("style", {
23
+ children: loadingCircleStyle
24
+ }), /*#__PURE__*/React.createElement("svg", _extends({
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ width: size,
27
+ height: size,
28
+ viewBox: "0 0 24 24",
29
+ fill: color
30
+ }, otherProps, {
31
+ className: iconClassName,
32
+ style: _objectSpread(_objectSpread({}, style), spin ? {
33
+ animationDuration: '1s',
34
+ animationIterationCount: 'infinite',
35
+ animationName: 'loadingCircle',
36
+ animationTimingFunction: 'linear'
37
+ } : {})
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ d: "M21.2 9.4h-6v6h-6v6h12v-12z",
40
+ fill: "#1673F6"
41
+ }), /*#__PURE__*/React.createElement("rect", {
42
+ x: "3",
43
+ y: "3",
44
+ width: "6",
45
+ height: "6",
46
+ fill: "#B3CFF8"
47
+ }), /*#__PURE__*/React.createElement("rect", {
48
+ x: "6.4",
49
+ y: "6",
50
+ width: "7.2",
51
+ height: "7.2",
52
+ fill: "#1673F6"
53
+ })));
54
+ };
55
+ DIntegrationCl.propTypes = {
56
+ iconClassName: PropTypes.string,
57
+ spin: PropTypes.bool,
58
+ color: PropTypes.string,
59
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
60
+ };
61
+ DIntegrationCl.defaultProps = {
62
+ spin: false,
63
+ color: 'currentColor',
64
+ size: '1em'
65
+ };
66
+ export default DIntegrationCl;
@@ -0,0 +1,72 @@
1
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
2
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
3
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
5
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8
+ import React from 'react';
9
+ import PropTypes from 'prop-types';
10
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
11
+ var DManageCl = function DManageCl(props) {
12
+ var color = props.color,
13
+ size = props.size,
14
+ spin = props.spin,
15
+ style = props.style,
16
+ className = props.className,
17
+ iconClassName = props.iconClassName,
18
+ otherProps = _objectWithoutProperties(props, _excluded);
19
+ return /*#__PURE__*/React.createElement("span", {
20
+ role: "img",
21
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
22
+ }, /*#__PURE__*/React.createElement("style", {
23
+ children: loadingCircleStyle
24
+ }), /*#__PURE__*/React.createElement("svg", _extends({
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ width: size,
27
+ height: size,
28
+ viewBox: "0 0 24 24",
29
+ fill: color
30
+ }, otherProps, {
31
+ className: iconClassName,
32
+ style: _objectSpread(_objectSpread({}, style), spin ? {
33
+ animationDuration: '1s',
34
+ animationIterationCount: 'infinite',
35
+ animationName: 'loadingCircle',
36
+ animationTimingFunction: 'linear'
37
+ } : {})
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ d: "M14 12.75V6L8 9v7.5l6-3.75z",
40
+ fill: "#B3CFF8"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ d: "M2 12.75V5.982L8 9v7.5l-6-3.75z",
43
+ fill: "#1673F6",
44
+ opacity: ".6"
45
+ }), /*#__PURE__*/React.createElement("path", {
46
+ d: "M22 17.75V11l-6 3v7.5l6-3.75z",
47
+ fill: "#B3CFF8"
48
+ }), /*#__PURE__*/React.createElement("path", {
49
+ d: "M10.001 17.75v-6.768l6 3.018v7.5l-6-3.75z",
50
+ fill: "#1673F6",
51
+ opacity: ".6"
52
+ }), /*#__PURE__*/React.createElement("g", {
53
+ style: "mix-blend-mode:multiply",
54
+ fill: "#1673F6"
55
+ }, /*#__PURE__*/React.createElement("path", {
56
+ d: "M8 2.807L14 6 8 9.048 2 6l6-3.193z"
57
+ }), /*#__PURE__*/React.createElement("path", {
58
+ d: "M16 7.807L22 11l-6 3.047L10 11l6-3.193z"
59
+ }))));
60
+ };
61
+ DManageCl.propTypes = {
62
+ iconClassName: PropTypes.string,
63
+ spin: PropTypes.bool,
64
+ color: PropTypes.string,
65
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
66
+ };
67
+ DManageCl.defaultProps = {
68
+ spin: false,
69
+ color: 'currentColor',
70
+ size: '1em'
71
+ };
72
+ export default DManageCl;
@@ -0,0 +1,69 @@
1
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
2
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
3
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
5
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8
+ import React from 'react';
9
+ import PropTypes from 'prop-types';
10
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
11
+ var DTrackingCl = function DTrackingCl(props) {
12
+ var color = props.color,
13
+ size = props.size,
14
+ spin = props.spin,
15
+ style = props.style,
16
+ className = props.className,
17
+ iconClassName = props.iconClassName,
18
+ otherProps = _objectWithoutProperties(props, _excluded);
19
+ return /*#__PURE__*/React.createElement("span", {
20
+ role: "img",
21
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
22
+ }, /*#__PURE__*/React.createElement("style", {
23
+ children: loadingCircleStyle
24
+ }), /*#__PURE__*/React.createElement("svg", _extends({
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ width: size,
27
+ height: size,
28
+ viewBox: "0 0 24 24",
29
+ fill: color
30
+ }, otherProps, {
31
+ className: iconClassName,
32
+ style: _objectSpread(_objectSpread({}, style), spin ? {
33
+ animationDuration: '1s',
34
+ animationIterationCount: 'infinite',
35
+ animationName: 'loadingCircle',
36
+ animationTimingFunction: 'linear'
37
+ } : {})
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ d: "M22 17.219L12.159 22 2 17.219 12.159 13 22 17.219z",
40
+ fill: "#B3CFF8"
41
+ }), /*#__PURE__*/React.createElement("circle", {
42
+ cx: "12",
43
+ cy: "15",
44
+ r: "3",
45
+ fill: "#1673F6"
46
+ }), /*#__PURE__*/React.createElement("circle", {
47
+ cx: "7",
48
+ cy: "8",
49
+ r: "3",
50
+ fill: "#1673F6"
51
+ }), /*#__PURE__*/React.createElement("circle", {
52
+ cx: "16.5",
53
+ cy: "6.5",
54
+ r: "4.5",
55
+ fill: "#1673F6"
56
+ })));
57
+ };
58
+ DTrackingCl.propTypes = {
59
+ iconClassName: PropTypes.string,
60
+ spin: PropTypes.bool,
61
+ color: PropTypes.string,
62
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
63
+ };
64
+ DTrackingCl.defaultProps = {
65
+ spin: false,
66
+ color: 'currentColor',
67
+ size: '1em'
68
+ };
69
+ export default DTrackingCl;
@@ -0,0 +1,59 @@
1
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
2
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
3
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
5
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8
+ import React from 'react';
9
+ import PropTypes from 'prop-types';
10
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
11
+ var DateMarkCl = function DateMarkCl(props) {
12
+ var color = props.color,
13
+ size = props.size,
14
+ spin = props.spin,
15
+ style = props.style,
16
+ className = props.className,
17
+ iconClassName = props.iconClassName,
18
+ otherProps = _objectWithoutProperties(props, _excluded);
19
+ return /*#__PURE__*/React.createElement("span", {
20
+ role: "img",
21
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
22
+ }, /*#__PURE__*/React.createElement("style", {
23
+ children: loadingCircleStyle
24
+ }), /*#__PURE__*/React.createElement("svg", _extends({
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ width: size,
27
+ height: size,
28
+ viewBox: "0 0 24 24",
29
+ fill: color
30
+ }, otherProps, {
31
+ className: iconClassName,
32
+ style: _objectSpread(_objectSpread({}, style), spin ? {
33
+ animationDuration: '1s',
34
+ animationIterationCount: 'infinite',
35
+ animationName: 'loadingCircle',
36
+ animationTimingFunction: 'linear'
37
+ } : {})
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ fillRule: "evenodd",
40
+ clipRule: "evenodd",
41
+ d: "M5.333 3h1.945v1.7h4.93V3h1.945v1.7h.903C16.129 4.7 17 5.588 17 6.683v11.334C17 19.112 16.13 20 15.056 20H3.944C2.871 20 2 19.112 2 18.017V6.683C2 5.588 2.87 4.7 3.944 4.7h1.39V3zm10 4.25H3.667v1.275h11.666V7.25z",
42
+ fill: "#B3CFF8"
43
+ }), /*#__PURE__*/React.createElement("path", {
44
+ d: "M23.404 14.19a.591.591 0 00-.478-.403l-3.413-.591-1.545-3.019a.607.607 0 00-.844-.234.606.606 0 00-.222.234l-1.528 3.019-3.413.609a.587.587 0 00-.514.725.574.574 0 00.164.278l2.492 2.247-.64 3.258a.585.585 0 00.239.575.655.655 0 00.631.043l3.098-1.492 3.089 1.492a.603.603 0 00.833-.296.585.585 0 00.037-.322l-.623-3.258 2.466-2.264a.575.575 0 00.17-.6z",
45
+ fill: "#1673F6"
46
+ })));
47
+ };
48
+ DateMarkCl.propTypes = {
49
+ iconClassName: PropTypes.string,
50
+ spin: PropTypes.bool,
51
+ color: PropTypes.string,
52
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
53
+ };
54
+ DateMarkCl.defaultProps = {
55
+ spin: false,
56
+ color: 'currentColor',
57
+ size: '1em'
58
+ };
59
+ export default DateMarkCl;
@@ -0,0 +1,68 @@
1
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
2
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
3
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
5
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8
+ import React from 'react';
9
+ import PropTypes from 'prop-types';
10
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
11
+ var ESettingCl = function ESettingCl(props) {
12
+ var color = props.color,
13
+ size = props.size,
14
+ spin = props.spin,
15
+ style = props.style,
16
+ className = props.className,
17
+ iconClassName = props.iconClassName,
18
+ otherProps = _objectWithoutProperties(props, _excluded);
19
+ return /*#__PURE__*/React.createElement("span", {
20
+ role: "img",
21
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
22
+ }, /*#__PURE__*/React.createElement("style", {
23
+ children: loadingCircleStyle
24
+ }), /*#__PURE__*/React.createElement("svg", _extends({
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ width: size,
27
+ height: size,
28
+ viewBox: "0 0 24 24",
29
+ fill: color
30
+ }, otherProps, {
31
+ className: iconClassName,
32
+ style: _objectSpread(_objectSpread({}, style), spin ? {
33
+ animationDuration: '1s',
34
+ animationIterationCount: 'infinite',
35
+ animationName: 'loadingCircle',
36
+ animationTimingFunction: 'linear'
37
+ } : {})
38
+ }), /*#__PURE__*/React.createElement("rect", {
39
+ x: "7",
40
+ y: "13",
41
+ width: "15",
42
+ height: "9",
43
+ fill: "#B3CFF8"
44
+ }), /*#__PURE__*/React.createElement("rect", {
45
+ x: "7",
46
+ y: "2",
47
+ width: "15",
48
+ height: "9",
49
+ fill: "#B3CFF8"
50
+ }), /*#__PURE__*/React.createElement("path", {
51
+ fillRule: "evenodd",
52
+ clipRule: "evenodd",
53
+ d: "M11 16.392l3-5.196L11 6H5l-3 5.196 3 5.196h6zM8 12.91a1.714 1.714 0 100-3.428 1.714 1.714 0 000 3.428z",
54
+ fill: "#1E76F0"
55
+ })));
56
+ };
57
+ ESettingCl.propTypes = {
58
+ iconClassName: PropTypes.string,
59
+ spin: PropTypes.bool,
60
+ color: PropTypes.string,
61
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
62
+ };
63
+ ESettingCl.defaultProps = {
64
+ spin: false,
65
+ color: 'currentColor',
66
+ size: '1em'
67
+ };
68
+ export default ESettingCl;
@@ -0,0 +1,58 @@
1
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
2
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
3
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
5
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8
+ import React from 'react';
9
+ import PropTypes from 'prop-types';
10
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
11
+ var ETaskCl = function ETaskCl(props) {
12
+ var color = props.color,
13
+ size = props.size,
14
+ spin = props.spin,
15
+ style = props.style,
16
+ className = props.className,
17
+ iconClassName = props.iconClassName,
18
+ otherProps = _objectWithoutProperties(props, _excluded);
19
+ return /*#__PURE__*/React.createElement("span", {
20
+ role: "img",
21
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
22
+ }, /*#__PURE__*/React.createElement("style", {
23
+ children: loadingCircleStyle
24
+ }), /*#__PURE__*/React.createElement("svg", _extends({
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ width: size,
27
+ height: size,
28
+ viewBox: "0 0 24 24",
29
+ fill: color
30
+ }, otherProps, {
31
+ className: iconClassName,
32
+ style: _objectSpread(_objectSpread({}, style), spin ? {
33
+ animationDuration: '1s',
34
+ animationIterationCount: 'infinite',
35
+ animationName: 'loadingCircle',
36
+ animationTimingFunction: 'linear'
37
+ } : {})
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ d: "M6 2v17H4v3h7v-3H9V2H6z",
40
+ fill: "#1673F6",
41
+ fillOpacity: ".3"
42
+ }), /*#__PURE__*/React.createElement("path", {
43
+ d: "M20 4H7.5v10.5H20l-2.5-5L20 4z",
44
+ fill: "#1673F6"
45
+ })));
46
+ };
47
+ ETaskCl.propTypes = {
48
+ iconClassName: PropTypes.string,
49
+ spin: PropTypes.bool,
50
+ color: PropTypes.string,
51
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
52
+ };
53
+ ETaskCl.defaultProps = {
54
+ spin: false,
55
+ color: 'currentColor',
56
+ size: '1em'
57
+ };
58
+ export default ETaskCl;
@@ -35,18 +35,11 @@ var EditFill = function EditFill(props) {
35
35
  animationName: 'loadingCircle',
36
36
  animationTimingFunction: 'linear'
37
37
  } : {})
38
- }), /*#__PURE__*/React.createElement("g", {
39
- clipPath: "url(#clip0_970_67)"
40
- }, /*#__PURE__*/React.createElement("path", {
38
+ }), /*#__PURE__*/React.createElement("path", {
41
39
  d: "M3 17.25L14.06 6.19l3.75 3.75L8.75 19H21v2H3v-3.75z"
42
40
  }), /*#__PURE__*/React.createElement("path", {
43
41
  d: "M20.71 5.63c.39.39.39 1.02 0 1.41l-1.83 1.83-3.75-3.75 1.83-1.83a.996.996 0 011.41 0l2.34 2.34z"
44
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
45
- id: "clip0_970_67"
46
- }, /*#__PURE__*/React.createElement("rect", {
47
- width: "24",
48
- height: "24"
49
- })))));
42
+ })));
50
43
  };
51
44
  EditFill.propTypes = {
52
45
  iconClassName: PropTypes.string,
@@ -37,11 +37,11 @@ var FolderCl = function FolderCl(props) {
37
37
  } : {})
38
38
  }), /*#__PURE__*/React.createElement("path", {
39
39
  d: "M2 6a2 2 0 012-2h6.607a2 2 0 012 2v1.75H2V6z",
40
- fill: "#0A1032"
40
+ fill: "#24252E"
41
41
  }), /*#__PURE__*/React.createElement("path", {
42
42
  opacity: ".15",
43
43
  d: "M2 7h18a2 2 0 012 2v9a2 2 0 01-2 2H4a2 2 0 01-2-2V7z",
44
- fill: "#0A1032"
44
+ fill: "#24252E"
45
45
  })));
46
46
  };
47
47
  FolderCl.propTypes = {
@@ -37,11 +37,11 @@ var FolderOpenCl = function FolderOpenCl(props) {
37
37
  } : {})
38
38
  }), /*#__PURE__*/React.createElement("path", {
39
39
  d: "M2 5v15l2.499-9.911a1 1 0 01.97-.756H16V7a1 1 0 00-1-1h-4a1 1 0 01-.8-.4l-.9-1.2a1 1 0 00-.8-.4H3a1 1 0 00-1 1z",
40
- fill: "#0A1032"
40
+ fill: "#24252E"
41
41
  }), /*#__PURE__*/React.createElement("path", {
42
42
  opacity: ".3",
43
43
  d: "M18.174 20H2l2.499-9.911a1 1 0 01.97-.756H20.67a1 1 0 01.961 1.277l-2.497 8.667a1 1 0 01-.96.723z",
44
- fill: "#0A1032"
44
+ fill: "#24252E"
45
45
  })));
46
46
  };
47
47
  FolderOpenCl.propTypes = {
@@ -0,0 +1,79 @@
1
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
2
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
3
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
5
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8
+ import React from 'react';
9
+ import PropTypes from 'prop-types';
10
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
11
+ var MDistributionCl = function MDistributionCl(props) {
12
+ var color = props.color,
13
+ size = props.size,
14
+ spin = props.spin,
15
+ style = props.style,
16
+ className = props.className,
17
+ iconClassName = props.iconClassName,
18
+ otherProps = _objectWithoutProperties(props, _excluded);
19
+ return /*#__PURE__*/React.createElement("span", {
20
+ role: "img",
21
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
22
+ }, /*#__PURE__*/React.createElement("style", {
23
+ children: loadingCircleStyle
24
+ }), /*#__PURE__*/React.createElement("svg", _extends({
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ width: size,
27
+ height: size,
28
+ viewBox: "0 0 24 24",
29
+ fill: color
30
+ }, otherProps, {
31
+ className: iconClassName,
32
+ style: _objectSpread(_objectSpread({}, style), spin ? {
33
+ animationDuration: '1s',
34
+ animationIterationCount: 'infinite',
35
+ animationName: 'loadingCircle',
36
+ animationTimingFunction: 'linear'
37
+ } : {})
38
+ }), /*#__PURE__*/React.createElement("rect", {
39
+ x: "3",
40
+ y: "5",
41
+ width: "12",
42
+ height: "6",
43
+ fill: "#1673F6"
44
+ }), /*#__PURE__*/React.createElement("rect", {
45
+ x: "9",
46
+ y: "13",
47
+ width: "8",
48
+ height: "6",
49
+ fill: "#1673F6"
50
+ }), /*#__PURE__*/React.createElement("rect", {
51
+ x: "15",
52
+ y: "13",
53
+ width: "6",
54
+ height: "6",
55
+ fill: "#ED6845"
56
+ }), /*#__PURE__*/React.createElement("circle", {
57
+ cx: "19",
58
+ cy: "8",
59
+ r: "3",
60
+ fill: "#1673F6"
61
+ }), /*#__PURE__*/React.createElement("circle", {
62
+ cx: "5",
63
+ cy: "16",
64
+ r: "3",
65
+ fill: "#ED6845"
66
+ })));
67
+ };
68
+ MDistributionCl.propTypes = {
69
+ iconClassName: PropTypes.string,
70
+ spin: PropTypes.bool,
71
+ color: PropTypes.string,
72
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
73
+ };
74
+ MDistributionCl.defaultProps = {
75
+ spin: false,
76
+ color: 'currentColor',
77
+ size: '1em'
78
+ };
79
+ export default MDistributionCl;