@tant/icons 1.0.29 → 1.1.41

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.
@@ -0,0 +1,67 @@
1
+ var _excluded = ["color", "size", "spin", "style", "className"];
2
+
3
+ function _extends() { _extends = Object.assign || 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
+
5
+ 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; }
6
+
7
+ 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; }
8
+
9
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
10
+
11
+ 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; }
12
+
13
+ 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; }
14
+
15
+ import React from 'react';
16
+ import PropTypes from 'prop-types';
17
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} .tant-icon-span { display: inline-flex; align-items: center; justify-content: center }';
18
+
19
+ var AssetConvert = function AssetConvert(props) {
20
+ var color = props.color,
21
+ size = props.size,
22
+ spin = props.spin,
23
+ style = props.style,
24
+ className = props.className,
25
+ otherProps = _objectWithoutProperties(props, _excluded);
26
+
27
+ return /*#__PURE__*/React.createElement("span", {
28
+ className: className ? 'tant-icon-span ' + className : 'tant-icon-span'
29
+ }, /*#__PURE__*/React.createElement("style", {
30
+ children: loadingCircleStyle
31
+ }), /*#__PURE__*/React.createElement("svg", _extends({
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ width: size,
34
+ height: size,
35
+ viewBox: "0 0 24 24",
36
+ fill: color
37
+ }, otherProps, {
38
+ style: _objectSpread(_objectSpread(_objectSpread({}, style), spin ? {
39
+ animationDuration: '1s',
40
+ animationIterationCount: 'infinite',
41
+ animationName: 'loadingCircle',
42
+ animationTimingFunction: 'linear'
43
+ } : {}), {}, {
44
+ cursor: 'pointer'
45
+ })
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ fillRule: "evenodd",
48
+ clipRule: "evenodd",
49
+ d: "M5.636 18.364H2.91a.91.91 0 01-.909-.91V2.91A.91.91 0 012.91 2h14.544a.91.91 0 01.91.91v2.726h2.727a.91.91 0 01.909.91V21.09a.91.91 0 01-.91.909H6.546a.91.91 0 01-.909-.91v-2.726zm-1.818-1.819V3.819h12.728v1.818h-10a.91.91 0 00-.91.91v10H3.818zm4.546-9.09a.91.91 0 00-.91.909v11.818h12.728V7.455H8.364z"
50
+ }), /*#__PURE__*/React.createElement("path", {
51
+ d: "M11 10v4H9l4 4v-8h-2z"
52
+ }), /*#__PURE__*/React.createElement("path", {
53
+ d: "M17 18v-4h2l-4-4v8h2z"
54
+ })));
55
+ };
56
+
57
+ AssetConvert.propTypes = {
58
+ spin: PropTypes.bool,
59
+ color: PropTypes.string,
60
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
61
+ };
62
+ AssetConvert.defaultProps = {
63
+ spin: false,
64
+ color: 'currentColor',
65
+ size: '16'
66
+ };
67
+ export default AssetConvert;
@@ -0,0 +1,62 @@
1
+ var _excluded = ["color", "size", "spin", "style", "className"];
2
+
3
+ function _extends() { _extends = Object.assign || 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
+
5
+ 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; }
6
+
7
+ 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; }
8
+
9
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
10
+
11
+ 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; }
12
+
13
+ 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; }
14
+
15
+ import React from 'react';
16
+ import PropTypes from 'prop-types';
17
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} .tant-icon-span { display: inline-flex; align-items: center; justify-content: center }';
18
+
19
+ var LogoGarenaCl = function LogoGarenaCl(props) {
20
+ var color = props.color,
21
+ size = props.size,
22
+ spin = props.spin,
23
+ style = props.style,
24
+ className = props.className,
25
+ otherProps = _objectWithoutProperties(props, _excluded);
26
+
27
+ return /*#__PURE__*/React.createElement("span", {
28
+ className: className ? 'tant-icon-span ' + className : 'tant-icon-span'
29
+ }, /*#__PURE__*/React.createElement("style", {
30
+ children: loadingCircleStyle
31
+ }), /*#__PURE__*/React.createElement("svg", _extends({
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ width: size,
34
+ height: size,
35
+ viewBox: "0 0 24 24",
36
+ fill: color
37
+ }, otherProps, {
38
+ style: _objectSpread(_objectSpread(_objectSpread({}, style), spin ? {
39
+ animationDuration: '1s',
40
+ animationIterationCount: 'infinite',
41
+ animationName: 'loadingCircle',
42
+ animationTimingFunction: 'linear'
43
+ } : {}), {}, {
44
+ cursor: 'pointer'
45
+ })
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ d: "M7.932 12.964s1.469-2.947 7.601-1.245c0 0 .931 1.3 4.916.897 0 0-2.025 1.935-3.404 5.073 0 0-1.338 4.206-9.192 3.137 0 0-6.49-1.5-5.459-7.11 0 0 1.054-4.858 6.773-5.637l.638-.166s-2.028-1.122-6.048.676l-1.167.537L0 8.885s1.037-2.228 3.507-3.731h.25l3.714-2.228-2.025 1.825 2.717-1.18S12.41 2.466 14.013 2l-5.22 3.261s2.663-.563 3.925-.59l.288.59s2.682-.08 4.3.752c0 0-1.124 2.442 6.694 1.395l-.453.505-2.921 1.052-1.059.322.733.355.326.236h-4.257s-5.063-3.546-8.773 1.154c0 0-4.127 4.719-.432 8.106 0 0 6.594 3.301 7.859-4.697 0 0-1.015-4.077-6.119-1.37 0 0 1.029 1.287.027 1.716 0 0-2.337.553-.923-1.715",
48
+ fill: "#E41E26"
49
+ })));
50
+ };
51
+
52
+ LogoGarenaCl.propTypes = {
53
+ spin: PropTypes.bool,
54
+ color: PropTypes.string,
55
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
56
+ };
57
+ LogoGarenaCl.defaultProps = {
58
+ spin: false,
59
+ color: 'currentColor',
60
+ size: '16'
61
+ };
62
+ export default LogoGarenaCl;
@@ -44,13 +44,9 @@ var UPropertySm = function UPropertySm(props) {
44
44
  cursor: 'pointer'
45
45
  })
