@tant/icons 1.20.34 → 1.20.36
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/index.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/lib/icons/Dashboard-Generate-cl.js +149 -0
- package/dist/lib/index.js +7 -0
- package/dist/tant-icons.cjs.js +2129 -1997
- package/dist/tant-icons.esm.js +2129 -1998
- 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;
|
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;
|
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"));
|