@tant/icons 1.4.6 → 1.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/icons/approve-cancelled.js +60 -0
- package/dist/es/icons/flag-cn.js +1 -1
- package/dist/es/icons/flag-kr.js +2 -2
- package/dist/es/icons/flag-us.js +1 -1
- package/dist/es/icons/flash.js +62 -0
- package/dist/es/icons/logo-bitkeep-cl.js +64 -0
- package/dist/es/icons/reject.js +66 -0
- package/dist/es/icons/svip-fill.js +62 -0
- package/dist/es/icons/template-cl.js +1 -1
- package/dist/es/index.js +12 -7
- package/dist/index.d.ts +12 -7
- package/dist/lib/icons/approve-cancelled.js +68 -0
- package/dist/lib/icons/flag-cn.js +1 -1
- package/dist/lib/icons/flag-kr.js +2 -2
- package/dist/lib/icons/flag-us.js +1 -1
- package/dist/lib/icons/flash.js +70 -0
- package/dist/lib/icons/logo-bitkeep-cl.js +72 -0
- package/dist/lib/icons/reject.js +74 -0
- package/dist/lib/icons/svip-fill.js +70 -0
- package/dist/lib/icons/template-cl.js +1 -1
- package/dist/lib/index.js +42 -7
- package/dist/tant-icons.cjs.js +2261 -1997
- package/dist/tant-icons.esm.js +2257 -1998
- package/package.json +1 -1
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
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(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
5
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
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 ApproveCancelled = function ApproveCancelled(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
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
45
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
46
|
+
d: "M19.973 14.042c0-1.19-.255-2.237-.766-3.141-.511-.904-1.247-1.612-2.207-2.123-.96-.51-2.11-.766-3.45-.766H7.783l-2.032.092 1.508-1.261L9.4 4.739c.1-.093.178-.196.234-.308a.974.974 0 00.084-.421.995.995 0 00-.28-.72C9.25 3.097 9.005 3 8.699 3c-.287 0-.539.11-.757.327l-5.03 4.956a1.1 1.1 0 00-.244.364c-.056.131-.084.268-.084.412 0 .143.028.283.084.42.056.138.138.256.243.356l5.03 4.955c.219.219.471.328.758.328.306 0 .552-.094.739-.28.187-.194.28-.437.28-.73a.95.95 0 00-.084-.412 1.015 1.015 0 00-.234-.327l-2.14-2.094-1.51-1.262 2.033.093h5.795c.923 0 1.705.165 2.347.496.648.324 1.14.779 1.477 1.365.337.58.505 1.246.505 2 0 .761-.168 1.437-.505 2.03-.336.585-.829 1.047-1.477 1.383-.642.343-1.425.515-2.347.515h-2.066c-.312 0-.568.102-.767.308-.2.206-.3.452-.3.739s.1.533.3.738c.2.206.455.31.767.31h2.15c1.315 0 2.444-.247 3.385-.74.947-.492 1.67-1.184 2.17-2.075.504-.892.756-1.936.756-3.133z"
|
|
47
|
+
}))));
|
|
48
|
+
};
|
|
49
|
+
ApproveCancelled.propTypes = {
|
|
50
|
+
iconClassName: PropTypes.string,
|
|
51
|
+
spin: PropTypes.bool,
|
|
52
|
+
color: PropTypes.string,
|
|
53
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
54
|
+
};
|
|
55
|
+
ApproveCancelled.defaultProps = {
|
|
56
|
+
spin: false,
|
|
57
|
+
color: 'currentColor',
|
|
58
|
+
size: '1em'
|
|
59
|
+
};
|
|
60
|
+
export default ApproveCancelled;
|
package/dist/es/icons/flag-cn.js
CHANGED
|
@@ -81,7 +81,7 @@ var FlagCn = function FlagCn(props) {
|
|
|
81
81
|
}), /*#__PURE__*/React.createElement("path", {
|
|
82
82
|
d: "M11.324 8.115l-1.124.657.257-1.283-.936-.96 1.267-.052.536-1.198.535 1.198h1.265l-.933 1.012.28 1.283-1.147-.657z"
|
|
83
83
|
}), /*#__PURE__*/React.createElement("path", {
|
|
84
|
-
d: "M12.699 10.781l-1.124.658.257-1.283-.936-.96 1.267-.
|
|
84
|
+
d: "M12.699 10.781l-1.124.658.257-1.283-.936-.96 1.267-.052.536-1.199.535 1.199H14.5l-.933 1.012.28 1.283-1.147-.658z"
|
|
85
85
|
}), /*#__PURE__*/React.createElement("path", {
|
|
86
86
|
d: "M11.324 13.448l-1.124.657.257-1.283-.936-.96 1.267-.052.536-1.198.535 1.198h1.265l-.933 1.012.28 1.283-1.147-.657z"
|
|
87
87
|
}), /*#__PURE__*/React.createElement("path", {
|
package/dist/es/icons/flag-kr.js
CHANGED
|
@@ -121,13 +121,13 @@ var FlagKr = function FlagKr(props) {
|
|
|
121
121
|
clipRule: "evenodd",
|
|
122
122
|
d: "M6.018 5.368l.63.552L3.731 9.22l-.629-.552 2.915-3.3zm1.038.893l.629.552-2.811 3.253-.629-.552 2.81-3.253zm1.661 1.455l-.629-.551-2.818 3.278.629.552 2.818-3.279z"
|
|
123
123
|
}), /*#__PURE__*/React.createElement("path", {
|
|
124
|
-
d: "M6.647 5.92l.079.065.065-.074-.075-.065-.069.074zm-.629-.552l.07-.074-.08-.069-.068.078.078.065zM3.732 9.221l-.07.074.08.07.068-.079-.078-.065zm-.629-.552l-.078-.065-.066.074.075.066.07-.075zm4.582-1.856l.079.064.064-.074-.074-.065-.07.075zm-.63-.552l.07-.074-.08-.07-.068.08.079.064zm-2.181 3.805l-.07.074.08.07.07-.08-.08-.064zm-.629-.552l-.08-.064-.063.074.074.065.069-.075zm3.843-2.35l.07-.
|
|
124
|
+
d: "M6.647 5.92l.079.065.065-.074-.075-.065-.069.074zm-.629-.552l.07-.074-.08-.069-.068.078.078.065zM3.732 9.221l-.07.074.08.07.068-.079-.078-.065zm-.629-.552l-.078-.065-.066.074.075.066.07-.075zm4.582-1.856l.079.064.064-.074-.074-.065-.07.075zm-.63-.552l.07-.074-.08-.07-.068.08.079.064zm-2.181 3.805l-.07.074.08.07.07-.08-.08-.064zm-.629-.552l-.08-.064-.063.074.074.065.069-.075zm3.843-2.35l.07-.074-.08-.07-.069.08.08.065zm.63.552l.079.064.063-.073-.073-.065-.07.074zM5.27 10.443l-.08-.064-.063.074.074.064.069-.074zm.629.552l-.07.074.08.07.07-.08-.08-.064zm.817-5.15l-.629-.551-.138.148.63.552.137-.148zM3.81 9.287l2.916-3.301-.157-.13-2.915 3.301.156.13zm-.776-.542l.629.551.138-.148-.629-.552-.138.149zm2.906-3.44l-2.915 3.3.156.13 2.916-3.3-.157-.13zm1.814 1.434l-.63-.551-.137.148.629.552.138-.149zm-2.8 3.392l2.81-3.253-.158-.129-2.811 3.254.158.128zm-.778-.542l.629.552.138-.148-.629-.552-.138.149zm2.8-3.391L4.167 9.45l.158.129 2.81-3.254-.157-.128zM8.02 7.239l.63.552.138-.149-.63-.552-.138.149zm-2.67 3.268l2.819-3.278-.159-.128-2.818 3.278.158.128zm.62.413l-.63-.551-.138.148.629.552.138-.149zm2.67-3.268l-2.82 3.279.16.128L8.796 7.78l-.159-.128z"
|
|
125
125
|
}), /*#__PURE__*/React.createElement("path", {
|
|
126
126
|
fillRule: "evenodd",
|
|
127
127
|
clipRule: "evenodd",
|
|
128
128
|
d: "M17.902 5.368l-.629.552 2.915 3.301.63-.552-2.916-3.3zm-1.037.893l-.63.552 2.811 3.253.63-.552-2.811-3.253zm-1.662 1.455l.63-.551 2.818 3.278-.63.552-2.818-3.279z"
|
|
129
129
|
}), /*#__PURE__*/React.createElement("path", {
|
|
130
|
-
d: "M17.273 5.92l-.078.065-.065-.074.074-.065.07.074zm.63-.552l-.07-.074.079-.069.069.078-.079.065zm2.286 3.853l.069.074-.079.07-.069-.079.079-.065zm.628-.552l.079-.065.065.074-.074.066-.07-.075zm-4.581-1.856l-.08.064-.063-.074.074-.065.069.075zm.629-.552l-.07-.074.08-.07.069.08-.079.064zm2.182 3.805l.069.074-.08.07-.068-.08.079-.064zm.629-.552l.079-.064.064.074-.074.065-.07-.075zm-3.844-2.35l-.069-.
|
|
130
|
+
d: "M17.273 5.92l-.078.065-.065-.074.074-.065.07.074zm.63-.552l-.07-.074.079-.069.069.078-.079.065zm2.286 3.853l.069.074-.079.07-.069-.079.079-.065zm.628-.552l.079-.065.065.074-.074.066-.07-.075zm-4.581-1.856l-.08.064-.063-.074.074-.065.069.075zm.629-.552l-.07-.074.08-.07.069.08-.079.064zm2.182 3.805l.069.074-.08.07-.068-.08.079-.064zm.629-.552l.079-.064.064.074-.074.065-.07-.075zm-3.844-2.35l-.069-.074.08-.07.069.08-.08.065zm-.629.552l-.079.064-.064-.073.074-.065.07.074zm3.448 2.727l.079-.064.063.074-.073.064-.07-.074zm-.63.552l.07.074-.08.07-.069-.08.08-.064zm-.817-5.15l.63-.551.138.148-.63.552-.138-.148zm2.906 3.441l-2.915-3.301.157-.13 2.915 3.301-.157.13zm.777-.542l-.63.551-.138-.148.63-.552.138.149zm-2.906-3.44l2.915 3.3-.157.13-2.915-3.3.157-.13zm-1.814 1.434l.629-.551.138.148-.629.552-.138-.149zm2.8 3.392l-2.81-3.253.158-.129 2.81 3.254-.157.128zm.778-.542l-.63.552-.138-.148.63-.552.138.149zm-2.801-3.391l2.81 3.253-.158.129-2.81-3.254.158-.128zm-1.042 1.042l-.63.552-.138-.149.629-.552.139.149zm2.67 3.268l-2.819-3.278.159-.128 2.818 3.278-.158.128zm-.62.413l.63-.551.138.148-.63.552-.137-.149zm-2.67-3.268l2.819 3.279-.159.128-2.818-3.279.159-.128z"
|
|
131
131
|
}), /*#__PURE__*/React.createElement("path", {
|
|
132
132
|
fillRule: "evenodd",
|
|
133
133
|
clipRule: "evenodd",
|
package/dist/es/icons/flag-us.js
CHANGED
|
@@ -85,7 +85,7 @@ var FlagUs = function FlagUs(props) {
|
|
|
85
85
|
}), /*#__PURE__*/React.createElement("path", {
|
|
86
86
|
fillRule: "evenodd",
|
|
87
87
|
clipRule: "evenodd",
|
|
88
|
-
d: "M2.43 6.898l.729-.492.565.395h-.32l.647.555-.219.778H3.49l-.332-.715-.284.715H2.03l.647.555-.246.876.729-.492.565.394h-.32l.647.556-.219.778H3.49l-.332-.715-.284.715H2.03l.647.555-.246.876.729-.492.705.492-.22-.876.567-.555h-.262l.585-.395.565.395h-.32l.647.555-.246.876.729-.492.705.492-.22-.876.567-.555h-.262l.585-.395.565.395h-.32l.647.555-.246.876.729-.492.705.492-.22-.876.567-.555h-.262l.585-.395.565.395h-.32l.647.555-.246.876.729-.492.705.492-.22-.876.567-.555h-.721l-.332-.715-.284.715h-.41l-.195-.778.567-.556h-.261l.584-.394.705.492-.22-.876.567-.555h-.721l-.332-.715-.284.715h-.41l-.195-.778.567-.555h-.261l.584-.395.705.492-.22-.875.567-.556h-.721l-.332-.714-.284.714h-.845l.647.556-.219.778h-.342l-.332-.715-.284.715h-.41l-.195-.
|
|
88
|
+
d: "M2.43 6.898l.729-.492.565.395h-.32l.647.555-.219.778H3.49l-.332-.715-.284.715H2.03l.647.555-.246.876.729-.492.565.394h-.32l.647.556-.219.778H3.49l-.332-.715-.284.715H2.03l.647.555-.246.876.729-.492.705.492-.22-.876.567-.555h-.262l.585-.395.565.395h-.32l.647.555-.246.876.729-.492.705.492-.22-.876.567-.555h-.262l.585-.395.565.395h-.32l.647.555-.246.876.729-.492.705.492-.22-.876.567-.555h-.262l.585-.395.565.395h-.32l.647.555-.246.876.729-.492.705.492-.22-.876.567-.555h-.721l-.332-.715-.284.715h-.41l-.195-.778.567-.556h-.261l.584-.394.705.492-.22-.876.567-.555h-.721l-.332-.715-.284.715h-.41l-.195-.778.567-.555h-.261l.584-.395.705.492-.22-.875.567-.556h-.721l-.332-.714-.284.714h-.845l.647.556-.219.778h-.342l-.332-.715-.284.715h-.41l-.195-.778.567-.556H8.99l-.332-.714-.284.714H7.53l.647.556-.219.778h-.342l-.332-.715-.284.715h-.41l-.195-.778.567-.556H6.24l-.332-.714-.284.714H4.78l.647.556-.219.778h-.342l-.332-.715-.284.715h-.41l-.195-.778.567-.556H3.49l-.332-.714-.284.714H2.03l.647.556-.246.875zm8.277 2.57l.219-.779-.647-.555h.32l-.565-.394-.585.394h.262l-.567.555.195.778h.41l.284-.714.332.714h.342zm-1.483 0l-.565-.395-.585.394h.262l-.567.556.195.778h.41l.284-.715.332.715h.342l.219-.778-.647-.556h.32zm-2.423.555l-.219.778H6.24l-.332-.715-.284.715h-.41l-.195-.778.567-.556h-.262l.585-.394.565.394h-.32l.647.556zm.198-.556h-.41l-.195-.778.567-.555h-.262l.585-.394.565.394h-.32l.647.555-.219.778h-.342l-.332-.714-.284.714zm-1.792 0l.219-.778-.647-.555h.32l-.565-.394-.585.394h.262l-.567.555.195.778h.41l.284-.714.332.714h.342zm4.344-2.111l-.219.778H8.99l-.332-.715-.284.715h-.41l-.195-.778.567-.555h-.262l.585-.395.565.395h-.32l.647.555zM6.474 6.8l-.565-.395-.585.395h.262l-.567.555.195.778h.41l.284-.715.332.715h.342l.219-.778-.647-.555h.32z"
|
|
89
89
|
}))), /*#__PURE__*/React.createElement("g", {
|
|
90
90
|
style: {
|
|
91
91
|
mixBlendMode: 'multiply'
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
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(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
5
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
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 Flash = function Flash(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
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
45
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
46
|
+
fillRule: "evenodd",
|
|
47
|
+
clipRule: "evenodd",
|
|
48
|
+
d: "M11.544 3.235c1.225-1.77 3.997-.62 3.612 1.496l-.958 5.27h1.894c1.613 0 2.562 1.811 1.644 3.138l-5.28 7.626c-1.225 1.77-3.997.62-3.612-1.496L9.802 14H7.909c-1.614 0-2.563-1.812-1.645-3.138l5.28-7.627zm1.645 1.139L7.909 12h1.893a2 2 0 011.968 2.358l-.958 5.268L16.092 12h-1.894a2 2 0 01-1.967-2.358l.958-5.268z"
|
|
49
|
+
}))));
|
|
50
|
+
};
|
|
51
|
+
Flash.propTypes = {
|
|
52
|
+
iconClassName: PropTypes.string,
|
|
53
|
+
spin: PropTypes.bool,
|
|
54
|
+
color: PropTypes.string,
|
|
55
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
56
|
+
};
|
|
57
|
+
Flash.defaultProps = {
|
|
58
|
+
spin: false,
|
|
59
|
+
color: 'currentColor',
|
|
60
|
+
size: '1em'
|
|
61
|
+
};
|
|
62
|
+
export default Flash;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
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(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
5
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
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 LogoBitkeepCl = function LogoBitkeepCl(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
|
+
fillRule: "evenodd",
|
|
48
|
+
clipRule: "evenodd",
|
|
49
|
+
d: "M21 7.901v1.055a.595.595 0 01-.075.29.572.572 0 01-.206.213l-3.296 1.962 2.944 1.747c.192.115.352.28.463.479.111.198.17.423.17.653v2.811c0 .23-.059.455-.17.654a1.286 1.286 0 01-.463.478l-7.745 4.582a1.236 1.236 0 01-1.265 0l-2.531-1.509a.297.297 0 010-.502l8.366-4.967a.149.149 0 00.052-.198.142.142 0 00-.052-.054l-3.106-1.85a.55.55 0 00-.562 0L5.02 18.793a.412.412 0 01-.422 0l-.962-.568a1.286 1.286 0 01-.466-.479c-.112-.199-.171-.424-.171-.655v-1.15a.446.446 0 01.21-.378l12.188-7.22a.148.148 0 000-.252l-3.111-1.856a.55.55 0 00-.563 0L3.428 11.16a.275.275 0 01-.384-.106.297.297 0 01-.038-.146v-3.02c0-.23.06-.455.171-.654.112-.199.272-.363.466-.478l7.74-4.581a1.236 1.236 0 011.262 0l7.725 4.595c.192.115.351.28.462.479.11.199.168.424.168.653z",
|
|
50
|
+
fill: "#7524F9"
|
|
51
|
+
}))));
|
|
52
|
+
};
|
|
53
|
+
LogoBitkeepCl.propTypes = {
|
|
54
|
+
iconClassName: PropTypes.string,
|
|
55
|
+
spin: PropTypes.bool,
|
|
56
|
+
color: PropTypes.string,
|
|
57
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
58
|
+
};
|
|
59
|
+
LogoBitkeepCl.defaultProps = {
|
|
60
|
+
spin: false,
|
|
61
|
+
color: 'currentColor',
|
|
62
|
+
size: '1em'
|
|
63
|
+
};
|
|
64
|
+
export default LogoBitkeepCl;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
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(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
5
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
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 Reject = function Reject(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
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
45
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
46
|
+
d: "M8.695 10.752a5 5 0 117.038-.426 7.965 7.965 0 00-2.306 1.11l-.224-.684c-.203-.502.039-.985.407-1.22a3 3 0 10-3.22 0c.59.376.604.633.404 1.245-.192.587-.389 1.174-.585 1.76l-.26.78A1 1 0 019 14H4v2h6.252A8.016 8.016 0 0010 18H3a1 1 0 01-1-1v-4a1 1 0 011-1h5.28l.415-1.248z"
|
|
47
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
d: "M11.07 22a7.954 7.954 0 01-.818-2H2.5a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h8.57z"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
+
fillRule: "evenodd",
|
|
51
|
+
clipRule: "evenodd",
|
|
52
|
+
d: "M18 24a6 6 0 100-12 6 6 0 000 12zm0-2a4 4 0 003.446-6.032l-5.478 5.478c.596.352 1.29.554 2.032.554zm2.032-7.446l-5.478 5.478a4 4 0 015.478-5.478z"
|
|
53
|
+
}))));
|
|
54
|
+
};
|
|
55
|
+
Reject.propTypes = {
|
|
56
|
+
iconClassName: PropTypes.string,
|
|
57
|
+
spin: PropTypes.bool,
|
|
58
|
+
color: PropTypes.string,
|
|
59
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
60
|
+
};
|
|
61
|
+
Reject.defaultProps = {
|
|
62
|
+
spin: false,
|
|
63
|
+
color: 'currentColor',
|
|
64
|
+
size: '1em'
|
|
65
|
+
};
|
|
66
|
+
export default Reject;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
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(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
5
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
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 SvipFill = function SvipFill(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
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
45
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
46
|
+
fillRule: "evenodd",
|
|
47
|
+
clipRule: "evenodd",
|
|
48
|
+
d: "M10.332 19.766a2.24 2.24 0 001.638.722 2.21 2.21 0 001.624-.722l8.3-8.938c.777-.833.79-2.11.041-2.97L18.8 4.263a2.195 2.195 0 00-1.666-.763H6.85c-.652 0-1.263.278-1.68.763L2.048 7.858c-.75.86-.722 2.137.041 2.97l8.245 8.938zm1.05-3.584a.685.685 0 00.477.197.705.705 0 00.46-.18l6.727-6.565a.669.669 0 00.017-.935.669.669 0 00-.936-.016l-6.252 6.104L5.935 8.7a.669.669 0 00-.936-.016.669.669 0 00-.016.935l6.4 6.564z"
|
|
49
|
+
}))));
|
|
50
|
+
};
|
|
51
|
+
SvipFill.propTypes = {
|
|
52
|
+
iconClassName: PropTypes.string,
|
|
53
|
+
spin: PropTypes.bool,
|
|
54
|
+
color: PropTypes.string,
|
|
55
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
56
|
+
};
|
|
57
|
+
SvipFill.defaultProps = {
|
|
58
|
+
spin: false,
|
|
59
|
+
color: 'currentColor',
|
|
60
|
+
size: '1em'
|
|
61
|
+
};
|
|
62
|
+
export default SvipFill;
|
|
@@ -44,7 +44,7 @@ var TemplateCl = function TemplateCl(props) {
|
|
|
44
44
|
fill: "none",
|
|
45
45
|
xmlns: "http://www.w3.org/2000/svg"
|
|
46
46
|
}, /*#__PURE__*/React.createElement("path", {
|
|
47
|
-
d: "M11.
|
|
47
|
+
d: "M11.304 2L23 4.97l-3.003 11.565L8.3 13.565 11.304 2z",
|
|
48
48
|
fill: "#B3CFF8"
|
|
49
49
|
}), /*#__PURE__*/React.createElement("g", {
|
|
50
50
|
style: {
|
package/dist/es/index.js
CHANGED
|
@@ -40,6 +40,7 @@ export { default as TaUploadId } from './icons/upload-id';
|
|
|
40
40
|
export { default as TaIdFreeze } from './icons/id-freeze';
|
|
41
41
|
export { default as TaVip } from './icons/vip';
|
|
42
42
|
export { default as TaVipFill } from './icons/vip-fill';
|
|
43
|
+
export { default as TaSvipFill } from './icons/svip-fill';
|
|
43
44
|
export { default as TaEducation } from './icons/education';
|
|
44
45
|
export { default as TaEducationFill } from './icons/education-fill';
|
|
45
46
|
export { default as TaGame } from './icons/game';
|
|
@@ -53,15 +54,18 @@ export { default as TaRecurring } from './icons/recurring';
|
|
|
53
54
|
export { default as TaManual } from './icons/manual';
|
|
54
55
|
export { default as TaMute } from './icons/mute';
|
|
55
56
|
export { default as TaApprove } from './icons/approve';
|
|
57
|
+
export { default as TaReject } from './icons/reject';
|
|
56
58
|
export { default as TaEndTask } from './icons/end-task';
|
|
57
|
-
export { default as
|
|
58
|
-
export { default as TaSmile } from './icons/smile';
|
|
59
|
+
export { default as TaTask } from './icons/task';
|
|
59
60
|
export { default as TaProperty } from './icons/property';
|
|
60
61
|
export { default as TaLab } from './icons/lab';
|
|
61
62
|
export { default as TaRuler } from './icons/ruler';
|
|
63
|
+
export { default as TaSmile } from './icons/smile';
|
|
62
64
|
export { default as TaNewTask } from './icons/new-task';
|
|
63
65
|
export { default as TaSubmit } from './icons/submit';
|
|
64
|
-
export { default as
|
|
66
|
+
export { default as TaApproveCancelled } from './icons/approve-cancelled';
|
|
67
|
+
export { default as TaUndo } from './icons/undo';
|
|
68
|
+
export { default as TaFlash } from './icons/flash';
|
|
65
69
|
export { default as TaTdLogo } from './icons/td-logo';
|
|
66
70
|
export { default as TaLanguage } from './icons/language';
|
|
67
71
|
export { default as TaCalendar } from './icons/calendar';
|
|
@@ -167,6 +171,7 @@ export { default as TaLogoHappyelementCl } from './icons/logo-happyelement-cl';
|
|
|
167
171
|
export { default as TaLogoWepieCl } from './icons/logo-wepie-cl';
|
|
168
172
|
export { default as TaLogoIggCl } from './icons/logo-igg-cl';
|
|
169
173
|
export { default as TaLogoLitmatchCl } from './icons/logo-litmatch-cl';
|
|
174
|
+
export { default as TaLogoBitkeepCl } from './icons/logo-bitkeep-cl';
|
|
170
175
|
export { default as TaDashboardCl } from './icons/dashboard-cl';
|
|
171
176
|
export { default as TaReportCl } from './icons/report-cl';
|
|
172
177
|
export { default as TaUserTagCl } from './icons/user-tag-cl';
|
|
@@ -188,16 +193,16 @@ export { default as TaMAttributionCl } from './icons/m-attribution-cl';
|
|
|
188
193
|
export { default as TaUTagCl } from './icons/u-tag-cl';
|
|
189
194
|
export { default as TaUCohortCl } from './icons/u-cohort-cl';
|
|
190
195
|
export { default as TaUSearchCl } from './icons/u-search-cl';
|
|
191
|
-
export { default as TaETaskCl } from './icons/e-task-cl';
|
|
192
|
-
export { default as TaEChartsCl } from './icons/e-charts-cl';
|
|
193
|
-
export { default as TaESettingCl } from './icons/e-setting-cl';
|
|
194
|
-
export { default as TaECampaignCl } from './icons/e-campaign-cl';
|
|
195
196
|
export { default as TaDManageCl } from './icons/d-manage-cl';
|
|
196
197
|
export { default as TaDTrackingCl } from './icons/d-tracking-cl';
|
|
197
198
|
export { default as TaDIntegrationCl } from './icons/d-integration-cl';
|
|
198
199
|
export { default as TaAlertCl } from './icons/alert-cl';
|
|
199
200
|
export { default as TaTemplateCl } from './icons/template-cl';
|
|
200
201
|
export { default as TaDateMarkCl } from './icons/date-mark-cl';
|
|
202
|
+
export { default as TaEChartsCl } from './icons/e-charts-cl';
|
|
203
|
+
export { default as TaECampaignCl } from './icons/e-campaign-cl';
|
|
204
|
+
export { default as TaETaskCl } from './icons/e-task-cl';
|
|
205
|
+
export { default as TaESettingCl } from './icons/e-setting-cl';
|
|
201
206
|
export { default as TaInfo } from './icons/info';
|
|
202
207
|
export { default as TaInfoFill } from './icons/info-fill';
|
|
203
208
|
export { default as TaHelp } from './icons/help';
|
package/dist/index.d.ts
CHANGED
|
@@ -51,6 +51,7 @@ export const TaUploadId: Icon;
|
|
|
51
51
|
export const TaIdFreeze: Icon;
|
|
52
52
|
export const TaVip: Icon;
|
|
53
53
|
export const TaVipFill: Icon;
|
|
54
|
+
export const TaSvipFill: Icon;
|
|
54
55
|
export const TaEducation: Icon;
|
|
55
56
|
export const TaEducationFill: Icon;
|
|
56
57
|
export const TaGame: Icon;
|
|
@@ -64,15 +65,18 @@ export const TaRecurring: Icon;
|
|
|
64
65
|
export const TaManual: Icon;
|
|
65
66
|
export const TaMute: Icon;
|
|
66
67
|
export const TaApprove: Icon;
|
|
68
|
+
export const TaReject: Icon;
|
|
67
69
|
export const TaEndTask: Icon;
|
|
68
|
-
export const
|
|
69
|
-
export const TaSmile: Icon;
|
|
70
|
+
export const TaTask: Icon;
|
|
70
71
|
export const TaProperty: Icon;
|
|
71
72
|
export const TaLab: Icon;
|
|
72
73
|
export const TaRuler: Icon;
|
|
74
|
+
export const TaSmile: Icon;
|
|
73
75
|
export const TaNewTask: Icon;
|
|
74
76
|
export const TaSubmit: Icon;
|
|
75
|
-
export const
|
|
77
|
+
export const TaApproveCancelled: Icon;
|
|
78
|
+
export const TaUndo: Icon;
|
|
79
|
+
export const TaFlash: Icon;
|
|
76
80
|
export const TaTdLogo: Icon;
|
|
77
81
|
export const TaLanguage: Icon;
|
|
78
82
|
export const TaCalendar: Icon;
|
|
@@ -178,6 +182,7 @@ export const TaLogoHappyelementCl: Icon;
|
|
|
178
182
|
export const TaLogoWepieCl: Icon;
|
|
179
183
|
export const TaLogoIggCl: Icon;
|
|
180
184
|
export const TaLogoLitmatchCl: Icon;
|
|
185
|
+
export const TaLogoBitkeepCl: Icon;
|
|
181
186
|
export const TaDashboardCl: Icon;
|
|
182
187
|
export const TaReportCl: Icon;
|
|
183
188
|
export const TaUserTagCl: Icon;
|
|
@@ -199,16 +204,16 @@ export const TaMAttributionCl: Icon;
|
|
|
199
204
|
export const TaUTagCl: Icon;
|
|
200
205
|
export const TaUCohortCl: Icon;
|
|
201
206
|
export const TaUSearchCl: Icon;
|
|
202
|
-
export const TaETaskCl: Icon;
|
|
203
|
-
export const TaEChartsCl: Icon;
|
|
204
|
-
export const TaESettingCl: Icon;
|
|
205
|
-
export const TaECampaignCl: Icon;
|
|
206
207
|
export const TaDManageCl: Icon;
|
|
207
208
|
export const TaDTrackingCl: Icon;
|
|
208
209
|
export const TaDIntegrationCl: Icon;
|
|
209
210
|
export const TaAlertCl: Icon;
|
|
210
211
|
export const TaTemplateCl: Icon;
|
|
211
212
|
export const TaDateMarkCl: Icon;
|
|
213
|
+
export const TaEChartsCl: Icon;
|
|
214
|
+
export const TaECampaignCl: Icon;
|
|
215
|
+
export const TaETaskCl: Icon;
|
|
216
|
+
export const TaESettingCl: Icon;
|
|
212
217
|
export const TaInfo: Icon;
|
|
213
218
|
export const TaInfoFill: Icon;
|
|
214
219
|
export const TaHelp: Icon;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
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(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
14
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
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 ApproveCancelled = function ApproveCancelled(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
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
52
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
53
|
+
d: "M19.973 14.042c0-1.19-.255-2.237-.766-3.141-.511-.904-1.247-1.612-2.207-2.123-.96-.51-2.11-.766-3.45-.766H7.783l-2.032.092 1.508-1.261L9.4 4.739c.1-.093.178-.196.234-.308a.974.974 0 00.084-.421.995.995 0 00-.28-.72C9.25 3.097 9.005 3 8.699 3c-.287 0-.539.11-.757.327l-5.03 4.956a1.1 1.1 0 00-.244.364c-.056.131-.084.268-.084.412 0 .143.028.283.084.42.056.138.138.256.243.356l5.03 4.955c.219.219.471.328.758.328.306 0 .552-.094.739-.28.187-.194.28-.437.28-.73a.95.95 0 00-.084-.412 1.015 1.015 0 00-.234-.327l-2.14-2.094-1.51-1.262 2.033.093h5.795c.923 0 1.705.165 2.347.496.648.324 1.14.779 1.477 1.365.337.58.505 1.246.505 2 0 .761-.168 1.437-.505 2.03-.336.585-.829 1.047-1.477 1.383-.642.343-1.425.515-2.347.515h-2.066c-.312 0-.568.102-.767.308-.2.206-.3.452-.3.739s.1.533.3.738c.2.206.455.31.767.31h2.15c1.315 0 2.444-.247 3.385-.74.947-.492 1.67-1.184 2.17-2.075.504-.892.756-1.936.756-3.133z"
|
|
54
|
+
}))));
|
|
55
|
+
};
|
|
56
|
+
ApproveCancelled.propTypes = {
|
|
57
|
+
iconClassName: _propTypes["default"].string,
|
|
58
|
+
spin: _propTypes["default"].bool,
|
|
59
|
+
color: _propTypes["default"].string,
|
|
60
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
61
|
+
};
|
|
62
|
+
ApproveCancelled.defaultProps = {
|
|
63
|
+
spin: false,
|
|
64
|
+
color: 'currentColor',
|
|
65
|
+
size: '1em'
|
|
66
|
+
};
|
|
67
|
+
var _default = ApproveCancelled;
|
|
68
|
+
exports["default"] = _default;
|
|
@@ -88,7 +88,7 @@ var FlagCn = function FlagCn(props) {
|
|
|
88
88
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
89
89
|
d: "M11.324 8.115l-1.124.657.257-1.283-.936-.96 1.267-.052.536-1.198.535 1.198h1.265l-.933 1.012.28 1.283-1.147-.657z"
|
|
90
90
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
91
|
-
d: "M12.699 10.781l-1.124.658.257-1.283-.936-.96 1.267-.
|
|
91
|
+
d: "M12.699 10.781l-1.124.658.257-1.283-.936-.96 1.267-.052.536-1.199.535 1.199H14.5l-.933 1.012.28 1.283-1.147-.658z"
|
|
92
92
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
93
93
|
d: "M11.324 13.448l-1.124.657.257-1.283-.936-.96 1.267-.052.536-1.198.535 1.198h1.265l-.933 1.012.28 1.283-1.147-.657z"
|
|
94
94
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
@@ -128,13 +128,13 @@ var FlagKr = function FlagKr(props) {
|
|
|
128
128
|
clipRule: "evenodd",
|
|
129
129
|
d: "M6.018 5.368l.63.552L3.731 9.22l-.629-.552 2.915-3.3zm1.038.893l.629.552-2.811 3.253-.629-.552 2.81-3.253zm1.661 1.455l-.629-.551-2.818 3.278.629.552 2.818-3.279z"
|
|
130
130
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
131
|
-
d: "M6.647 5.92l.079.065.065-.074-.075-.065-.069.074zm-.629-.552l.07-.074-.08-.069-.068.078.078.065zM3.732 9.221l-.07.074.08.07.068-.079-.078-.065zm-.629-.552l-.078-.065-.066.074.075.066.07-.075zm4.582-1.856l.079.064.064-.074-.074-.065-.07.075zm-.63-.552l.07-.074-.08-.07-.068.08.079.064zm-2.181 3.805l-.07.074.08.07.07-.08-.08-.064zm-.629-.552l-.08-.064-.063.074.074.065.069-.075zm3.843-2.35l.07-.
|
|
131
|
+
d: "M6.647 5.92l.079.065.065-.074-.075-.065-.069.074zm-.629-.552l.07-.074-.08-.069-.068.078.078.065zM3.732 9.221l-.07.074.08.07.068-.079-.078-.065zm-.629-.552l-.078-.065-.066.074.075.066.07-.075zm4.582-1.856l.079.064.064-.074-.074-.065-.07.075zm-.63-.552l.07-.074-.08-.07-.068.08.079.064zm-2.181 3.805l-.07.074.08.07.07-.08-.08-.064zm-.629-.552l-.08-.064-.063.074.074.065.069-.075zm3.843-2.35l.07-.074-.08-.07-.069.08.08.065zm.63.552l.079.064.063-.073-.073-.065-.07.074zM5.27 10.443l-.08-.064-.063.074.074.064.069-.074zm.629.552l-.07.074.08.07.07-.08-.08-.064zm.817-5.15l-.629-.551-.138.148.63.552.137-.148zM3.81 9.287l2.916-3.301-.157-.13-2.915 3.301.156.13zm-.776-.542l.629.551.138-.148-.629-.552-.138.149zm2.906-3.44l-2.915 3.3.156.13 2.916-3.3-.157-.13zm1.814 1.434l-.63-.551-.137.148.629.552.138-.149zm-2.8 3.392l2.81-3.253-.158-.129-2.811 3.254.158.128zm-.778-.542l.629.552.138-.148-.629-.552-.138.149zm2.8-3.391L4.167 9.45l.158.129 2.81-3.254-.157-.128zM8.02 7.239l.63.552.138-.149-.63-.552-.138.149zm-2.67 3.268l2.819-3.278-.159-.128-2.818 3.278.158.128zm.62.413l-.63-.551-.138.148.629.552.138-.149zm2.67-3.268l-2.82 3.279.16.128L8.796 7.78l-.159-.128z"
|
|
132
132
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
133
133
|
fillRule: "evenodd",
|
|
134
134
|
clipRule: "evenodd",
|
|
135
135
|
d: "M17.902 5.368l-.629.552 2.915 3.301.63-.552-2.916-3.3zm-1.037.893l-.63.552 2.811 3.253.63-.552-2.811-3.253zm-1.662 1.455l.63-.551 2.818 3.278-.63.552-2.818-3.279z"
|
|
136
136
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
137
|
-
d: "M17.273 5.92l-.078.065-.065-.074.074-.065.07.074zm.63-.552l-.07-.074.079-.069.069.078-.079.065zm2.286 3.853l.069.074-.079.07-.069-.079.079-.065zm.628-.552l.079-.065.065.074-.074.066-.07-.075zm-4.581-1.856l-.08.064-.063-.074.074-.065.069.075zm.629-.552l-.07-.074.08-.07.069.08-.079.064zm2.182 3.805l.069.074-.08.07-.068-.08.079-.064zm.629-.552l.079-.064.064.074-.074.065-.07-.075zm-3.844-2.35l-.069-.
|
|
137
|
+
d: "M17.273 5.92l-.078.065-.065-.074.074-.065.07.074zm.63-.552l-.07-.074.079-.069.069.078-.079.065zm2.286 3.853l.069.074-.079.07-.069-.079.079-.065zm.628-.552l.079-.065.065.074-.074.066-.07-.075zm-4.581-1.856l-.08.064-.063-.074.074-.065.069.075zm.629-.552l-.07-.074.08-.07.069.08-.079.064zm2.182 3.805l.069.074-.08.07-.068-.08.079-.064zm.629-.552l.079-.064.064.074-.074.065-.07-.075zm-3.844-2.35l-.069-.074.08-.07.069.08-.08.065zm-.629.552l-.079.064-.064-.073.074-.065.07.074zm3.448 2.727l.079-.064.063.074-.073.064-.07-.074zm-.63.552l.07.074-.08.07-.069-.08.08-.064zm-.817-5.15l.63-.551.138.148-.63.552-.138-.148zm2.906 3.441l-2.915-3.301.157-.13 2.915 3.301-.157.13zm.777-.542l-.63.551-.138-.148.63-.552.138.149zm-2.906-3.44l2.915 3.3-.157.13-2.915-3.3.157-.13zm-1.814 1.434l.629-.551.138.148-.629.552-.138-.149zm2.8 3.392l-2.81-3.253.158-.129 2.81 3.254-.157.128zm.778-.542l-.63.552-.138-.148.63-.552.138.149zm-2.801-3.391l2.81 3.253-.158.129-2.81-3.254.158-.128zm-1.042 1.042l-.63.552-.138-.149.629-.552.139.149zm2.67 3.268l-2.819-3.278.159-.128 2.818 3.278-.158.128zm-.62.413l.63-.551.138.148-.63.552-.137-.149zm-2.67-3.268l2.819 3.279-.159.128-2.818-3.279.159-.128z"
|
|
138
138
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
139
139
|
fillRule: "evenodd",
|
|
140
140
|
clipRule: "evenodd",
|