@tant/icons 1.21.90 → 1.21.92
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/aisql-cl.js +117 -0
- package/dist/es/icons/create.js +63 -0
- package/dist/es/icons/{magic.js → magic-cl.js} +15 -8
- package/dist/es/index.js +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/lib/icons/aisql-cl.js +124 -0
- package/dist/lib/icons/create.js +70 -0
- package/dist/lib/icons/{magic.js → magic-cl.js} +15 -8
- package/dist/lib/index.js +17 -3
- package/dist/tant-icons.cjs.js +2410 -2243
- package/dist/tant-icons.esm.js +2408 -2243
- package/package.json +1 -1
|
@@ -0,0 +1,117 @@
|
|
|
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 AisqlCl = function AisqlCl(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
|
+
d: "M18.3 15.15l-3.606 3.677-.902-.92 2.705-2.757-2.705-2.758.902-.919L18.3 15.15zm-13.497 0l2.705 2.758-.902.919L3 15.15l3.606-3.677.902.92-2.705 2.757zM9.24 21H7.883L12.06 9.3h1.357L9.24 21z",
|
|
50
|
+
fill: "url(#paint0_linear_11723_48)"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
52
|
+
d: "M16.944 8.495l.289-.658a2.542 2.542 0 011.297-1.308l.795-.351a.324.324 0 000-.59l-.77-.34a2.543 2.543 0 01-1.316-1.351l-.293-.702a.312.312 0 00-.578 0l-.293.702a2.543 2.543 0 01-1.315 1.351l-.77.34a.324.324 0 000 .59l.794.351c.578.255 1.04.722 1.297 1.308l.29.658a.312.312 0 00.573 0zm2.892 1.603l.081-.185c.145-.33.406-.594.731-.737l.25-.111a.173.173 0 000-.316l-.236-.104c-.334-.148-.6-.42-.741-.762l-.084-.2a.167.167 0 00-.31 0l-.083.2a1.434 1.434 0 01-.742.762l-.236.104a.173.173 0 000 .316l.25.11c.325.144.586.408.731.738l.081.185c.06.136.248.136.308 0z",
|
|
53
|
+
fill: "url(#paint1_linear_11723_48)"
|
|
54
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
55
|
+
d: "M16.944 8.495l.289-.658a2.542 2.542 0 011.297-1.308l.795-.351a.324.324 0 000-.59l-.77-.34a2.543 2.543 0 01-1.316-1.351l-.293-.702a.312.312 0 00-.578 0l-.293.702a2.543 2.543 0 01-1.315 1.351l-.77.34a.324.324 0 000 .59l.794.351c.578.255 1.04.722 1.297 1.308l.29.658a.312.312 0 00.573 0zm2.892 1.603l.081-.185c.145-.33.406-.594.731-.737l.25-.111a.173.173 0 000-.316l-.236-.104c-.334-.148-.6-.42-.741-.762l-.084-.2a.167.167 0 00-.31 0l-.083.2a1.434 1.434 0 01-.742.762l-.236.104a.173.173 0 000 .316l.25.11c.325.144.586.408.731.738l.081.185c.06.136.248.136.308 0z",
|
|
56
|
+
fill: "url(#paint2_linear_11723_48)",
|
|
57
|
+
fillOpacity: ".2"
|
|
58
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
59
|
+
id: "paint0_linear_11723_48",
|
|
60
|
+
x1: "3",
|
|
61
|
+
y1: "15.15",
|
|
62
|
+
x2: "18.735",
|
|
63
|
+
y2: "15.15",
|
|
64
|
+
gradientUnits: "userSpaceOnUse"
|
|
65
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
66
|
+
stopColor: "#1E76F0"
|
|
67
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
68
|
+
offset: ".355",
|
|
69
|
+
stopColor: "#9747FF"
|
|
70
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
71
|
+
offset: ".965",
|
|
72
|
+
stopColor: "#1E76F0"
|
|
73
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
74
|
+
id: "paint1_linear_11723_48",
|
|
75
|
+
x1: "13.796",
|
|
76
|
+
y1: "5.4",
|
|
77
|
+
x2: "21.204",
|
|
78
|
+
y2: "6.6",
|
|
79
|
+
gradientUnits: "userSpaceOnUse"
|
|
80
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
81
|
+
stopColor: "#1E76F0"
|
|
82
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
83
|
+
offset: ".355",
|
|
84
|
+
stopColor: "#9746FF"
|
|
85
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
86
|
+
offset: ".628",
|
|
87
|
+
stopColor: "#7053FF"
|
|
88
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
89
|
+
offset: ".965",
|
|
90
|
+
stopColor: "#1E76F0"
|
|
91
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
92
|
+
id: "paint2_linear_11723_48",
|
|
93
|
+
x1: "18.773",
|
|
94
|
+
y1: "3",
|
|
95
|
+
x2: "16",
|
|
96
|
+
y2: "10",
|
|
97
|
+
gradientUnits: "userSpaceOnUse"
|
|
98
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
99
|
+
stopColor: "#D8BAFF"
|
|
100
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
101
|
+
offset: "1",
|
|
102
|
+
stopColor: "#2B71EE"
|
|
103
|
+
}))))));
|
|
104
|
+
};
|
|
105
|
+
AisqlCl.propTypes = {
|
|
106
|
+
iconClassName: PropTypes.string,
|
|
107
|
+
spin: PropTypes.bool,
|
|
108
|
+
color: PropTypes.string,
|
|
109
|
+
testid: PropTypes.string,
|
|
110
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
111
|
+
};
|
|
112
|
+
AisqlCl.defaultProps = {
|
|
113
|
+
spin: false,
|
|
114
|
+
color: 'currentColor',
|
|
115
|
+
size: '1em'
|
|
116
|
+
};
|
|
117
|
+
export default AisqlCl;
|
|
@@ -0,0 +1,63 @@
|
|
|
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 Create = function Create(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
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
47
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
d: "M16.436 3.212a1 1 0 011.414 0l2.828 2.829a1 1 0 010 1.414L7.242 20.89H3v-4.242L16.436 3.212zM5 17.476v1.414h1.414l9.314-9.314-1.415-1.414L5 17.476zM4.53 1.319a.507.507 0 01.94 0l.254.612a4.367 4.367 0 002.25 2.326l.718.32a.53.53 0 010 .962l-.76.338a4.363 4.363 0 00-2.218 2.251l-.247.565a.506.506 0 01-.934 0l-.247-.565a4.363 4.363 0 00-2.219-2.251l-.76-.338a.53.53 0 010-.963l.718-.32a4.366 4.366 0 002.251-2.325l.253-.612zm11.198 5.43l1.415 1.413 1.414-1.414-1.414-1.414-1.415 1.414z"
|
|
49
|
+
}))));
|
|
50
|
+
};
|
|
51
|
+
Create.propTypes = {
|
|
52
|
+
iconClassName: PropTypes.string,
|
|
53
|
+
spin: PropTypes.bool,
|
|
54
|
+
color: PropTypes.string,
|
|
55
|
+
testid: PropTypes.string,
|
|
56
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
57
|
+
};
|
|
58
|
+
Create.defaultProps = {
|
|
59
|
+
spin: false,
|
|
60
|
+
color: 'currentColor',
|
|
61
|
+
size: '1em'
|
|
62
|
+
};
|
|
63
|
+
export default Create;
|
|
@@ -11,7 +11,7 @@ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t =
|
|
|
11
11
|
import React from 'react';
|
|
12
12
|
import PropTypes from 'prop-types';
|
|
13
13
|
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
-
var
|
|
14
|
+
var MagicCl = function MagicCl(props) {
|
|
15
15
|
var color = props.color,
|
|
16
16
|
size = props.size,
|
|
17
17
|
spin = props.spin,
|
|
@@ -43,33 +43,40 @@ var Magic = function Magic(props) {
|
|
|
43
43
|
}), /*#__PURE__*/React.createElement("svg", {
|
|
44
44
|
width: "24",
|
|
45
45
|
height: "24",
|
|
46
|
+
fill: "none",
|
|
46
47
|
xmlns: "http://www.w3.org/2000/svg"
|
|
47
48
|
}, /*#__PURE__*/React.createElement("path", {
|
|
48
|
-
d: "M5.495 6.785l3.45 1.436-1.258-3.444 1.257-3.444-3.45 1.048-3.449-1.048 1.337 3.444-1.337 3.444 3.45-1.436zm14.62-1.493l2.218.923L21.525 4l.808-2.214-2.217.674-2.218-.674.86 2.214-.86 2.214 2.218-.923zM18.969 18.56l-1.79-.745-1.79.745.694-1.787-.694-1.788 1.79.544 1.79-.544-.652 1.788.652 1.787zM15.167 6.147a1.003 1.003 0 00-1.442 0L1.64 18.213a1 1 0 000 1.44l2.
|
|
49
|
+
d: "M5.495 6.785l3.45 1.436-1.258-3.444 1.257-3.444-3.45 1.048-3.449-1.048 1.337 3.444-1.337 3.444 3.45-1.436zm14.62-1.493l2.218.923L21.525 4l.808-2.214-2.217.674-2.218-.674.86 2.214-.86 2.214 2.218-.923zM18.969 18.56l-1.79-.745-1.79.745.694-1.787-.694-1.788 1.79.544 1.79-.544-.652 1.788.652 1.787zM15.167 6.147a1.003 1.003 0 00-1.442 0L1.64 18.213a1 1 0 000 1.44l2.375 2.37a1 1 0 001.447 0l12.08-12.06a.997.997 0 000-1.445l-2.374-2.371zm-3.303 3.51l2.475-2.478 2.173 2.165-2.48 2.476-2.168-2.164z",
|
|
50
|
+
fill: "url(#paint0_linear_11657_77)"
|
|
49
51
|
}), /*#__PURE__*/React.createElement("rect", {
|
|
50
52
|
x: "14.667",
|
|
51
53
|
y: "14.667",
|
|
52
54
|
width: "5.333",
|
|
53
|
-
height: "5.333"
|
|
55
|
+
height: "5.333",
|
|
56
|
+
fill: "#fff"
|
|
54
57
|
}), /*#__PURE__*/React.createElement("rect", {
|
|
55
58
|
x: "14.667",
|
|
56
59
|
y: "14.667",
|
|
57
60
|
width: "2.667",
|
|
58
|
-
height: "2.667"
|
|
61
|
+
height: "2.667",
|
|
62
|
+
fill: "#5658FF"
|
|
59
63
|
}), /*#__PURE__*/React.createElement("path", {
|
|
60
64
|
d: "M17.333 14.667H20v2.666h-2.667v-2.666z",
|
|
65
|
+
fill: "#5658FF",
|
|
61
66
|
fillOpacity: ".3"
|
|
62
67
|
}), /*#__PURE__*/React.createElement("rect", {
|
|
63
68
|
x: "14.667",
|
|
64
69
|
y: "17.333",
|
|
65
70
|
width: "2.667",
|
|
66
71
|
height: "2.667",
|
|
72
|
+
fill: "#5658FF",
|
|
67
73
|
fillOpacity: ".3"
|
|
68
74
|
}), /*#__PURE__*/React.createElement("rect", {
|
|
69
75
|
x: "17.333",
|
|
70
76
|
y: "17.333",
|
|
71
77
|
width: "2.667",
|
|
72
|
-
height: "2.667"
|
|
78
|
+
height: "2.667",
|
|
79
|
+
fill: "#5658FF"
|
|
73
80
|
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
74
81
|
id: "paint0_linear_11657_77",
|
|
75
82
|
x1: "11.833",
|
|
@@ -84,16 +91,16 @@ var Magic = function Magic(props) {
|
|
|
84
91
|
stopColor: "#5240FF"
|
|
85
92
|
}))))));
|
|
86
93
|
};
|
|
87
|
-
|
|
94
|
+
MagicCl.propTypes = {
|
|
88
95
|
iconClassName: PropTypes.string,
|
|
89
96
|
spin: PropTypes.bool,
|
|
90
97
|
color: PropTypes.string,
|
|
91
98
|
testid: PropTypes.string,
|
|
92
99
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
93
100
|
};
|
|
94
|
-
|
|
101
|
+
MagicCl.defaultProps = {
|
|
95
102
|
spin: false,
|
|
96
103
|
color: 'currentColor',
|
|
97
104
|
size: '1em'
|
|
98
105
|
};
|
|
99
|
-
export default
|
|
106
|
+
export default MagicCl;
|
package/dist/es/index.js
CHANGED
|
@@ -29,7 +29,6 @@ export { default as TaGroupCl } from './icons/group-cl';
|
|
|
29
29
|
export { default as TaVPropCl } from './icons/v-prop-cl';
|
|
30
30
|
export { default as TaBiVendorFillCl } from './icons/bi-vendor-fill-cl';
|
|
31
31
|
export { default as TaCollectCl } from './icons/collect-cl';
|
|
32
|
-
export { default as TaMagic } from './icons/magic';
|
|
33
32
|
export { default as TaDataOpsAiCl } from './icons/DataOps-AI-cl';
|
|
34
33
|
export { default as TaEngageAiCl } from './icons/Engage-AI-cl';
|
|
35
34
|
export { default as TaDashboardReadingCl } from './icons/Dashboard-Reading-cl';
|
|
@@ -38,6 +37,8 @@ export { default as TaCopywritingAiCl } from './icons/Copywriting-AI-cl';
|
|
|
38
37
|
export { default as TaDashboardAiCl } from './icons/Dashboard-AI-cl';
|
|
39
38
|
export { default as TaDashboardGenerateCl } from './icons/Dashboard-Generate-cl';
|
|
40
39
|
export { default as TaPlanetCl } from './icons/Planet-cl';
|
|
40
|
+
export { default as TaAisqlCl } from './icons/aisql-cl';
|
|
41
|
+
export { default as TaMagicCl } from './icons/magic-cl';
|
|
41
42
|
export { default as TaFlagCn } from './icons/flag-cn';
|
|
42
43
|
export { default as TaFlagUs } from './icons/flag-us';
|
|
43
44
|
export { default as TaFlagJp } from './icons/flag-jp';
|
|
@@ -486,6 +487,7 @@ export { default as TaPaste } from './icons/paste';
|
|
|
486
487
|
export { default as TaPaste2 } from './icons/paste-2';
|
|
487
488
|
export { default as TaOpen } from './icons/open';
|
|
488
489
|
export { default as TaSnapshot } from './icons/snapshot';
|
|
490
|
+
export { default as TaCreate } from './icons/create';
|
|
489
491
|
export { default as TaInfo } from './icons/info';
|
|
490
492
|
export { default as TaInfoFill } from './icons/info-fill';
|
|
491
493
|
export { default as TaHelp } from './icons/help';
|
package/dist/index.d.ts
CHANGED
|
@@ -41,7 +41,6 @@ export const TaGroupCl: Icon;
|
|
|
41
41
|
export const TaVPropCl: Icon;
|
|
42
42
|
export const TaBiVendorFillCl: Icon;
|
|
43
43
|
export const TaCollectCl: Icon;
|
|
44
|
-
export const TaMagic: Icon;
|
|
45
44
|
export const TaDataOpsAiCl: Icon;
|
|
46
45
|
export const TaEngageAiCl: Icon;
|
|
47
46
|
export const TaDashboardReadingCl: Icon;
|
|
@@ -50,6 +49,8 @@ export const TaCopywritingAiCl: Icon;
|
|
|
50
49
|
export const TaDashboardAiCl: Icon;
|
|
51
50
|
export const TaDashboardGenerateCl: Icon;
|
|
52
51
|
export const TaPlanetCl: Icon;
|
|
52
|
+
export const TaAisqlCl: Icon;
|
|
53
|
+
export const TaMagicCl: Icon;
|
|
53
54
|
export const TaFlagCn: Icon;
|
|
54
55
|
export const TaFlagUs: Icon;
|
|
55
56
|
export const TaFlagJp: Icon;
|
|
@@ -498,6 +499,7 @@ export const TaPaste: Icon;
|
|
|
498
499
|
export const TaPaste2: Icon;
|
|
499
500
|
export const TaOpen: Icon;
|
|
500
501
|
export const TaSnapshot: Icon;
|
|
502
|
+
export const TaCreate: Icon;
|
|
501
503
|
export const TaInfo: Icon;
|
|
502
504
|
export const TaInfoFill: Icon;
|
|
503
505
|
export const TaHelp: Icon;
|
|
@@ -0,0 +1,124 @@
|
|
|
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 AisqlCl = function AisqlCl(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
|
+
d: "M18.3 15.15l-3.606 3.677-.902-.92 2.705-2.757-2.705-2.758.902-.919L18.3 15.15zm-13.497 0l2.705 2.758-.902.919L3 15.15l3.606-3.677.902.92-2.705 2.757zM9.24 21H7.883L12.06 9.3h1.357L9.24 21z",
|
|
57
|
+
fill: "url(#paint0_linear_11723_48)"
|
|
58
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
59
|
+
d: "M16.944 8.495l.289-.658a2.542 2.542 0 011.297-1.308l.795-.351a.324.324 0 000-.59l-.77-.34a2.543 2.543 0 01-1.316-1.351l-.293-.702a.312.312 0 00-.578 0l-.293.702a2.543 2.543 0 01-1.315 1.351l-.77.34a.324.324 0 000 .59l.794.351c.578.255 1.04.722 1.297 1.308l.29.658a.312.312 0 00.573 0zm2.892 1.603l.081-.185c.145-.33.406-.594.731-.737l.25-.111a.173.173 0 000-.316l-.236-.104c-.334-.148-.6-.42-.741-.762l-.084-.2a.167.167 0 00-.31 0l-.083.2a1.434 1.434 0 01-.742.762l-.236.104a.173.173 0 000 .316l.25.11c.325.144.586.408.731.738l.081.185c.06.136.248.136.308 0z",
|
|
60
|
+
fill: "url(#paint1_linear_11723_48)"
|
|
61
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
62
|
+
d: "M16.944 8.495l.289-.658a2.542 2.542 0 011.297-1.308l.795-.351a.324.324 0 000-.59l-.77-.34a2.543 2.543 0 01-1.316-1.351l-.293-.702a.312.312 0 00-.578 0l-.293.702a2.543 2.543 0 01-1.315 1.351l-.77.34a.324.324 0 000 .59l.794.351c.578.255 1.04.722 1.297 1.308l.29.658a.312.312 0 00.573 0zm2.892 1.603l.081-.185c.145-.33.406-.594.731-.737l.25-.111a.173.173 0 000-.316l-.236-.104c-.334-.148-.6-.42-.741-.762l-.084-.2a.167.167 0 00-.31 0l-.083.2a1.434 1.434 0 01-.742.762l-.236.104a.173.173 0 000 .316l.25.11c.325.144.586.408.731.738l.081.185c.06.136.248.136.308 0z",
|
|
63
|
+
fill: "url(#paint2_linear_11723_48)",
|
|
64
|
+
fillOpacity: ".2"
|
|
65
|
+
}), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
66
|
+
id: "paint0_linear_11723_48",
|
|
67
|
+
x1: "3",
|
|
68
|
+
y1: "15.15",
|
|
69
|
+
x2: "18.735",
|
|
70
|
+
y2: "15.15",
|
|
71
|
+
gradientUnits: "userSpaceOnUse"
|
|
72
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
73
|
+
stopColor: "#1E76F0"
|
|
74
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
75
|
+
offset: ".355",
|
|
76
|
+
stopColor: "#9747FF"
|
|
77
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
78
|
+
offset: ".965",
|
|
79
|
+
stopColor: "#1E76F0"
|
|
80
|
+
})), /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
81
|
+
id: "paint1_linear_11723_48",
|
|
82
|
+
x1: "13.796",
|
|
83
|
+
y1: "5.4",
|
|
84
|
+
x2: "21.204",
|
|
85
|
+
y2: "6.6",
|
|
86
|
+
gradientUnits: "userSpaceOnUse"
|
|
87
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
88
|
+
stopColor: "#1E76F0"
|
|
89
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
90
|
+
offset: ".355",
|
|
91
|
+
stopColor: "#9746FF"
|
|
92
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
93
|
+
offset: ".628",
|
|
94
|
+
stopColor: "#7053FF"
|
|
95
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
96
|
+
offset: ".965",
|
|
97
|
+
stopColor: "#1E76F0"
|
|
98
|
+
})), /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
99
|
+
id: "paint2_linear_11723_48",
|
|
100
|
+
x1: "18.773",
|
|
101
|
+
y1: "3",
|
|
102
|
+
x2: "16",
|
|
103
|
+
y2: "10",
|
|
104
|
+
gradientUnits: "userSpaceOnUse"
|
|
105
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
106
|
+
stopColor: "#D8BAFF"
|
|
107
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
108
|
+
offset: "1",
|
|
109
|
+
stopColor: "#2B71EE"
|
|
110
|
+
}))))));
|
|
111
|
+
};
|
|
112
|
+
AisqlCl.propTypes = {
|
|
113
|
+
iconClassName: _propTypes["default"].string,
|
|
114
|
+
spin: _propTypes["default"].bool,
|
|
115
|
+
color: _propTypes["default"].string,
|
|
116
|
+
testid: _propTypes["default"].string,
|
|
117
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
118
|
+
};
|
|
119
|
+
AisqlCl.defaultProps = {
|
|
120
|
+
spin: false,
|
|
121
|
+
color: 'currentColor',
|
|
122
|
+
size: '1em'
|
|
123
|
+
};
|
|
124
|
+
var _default = exports["default"] = AisqlCl;
|
|
@@ -0,0 +1,70 @@
|
|
|
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 Create = function Create(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
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
54
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
55
|
+
d: "M16.436 3.212a1 1 0 011.414 0l2.828 2.829a1 1 0 010 1.414L7.242 20.89H3v-4.242L16.436 3.212zM5 17.476v1.414h1.414l9.314-9.314-1.415-1.414L5 17.476zM4.53 1.319a.507.507 0 01.94 0l.254.612a4.367 4.367 0 002.25 2.326l.718.32a.53.53 0 010 .962l-.76.338a4.363 4.363 0 00-2.218 2.251l-.247.565a.506.506 0 01-.934 0l-.247-.565a4.363 4.363 0 00-2.219-2.251l-.76-.338a.53.53 0 010-.963l.718-.32a4.366 4.366 0 002.251-2.325l.253-.612zm11.198 5.43l1.415 1.413 1.414-1.414-1.414-1.414-1.415 1.414z"
|
|
56
|
+
}))));
|
|
57
|
+
};
|
|
58
|
+
Create.propTypes = {
|
|
59
|
+
iconClassName: _propTypes["default"].string,
|
|
60
|
+
spin: _propTypes["default"].bool,
|
|
61
|
+
color: _propTypes["default"].string,
|
|
62
|
+
testid: _propTypes["default"].string,
|
|
63
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
64
|
+
};
|
|
65
|
+
Create.defaultProps = {
|
|
66
|
+
spin: false,
|
|
67
|
+
color: 'currentColor',
|
|
68
|
+
size: '1em'
|
|
69
|
+
};
|
|
70
|
+
var _default = exports["default"] = Create;
|
|
@@ -18,7 +18,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
18
18
|
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
19
19
|
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
20
20
|
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
-
var
|
|
21
|
+
var MagicCl = function MagicCl(props) {
|
|
22
22
|
var color = props.color,
|
|
23
23
|
size = props.size,
|
|
24
24
|
spin = props.spin,
|
|
@@ -50,33 +50,40 @@ var Magic = function Magic(props) {
|
|
|
50
50
|
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
51
51
|
width: "24",
|
|
52
52
|
height: "24",
|
|
53
|
+
fill: "none",
|
|
53
54
|
xmlns: "http://www.w3.org/2000/svg"
|
|
54
55
|
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
55
|
-
d: "M5.495 6.785l3.45 1.436-1.258-3.444 1.257-3.444-3.45 1.048-3.449-1.048 1.337 3.444-1.337 3.444 3.45-1.436zm14.62-1.493l2.218.923L21.525 4l.808-2.214-2.217.674-2.218-.674.86 2.214-.86 2.214 2.218-.923zM18.969 18.56l-1.79-.745-1.79.745.694-1.787-.694-1.788 1.79.544 1.79-.544-.652 1.788.652 1.787zM15.167 6.147a1.003 1.003 0 00-1.442 0L1.64 18.213a1 1 0 000 1.44l2.
|
|
56
|
+
d: "M5.495 6.785l3.45 1.436-1.258-3.444 1.257-3.444-3.45 1.048-3.449-1.048 1.337 3.444-1.337 3.444 3.45-1.436zm14.62-1.493l2.218.923L21.525 4l.808-2.214-2.217.674-2.218-.674.86 2.214-.86 2.214 2.218-.923zM18.969 18.56l-1.79-.745-1.79.745.694-1.787-.694-1.788 1.79.544 1.79-.544-.652 1.788.652 1.787zM15.167 6.147a1.003 1.003 0 00-1.442 0L1.64 18.213a1 1 0 000 1.44l2.375 2.37a1 1 0 001.447 0l12.08-12.06a.997.997 0 000-1.445l-2.374-2.371zm-3.303 3.51l2.475-2.478 2.173 2.165-2.48 2.476-2.168-2.164z",
|
|
57
|
+
fill: "url(#paint0_linear_11657_77)"
|
|
56
58
|
}), /*#__PURE__*/_react["default"].createElement("rect", {
|
|
57
59
|
x: "14.667",
|
|
58
60
|
y: "14.667",
|
|
59
61
|
width: "5.333",
|
|
60
|
-
height: "5.333"
|
|
62
|
+
height: "5.333",
|
|
63
|
+
fill: "#fff"
|
|
61
64
|
}), /*#__PURE__*/_react["default"].createElement("rect", {
|
|
62
65
|
x: "14.667",
|
|
63
66
|
y: "14.667",
|
|
64
67
|
width: "2.667",
|
|
65
|
-
height: "2.667"
|
|
68
|
+
height: "2.667",
|
|
69
|
+
fill: "#5658FF"
|
|
66
70
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
67
71
|
d: "M17.333 14.667H20v2.666h-2.667v-2.666z",
|
|
72
|
+
fill: "#5658FF",
|
|
68
73
|
fillOpacity: ".3"
|
|
69
74
|
}), /*#__PURE__*/_react["default"].createElement("rect", {
|
|
70
75
|
x: "14.667",
|
|
71
76
|
y: "17.333",
|
|
72
77
|
width: "2.667",
|
|
73
78
|
height: "2.667",
|
|
79
|
+
fill: "#5658FF",
|
|
74
80
|
fillOpacity: ".3"
|
|
75
81
|
}), /*#__PURE__*/_react["default"].createElement("rect", {
|
|
76
82
|
x: "17.333",
|
|
77
83
|
y: "17.333",
|
|
78
84
|
width: "2.667",
|
|
79
|
-
height: "2.667"
|
|
85
|
+
height: "2.667",
|
|
86
|
+
fill: "#5658FF"
|
|
80
87
|
}), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
81
88
|
id: "paint0_linear_11657_77",
|
|
82
89
|
x1: "11.833",
|
|
@@ -91,16 +98,16 @@ var Magic = function Magic(props) {
|
|
|
91
98
|
stopColor: "#5240FF"
|
|
92
99
|
}))))));
|
|
93
100
|
};
|
|
94
|
-
|
|
101
|
+
MagicCl.propTypes = {
|
|
95
102
|
iconClassName: _propTypes["default"].string,
|
|
96
103
|
spin: _propTypes["default"].bool,
|
|
97
104
|
color: _propTypes["default"].string,
|
|
98
105
|
testid: _propTypes["default"].string,
|
|
99
106
|
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
100
107
|
};
|
|
101
|
-
|
|
108
|
+
MagicCl.defaultProps = {
|
|
102
109
|
spin: false,
|
|
103
110
|
color: 'currentColor',
|
|
104
111
|
size: '1em'
|
|
105
112
|
};
|
|
106
|
-
var _default = exports["default"] =
|
|
113
|
+
var _default = exports["default"] = MagicCl;
|
package/dist/lib/index.js
CHANGED
|
@@ -39,6 +39,12 @@ Object.defineProperty(exports, "TaAddToPage", {
|
|
|
39
39
|
return _addToPage["default"];
|
|
40
40
|
}
|
|
41
41
|
});
|
|
42
|
+
Object.defineProperty(exports, "TaAisqlCl", {
|
|
43
|
+
enumerable: true,
|
|
44
|
+
get: function get() {
|
|
45
|
+
return _aisqlCl["default"];
|
|
46
|
+
}
|
|
47
|
+
});
|
|
42
48
|
Object.defineProperty(exports, "TaAlert", {
|
|
43
49
|
enumerable: true,
|
|
44
50
|
get: function get() {
|
|
@@ -681,6 +687,12 @@ Object.defineProperty(exports, "TaCpu", {
|
|
|
681
687
|
return _cpu["default"];
|
|
682
688
|
}
|
|
683
689
|
});
|
|
690
|
+
Object.defineProperty(exports, "TaCreate", {
|
|
691
|
+
enumerable: true,
|
|
692
|
+
get: function get() {
|
|
693
|
+
return _create["default"];
|
|
694
|
+
}
|
|
695
|
+
});
|
|
684
696
|
Object.defineProperty(exports, "TaCurrency", {
|
|
685
697
|
enumerable: true,
|
|
686
698
|
get: function get() {
|
|
@@ -2031,10 +2043,10 @@ Object.defineProperty(exports, "TaMTrophyCl", {
|
|
|
2031
2043
|
return _mTrophyCl["default"];
|
|
2032
2044
|
}
|
|
2033
2045
|
});
|
|
2034
|
-
Object.defineProperty(exports, "
|
|
2046
|
+
Object.defineProperty(exports, "TaMagicCl", {
|
|
2035
2047
|
enumerable: true,
|
|
2036
2048
|
get: function get() {
|
|
2037
|
-
return
|
|
2049
|
+
return _magicCl["default"];
|
|
2038
2050
|
}
|
|
2039
2051
|
});
|
|
2040
2052
|
Object.defineProperty(exports, "TaMagicWand", {
|
|
@@ -3466,7 +3478,6 @@ var _groupCl = _interopRequireDefault(require("./icons/group-cl"));
|
|
|
3466
3478
|
var _vPropCl = _interopRequireDefault(require("./icons/v-prop-cl"));
|
|
3467
3479
|
var _biVendorFillCl = _interopRequireDefault(require("./icons/bi-vendor-fill-cl"));
|
|
3468
3480
|
var _collectCl = _interopRequireDefault(require("./icons/collect-cl"));
|
|
3469
|
-
var _magic = _interopRequireDefault(require("./icons/magic"));
|
|
3470
3481
|
var _DataOpsAICl = _interopRequireDefault(require("./icons/DataOps-AI-cl"));
|
|
3471
3482
|
var _EngageAICl = _interopRequireDefault(require("./icons/Engage-AI-cl"));
|
|
3472
3483
|
var _DashboardReadingCl = _interopRequireDefault(require("./icons/Dashboard-Reading-cl"));
|
|
@@ -3475,6 +3486,8 @@ var _CopywritingAICl = _interopRequireDefault(require("./icons/Copywriting-AI-cl
|
|
|
3475
3486
|
var _DashboardAICl = _interopRequireDefault(require("./icons/Dashboard-AI-cl"));
|
|
3476
3487
|
var _DashboardGenerateCl = _interopRequireDefault(require("./icons/Dashboard-Generate-cl"));
|
|
3477
3488
|
var _PlanetCl = _interopRequireDefault(require("./icons/Planet-cl"));
|
|
3489
|
+
var _aisqlCl = _interopRequireDefault(require("./icons/aisql-cl"));
|
|
3490
|
+
var _magicCl = _interopRequireDefault(require("./icons/magic-cl"));
|
|
3478
3491
|
var _flagCn = _interopRequireDefault(require("./icons/flag-cn"));
|
|
3479
3492
|
var _flagUs = _interopRequireDefault(require("./icons/flag-us"));
|
|
3480
3493
|
var _flagJp = _interopRequireDefault(require("./icons/flag-jp"));
|
|
@@ -3923,6 +3936,7 @@ var _paste = _interopRequireDefault(require("./icons/paste"));
|
|
|
3923
3936
|
var _paste2 = _interopRequireDefault(require("./icons/paste-2"));
|
|
3924
3937
|
var _open = _interopRequireDefault(require("./icons/open"));
|
|
3925
3938
|
var _snapshot = _interopRequireDefault(require("./icons/snapshot"));
|
|
3939
|
+
var _create = _interopRequireDefault(require("./icons/create"));
|
|
3926
3940
|
var _info = _interopRequireDefault(require("./icons/info"));
|
|
3927
3941
|
var _infoFill = _interopRequireDefault(require("./icons/info-fill"));
|
|
3928
3942
|
var _help = _interopRequireDefault(require("./icons/help"));
|