46
46
  }), /*#__PURE__*/React.createElement("path", {
47
- fillRule: "evenodd",
48
- clipRule: "evenodd",
49
- d: "M8.272 5.25A2.745 2.745 0 015.532 8a2.745 2.745 0 01-2.74-2.75 2.745 2.745 0 012.74-2.75 2.745 2.745 0 012.74 2.75zm-1.023 0a1.72 1.72 0 01-1.717 1.723A1.72 1.72 0 013.815 5.25a1.72 1.72 0 011.717-1.723A1.72 1.72 0 017.249 5.25z"
47
+ d: "M8.272 5.25A2.745 2.745 0 015.532 8a2.745 2.745 0 01-2.74-2.75 2.745 2.745 0 012.74-2.75 2.745 2.745 0 012.74 2.75zm-1.023 0a1.72 1.72 0 00-1.717-1.723A1.72 1.72 0 003.815 5.25a1.72 1.72 0 001.717 1.723A1.72 1.72 0 007.249 5.25z"
50
48
  }), /*#__PURE__*/React.createElement("path", {
51
- fillRule: "evenodd",
52
- clipRule: "evenodd",
53
- d: "M1.391 11.37c0-1.138.92-2.06 2.053-2.06h4.007c1.133 0 2.052.922 2.052 2.06v2.13H1.391v-2.13zm2.053-1.03h4.007c.566 0 1.026.461 1.026 1.03v1.1h-6.06v-1.1c0-.569.46-1.03 1.027-1.03z"
49
+ d: "M1.391 11.37c0-1.138.92-2.06 2.053-2.06h4.007c1.133 0 2.052.922 2.052 2.06v2.13H1.391v-2.13zm2.053-1.03c-.567 0-1.026.461-1.026 1.03v1.1h6.059v-1.1c0-.569-.46-1.03-1.026-1.03H3.444z"
54
50
  }), /*#__PURE__*/React.createElement("path", {
55
51
  d: "M14.392 3.78h-4.106V2.75h4.106v1.03z"
56
52
  }), /*#__PURE__*/React.createElement("path", {
package/dist/es/index.js CHANGED
@@ -132,6 +132,7 @@ export { default as TaLogoWechatCl } from './icons/logo-wechat-cl';
132
132
  export { default as TaLogoWechatGray } from './icons/logo-wechat-gray';
133
133
  export { default as TaLogoFeishuCl } from './icons/logo-feishu-cl';
134
134
  export { default as TaLogoKingCl } from './icons/logo-king-cl';
135
+ export { default as TaLogoGarenaCl } from './icons/logo-garena -cl';
135
136
  export { default as TaLogoCurrencylayerCl } from './icons/logo-currencylayer-cl';
136
137
  export { default as TaInfo } from './icons/info';
137
138
  export { default as TaInfoFill } from './icons/info-fill';
@@ -232,14 +233,15 @@ export { default as TaFileMove } from './icons/file-move';
232
233
  export { default as TaFileImport } from './icons/file-import';
233
234
  export { default as TaFileInfo } from './icons/file-info';
234
235
  export { default as TaFileConvert } from './icons/file-convert';
236
+ export { default as TaAssetConvert } from './icons/asset-convert';
235
237
  export { default as TaFileLock } from './icons/file-lock';
238
+ export { default as TaFilePdf } from './icons/file-pdf';
236
239
  export { default as TaDetail } from './icons/detail';
237
240
  export { default as TaMessageCenter } from './icons/message-center';
238
241
  export { default as TaSystemMsg } from './icons/system-msg';
239
242
  export { default as TaComment } from './icons/comment';
240
243
  export { default as TaBook } from './icons/book';
241
244
  export { default as TaBook2 } from './icons/book-2';
242
- export { default as TaFilePdf } from './icons/file-pdf';
243
245
  export { default as TaSticker } from './icons/sticker';
244
246
  export { default as TaStickerFill } from './icons/sticker-fill';
245
247
  export { default as TaEventSm } from './icons/event-sm';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { ComponentType, SVGAttributes } from 'react';
2
+ import { FC, SVGAttributes } from 'react';
3
3
 
4
4
  interface Props extends SVGAttributes<SVGElement> {
5
5
  color?: string;
@@ -7,7 +7,7 @@
7
7
  spin?: boolean;
8
8
  }
9
9
 
10
- type Icon = ComponentType<Props>;
10
+ type Icon = FC<Props>;
11
11
  export const TaSSpace: Icon;
12
12
  export const TaProject: Icon;
13
13
  export const TaSpace: Icon;
@@ -142,6 +142,7 @@ export const TaLogoWechatCl: Icon;
142
142
  export const TaLogoWechatGray: Icon;
143
143
  export const TaLogoFeishuCl: Icon;
144
144
  export const TaLogoKingCl: Icon;
145
+ export const TaLogoGarenaCl: Icon;
145
146
  export const TaLogoCurrencylayerCl: Icon;
146
147
  export const TaInfo: Icon;
147
148
  export const TaInfoFill: Icon;
@@ -242,14 +243,15 @@ export const TaFileMove: Icon;
242
243
  export const TaFileImport: Icon;
243
244
  export const TaFileInfo: Icon;
244
245
  export const TaFileConvert: Icon;
246
+ export const TaAssetConvert: Icon;
245
247
  export const TaFileLock: Icon;
248
+ export const TaFilePdf: Icon;
246
249
  export const TaDetail: Icon;
247
250
  export const TaMessageCenter: Icon;
248
251
  export const TaSystemMsg: Icon;
249
252
  export const TaComment: Icon;
250
253
  export const TaBook: Icon;
251
254
  export const TaBook2: Icon;
252
- export const TaFilePdf: Icon;
253
255
  export const TaSticker: Icon;
254
256
  export const TaStickerFill: Icon;
255
257
  export const TaEventSm: Icon;
@@ -0,0 +1,79 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+
8
+ var _react = _interopRequireDefault(require("react"));
9
+
10
+ var _propTypes = _interopRequireDefault(require("prop-types"));
11
+
12
+ var _excluded = ["color", "size", "spin", "style", "className"];
13
+
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
15
+
16
+ function _extends() { _extends = Object.assign || 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); }
17
+
18
+ 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; }
19
+
20
+ 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; }
21
+
22
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
23
+
24
+ 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; }
25
+
26
+ 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; }
27
+
28
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} .tant-icon-span { display: inline-flex; align-items: center; justify-content: center }';
29
+
30
+ var AssetConvert = function AssetConvert(props) {
31
+ var color = props.color,
32
+ size = props.size,
33
+ spin = props.spin,
34
+ style = props.style,
35
+ className = props.className,
36
+ otherProps = _objectWithoutProperties(props, _excluded);
37
+
38
+ return /*#__PURE__*/_react["default"].createElement("span", {
39
+ className: className ? 'tant-icon-span ' + className : 'tant-icon-span'
40
+ }, /*#__PURE__*/_react["default"].createElement("style", {
41
+ children: loadingCircleStyle
42
+ }), /*#__PURE__*/_react["default"].createElement("svg", _extends({
43
+ xmlns: "http://www.w3.org/2000/svg",
44
+ width: size,
45
+ height: size,
46
+ viewBox: "0 0 24 24",
47
+ fill: color
48
+ }, otherProps, {
49
+ style: _objectSpread(_objectSpread(_objectSpread({}, style), spin ? {
50
+ animationDuration: '1s',
51
+ animationIterationCount: 'infinite',
52
+ animationName: 'loadingCircle',
53
+ animationTimingFunction: 'linear'
54
+ } : {}), {}, {
55
+ cursor: 'pointer'
56
+ })
57
+ }), /*#__PURE__*/_react["default"].createElement("path", {
58
+ fillRule: "evenodd",
59
+ clipRule: "evenodd",
60
+ d: "M5.636 18.364H2.91a.91.91 0 01-.909-.91V2.91A.91.91 0 012.91 2h14.544a.91.91 0 01.91.91v2.726h2.727a.91.91 0 01.909.91V21.09a.91.91 0 01-.91.909H6.546a.91.91 0 01-.909-.91v-2.726zm-1.818-1.819V3.819h12.728v1.818h-10a.91.91 0 00-.91.91v10H3.818zm4.546-9.09a.91.91 0 00-.91.909v11.818h12.728V7.455H8.364z"
61
+ }), /*#__PURE__*/_react["default"].createElement("path", {
62
+ d: "M11 10v4H9l4 4v-8h-2z"
63
+ }), /*#__PURE__*/_react["default"].createElement("path", {
64
+ d: "M17 18v-4h2l-4-4v8h2z"
65
+ })));
66
+ };
67
+
68
+ AssetConvert.propTypes = {
69
+ spin: _propTypes["default"].bool,
70
+ color: _propTypes["default"].string,
71
+ size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
72
+ };
73
+ AssetConvert.defaultProps = {
74
+ spin: false,
75
+ color: 'currentColor',
76
+ size: '16'
77
+ };
78
+ var _default = AssetConvert;
79
+ exports["default"] = _default;
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+
8
+ var _react = _interopRequireDefault(require("react"));
9
+
10
+ var _propTypes = _interopRequireDefault(require("prop-types"));
11
+
12
+ var _excluded = ["color", "size", "spin", "style", "className"];
13
+
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
15
+
16
+ function _extends() { _extends = Object.assign || 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); }
17
+
18
+ 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; }
19
+
20
+ 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; }
21
+
22
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
23
+
24
+ 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; }
25
+
26
+ 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; }
27
+
28
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} .tant-icon-span { display: inline-flex; align-items: center; justify-content: center }';
29
+
30
+ var LogoGarenaCl = function LogoGarenaCl(props) {
31
+ var color = props.color,
32
+ size = props.size,
33
+ spin = props.spin,
34
+ style = props.style,
35
+ className = props.className,
36
+ otherProps = _objectWithoutProperties(props, _excluded);
37
+
38
+ return /*#__PURE__*/_react["default"].createElement("span", {
39
+ className: className ? 'tant-icon-span ' + className : 'tant-icon-span'
40
+ }, /*#__PURE__*/_react["default"].createElement("style", {
41
+ children: loadingCircleStyle
42
+ }), /*#__PURE__*/_react["default"].createElement("svg", _extends({
43
+ xmlns: "http://www.w3.org/2000/svg",
44
+ width: size,
45
+ height: size,
46
+ viewBox: "0 0 24 24",
47
+ fill: color
48
+ }, otherProps, {
49
+ style: _objectSpread(_objectSpread(_objectSpread({}, style), spin ? {
50
+ animationDuration: '1s',
51
+ animationIterationCount: 'infinite',
52
+ animationName: 'loadingCircle',
53
+ animationTimingFunction: 'linear'
54
+ } : {}), {}, {
55
+ cursor: 'pointer'
56
+ })
57
+ }), /*#__PURE__*/_react["default"].createElement("path", {
58
+ d: "M7.932 12.964s1.469-2.947 7.601-1.245c0 0 .931 1.3 4.916.897 0 0-2.025 1.935-3.404 5.073 0 0-1.338 4.206-9.192 3.137 0 0-6.49-1.5-5.459-7.11 0 0 1.054-4.858 6.773-5.637l.638-.166s-2.028-1.122-6.048.676l-1.167.537L0 8.885s1.037-2.228 3.507-3.731h.25l3.714-2.228-2.025 1.825 2.717-1.18S12.41 2.466 14.013 2l-5.22 3.261s2.663-.563 3.925-.59l.288.59s2.682-.08 4.3.752c0 0-1.124 2.442 6.694 1.395l-.453.505-2.921 1.052-1.059.322.733.355.326.236h-4.257s-5.063-3.546-8.773 1.154c0 0-4.127 4.719-.432 8.106 0 0 6.594 3.301 7.859-4.697 0 0-1.015-4.077-6.119-1.37 0 0 1.029 1.287.027 1.716 0 0-2.337.553-.923-1.715",
59
+ fill: "#E41E26"
60
+ })));
61
+ };
62
+
63
+ LogoGarenaCl.propTypes = {
64
+ spin: _propTypes["default"].bool,
65
+ color: _propTypes["default"].string,
66
+ size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
67
+ };
68
+ LogoGarenaCl.defaultProps = {
69
+ spin: false,
70
+ color: 'currentColor',
71
+ size: '16'
72
+ };
73
+ var _default = LogoGarenaCl;
74
+ exports["default"] = _default;
@@ -55,13 +55,9 @@ var UPropertySm = function UPropertySm(props) {
55
55
  cursor: 'pointer'
56
56
  })
