@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,60 @@
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 TemplateCl = function TemplateCl(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: "M11.617 2l10.986 2.821-2.82 10.986-10.987-2.82L11.617 2z",
40
+ fill: "#B3CFF8"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ d: "M13.963 13.343a6.482 6.482 0 11-12.963 0 6.482 6.482 0 0112.963 0z",
43
+ fill: "#B3CFF8"
44
+ }), /*#__PURE__*/React.createElement("path", {
45
+ d: "M14.773 9.796L21.79 21.95H7.757l7.016-12.153z",
46
+ fill: "#156EF0"
47
+ })));
48
+ };
49
+ TemplateCl.propTypes = {
50
+ iconClassName: PropTypes.string,
51
+ spin: PropTypes.bool,
52
+ color: PropTypes.string,
53
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
54
+ };
55
+ TemplateCl.defaultProps = {
56
+ spin: false,
57
+ color: 'currentColor',
58
+ size: '1em'
59
+ };
60
+ export default TemplateCl;
@@ -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 UCohortCl = function UCohortCl(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("ellipse", {
39
+ cx: "16",
40
+ cy: "7.177",
41
+ rx: "3",
42
+ ry: "3.177",
43
+ fill: "#7639F0"
44
+ }), /*#__PURE__*/React.createElement("path", {
45
+ d: "M10 20h12c0-4.45-2.686-8.057-6-8.057S10 15.55 10 20z",
46
+ fill: "#32C8DC"
47
+ }), /*#__PURE__*/React.createElement("ellipse", {
48
+ cx: "8",
49
+ cy: "7.177",
50
+ rx: "3",
51
+ ry: "3.177",
52
+ fill: "#32C8DC"
53
+ }), /*#__PURE__*/React.createElement("path", {
54
+ d: "M2 20h12c0-4.45-2.686-8.057-6-8.057S2 15.55 2 20z",
55
+ fill: "#7639F0"
56
+ })));
57
+ };
58
+ UCohortCl.propTypes = {
59
+ iconClassName: PropTypes.string,
60
+ spin: PropTypes.bool,
61
+ color: PropTypes.string,
62
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
63
+ };
64
+ UCohortCl.defaultProps = {
65
+ spin: false,
66
+ color: 'currentColor',
67
+ size: '1em'
68
+ };
69
+ export default UCohortCl;
@@ -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 USearchCl = function USearchCl(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("circle", {
39
+ cx: "12",
40
+ cy: "7.5",
41
+ r: "3.5",
42
+ fill: "#7639F0"
43
+ }), /*#__PURE__*/React.createElement("path", {
44
+ d: "M5 21.625c0-4.901 3.134-8.875 7-8.875s7 3.974 7 8.875H5z",
45
+ fill: "#7639F0"
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ d: "M3 7V3h4",
48
+ stroke: "#32C8DC",
49
+ strokeWidth: "3"
50
+ }), /*#__PURE__*/React.createElement("path", {
51
+ d: "M3 14v4h4",
52
+ stroke: "#32C8DC",
53
+ strokeWidth: "3"
54
+ }), /*#__PURE__*/React.createElement("path", {
55
+ d: "M21 7V3h-4",
56
+ stroke: "#32C8DC",
57
+ strokeWidth: "3"
58
+ }), /*#__PURE__*/React.createElement("path", {
59
+ d: "M21 14v4h-4",
60
+ stroke: "#32C8DC",
61
+ strokeWidth: "3"
62
+ })));
63
+ };
64
+ USearchCl.propTypes = {
65
+ iconClassName: PropTypes.string,
66
+ spin: PropTypes.bool,
67
+ color: PropTypes.string,
68
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
69
+ };
70
+ USearchCl.defaultProps = {
71
+ spin: false,
72
+ color: 'currentColor',
73
+ size: '1em'
74
+ };
75
+ export default USearchCl;
@@ -0,0 +1,61 @@
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 UTagCl = function UTagCl(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: "M14.874 2.737L9.032 8.24v13.97h11.684V8.24l-5.842-5.503zM15 11a2 2 0 100-4 2 2 0 000 4z",
42
+ fill: "#7639F0"
43
+ }), /*#__PURE__*/React.createElement("path", {
44
+ fillRule: "evenodd",
45
+ clipRule: "evenodd",
46
+ d: "M19.846 4.107l-8.024-.194L2 13.848l8.309 8.214 9.822-9.934-.285-8.02zM15 11a2 2 0 100-4 2 2 0 000 4z",
47
+ fill: "#32C8DC"
48
+ })));
49
+ };
50
+ UTagCl.propTypes = {
51
+ iconClassName: PropTypes.string,
52
+ spin: PropTypes.bool,
53
+ color: PropTypes.string,
54
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
55
+ };
56
+ UTagCl.defaultProps = {
57
+ spin: false,
58
+ color: 'currentColor',
59
+ size: '1em'
60
+ };
61
+ export default UTagCl;
@@ -37,7 +37,7 @@ var UserTagCl = function UserTagCl(props) {
37
37
  } : {})
