@tant/icons 1.5.14 → 1.5.15
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/logo-fcm-cl.js +151 -0
- package/dist/es/icons/logo-jiguang-cl.js +112 -0
- package/dist/es/index.js +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/lib/icons/logo-fcm-cl.js +159 -0
- package/dist/lib/icons/logo-jiguang-cl.js +120 -0
- package/dist/lib/index.js +14 -0
- package/dist/tant-icons.cjs.js +1144 -901
- package/dist/tant-icons.esm.js +1143 -902
- package/package.json +1 -1
|
@@ -0,0 +1,151 @@
|
|
|
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"];
|
|
3
|
+
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); }
|
|
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(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
7
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
8
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
9
|
+
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; }
|
|
10
|
+
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; }
|
|
11
|
+
import React from 'react';
|
|
12
|
+
import PropTypes from 'prop-types';
|
|
13
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
+
var LogoFcmCl = function LogoFcmCl(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
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
22
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
23
|
+
role: "img",
|
|
24
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
26
|
+
children: loadingCircleStyle
|
|
27
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
width: size,
|
|
30
|
+
height: size,
|
|
31
|
+
viewBox: "0 0 24 24",
|
|
32
|
+
fill: color
|
|
33
|
+
}, otherProps, {
|
|
34
|
+
className: iconClassName,
|
|
35
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
36
|
+
animationDuration: '1s',
|
|
37
|
+
animationIterationCount: 'infinite',
|
|
38
|
+
animationName: 'loadingCircle',
|
|
39
|
+
animationTimingFunction: 'linear'
|
|
40
|
+
} : {})
|
|
41
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
42
|
+
width: "24",
|
|
43
|
+
height: "24",
|
|
44
|
+
fill: "none",
|
|
45
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46
|
+
}, /*#__PURE__*/React.createElement("mask", {
|
|
47
|
+
id: "a",
|
|
48
|
+
style: {
|
|
49
|
+
maskType: 'luminance'
|
|
50
|
+
},
|
|
51
|
+
maskUnits: "userSpaceOnUse",
|
|
52
|
+
x: "4",
|
|
53
|
+
y: "1",
|
|
54
|
+
width: "16",
|
|
55
|
+
height: "22"
|
|
56
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
57
|
+
d: "M17.938 5.925a.506.506 0 00-.85-.275l-2.6 2.6-2.038-3.887a.496.496 0 00-.675-.213.578.578 0 00-.213.213L10.45 6.487l-2.8-5.224a.495.495 0 00-.675-.2.52.52 0 00-.262.362L4 18.75l7.238 4.063c.45.25 1.012.25 1.462 0L20 18.75 17.937 5.925z",
|
|
58
|
+
fill: "#fff"
|
|
59
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
60
|
+
mask: "url(#a)"
|
|
61
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
62
|
+
d: "M4 18.75L6.713 1.425a.49.49 0 01.574-.413.52.52 0 01.363.263l2.8 5.225 1.113-2.125a.496.496 0 01.675-.213c.087.05.162.125.212.213L20 18.75H4z",
|
|
63
|
+
fill: "#FFA000"
|
|
64
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
65
|
+
opacity: ".12",
|
|
66
|
+
d: "M13.25 1.125L0 0v24l4-5.25 9.25-17.625z",
|
|
67
|
+
fill: "url(#paint0_linear_7578_261)"
|
|
68
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
69
|
+
d: "M13.363 12L10.45 6.488 4 18.75 13.363 12z",
|
|
70
|
+
fill: "#F57C00"
|
|
71
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
72
|
+
opacity: ".2",
|
|
73
|
+
d: "M0 0h24v24H0V0z",
|
|
74
|
+
fill: "url(#paint1_linear_7578_261)"
|
|
75
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
76
|
+
d: "M20 18.75L17.925 5.913a.506.506 0 00-.85-.275L4 18.75l7.238 4.063c.45.25 1.012.25 1.462 0L20 18.75z",
|
|
77
|
+
fill: "#FFCA28"
|
|
78
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
79
|
+
d: "M17.937 5.925a.506.506 0 00-.85-.275l-2.6 2.6-2.037-3.887a.496.496 0 00-.675-.213.578.578 0 00-.213.213L10.45 6.487l-2.8-5.224a.495.495 0 00-.675-.2.52.52 0 00-.263.362L4 18.75h-.013l.013.012.075.038L14.487 8.375l2.6-2.6c.2-.2.513-.2.713 0a.447.447 0 01.137.275l2.05 12.712.025-.012-2.075-12.825zm-13.912 12.8L6.712 1.55a.49.49 0 01.575-.413.52.52 0 01.363.263l2.8 5.225L11.562 4.5a.496.496 0 01.675-.212c.088.05.163.124.213.212l2 3.8L4.025 18.725z",
|
|
80
|
+
fill: "#fff",
|
|
81
|
+
fillOpacity: ".2"
|
|
82
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
83
|
+
opacity: ".2",
|
|
84
|
+
d: "M12.7 22.688a1.52 1.52 0 01-1.462 0l-7.225-4.05L4 18.75l7.238 4.063c.45.25 1.012.25 1.462 0L20 18.75l-.012-.113-7.288 4.05z",
|
|
85
|
+
fill: "#A52714"
|
|
86
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
87
|
+
d: "M17.938 5.925a.506.506 0 00-.85-.275l-2.6 2.6-2.038-3.887a.496.496 0 00-.675-.213.578.578 0 00-.213.213L10.45 6.487l-2.8-5.224a.495.495 0 00-.675-.2.52.52 0 00-.262.362L4 18.75l7.238 4.063c.45.25 1.012.25 1.462 0L20 18.75 17.937 5.925z",
|
|
88
|
+
fill: "url(#paint2_linear_7578_261)"
|
|
89
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
90
|
+
id: "paint0_linear_7578_261",
|
|
91
|
+
x1: "7.118",
|
|
92
|
+
y1: "12.819",
|
|
93
|
+
x2: "6.118",
|
|
94
|
+
y2: "12.297",
|
|
95
|
+
gradientUnits: "userSpaceOnUse"
|
|
96
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
97
|
+
stopColor: "#A52714"
|
|
98
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
99
|
+
offset: ".4",
|
|
100
|
+
stopColor: "#A52714",
|
|
101
|
+
stopOpacity: ".5"
|
|
102
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
103
|
+
offset: ".8",
|
|
104
|
+
stopColor: "#A52714",
|
|
105
|
+
stopOpacity: "0"
|
|
106
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
107
|
+
id: "paint1_linear_7578_261",
|
|
108
|
+
x1: "11.368",
|
|
109
|
+
y1: "11.365",
|
|
110
|
+
x2: "10.92",
|
|
111
|
+
y2: "10.917",
|
|
112
|
+
gradientUnits: "userSpaceOnUse"
|
|
113
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
114
|
+
stopColor: "#A52714",
|
|
115
|
+
stopOpacity: ".8"
|
|
116
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
117
|
+
offset: ".5",
|
|
118
|
+
stopColor: "#A52714",
|
|
119
|
+
stopOpacity: ".21"
|
|
120
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
121
|
+
offset: "1",
|
|
122
|
+
stopColor: "#A52714",
|
|
123
|
+
stopOpacity: "0"
|
|
124
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
125
|
+
id: "paint2_linear_7578_261",
|
|
126
|
+
x1: "3.569",
|
|
127
|
+
y1: "4.872",
|
|
128
|
+
x2: "20.28",
|
|
129
|
+
y2: "21.582",
|
|
130
|
+
gradientUnits: "userSpaceOnUse"
|
|
131
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
132
|
+
stopColor: "#fff",
|
|
133
|
+
stopOpacity: ".1"
|
|
134
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
135
|
+
offset: "1",
|
|
136
|
+
stopColor: "#fff",
|
|
137
|
+
stopOpacity: "0"
|
|
138
|
+
}))))));
|
|
139
|
+
};
|
|
140
|
+
LogoFcmCl.propTypes = {
|
|
141
|
+
iconClassName: PropTypes.string,
|
|
142
|
+
spin: PropTypes.bool,
|
|
143
|
+
color: PropTypes.string,
|
|
144
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
145
|
+
};
|
|
146
|
+
LogoFcmCl.defaultProps = {
|
|
147
|
+
spin: false,
|
|
148
|
+
color: 'currentColor',
|
|
149
|
+
size: '1em'
|
|
150
|
+
};
|
|
151
|
+
export default LogoFcmCl;
|
|
@@ -0,0 +1,112 @@
|
|
|
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"];
|
|
3
|
+
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); }
|
|
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(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
7
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
8
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
9
|
+
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; }
|
|
10
|
+
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; }
|
|
11
|
+
import React from 'react';
|
|
12
|
+
import PropTypes from 'prop-types';
|
|
13
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
+
var LogoJiguangCl = function LogoJiguangCl(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
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
22
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
23
|
+
role: "img",
|
|
24
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
25
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
26
|
+
children: loadingCircleStyle
|
|
27
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
width: size,
|
|
30
|
+
height: size,
|
|
31
|
+
viewBox: "0 0 24 24",
|
|
32
|
+
fill: color
|
|
33
|
+
}, otherProps, {
|
|
34
|
+
className: iconClassName,
|
|
35
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
36
|
+
animationDuration: '1s',
|
|
37
|
+
animationIterationCount: 'infinite',
|
|
38
|
+
animationName: 'loadingCircle',
|
|
39
|
+
animationTimingFunction: 'linear'
|
|
40
|
+
} : {})
|
|
41
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
42
|
+
width: "24",
|
|
43
|
+
height: "24",
|
|
44
|
+
fill: "none",
|
|
45
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
47
|
+
d: "M9.858 10.744c4.614.343 8.594 3.766 10.374 5.297.14.12.265.229.377.323.5.398.954.866 1.385 1.31l.276.284c.256.268.485.526.682.748.529.597.832.938.832.543 0-4.865-3.07-11.197-6.576-14.677-2.868-2.139-5.318-1.853-6.4-.558-1.111 1.336-1.458 4.082-.95 6.73z",
|
|
48
|
+
fill: "url(#paint0_linear_7575_120)"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
+
d: "M13.315 2.11A3.953 3.953 0 0012.41 2c.305.01.607.046.904.11z",
|
|
51
|
+
fill: "url(#paint1_linear_7575_120)"
|
|
52
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
53
|
+
fillRule: "evenodd",
|
|
54
|
+
clipRule: "evenodd",
|
|
55
|
+
d: "M1 19.166C1 12.045 7.485 2 12.411 2a5.107 5.107 0 012.476.73 12.09 12.09 0 012.335 1.852c-2.874-2.15-5.33-1.865-6.415-.568C8.742 6.5 9.32 13.86 13.117 16.402c1.045.678-4.516 2.383-7.524 3.028-3.009.646-4.593.962-4.593-.264z",
|
|
56
|
+
fill: "url(#paint2_linear_7575_120)"
|
|
57
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
58
|
+
id: "paint0_linear_7575_120",
|
|
59
|
+
x1: "38.62",
|
|
60
|
+
y1: "598.009",
|
|
61
|
+
x2: "1819.89",
|
|
62
|
+
y2: "1965.92",
|
|
63
|
+
gradientUnits: "userSpaceOnUse"
|
|
64
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
65
|
+
stopColor: "#3939E5"
|
|
66
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
67
|
+
offset: ".28",
|
|
68
|
+
stopColor: "#4B7CFF"
|
|
69
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
70
|
+
offset: "1",
|
|
71
|
+
stopColor: "#1AE2A4"
|
|
72
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
73
|
+
id: "paint1_linear_7575_120",
|
|
74
|
+
x1: "38.62",
|
|
75
|
+
y1: "598.009",
|
|
76
|
+
x2: "1819.89",
|
|
77
|
+
y2: "1965.92",
|
|
78
|
+
gradientUnits: "userSpaceOnUse"
|
|
79
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
80
|
+
stopColor: "#3939E5"
|
|
81
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
82
|
+
offset: ".28",
|
|
83
|
+
stopColor: "#4B7CFF"
|
|
84
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
85
|
+
offset: "1",
|
|
86
|
+
stopColor: "#1AE2A4"
|
|
87
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
88
|
+
id: "paint2_linear_7575_120",
|
|
89
|
+
x1: "997.296",
|
|
90
|
+
y1: "74.303",
|
|
91
|
+
x2: "539.964",
|
|
92
|
+
y2: "1787.9",
|
|
93
|
+
gradientUnits: "userSpaceOnUse"
|
|
94
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
95
|
+
stopColor: "#28ADDD"
|
|
96
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
97
|
+
offset: "1",
|
|
98
|
+
stopColor: "#1AE2A4"
|
|
99
|
+
}))))));
|
|
100
|
+
};
|
|
101
|
+
LogoJiguangCl.propTypes = {
|
|
102
|
+
iconClassName: PropTypes.string,
|
|
103
|
+
spin: PropTypes.bool,
|
|
104
|
+
color: PropTypes.string,
|
|
105
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
106
|
+
};
|
|
107
|
+
LogoJiguangCl.defaultProps = {
|
|
108
|
+
spin: false,
|
|
109
|
+
color: 'currentColor',
|
|
110
|
+
size: '1em'
|
|
111
|
+
};
|
|
112
|
+
export default LogoJiguangCl;
|
package/dist/es/index.js
CHANGED
|
@@ -172,6 +172,8 @@ export { default as TaLogoIggCl } from './icons/logo-igg-cl';
|
|
|
172
172
|
export { default as TaLogoLitmatchCl } from './icons/logo-litmatch-cl';
|
|
173
173
|
export { default as TaLogoBitkeepCl } from './icons/logo-bitkeep-cl';
|
|
174
174
|
export { default as TaLogoYaojiCl } from './icons/logo-yaoji-cl';
|
|
175
|
+
export { default as TaLogoJiguangCl } from './icons/logo-jiguang-cl';
|
|
176
|
+
export { default as TaLogoFcmCl } from './icons/logo-fcm-cl';
|
|
175
177
|
export { default as TaDashboardCl } from './icons/dashboard-cl';
|
|
176
178
|
export { default as TaReportCl } from './icons/report-cl';
|
|
177
179
|
export { default as TaUserTagCl } from './icons/user-tag-cl';
|
package/dist/index.d.ts
CHANGED
|
@@ -183,6 +183,8 @@ export const TaLogoIggCl: Icon;
|
|
|
183
183
|
export const TaLogoLitmatchCl: Icon;
|
|
184
184
|
export const TaLogoBitkeepCl: Icon;
|
|
185
185
|
export const TaLogoYaojiCl: Icon;
|
|
186
|
+
export const TaLogoJiguangCl: Icon;
|
|
187
|
+
export const TaLogoFcmCl: Icon;
|
|
186
188
|
export const TaDashboardCl: Icon;
|
|
187
189
|
export const TaReportCl: Icon;
|
|
188
190
|
export const TaUserTagCl: Icon;
|
|
@@ -0,0 +1,159 @@
|
|
|
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"];
|
|
11
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
12
|
+
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); }
|
|
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(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
16
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
17
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
18
|
+
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; }
|
|
19
|
+
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; }
|
|
20
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
+
var LogoFcmCl = function LogoFcmCl(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
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
29
|
+
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
30
|
+
role: "img",
|
|
31
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32
|
+
}, /*#__PURE__*/_react["default"].createElement("style", {
|
|
33
|
+
children: loadingCircleStyle
|
|
34
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", _extends({
|
|
35
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 24 24",
|
|
39
|
+
fill: color
|
|
40
|
+
}, otherProps, {
|
|
41
|
+
className: iconClassName,
|
|
42
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
43
|
+
animationDuration: '1s',
|
|
44
|
+
animationIterationCount: 'infinite',
|
|
45
|
+
animationName: 'loadingCircle',
|
|
46
|
+
animationTimingFunction: 'linear'
|
|
47
|
+
} : {})
|
|
48
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
49
|
+
width: "24",
|
|
50
|
+
height: "24",
|
|
51
|
+
fill: "none",
|
|
52
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
53
|
+
}, /*#__PURE__*/_react["default"].createElement("mask", {
|
|
54
|
+
id: "a",
|
|
55
|
+
style: {
|
|
56
|
+
maskType: 'luminance'
|
|
57
|
+
},
|
|
58
|
+
maskUnits: "userSpaceOnUse",
|
|
59
|
+
x: "4",
|
|
60
|
+
y: "1",
|
|
61
|
+
width: "16",
|
|
62
|
+
height: "22"
|
|
63
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
64
|
+
d: "M17.938 5.925a.506.506 0 00-.85-.275l-2.6 2.6-2.038-3.887a.496.496 0 00-.675-.213.578.578 0 00-.213.213L10.45 6.487l-2.8-5.224a.495.495 0 00-.675-.2.52.52 0 00-.262.362L4 18.75l7.238 4.063c.45.25 1.012.25 1.462 0L20 18.75 17.937 5.925z",
|
|
65
|
+
fill: "#fff"
|
|
66
|
+
})), /*#__PURE__*/_react["default"].createElement("g", {
|
|
67
|
+
mask: "url(#a)"
|
|
68
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
69
|
+
d: "M4 18.75L6.713 1.425a.49.49 0 01.574-.413.52.52 0 01.363.263l2.8 5.225 1.113-2.125a.496.496 0 01.675-.213c.087.05.162.125.212.213L20 18.75H4z",
|
|
70
|
+
fill: "#FFA000"
|
|
71
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
72
|
+
opacity: ".12",
|
|
73
|
+
d: "M13.25 1.125L0 0v24l4-5.25 9.25-17.625z",
|
|
74
|
+
fill: "url(#paint0_linear_7578_261)"
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
76
|
+
d: "M13.363 12L10.45 6.488 4 18.75 13.363 12z",
|
|
77
|
+
fill: "#F57C00"
|
|
78
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
79
|
+
opacity: ".2",
|
|
80
|
+
d: "M0 0h24v24H0V0z",
|
|
81
|
+
fill: "url(#paint1_linear_7578_261)"
|
|
82
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
83
|
+
d: "M20 18.75L17.925 5.913a.506.506 0 00-.85-.275L4 18.75l7.238 4.063c.45.25 1.012.25 1.462 0L20 18.75z",
|
|
84
|
+
fill: "#FFCA28"
|
|
85
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
86
|
+
d: "M17.937 5.925a.506.506 0 00-.85-.275l-2.6 2.6-2.037-3.887a.496.496 0 00-.675-.213.578.578 0 00-.213.213L10.45 6.487l-2.8-5.224a.495.495 0 00-.675-.2.52.52 0 00-.263.362L4 18.75h-.013l.013.012.075.038L14.487 8.375l2.6-2.6c.2-.2.513-.2.713 0a.447.447 0 01.137.275l2.05 12.712.025-.012-2.075-12.825zm-13.912 12.8L6.712 1.55a.49.49 0 01.575-.413.52.52 0 01.363.263l2.8 5.225L11.562 4.5a.496.496 0 01.675-.212c.088.05.163.124.213.212l2 3.8L4.025 18.725z",
|
|
87
|
+
fill: "#fff",
|
|
88
|
+
fillOpacity: ".2"
|
|
89
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
90
|
+
opacity: ".2",
|
|
91
|
+
d: "M12.7 22.688a1.52 1.52 0 01-1.462 0l-7.225-4.05L4 18.75l7.238 4.063c.45.25 1.012.25 1.462 0L20 18.75l-.012-.113-7.288 4.05z",
|
|
92
|
+
fill: "#A52714"
|
|
93
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
94
|
+
d: "M17.938 5.925a.506.506 0 00-.85-.275l-2.6 2.6-2.038-3.887a.496.496 0 00-.675-.213.578.578 0 00-.213.213L10.45 6.487l-2.8-5.224a.495.495 0 00-.675-.2.52.52 0 00-.262.362L4 18.75l7.238 4.063c.45.25 1.012.25 1.462 0L20 18.75 17.937 5.925z",
|
|
95
|
+
fill: "url(#paint2_linear_7578_261)"
|
|
96
|
+
})), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
97
|
+
id: "paint0_linear_7578_261",
|
|
98
|
+
x1: "7.118",
|
|
99
|
+
y1: "12.819",
|
|
100
|
+
x2: "6.118",
|
|
101
|
+
y2: "12.297",
|
|
102
|
+
gradientUnits: "userSpaceOnUse"
|
|
103
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
104
|
+
stopColor: "#A52714"
|
|
105
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
106
|
+
offset: ".4",
|
|
107
|
+
stopColor: "#A52714",
|
|
108
|
+
stopOpacity: ".5"
|
|
109
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
110
|
+
offset: ".8",
|
|
111
|
+
stopColor: "#A52714",
|
|
112
|
+
stopOpacity: "0"
|
|
113
|
+
})), /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
114
|
+
id: "paint1_linear_7578_261",
|
|
115
|
+
x1: "11.368",
|
|
116
|
+
y1: "11.365",
|
|
117
|
+
x2: "10.92",
|
|
118
|
+
y2: "10.917",
|
|
119
|
+
gradientUnits: "userSpaceOnUse"
|
|
120
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
121
|
+
stopColor: "#A52714",
|
|
122
|
+
stopOpacity: ".8"
|
|
123
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
124
|
+
offset: ".5",
|
|
125
|
+
stopColor: "#A52714",
|
|
126
|
+
stopOpacity: ".21"
|
|
127
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
128
|
+
offset: "1",
|
|
129
|
+
stopColor: "#A52714",
|
|
130
|
+
stopOpacity: "0"
|
|
131
|
+
})), /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
132
|
+
id: "paint2_linear_7578_261",
|
|
133
|
+
x1: "3.569",
|
|
134
|
+
y1: "4.872",
|
|
135
|
+
x2: "20.28",
|
|
136
|
+
y2: "21.582",
|
|
137
|
+
gradientUnits: "userSpaceOnUse"
|
|
138
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
139
|
+
stopColor: "#fff",
|
|
140
|
+
stopOpacity: ".1"
|
|
141
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
142
|
+
offset: "1",
|
|
143
|
+
stopColor: "#fff",
|
|
144
|
+
stopOpacity: "0"
|
|
145
|
+
}))))));
|
|
146
|
+
};
|
|
147
|
+
LogoFcmCl.propTypes = {
|
|
148
|
+
iconClassName: _propTypes["default"].string,
|
|
149
|
+
spin: _propTypes["default"].bool,
|
|
150
|
+
color: _propTypes["default"].string,
|
|
151
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
152
|
+
};
|
|
153
|
+
LogoFcmCl.defaultProps = {
|
|
154
|
+
spin: false,
|
|
155
|
+
color: 'currentColor',
|
|
156
|
+
size: '1em'
|
|
157
|
+
};
|
|
158
|
+
var _default = LogoFcmCl;
|
|
159
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,120 @@
|
|
|
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"];
|
|
11
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
12
|
+
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); }
|
|
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(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
16
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
17
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
18
|
+
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; }
|
|
19
|
+
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; }
|
|
20
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
+
var LogoJiguangCl = function LogoJiguangCl(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
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
29
|
+
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
30
|
+
role: "img",
|
|
31
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
32
|
+
}, /*#__PURE__*/_react["default"].createElement("style", {
|
|
33
|
+
children: loadingCircleStyle
|
|
34
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", _extends({
|
|
35
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 24 24",
|
|
39
|
+
fill: color
|
|
40
|
+
}, otherProps, {
|
|
41
|
+
className: iconClassName,
|
|
42
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
43
|
+
animationDuration: '1s',
|
|
44
|
+
animationIterationCount: 'infinite',
|
|
45
|
+
animationName: 'loadingCircle',
|
|
46
|
+
animationTimingFunction: 'linear'
|
|
47
|
+
} : {})
|
|
48
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
49
|
+
width: "24",
|
|
50
|
+
height: "24",
|
|
51
|
+
fill: "none",
|
|
52
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
53
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
54
|
+
d: "M9.858 10.744c4.614.343 8.594 3.766 10.374 5.297.14.12.265.229.377.323.5.398.954.866 1.385 1.31l.276.284c.256.268.485.526.682.748.529.597.832.938.832.543 0-4.865-3.07-11.197-6.576-14.677-2.868-2.139-5.318-1.853-6.4-.558-1.111 1.336-1.458 4.082-.95 6.73z",
|
|
55
|
+
fill: "url(#paint0_linear_7575_120)"
|
|
56
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
57
|
+
d: "M13.315 2.11A3.953 3.953 0 0012.41 2c.305.01.607.046.904.11z",
|
|
58
|
+
fill: "url(#paint1_linear_7575_120)"
|
|
59
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
60
|
+
fillRule: "evenodd",
|
|
61
|
+
clipRule: "evenodd",
|
|
62
|
+
d: "M1 19.166C1 12.045 7.485 2 12.411 2a5.107 5.107 0 012.476.73 12.09 12.09 0 012.335 1.852c-2.874-2.15-5.33-1.865-6.415-.568C8.742 6.5 9.32 13.86 13.117 16.402c1.045.678-4.516 2.383-7.524 3.028-3.009.646-4.593.962-4.593-.264z",
|
|
63
|
+
fill: "url(#paint2_linear_7575_120)"
|
|
64
|
+
}), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
65
|
+
id: "paint0_linear_7575_120",
|
|
66
|
+
x1: "38.62",
|
|
67
|
+
y1: "598.009",
|
|
68
|
+
x2: "1819.89",
|
|
69
|
+
y2: "1965.92",
|
|
70
|
+
gradientUnits: "userSpaceOnUse"
|
|
71
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
72
|
+
stopColor: "#3939E5"
|
|
73
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
74
|
+
offset: ".28",
|
|
75
|
+
stopColor: "#4B7CFF"
|
|
76
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
77
|
+
offset: "1",
|
|
78
|
+
stopColor: "#1AE2A4"
|
|
79
|
+
})), /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
80
|
+
id: "paint1_linear_7575_120",
|
|
81
|
+
x1: "38.62",
|
|
82
|
+
y1: "598.009",
|
|
83
|
+
x2: "1819.89",
|
|
84
|
+
y2: "1965.92",
|
|
85
|
+
gradientUnits: "userSpaceOnUse"
|
|
86
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
87
|
+
stopColor: "#3939E5"
|
|
88
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
89
|
+
offset: ".28",
|
|
90
|
+
stopColor: "#4B7CFF"
|
|
91
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
92
|
+
offset: "1",
|
|
93
|
+
stopColor: "#1AE2A4"
|
|
94
|
+
})), /*#__PURE__*/_react["default"].createElement("linearGradient", {
|
|
95
|
+
id: "paint2_linear_7575_120",
|
|
96
|
+
x1: "997.296",
|
|
97
|
+
y1: "74.303",
|
|
98
|
+
x2: "539.964",
|
|
99
|
+
y2: "1787.9",
|
|
100
|
+
gradientUnits: "userSpaceOnUse"
|
|
101
|
+
}, /*#__PURE__*/_react["default"].createElement("stop", {
|
|
102
|
+
stopColor: "#28ADDD"
|
|
103
|
+
}), /*#__PURE__*/_react["default"].createElement("stop", {
|
|
104
|
+
offset: "1",
|
|
105
|
+
stopColor: "#1AE2A4"
|
|
106
|
+
}))))));
|
|
107
|
+
};
|
|
108
|
+
LogoJiguangCl.propTypes = {
|
|
109
|
+
iconClassName: _propTypes["default"].string,
|
|
110
|
+
spin: _propTypes["default"].bool,
|
|
111
|
+
color: _propTypes["default"].string,
|
|
112
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
113
|
+
};
|
|
114
|
+
LogoJiguangCl.defaultProps = {
|
|
115
|
+
spin: false,
|
|
116
|
+
color: 'currentColor',
|
|
117
|
+
size: '1em'
|
|
118
|
+
};
|
|
119
|
+
var _default = LogoJiguangCl;
|
|
120
|
+
exports["default"] = _default;
|
package/dist/lib/index.js
CHANGED
|
@@ -1287,6 +1287,12 @@ Object.defineProperty(exports, "TaLogoDingdingGray", {
|
|
|
1287
1287
|
return _logoDingdingGray["default"];
|
|
1288
1288
|
}
|
|
1289
1289
|
});
|
|
1290
|
+
Object.defineProperty(exports, "TaLogoFcmCl", {
|
|
1291
|
+
enumerable: true,
|
|
1292
|
+
get: function get() {
|
|
1293
|
+
return _logoFcmCl["default"];
|
|
1294
|
+
}
|
|
1295
|
+
});
|
|
1290
1296
|
Object.defineProperty(exports, "TaLogoFeishuCl", {
|
|
1291
1297
|
enumerable: true,
|
|
1292
1298
|
get: function get() {
|
|
@@ -1317,6 +1323,12 @@ Object.defineProperty(exports, "TaLogoIggCl", {
|
|
|
1317
1323
|
return _logoIggCl["default"];
|
|
1318
1324
|
}
|
|
1319
1325
|
});
|
|
1326
|
+
Object.defineProperty(exports, "TaLogoJiguangCl", {
|
|
1327
|
+
enumerable: true,
|
|
1328
|
+
get: function get() {
|
|
1329
|
+
return _logoJiguangCl["default"];
|
|
1330
|
+
}
|
|
1331
|
+
});
|
|
1320
1332
|
Object.defineProperty(exports, "TaLogoKingCl", {
|
|
1321
1333
|
enumerable: true,
|
|
1322
1334
|
get: function get() {
|
|
@@ -2577,6 +2589,8 @@ var _logoIggCl = _interopRequireDefault(require("./icons/logo-igg-cl"));
|
|
|
2577
2589
|
var _logoLitmatchCl = _interopRequireDefault(require("./icons/logo-litmatch-cl"));
|
|
2578
2590
|
var _logoBitkeepCl = _interopRequireDefault(require("./icons/logo-bitkeep-cl"));
|
|
2579
2591
|
var _logoYaojiCl = _interopRequireDefault(require("./icons/logo-yaoji-cl"));
|
|
2592
|
+
var _logoJiguangCl = _interopRequireDefault(require("./icons/logo-jiguang-cl"));
|
|
2593
|
+
var _logoFcmCl = _interopRequireDefault(require("./icons/logo-fcm-cl"));
|
|
2580
2594
|
var _dashboardCl = _interopRequireDefault(require("./icons/dashboard-cl"));
|
|
2581
2595
|
var _reportCl = _interopRequireDefault(require("./icons/report-cl"));
|
|
2582
2596
|
var _userTagCl = _interopRequireDefault(require("./icons/user-tag-cl"));
|