57
57
  }), /*#__PURE__*/_react["default"].createElement("path", {
58
- fillRule: "evenodd",
59
- clipRule: "evenodd",
60
- d: "M8.272 5.25A2.745 2.745 0 015.532 8a2.745 2.745 0 01-2.74-2.75 2.745 2.745 0 012.74-2.75 2.745 2.745 0 012.74 2.75zm-1.023 0a1.72 1.72 0 01-1.717 1.723A1.72 1.72 0 013.815 5.25a1.72 1.72 0 011.717-1.723A1.72 1.72 0 017.249 5.25z"
58
+ d: "M8.272 5.25A2.745 2.745 0 015.532 8a2.745 2.745 0 01-2.74-2.75 2.745 2.745 0 012.74-2.75 2.745 2.745 0 012.74 2.75zm-1.023 0a1.72 1.72 0 00-1.717-1.723A1.72 1.72 0 003.815 5.25a1.72 1.72 0 001.717 1.723A1.72 1.72 0 007.249 5.25z"
61
59
  }), /*#__PURE__*/_react["default"].createElement("path", {
62
- fillRule: "evenodd",
63
- clipRule: "evenodd",
64
- d: "M1.391 11.37c0-1.138.92-2.06 2.053-2.06h4.007c1.133 0 2.052.922 2.052 2.06v2.13H1.391v-2.13zm2.053-1.03h4.007c.566 0 1.026.461 1.026 1.03v1.1h-6.06v-1.1c0-.569.46-1.03 1.027-1.03z"
60
+ d: "M1.391 11.37c0-1.138.92-2.06 2.053-2.06h4.007c1.133 0 2.052.922 2.052 2.06v2.13H1.391v-2.13zm2.053-1.03c-.567 0-1.026.461-1.026 1.03v1.1h6.059v-1.1c0-.569-.46-1.03-1.026-1.03H3.444z"
65
61
  }), /*#__PURE__*/_react["default"].createElement("path", {
66
62
  d: "M14.392 3.78h-4.106V2.75h4.106v1.03z"
67
63
  }), /*#__PURE__*/_react["default"].createElement("path", {
package/dist/lib/index.js CHANGED
@@ -123,6 +123,12 @@ Object.defineProperty(exports, "TaAscent", {
123
123
  return _ascent["default"];
124
124
  }
125
125
  });
126
+ Object.defineProperty(exports, "TaAssetConvert", {
127
+ enumerable: true,
128
+ get: function get() {
129
+ return _assetConvert["default"];
130
+ }
131
+ });
126
132
  Object.defineProperty(exports, "TaAttribution", {
127
133
  enumerable: true,
128
134
  get: function get() {
@@ -987,6 +993,12 @@ Object.defineProperty(exports, "TaLogoFeishuCl", {
987
993
  return _logoFeishuCl["default"];
988
994
  }
989
995
  });
996
+ Object.defineProperty(exports, "TaLogoGarenaCl", {
997
+ enumerable: true,
998
+ get: function get() {
999
+ return _logoGarenaCl["default"];
1000
+ }
1001
+ });
990
1002
  Object.defineProperty(exports, "TaLogoKingCl", {
991
1003
  enumerable: true,
992
1004
  get: function get() {
@@ -1982,6 +1994,8 @@ var _logoFeishuCl = _interopRequireDefault(require("./icons/logo-feishu-cl"));
1982
1994
 
1983
1995
  var _logoKingCl = _interopRequireDefault(require("./icons/logo-king-cl"));
1984
1996
 
1997
+ var _logoGarenaCl = _interopRequireDefault(require("./icons/logo-garena -cl"));
1998
+
1985
1999
  var _logoCurrencylayerCl = _interopRequireDefault(require("./icons/logo-currencylayer-cl"));
1986
2000
 
1987
2001
  var _info = _interopRequireDefault(require("./icons/info"));
@@ -2182,8 +2196,12 @@ var _fileInfo = _interopRequireDefault(require("./icons/file-info"));
2182
2196
 
2183
2197
  var _fileConvert = _interopRequireDefault(require("./icons/file-convert"));
2184
2198
 
2199
+ var _assetConvert = _interopRequireDefault(require("./icons/asset-convert"));
2200
+
2185
2201
  var _fileLock = _interopRequireDefault(require("./icons/file-lock"));
2186
2202
 
2203
+ var _filePdf = _interopRequireDefault(require("./icons/file-pdf"));
2204
+
2187
2205
  var _detail = _interopRequireDefault(require("./icons/detail"));
2188
2206
 
2189
2207
  var _messageCenter = _interopRequireDefault(require("./icons/message-center"));
@@ -2196,8 +2214,6 @@ var _book = _interopRequireDefault(require("./icons/book"));
2196
2214
 
2197
2215
  var _book2 = _interopRequireDefault(require("./icons/book-2"));
2198
2216
 
2199
- var _filePdf = _interopRequireDefault(require("./icons/file-pdf"));
2200
-
2201
2217
  var _sticker = _interopRequireDefault(require("./icons/sticker"));
2202
2218
 
2203
2219
  var _stickerFill = _interopRequireDefault(require("./icons/sticker-fill"));