38
38
  }), /*#__PURE__*/React.createElement("path", {
39
39
  d: "M21.576 1H8.351c-.445 0-.874.174-1.196.482L5.972 2.614c-.194.184-.07.516.194.523l3.332.106c.499.017.975.225 1.327.588 0 0 9.585 9.78 9.602 9.801h1.17c.774 0 1.404-.639 1.404-1.432V2.453C23 1.653 22.364 1 21.576 1z",
40
- fill: "#202241"
40
+ fill: "#474B5B"
41
41
  }), /*#__PURE__*/React.createElement("path", {
42
42
  d: "M18.998 13.63l-8.503-8.674a1.746 1.746 0 00-1.183-.523l-6.82-.22C1.66 4.187.98 4.88 1 5.729l.181 6.82c.014.514.218 1.002.577 1.365l8.496 8.666c.55.561 1.438.561 1.984 0l6.76-6.895a1.473 1.473 0 000-2.055zM4.654 9.067c-.617 0-1.117-.509-1.117-1.138 0-.629.5-1.138 1.117-1.138.616 0 1.116.509 1.116 1.138 0 .63-.5 1.138-1.116 1.138z",
43
43
  fill: "#0A1032",
package/dist/es/index.js CHANGED
@@ -164,6 +164,25 @@ export { default as TaSpaceCl } from './icons/space-cl';
164
164
  export { default as TaSpaceOpenCl } from './icons/space-open-cl';
165
165
  export { default as TaPageCl } from './icons/page-cl';
166
166
  export { default as TaPageOpenCl } from './icons/page-open-cl';
167
+ export { default as TaMEventCl } from './icons/m-event-cl';
168
+ export { default as TaMRetentionCl } from './icons/m-retention-cl';
169
+ export { default as TaMFunnelCl } from './icons/m-funnel-cl';
170
+ export { default as TaMDistributionCl } from './icons/m-distribution-cl';
171
+ export { default as TaMIntervalCl } from './icons/m-interval-cl';
172
+ export { default as TaMFlowCl } from './icons/m-flow-cl';
173
+ export { default as TaMSqlCl } from './icons/m-sql-cl';
174
+ export { default as TaMPropCl } from './icons/m-prop-cl';
175
+ export { default as TaUTagCl } from './icons/u-tag-cl';
176
+ export { default as TaUCohortCl } from './icons/u-cohort-cl';
177
+ export { default as TaUSearchCl } from './icons/u-search-cl';
178
+ export { default as TaETaskCl } from './icons/e-task-cl';
179
+ export { default as TaESettingCl } from './icons/e-setting-cl';
180
+ export { default as TaDManageCl } from './icons/d-manage-cl';
181
+ export { default as TaDTrackingCl } from './icons/d-tracking-cl';
182
+ export { default as TaDIntegrationCl } from './icons/d-integration-cl';
183
+ export { default as TaAlertCl } from './icons/alert-cl';
184
+ export { default as TaTemplateCl } from './icons/template-cl';
185
+ export { default as TaDateMarkCl } from './icons/date-mark-cl';
167
186
  export { default as TaInfo } from './icons/info';
168
187
  export { default as TaInfoFill } from './icons/info-fill';
169
188
  export { default as TaHelp } from './icons/help';
package/dist/index.d.ts CHANGED
@@ -175,6 +175,25 @@ export const TaSpaceCl: Icon;
175
175
  export const TaSpaceOpenCl: Icon;
176
176
  export const TaPageCl: Icon;
177
177
  export const TaPageOpenCl: Icon;
178
+ export const TaMEventCl: Icon;
179
+ export const TaMRetentionCl: Icon;
180
+ export const TaMFunnelCl: Icon;
181
+ export const TaMDistributionCl: Icon;
182
+ export const TaMIntervalCl: Icon;
183
+ export const TaMFlowCl: Icon;
184
+ export const TaMSqlCl: Icon;
185
+ export const TaMPropCl: Icon;
186
+ export const TaUTagCl: Icon;
187
+ export const TaUCohortCl: Icon;
188
+ export const TaUSearchCl: Icon;
189
+ export const TaETaskCl: Icon;
190
+ export const TaESettingCl: Icon;
191
+ export const TaDManageCl: Icon;
192
+ export const TaDTrackingCl: Icon;
193
+ export const TaDIntegrationCl: Icon;
194
+ export const TaAlertCl: Icon;
195
+ export const TaTemplateCl: Icon;
196
+ export const TaDateMarkCl: Icon;
178
197
  export const TaInfo: Icon;
179
198
  export const TaInfoFill: Icon;
180
199
  export const TaHelp: Icon;
@@ -0,0 +1,83 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _propTypes = _interopRequireDefault(require("prop-types"));
9
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11
+ 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); }
12
+ 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; }
13
+ 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; }
14
+ 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; }
15
+ 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; }
16
+ 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; }
17
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
18
+ var AlertCl = function AlertCl(props) {
19
+ var color = props.color,
20
+ size = props.size,
21
+ spin = props.spin,
22
+ style = props.style,
23
+ className = props.className,
24
+ iconClassName = props.iconClassName,
25
+ otherProps = _objectWithoutProperties(props, _excluded);
26
+ return /*#__PURE__*/_react["default"].createElement("span", {
27
+ role: "img",
28
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
29
+ }, /*#__PURE__*/_react["default"].createElement("style", {
30
+ children: loadingCircleStyle
31
+ }), /*#__PURE__*/_react["default"].createElement("svg", _extends({
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ width: size,
34
+ height: size,
35
+ viewBox: "0 0 24 24",
36
+ fill: color
37
+ }, otherProps, {
38
+ className: iconClassName,
39
+ style: _objectSpread(_objectSpread({}, style), spin ? {
40
+ animationDuration: '1s',
41
+ animationIterationCount: 'infinite',
42
+ animationName: 'loadingCircle',
43
+ animationTimingFunction: 'linear'
44
+ } : {})
45
+ }), /*#__PURE__*/_react["default"].createElement("rect", {
46
+ x: "2",
47
+ y: "19",
48
+ width: "20",
49
+ height: "3",
50
+ fill: "#1673F6",
51
+ fillOpacity: ".3"
52
+ }), /*#__PURE__*/_react["default"].createElement("path", {
53
+ d: "M11 2h2v3h-2V2z",
54
+ fill: "#1E76F0",
55
+ fillOpacity: ".3"
56
+ }), /*#__PURE__*/_react["default"].createElement("path", {
57
+ d: "M19.121 4l1.415 1.414-2.122 2.122L17 6.12 19.121 4z",
58
+ fill: "#1E76F0",
59
+ fillOpacity: ".3"
60
+ }), /*#__PURE__*/_react["default"].createElement("path", {
61
+ d: "M3 5.434L4.394 4l2.151 2.09-1.394 1.435L3 5.435z",
62
+ fill: "#1E76F0",
63
+ fillOpacity: ".3"
64
+ }), /*#__PURE__*/_react["default"].createElement("path", {
65
+ fillRule: "evenodd",
66
+ clipRule: "evenodd",
67
+ d: "M12 6.229a7 7 0 00-7 7V20.5h14v-7.271a7 7 0 00-7-7zM10 13H8v4h2v-4z",
68
+ fill: "#1E76F0"
69
+ })));
70
+ };
71
+ AlertCl.propTypes = {
72
+ iconClassName: _propTypes["default"].string,
73
+ spin: _propTypes["default"].bool,
74
+ color: _propTypes["default"].string,
75
+ size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
76
+ };
77
+ AlertCl.defaultProps = {
78
+ spin: false,
79
+ color: 'currentColor',
80
+ size: '1em'
81
+ };
82
+ var _default = AlertCl;
83
+ exports["default"] = _default;
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _propTypes = _interopRequireDefault(require("prop-types"));
9
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11
+ 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); }
12
+ 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; }
13
+ 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; }
14
+ 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; }
15
+ 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; }
16
+ 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; }
17
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
18
+ var DIntegrationCl = function DIntegrationCl(props) {
19
+ var color = props.color,
20
+ size = props.size,
21
+ spin = props.spin,
22
+ style = props.style,
23
+ className = props.className,
24
+ iconClassName = props.iconClassName,
25
+ otherProps = _objectWithoutProperties(props, _excluded);
26
+ return /*#__PURE__*/_react["default"].createElement("span", {
27
+ role: "img",
28
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
29
+ }, /*#__PURE__*/_react["default"].createElement("style", {
30
+ children: loadingCircleStyle
31
+ }), /*#__PURE__*/_react["default"].createElement("svg", _extends({
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ width: size,
34
+ height: size,
35
+ viewBox: "0 0 24 24",
36
+ fill: color
37
+ }, otherProps, {
38
+ className: iconClassName,
39
+ style: _objectSpread(_objectSpread({}, style), spin ? {
40
+ animationDuration: '1s',
41
+ animationIterationCount: 'infinite',
42
+ animationName: 'loadingCircle',
43
+ animationTimingFunction: 'linear'
44
+ } : {})
45
+ }), /*#__PURE__*/_react["default"].createElement("path", {
46
+ d: "M21.2 9.4h-6v6h-6v6h12v-12z",
47
+ fill: "#1673F6"
48
+ }), /*#__PURE__*/_react["default"].createElement("rect", {
49
+ x: "3",
50
+ y: "3",
51
+ width: "6",
52
+ height: "6",
53
+ fill: "#B3CFF8"
54
+ }), /*#__PURE__*/_react["default"].createElement("rect", {
55
+ x: "6.4",
56
+ y: "6",
57
+ width: "7.2",
58
+ height: "7.2",
59
+ fill: "#1673F6"
60
+ })));
61
+ };
62
+ DIntegrationCl.propTypes = {
63
+ iconClassName: _propTypes["default"].string,
64
+ spin: _propTypes["default"].bool,
65
+ color: _propTypes["default"].string,
66
+ size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
67
+ };
68
+ DIntegrationCl.defaultProps = {
69
+ spin: false,
70
+ color: 'currentColor',
71
+ size: '1em'
72
+ };
73
+ var _default = DIntegrationCl;
74
+ exports["default"] = _default;
@@ -0,0 +1,80 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _propTypes = _interopRequireDefault(require("prop-types"));
9
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11
+ 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); }
12
+ 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; }
13
+ 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; }
14
+ 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; }
15
+ 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; }
16
+ 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; }
17
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
18
+ var DManageCl = function DManageCl(props) {
19
+ var color = props.color,
20
+ size = props.size,
21
+ spin = props.spin,
22
+ style = props.style,
23
+ className = props.className,
24
+ iconClassName = props.iconClassName,
25
+ otherProps = _objectWithoutProperties(props, _excluded);
26
+ return /*#__PURE__*/_react["default"].createElement("span", {
27
+ role: "img",
28
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
29
+ }, /*#__PURE__*/_react["default"].createElement("style", {
30
+ children: loadingCircleStyle
31
+ }), /*#__PURE__*/_react["default"].createElement("svg", _extends({
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ width: size,
34
+ height: size,
35
+ viewBox: "0 0 24 24",
36
+ fill: color
37
+ }, otherProps, {
38
+ className: iconClassName,
39
+ style: _objectSpread(_objectSpread({}, style), spin ? {
40
+ animationDuration: '1s',
41
+ animationIterationCount: 'infinite',
42
+ animationName: 'loadingCircle',
43
+ animationTimingFunction: 'linear'
44
+ } : {})
45
+ }), /*#__PURE__*/_react["default"].createElement("path", {
46
+ d: "M14 12.75V6L8 9v7.5l6-3.75z",
47
+ fill: "#B3CFF8"
48
+ }), /*#__PURE__*/_react["default"].createElement("path", {
49
+ d: "M2 12.75V5.982L8 9v7.5l-6-3.75z",
50
+ fill: "#1673F6",
51
+ opacity: ".6"
52
+ }), /*#__PURE__*/_react["default"].createElement("path", {
53
+ d: "M22 17.75V11l-6 3v7.5l6-3.75z",
54
+ fill: "#B3CFF8"
55
+ }), /*#__PURE__*/_react["default"].createElement("path", {
56
+ d: "M10.001 17.75v-6.768l6 3.018v7.5l-6-3.75z",
57
+ fill: "#1673F6",
58
+ opacity: ".6"
59
+ }), /*#__PURE__*/_react["default"].createElement("g", {
60
+ style: "mix-blend-mode:multiply",
61
+ fill: "#1673F6"
62
+ }, /*#__PURE__*/_react["default"].createElement("path", {
63
+ d: "M8 2.807L14 6 8 9.048 2 6l6-3.193z"
64
+ }), /*#__PURE__*/_react["default"].createElement("path", {
65
+ d: "M16 7.807L22 11l-6 3.047L10 11l6-3.193z"
66
+ }))));
67
+ };
68
+ DManageCl.propTypes = {
69
+ iconClassName: _propTypes["default"].string,
70
+ spin: _propTypes["default"].bool,
71
+ color: _propTypes["default"].string,
72
+ size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
73
+ };
74
+ DManageCl.defaultProps = {
75
+ spin: false,
76
+ color: 'currentColor',
77
+ size: '1em'
78
+ };
79
+ var _default = DManageCl;
80
+ exports["default"] = _default;