@tant/icons 1.20.35 → 1.20.43
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/Dashboard-Generate-cl.js +142 -0
- package/dist/es/icons/Planet-cl.js +49 -4
- package/dist/es/index.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/lib/icons/Dashboard-Generate-cl.js +149 -0
- package/dist/lib/icons/Planet-cl.js +49 -4
- package/dist/lib/index.js +7 -0
- package/dist/tant-icons.cjs.js +2178 -2001
- package/dist/tant-icons.esm.js +2178 -2002
- package/package.json +1 -1
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
3
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
6
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
7
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
8
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
9
|
+
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; }
|
|
10
|
+
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; }
|
|
11
|
+
import React from 'react';
|
|
12
|
+
import PropTypes from 'prop-types';
|
|
13
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
+
var DashboardGenerateCl = function DashboardGenerateCl(props) {
|
|
15
|
+
var color = props.color,
|
|
16
|
+
size = props.size,
|
|
17
|
+
spin = props.spin,
|
|
18
|
+
style = props.style,
|
|
19
|
+
className = props.className,
|
|
20
|
+
iconClassName = props.iconClassName,
|
|
21
|
+
testid = props.testid,
|
|
22
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
23
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
24
|
+
role: "img",
|
|
25
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
27
|
+
children: loadingCircleStyle
|
|
28
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: color
|
|
34
|
+
}, otherProps, {
|
|
35
|
+
className: iconClassName,
|
|
36
|
+
"data-testid": testid,
|
|
37
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
38
|
+
animationDuration: '1s',
|
|
39
|
+
animationIterationCount: 'infinite',
|
|
40
|
+
animationName: 'loadingCircle',
|
|
41
|
+
animationTimingFunction: 'linear'
|
|
42
|
+
} : {})
|
|
43
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
44
|
+
width: "24",
|
|
45
|
+
height: "24",
|
|
46
|
+
fill: "none",
|
|
47
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
48
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
49
|
+
fillRule: "evenodd",
|
|
50
|
+
clipRule: "evenodd",
|
|
51
|
+
d: "M10 16a1 1 0 011 1v4l-.005.102a1 1 0 01-.893.893L10 22H3l-.103-.005a1 1 0 01-.892-.893L2 21v-4a1 1 0 011-1h7zm-6.2 4.2h5.4v-2.4H3.8v2.4z",
|
|
52
|
+
fill: "url(#paint0_linear_10644_47)"
|
|
53
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
54
|
+
fillRule: "evenodd",
|
|
55
|
+
clipRule: "evenodd",
|
|
56
|
+
d: "M21 11.2a1 1 0 011 1V21a1 1 0 01-.898.995L21 22h-7l-.102-.005A1 1 0 0113 21v-8.8a1 1 0 011-1h7zm-6.2 9h5.4V13h-5.4v7.2z",
|
|
57
|
+
fill: "url(#paint1_linear_10644_47)"
|
|
58
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
59
|
+
fillRule: "evenodd",
|
|
60
|
+
clipRule: "evenodd",
|
|
61
|
+
d: "M10 2a1 1 0 011 1v10a1 1 0 01-.898.995L10 14H3l-.103-.005a1 1 0 01-.892-.893L2 13V3a1 1 0 011-1h7zM3.8 12.2h5.4V3.8H3.8v8.4z",
|
|
62
|
+
fill: "url(#paint2_linear_10644_47)"
|
|
63
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
64
|
+
fillRule: "evenodd",
|
|
65
|
+
clipRule: "evenodd",
|
|
66
|
+
d: "M21 2a1 1 0 011 1v5a1 1 0 01-1 1h-7a1 1 0 01-1-1V3a1 1 0 011-1h7z",
|
|
67
|
+
fill: "url(#paint3_linear_10644_47)"
|
|
68
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
69
|
+
id: "paint0_linear_10644_47",
|
|
70
|
+
x1: "2",
|
|
71
|
+
y1: "12",
|
|
72
|
+
x2: "22.568",
|
|
73
|
+
y2: "12",
|
|
74
|
+
gradientUnits: "userSpaceOnUse"
|
|
75
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
76
|
+
stopColor: "#1E76F0"
|
|
77
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
78
|
+
offset: ".355",
|
|
79
|
+
stopColor: "#9747FF"
|
|
80
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
81
|
+
offset: ".965",
|
|
82
|
+
stopColor: "#1E76F0"
|
|
83
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
84
|
+
id: "paint1_linear_10644_47",
|
|
85
|
+
x1: "2",
|
|
86
|
+
y1: "12",
|
|
87
|
+
x2: "22.568",
|
|
88
|
+
y2: "12",
|
|
89
|
+
gradientUnits: "userSpaceOnUse"
|
|
90
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
91
|
+
stopColor: "#1E76F0"
|
|
92
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
93
|
+
offset: ".355",
|
|
94
|
+
stopColor: "#9747FF"
|
|
95
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
96
|
+
offset: ".965",
|
|
97
|
+
stopColor: "#1E76F0"
|
|
98
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
99
|
+
id: "paint2_linear_10644_47",
|
|
100
|
+
x1: "2",
|
|
101
|
+
y1: "12",
|
|
102
|
+
x2: "22.568",
|
|
103
|
+
y2: "12",
|
|
104
|
+
gradientUnits: "userSpaceOnUse"
|
|
105
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
106
|
+
stopColor: "#1E76F0"
|
|
107
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
108
|
+
offset: ".355",
|
|
109
|
+
stopColor: "#9747FF"
|
|
110
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
111
|
+
offset: ".965",
|
|
112
|
+
stopColor: "#1E76F0"
|
|
113
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
114
|
+
id: "paint3_linear_10644_47",
|
|
115
|
+
x1: "2",
|
|
116
|
+
y1: "12",
|
|
117
|
+
x2: "22.568",
|
|
118
|
+
y2: "12",
|
|
119
|
+
gradientUnits: "userSpaceOnUse"
|
|
120
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
121
|
+
stopColor: "#1E76F0"
|
|
122
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
123
|
+
offset: ".355",
|
|
124
|
+
stopColor: "#9747FF"
|
|
125
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
126
|
+
offset: ".965",
|
|
127
|
+
stopColor: "#1E76F0"
|
|
128
|
+
}))))));
|
|
129
|
+
};
|
|
130
|
+
DashboardGenerateCl.propTypes = {
|
|
131
|
+
iconClassName: PropTypes.string,
|
|
132
|
+
spin: PropTypes.bool,
|
|
133
|
+
color: PropTypes.string,
|
|
134
|
+
testid: PropTypes.string,
|
|
135
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
136
|
+
};
|
|
137
|
+
DashboardGenerateCl.defaultProps = {
|
|
138
|
+
spin: false,
|
|
139
|
+
color: 'currentColor',
|
|
140
|
+
size: '1em'
|
|
141
|
+
};
|
|
142
|
+
export default DashboardGenerateCl;
|
|
@@ -49,14 +49,59 @@ var PlanetCl = function PlanetCl(props) {
|
|
|
49
49
|
fillRule: "evenodd",
|
|
50
50
|
clipRule: "evenodd",
|
|
51
51
|
d: "M12 5c1.93 0 3.677.781 4.943 2.044a.9.9 0 01.296-.09c1.275-.155 2.433-.169 3.347.003.85.16 1.816.548 2.154 1.484.291.81-.046 1.605-.471 2.205a5.97 5.97 0 01-.617.725 4.013 4.013 0 00-1.103-1.453c.097-.109.181-.213.251-.312.142-.2.207-.35.234-.448a.356.356 0 00.014-.09l-.002-.012v-.003s0-.003-.002-.005a.485.485 0 00-.12-.099c-.127-.077-.341-.161-.67-.223-.525-.1-1.234-.122-2.097-.055.06.113.12.226.175.343a3.99 3.99 0 00-1.88.297 5.2 5.2 0 10-8.266 6.223c1.439-.26 3.077-.698 4.786-1.314a33.86 33.86 0 001.107-.423c.122.607.383 1.165.748 1.638a34.068 34.068 0 01-4.525 1.48 5.191 5.191 0 005.037-.93 3.99 3.99 0 001.68.893A6.979 6.979 0 0112 19a6.97 6.97 0 01-4.395-1.554c-.488.068-.953.118-1.392.144-1.012.06-1.937.012-2.678-.187-.711-.19-1.479-.587-1.77-1.396-.322-.892.115-1.764.62-2.406.538-.684 1.355-1.376 2.338-2.037a.895.895 0 01.302-.13A6.999 6.999 0 0112 5zm-6.846 8.464c-.61.456-1.063.88-1.354 1.25-.186.237-.281.42-.321.544a.43.43 0 00-.023.117l.001.017.002.006a.332.332 0 00.075.071c.083.06.23.132.467.196.48.129 1.188.184 2.105.129l.012-.001a6.957 6.957 0 01-.964-2.33z",
|
|
52
|
-
fill: "#
|
|
52
|
+
fill: "url(#paint0_linear_10623_66)"
|
|
53
53
|
}), /*#__PURE__*/React.createElement("path", {
|
|
54
54
|
d: "M18 10a3 3 0 110 6 3 3 0 010-6z",
|
|
55
|
-
fill: "#
|
|
55
|
+
fill: "url(#paint1_linear_10623_66)"
|
|
56
56
|
}), /*#__PURE__*/React.createElement("path", {
|
|
57
57
|
d: "M9.612 8.81c.89-.447 1.855-.325 2.156.273l.047.115c.191.588-.28 1.359-1.114 1.779l-.167.076c-.841.353-1.708.211-1.99-.349-.3-.598.178-1.446 1.068-1.893z",
|
|
58
|
-
fill: "#
|
|
59
|
-
})
|
|
58
|
+
fill: "url(#paint2_linear_10623_66)"
|
|
59
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
60
|
+
id: "paint0_linear_10623_66",
|
|
61
|
+
x1: "1.654",
|
|
62
|
+
y1: "12",
|
|
63
|
+
x2: "23.451",
|
|
64
|
+
y2: "12",
|
|
65
|
+
gradientUnits: "userSpaceOnUse"
|
|
66
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
67
|
+
stopColor: "#1E76F0"
|
|
68
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
69
|
+
offset: ".355",
|
|
70
|
+
stopColor: "#9747FF"
|
|
71
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
72
|
+
offset: ".965",
|
|
73
|
+
stopColor: "#1E76F0"
|
|
74
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
75
|
+
id: "paint1_linear_10623_66",
|
|
76
|
+
x1: "1.654",
|
|
77
|
+
y1: "12",
|
|
78
|
+
x2: "23.451",
|
|
79
|
+
y2: "12",
|
|
80
|
+
gradientUnits: "userSpaceOnUse"
|
|
81
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
82
|
+
stopColor: "#1E76F0"
|
|
83
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
84
|
+
offset: ".355",
|
|
85
|
+
stopColor: "#9747FF"
|
|
86
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
87
|
+
offset: ".965",
|
|
88
|
+
stopColor: "#1E76F0"
|
|
89
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
90
|
+
id: "paint2_linear_10623_66",
|
|
91
|
+
x1: "1.654",
|
|
92
|
+
y1: "12",
|
|
93
|
+
x2: "23.451",
|
|
94
|
+
y2: "12",
|
|
95
|
+
gradientUnits: "userSpaceOnUse"
|
|
96
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
97
|
+
stopColor: "#1E76F0"
|
|
98
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
99
|
+
offset: ".355",
|
|
100
|
+
stopColor: "#9747FF"
|
|
101
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
102
|
+
offset: ".965",
|
|
103
|
+
stopColor: "#1E76F0"
|
|
104
|
+
}))))));
|
|
60
105
|
};
|
|
61
106
|
PlanetCl.propTypes = {
|
|
62
107
|
iconClassName: PropTypes.string,
|
package/dist/es/index.js
CHANGED
|
@@ -35,6 +35,7 @@ export { default as TaDashboardReadingCl } from './icons/Dashboard-Reading-cl';
|
|
|
35
35
|
export { default as TaReportReadingCl } from './icons/Report-Reading-cl';
|
|
36
36
|
export { default as TaCopywritingAiCl } from './icons/Copywriting-AI-cl';
|
|
37
37
|
export { default as TaDashboardAiCl } from './icons/Dashboard-AI-cl';
|
|
38
|
+
export { default as TaDashboardGenerateCl } from './icons/Dashboard-Generate-cl';
|
|
38
39
|
export { default as TaPlanetCl } from './icons/Planet-cl';
|
|
39
40
|
export { default as TaFlagCn } from './icons/flag-cn';
|
|
40
41
|
export { default as TaFlagUs } from './icons/flag-us';
|
package/dist/index.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export const TaDashboardReadingCl: Icon;
|
|
|
47
47
|
export const TaReportReadingCl: Icon;
|
|
48
48
|
export const TaCopywritingAiCl: Icon;
|
|
49
49
|
export const TaDashboardAiCl: Icon;
|
|
50
|
+
export const TaDashboardGenerateCl: Icon;
|
|
50
51
|
export const TaPlanetCl: Icon;
|
|
51
52
|
export const TaFlagCn: Icon;
|
|
52
53
|
export const TaFlagUs: Icon;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports["default"] = void 0;
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
10
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
13
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
14
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
15
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
16
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
17
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
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
|
+
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
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
+
var DashboardGenerateCl = function DashboardGenerateCl(props) {
|
|
22
|
+
var color = props.color,
|
|
23
|
+
size = props.size,
|
|
24
|
+
spin = props.spin,
|
|
25
|
+
style = props.style,
|
|
26
|
+
className = props.className,
|
|
27
|
+
iconClassName = props.iconClassName,
|
|
28
|
+
testid = props.testid,
|
|
29
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
30
|
+
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
31
|
+
role: "img",
|
|
32
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33
|
+
}, /*#__PURE__*/_react["default"].createElement("style", {
|
|
34
|
+
children: loadingCircleStyle
|
|
35
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", _extends({
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
width: size,
|
|
38
|
+
height: size,
|
|
39
|
+
viewBox: "0 0 24 24",
|
|
40
|
+
fill: color
|
|
41
|
+
}, otherProps, {
|
|
42
|
+
className: iconClassName,
|
|
43
|
+
"data-testid": testid,
|
|
44
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
45
|
+
animationDuration: '1s',
|
|
46
|
+
animationIterationCount: 'infinite',
|
|
47
|
+
animationName: 'loadingCircle',
|
|
48
|
+
animationTimingFunction: 'linear'
|
|
49
|
+
} : {})
|
|
50
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
51
|
+
width: "24",
|
|
52
|
+
height: "24",
|
|
53
|
+
fill: "none",
|
|
54
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
55
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
56
|
+
fillRule: "evenodd",
|
|
57
|
+
clipRule: "evenodd",
|
|
58
|
+
d: "M10 16a1 1 0 011 1v4l-.005.102a1 1 0 01-.893.893L10 22H3l-.103-.005a1 1 0 01-.892-.893L2 21v-4a1 1 0 011-1h7zm-6.2 4.2h5.4v-2.4H3.8v2.4z",
|
|
59
|
+
fill: "url(#paint0_linear_10644_47)"
|
|
60
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
61
|
+
fillRule: "evenodd",
|
|
62
|
+
clipRule: "evenodd",
|
|
63
|
+
d: "M21 11.2a1 1 0 011 1V21a1 1 0 01-.898.995L21 22h-7l-.102-.005A1 1 0 0113 21v-8.8a1 1 0 011-1h7zm-6.2 9h5.4V13h-5.4v7.2z",
|
|
64
|
+
fill: "url(#paint1_linear_10644_47)"
|
|
65
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
66
|
+
fillRule: "evenodd",
|
|
67
|
+
clipRule: "evenodd",
|
|
68
|
+
d: "M10 2a1 1 0 011 1v10a1 1 0 01-.898.995L10 14H3l-.103-.005a1 1 0 01-.892-.893L2 13V3a1 1 0 011-1h7zM3.8 12.2h5.4V3.8H3.8v8.4z",
|
|
69
|
+
fill: "url(#paint2_linear_10644_47)"
|
|
70
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
71
|
+
fillRule: "evenodd",
|
|
72
|
+
clipRule: "evenodd",
|
|
73
|
+
d: "M21 2a1 1 0 011 1v5a1 1 0 01-1 1h-7a1 1 0 01-1-1V3a1 1 0 011-1h7z",
|
|
74
|
+
fill: "url(#paint3_linear_10644_47)"
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
76
|
+
id: "paint0_linear_10644_47",
|
|
77
|
+
x1: "2",
|
|
78
|
+
y1: "12",
|
|
79
|
+
x2: "22.568",
|
|
80
|
+
y2: "12",
|
|
81
|
+
gradientUnits: "userSpaceOnUse"
|
|
82
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
83
|
+
stopColor: "#1E76F0"
|
|
84
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
85
|
+
offset: ".355",
|
|
86
|
+
stopColor: "#9747FF"
|
|
87
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
88
|
+
offset: ".965",
|
|
89
|
+
stopColor: "#1E76F0"
|
|
90
|
+
})), /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
91
|
+
id: "paint1_linear_10644_47",
|
|
92
|
+
x1: "2",
|
|
93
|
+
y1: "12",
|
|
94
|
+
x2: "22.568",
|
|
95
|
+
y2: "12",
|
|
96
|
+
gradientUnits: "userSpaceOnUse"
|
|
97
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
98
|
+
stopColor: "#1E76F0"
|
|
99
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
100
|
+
offset: ".355",
|
|
101
|
+
stopColor: "#9747FF"
|
|
102
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
103
|
+
offset: ".965",
|
|
104
|
+
stopColor: "#1E76F0"
|
|
105
|
+
})), /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
106
|
+
id: "paint2_linear_10644_47",
|
|
107
|
+
x1: "2",
|
|
108
|
+
y1: "12",
|
|
109
|
+
x2: "22.568",
|
|
110
|
+
y2: "12",
|
|
111
|
+
gradientUnits: "userSpaceOnUse"
|
|
112
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
113
|
+
stopColor: "#1E76F0"
|
|
114
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
115
|
+
offset: ".355",
|
|
116
|
+
stopColor: "#9747FF"
|
|
117
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
118
|
+
offset: ".965",
|
|
119
|
+
stopColor: "#1E76F0"
|
|
120
|
+
})), /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
121
|
+
id: "paint3_linear_10644_47",
|
|
122
|
+
x1: "2",
|
|
123
|
+
y1: "12",
|
|
124
|
+
x2: "22.568",
|
|
125
|
+
y2: "12",
|
|
126
|
+
gradientUnits: "userSpaceOnUse"
|
|
127
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
128
|
+
stopColor: "#1E76F0"
|
|
129
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
130
|
+
offset: ".355",
|
|
131
|
+
stopColor: "#9747FF"
|
|
132
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
133
|
+
offset: ".965",
|
|
134
|
+
stopColor: "#1E76F0"
|
|
135
|
+
}))))));
|
|
136
|
+
};
|
|
137
|
+
DashboardGenerateCl.propTypes = {
|
|
138
|
+
iconClassName: _propTypes["default"].string,
|
|
139
|
+
spin: _propTypes["default"].bool,
|
|
140
|
+
color: _propTypes["default"].string,
|
|
141
|
+
testid: _propTypes["default"].string,
|
|
142
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
143
|
+
};
|
|
144
|
+
DashboardGenerateCl.defaultProps = {
|
|
145
|
+
spin: false,
|
|
146
|
+
color: 'currentColor',
|
|
147
|
+
size: '1em'
|
|
148
|
+
};
|
|
149
|
+
var _default = exports["default"] = DashboardGenerateCl;
|
|
@@ -56,14 +56,59 @@ var PlanetCl = function PlanetCl(props) {
|
|
|
56
56
|
fillRule: "evenodd",
|
|
57
57
|
clipRule: "evenodd",
|
|
58
58
|
d: "M12 5c1.93 0 3.677.781 4.943 2.044a.9.9 0 01.296-.09c1.275-.155 2.433-.169 3.347.003.85.16 1.816.548 2.154 1.484.291.81-.046 1.605-.471 2.205a5.97 5.97 0 01-.617.725 4.013 4.013 0 00-1.103-1.453c.097-.109.181-.213.251-.312.142-.2.207-.35.234-.448a.356.356 0 00.014-.09l-.002-.012v-.003s0-.003-.002-.005a.485.485 0 00-.12-.099c-.127-.077-.341-.161-.67-.223-.525-.1-1.234-.122-2.097-.055.06.113.12.226.175.343a3.99 3.99 0 00-1.88.297 5.2 5.2 0 10-8.266 6.223c1.439-.26 3.077-.698 4.786-1.314a33.86 33.86 0 001.107-.423c.122.607.383 1.165.748 1.638a34.068 34.068 0 01-4.525 1.48 5.191 5.191 0 005.037-.93 3.99 3.99 0 001.68.893A6.979 6.979 0 0112 19a6.97 6.97 0 01-4.395-1.554c-.488.068-.953.118-1.392.144-1.012.06-1.937.012-2.678-.187-.711-.19-1.479-.587-1.77-1.396-.322-.892.115-1.764.62-2.406.538-.684 1.355-1.376 2.338-2.037a.895.895 0 01.302-.13A6.999 6.999 0 0112 5zm-6.846 8.464c-.61.456-1.063.88-1.354 1.25-.186.237-.281.42-.321.544a.43.43 0 00-.023.117l.001.017.002.006a.332.332 0 00.075.071c.083.06.23.132.467.196.48.129 1.188.184 2.105.129l.012-.001a6.957 6.957 0 01-.964-2.33z",
|
|
59
|
-
fill: "#
|
|
59
|
+
fill: "url(#paint0_linear_10623_66)"
|
|
60
60
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
61
61
|
d: "M18 10a3 3 0 110 6 3 3 0 010-6z",
|
|
62
|
-
fill: "#
|
|
62
|
+
fill: "url(#paint1_linear_10623_66)"
|
|
63
63
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
64
64
|
d: "M9.612 8.81c.89-.447 1.855-.325 2.156.273l.047.115c.191.588-.28 1.359-1.114 1.779l-.167.076c-.841.353-1.708.211-1.99-.349-.3-.598.178-1.446 1.068-1.893z",
|
|
65
|
-
fill: "#
|
|
66
|
-
})
|
|
65
|
+
fill: "url(#paint2_linear_10623_66)"
|
|
66
|
+
}), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
67
|
+
id: "paint0_linear_10623_66",
|
|
68
|
+
x1: "1.654",
|
|
69
|
+
y1: "12",
|
|
70
|
+
x2: "23.451",
|
|
71
|
+
y2: "12",
|
|
72
|
+
gradientUnits: "userSpaceOnUse"
|
|
73
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
74
|
+
stopColor: "#1E76F0"
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
76
|
+
offset: ".355",
|
|
77
|
+
stopColor: "#9747FF"
|
|
78
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
79
|
+
offset: ".965",
|
|
80
|
+
stopColor: "#1E76F0"
|
|
81
|
+
})), /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
82
|
+
id: "paint1_linear_10623_66",
|
|
83
|
+
x1: "1.654",
|
|
84
|
+
y1: "12",
|
|
85
|
+
x2: "23.451",
|
|
86
|
+
y2: "12",
|
|
87
|
+
gradientUnits: "userSpaceOnUse"
|
|
88
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
89
|
+
stopColor: "#1E76F0"
|
|
90
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
91
|
+
offset: ".355",
|
|
92
|
+
stopColor: "#9747FF"
|
|
93
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
94
|
+
offset: ".965",
|
|
95
|
+
stopColor: "#1E76F0"
|
|
96
|
+
})), /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
97
|
+
id: "paint2_linear_10623_66",
|
|
98
|
+
x1: "1.654",
|
|
99
|
+
y1: "12",
|
|
100
|
+
x2: "23.451",
|
|
101
|
+
y2: "12",
|
|
102
|
+
gradientUnits: "userSpaceOnUse"
|
|
103
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
104
|
+
stopColor: "#1E76F0"
|
|
105
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
106
|
+
offset: ".355",
|
|
107
|
+
stopColor: "#9747FF"
|
|
108
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
109
|
+
offset: ".965",
|
|
110
|
+
stopColor: "#1E76F0"
|
|
111
|
+
}))))));
|
|
67
112
|
};
|
|
68
113
|
PlanetCl.propTypes = {
|
|
69
114
|
iconClassName: _propTypes["default"].string,
|
package/dist/lib/index.js
CHANGED
|
@@ -723,6 +723,12 @@ Object.defineProperty(exports, "TaDashboardCl", {
|
|
|
723
723
|
return _dashboardCl["default"];
|
|
724
724
|
}
|
|
725
725
|
});
|
|
726
|
+
Object.defineProperty(exports, "TaDashboardGenerateCl", {
|
|
727
|
+
enumerable: true,
|
|
728
|
+
get: function get() {
|
|
729
|
+
return _DashboardGenerateCl["default"];
|
|
730
|
+
}
|
|
731
|
+
});
|
|
726
732
|
Object.defineProperty(exports, "TaDashboardMgr", {
|
|
727
733
|
enumerable: true,
|
|
728
734
|
get: function get() {
|
|
@@ -3262,6 +3268,7 @@ var _DashboardReadingCl = _interopRequireDefault(require("./icons/Dashboard-Read
|
|
|
3262
3268
|
var _ReportReadingCl = _interopRequireDefault(require("./icons/Report-Reading-cl"));
|
|
3263
3269
|
var _CopywritingAICl = _interopRequireDefault(require("./icons/Copywriting-AI-cl"));
|
|
3264
3270
|
var _DashboardAICl = _interopRequireDefault(require("./icons/Dashboard-AI-cl"));
|
|
3271
|
+
var _DashboardGenerateCl = _interopRequireDefault(require("./icons/Dashboard-Generate-cl"));
|
|
3265
3272
|
var _PlanetCl = _interopRequireDefault(require("./icons/Planet-cl"));
|
|
3266
3273
|
var _flagCn = _interopRequireDefault(require("./icons/flag-cn"));
|
|
3267
3274
|
var _flagUs = _interopRequireDefault(require("./icons/flag-us"));
|