@tant/icons 1.0.26 → 1.0.29

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.
@@ -44,7 +44,7 @@ var ArrowDown2 = function ArrowDown2(props) {
44
44
  cursor: 'pointer'
45
45
  })
46
46
  }), /*#__PURE__*/React.createElement("path", {
47
- d: "M13 15.95V3.778h-2V15.95l-5.364-5.364L4.222 12 12 19.778 19.778 12l-1.414-1.414L13 15.95z"
47
+ d: "M19.082 10.857l1.418 1.42L11.764 21 3 12.278l1.415-1.423 6.397 6.367V3h2.006v14.112l6.264-6.255z"
48
48
  })));
49
49
  };
50
50
 
@@ -44,7 +44,7 @@ var ArrowLeft2 = function ArrowLeft2(props) {
44
44
  cursor: 'pointer'
45
45
  })
46
46
  }), /*#__PURE__*/React.createElement("path", {
47
- d: "M7.828 10.778H20v2H7.828l5.364 5.364-1.414 1.414L4 11.778 11.778 4l1.414 1.414-5.364 5.364z"
47
+ d: "M13.143 4.418L11.723 3 3 11.736l8.722 8.764 1.423-1.415-6.367-6.397H21v-2.006H6.888l6.255-6.264z"
48
48
  })));
49
49
  };
50
50
 
@@ -44,7 +44,7 @@ var ArrowRight2 = function ArrowRight2(props) {
44
44
  cursor: 'pointer'
45
45
  })
46
46
  }), /*#__PURE__*/React.createElement("path", {
47
- d: "M16.172 10.778H4v2h12.172l-5.364 5.364 1.414 1.414L20 11.778 12.222 4l-1.414 1.414 5.364 5.364z"
47
+ d: "M10.857 4.418L12.277 3 21 11.736 12.278 20.5l-1.423-1.415 6.367-6.397H3v-2.006h14.112l-6.255-6.264z"
48
48
  })));
49
49
  };
50
50
 
@@ -44,7 +44,7 @@ var ArrowUp2 = function ArrowUp2(props) {
44
44
  cursor: 'pointer'
45
45
  })
46
46
  }), /*#__PURE__*/React.createElement("path", {
47
- d: "M11 7.606v12.172h2V7.606l5.364 5.364 1.414-1.414L12 3.778l-7.778 7.778 1.414 1.414L11 7.606z"
47
+ d: "M19.082 13.143l1.418-1.42L11.764 3 3 11.722l1.415 1.423 6.397-6.367V21h2.006V6.888l6.264 6.255z"
48
48
  })));
49
49
  };
50
50
 
@@ -0,0 +1,61 @@
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 Contrast = function Contrast(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: "M3.905 18.682h5.714v1.909H2V3.409h7.619v1.91H3.905v13.363zm10.476 0h1.905v1.909H14.38v-1.91zm2.857 0h1.905v1.909h-1.905v-1.91zm2.857 1.909v-1.91H22v1.91h-1.905zm0-6.682V12H22v1.91h-1.905zm0 2.864v-1.91H22v1.91h-1.905zm0-5.727v-1.91H22v1.91h-1.905zm0-2.864v-1.91H22v1.91h-1.905zm0-2.864V3.41H22v1.91h-1.905zm-.952 0h-1.905V3.41h1.905v1.91zm-2.857 0H14.38V3.41h1.905v1.91zM11.524 1.5h1.905v21h-1.905v-21z"
48
+ })));
49
+ };
50
+
51
+ Contrast.propTypes = {
52
+ spin: PropTypes.bool,
53
+ color: PropTypes.string,
54
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
55
+ };
56
+ Contrast.defaultProps = {
57
+ spin: false,
58
+ color: 'currentColor',
59
+ size: '16'
60
+ };
61
+ export default Contrast;
@@ -16,7 +16,7 @@ import React from 'react';
16
16
  import PropTypes from 'prop-types';
17
17
  var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} .tant-icon-span { display: inline-flex; align-items: center; justify-content: center }';
18
18
 
19
- var Placeholder = function Placeholder(props) {
19
+ var InfoFill = function InfoFill(props) {
20
20
  var color = props.color,
21
21
  size = props.size,
22
22
  spin = props.spin,
@@ -43,20 +43,19 @@ var Placeholder = function Placeholder(props) {
43
43
  } : {}), {}, {
44
44
  cursor: 'pointer'
45
45
  })
46
- }), /*#__PURE__*/React.createElement("rect", {
47
- width: "24",
48
- height: "24"
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ d: "M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12zm9 5h2v-6h-2v6zm0-10v2h2V7h-2z"
49
48
  })));
50
49
  };
51
50
 
52
- Placeholder.propTypes = {
51
+ InfoFill.propTypes = {
53
52
  spin: PropTypes.bool,
54
53
  color: PropTypes.string,
55
54
  size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
56
55
  };
57
- Placeholder.defaultProps = {
56
+ InfoFill.defaultProps = {
58
57
  spin: false,
59
58
  color: 'currentColor',
60
59
  size: '16'
61
60
  };
62
- export default Placeholder;
61
+ export default InfoFill;
@@ -0,0 +1,63 @@
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 Rename = function Rename(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: "M8 4h2v16H8v-2H5a3 3 0 01-3-3V9a3 3 0 013-3h3V4zm0 12V8H5a1 1 0 00-1 1v6a1 1 0 001 1h3zm4 0h7a1 1 0 001-1V9a1 1 0 00-1-1h-7V6h7a3 3 0 013 3v6a3 3 0 01-3 3h-7v-2z"
50
+ })));
51
+ };
52
+
53
+ Rename.propTypes = {
54
+ spin: PropTypes.bool,
55
+ color: PropTypes.string,
56
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
57
+ };
58
+ Rename.defaultProps = {
59
+ spin: false,
60
+ color: 'currentColor',
61
+ size: '16'
62
+ };
63
+ export default Rename;
@@ -44,15 +44,17 @@ var UPropertySm = function UPropertySm(props) {
44
44
  cursor: 'pointer'
45
45
  })
46
46
  }), /*#__PURE__*/React.createElement("path", {
47
- d: "M9 4h3v1H9V4z"
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"
48
50
  }), /*#__PURE__*/React.createElement("path", {
49
- d: "M12 7H9v1h3V7z"
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"
50
54
  }), /*#__PURE__*/React.createElement("path", {
51
- d: "M6 8a2 2 0 100-4 2 2 0 000 4zm0-1a1 1 0 110-2 1 1 0 010 2z"
55
+ d: "M14.392 3.78h-4.106V2.75h4.106v1.03z"
52
56
  }), /*#__PURE__*/React.createElement("path", {
53
- d: "M3 11a2 2 0 012-2h2a2 2 0 012 2 1 1 0 01-1 1H4a1 1 0 01-1-1zm1 0h4a1 1 0 00-1-1H5a1 1 0 00-1 1z"
54
- }), /*#__PURE__*/React.createElement("path", {
55
- d: "M1 3a2 2 0 012-2h10a2 2 0 012 2v10a2 2 0 01-2 2H3a2 2 0 01-2-2V3zm1 0v10a1 1 0 001 1h10a1 1 0 001-1V3a1 1 0 00-1-1H3a1 1 0 00-1 1z"
57
+ d: "M10.286 6.976h4.106v-1.03h-4.106v1.03z"
56
58
  })));
57
59
  };
58
60
 
@@ -0,0 +1,61 @@
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 Update = function Update(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: "M5.463 4.433A9.961 9.961 0 0112 2c5.523 0 10 4.477 10 10 0 2.136-.67 4.116-1.81 5.74L17 12h3A8 8 0 006.46 6.228l-.997-1.795zm13.074 15.134A9.961 9.961 0 0112 22C6.477 22 2 17.523 2 12c0-2.136.67-4.116 1.81-5.74L7 12H4a8 8 0 0013.54 5.772l.997 1.795z"
48
+ })));
49
+ };
50
+
51
+ Update.propTypes = {
52
+ spin: PropTypes.bool,
53
+ color: PropTypes.string,
54
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
55
+ };
56
+ Update.defaultProps = {
57
+ spin: false,
58
+ color: 'currentColor',
59
+ size: '16'
60
+ };
61
+ export default Update;
package/dist/es/index.js CHANGED
@@ -107,6 +107,7 @@ export { default as TaCost } from './icons/cost';
107
107
  export { default as TaExposure } from './icons/exposure';
108
108
  export { default as TaIndicator } from './icons/indicator';
109
109
  export { default as TaCurrency } from './icons/currency';
110
+ export { default as TaContrast } from './icons/contrast';
110
111
  export { default as TaOperatorEqual } from './icons/operator-equal';
111
112
  export { default as TaOperatorUnequal } from './icons/operator-unequal';
112
113
  export { default as TaOperatorDivide } from './icons/operator-divide';
@@ -133,6 +134,7 @@ export { default as TaLogoFeishuCl } from './icons/logo-feishu-cl';
133
134
  export { default as TaLogoKingCl } from './icons/logo-king-cl';
134
135
  export { default as TaLogoCurrencylayerCl } from './icons/logo-currencylayer-cl';
135
136
  export { default as TaInfo } from './icons/info';
137
+ export { default as TaInfoFill } from './icons/info-fill';
136
138
  export { default as TaHelp } from './icons/help';
137
139
  export { default as TaHistory } from './icons/history';
138
140
  export { default as TaBackup } from './icons/backup';
@@ -219,6 +221,8 @@ export { default as TaAdd3 } from './icons/add-3';
219
221
  export { default as TaAdd3Fill } from './icons/add-3-fill';
220
222
  export { default as TaSubtract } from './icons/subtract';
221
223
  export { default as TaSubtract2 } from './icons/subtract-2';
224
+ export { default as TaUpdate } from './icons/update';
225
+ export { default as TaRename } from './icons/rename';
222
226
  export { default as TaReport } from './icons/report';
223
227
  export { default as TaReportRemoval } from './icons/report-removal';
224
228
  export { default as TaFileAdd } from './icons/file-add';
@@ -278,5 +282,4 @@ export { default as TaDrag } from './icons/drag';
278
282
  export { default as TaDrag2 } from './icons/drag-2';
279
283
  export { default as TaExternal } from './icons/external';
280
284
  export { default as TaDisplayS } from './icons/display-s';
281
- export { default as TaShare } from './icons/share';
282
- export { default as TaPlaceholder } from './icons/placeholder';
285
+ export { default as TaShare } from './icons/share';
package/dist/index.d.ts CHANGED
@@ -117,6 +117,7 @@ export const TaCost: Icon;
117
117
  export const TaExposure: Icon;
118
118
  export const TaIndicator: Icon;
119
119
  export const TaCurrency: Icon;
120
+ export const TaContrast: Icon;
120
121
  export const TaOperatorEqual: Icon;
121
122
  export const TaOperatorUnequal: Icon;
122
123
  export const TaOperatorDivide: Icon;
@@ -143,6 +144,7 @@ export const TaLogoFeishuCl: Icon;
143
144
  export const TaLogoKingCl: Icon;
144
145
  export const TaLogoCurrencylayerCl: Icon;
145
146
  export const TaInfo: Icon;
147
+ export const TaInfoFill: Icon;
146
148
  export const TaHelp: Icon;
147
149
  export const TaHistory: Icon;
148
150
  export const TaBackup: Icon;
@@ -229,6 +231,8 @@ export const TaAdd3: Icon;
229
231
  export const TaAdd3Fill: Icon;
230
232
  export const TaSubtract: Icon;
231
233
  export const TaSubtract2: Icon;
234
+ export const TaUpdate: Icon;
235
+ export const TaRename: Icon;
232
236
  export const TaReport: Icon;
233
237
  export const TaReportRemoval: Icon;
234
238
  export const TaFileAdd: Icon;
@@ -289,4 +293,3 @@ export const TaDrag2: Icon;
289
293
  export const TaExternal: Icon;
290
294
  export const TaDisplayS: Icon;
291
295
  export const TaShare: Icon;
292
- export const TaPlaceholder: Icon;
@@ -55,7 +55,7 @@ var ArrowDown2 = function ArrowDown2(props) {
55
55
  cursor: 'pointer'
56
56
  })
57
57
  }), /*#__PURE__*/_react["default"].createElement("path", {
58
- d: "M13 15.95V3.778h-2V15.95l-5.364-5.364L4.222 12 12 19.778 19.778 12l-1.414-1.414L13 15.95z"
58
+ d: "M19.082 10.857l1.418 1.42L11.764 21 3 12.278l1.415-1.423 6.397 6.367V3h2.006v14.112l6.264-6.255z"
59
59
  })));
60
60
  };
61
61
 
@@ -55,7 +55,7 @@ var ArrowLeft2 = function ArrowLeft2(props) {
55
55
  cursor: 'pointer'
56
56
  })
57
57
  }), /*#__PURE__*/_react["default"].createElement("path", {
58
- d: "M7.828 10.778H20v2H7.828l5.364 5.364-1.414 1.414L4 11.778 11.778 4l1.414 1.414-5.364 5.364z"
58
+ d: "M13.143 4.418L11.723 3 3 11.736l8.722 8.764 1.423-1.415-6.367-6.397H21v-2.006H6.888l6.255-6.264z"
59
59
  })));
60
60
  };
61
61
 
@@ -55,7 +55,7 @@ var ArrowRight2 = function ArrowRight2(props) {
55
55
  cursor: 'pointer'
56
56
  })
57
57
  }), /*#__PURE__*/_react["default"].createElement("path", {
58
- d: "M16.172 10.778H4v2h12.172l-5.364 5.364 1.414 1.414L20 11.778 12.222 4l-1.414 1.414 5.364 5.364z"
58
+ d: "M10.857 4.418L12.277 3 21 11.736 12.278 20.5l-1.423-1.415 6.367-6.397H3v-2.006h14.112l-6.255-6.264z"
59
59
  })));
60
60
  };
61
61
 
@@ -55,7 +55,7 @@ var ArrowUp2 = function ArrowUp2(props) {
55
55
  cursor: 'pointer'
56
56
  })
57
57
  }), /*#__PURE__*/_react["default"].createElement("path", {
58
- d: "M11 7.606v12.172h2V7.606l5.364 5.364 1.414-1.414L12 3.778l-7.778 7.778 1.414 1.414L11 7.606z"
58
+ d: "M19.082 13.143l1.418-1.42L11.764 3 3 11.722l1.415 1.423 6.397-6.367V21h2.006V6.888l6.264 6.255z"
59
59
  })));
60
60
  };
61
61
 
@@ -0,0 +1,73 @@
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 Contrast = function Contrast(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: "M3.905 18.682h5.714v1.909H2V3.409h7.619v1.91H3.905v13.363zm10.476 0h1.905v1.909H14.38v-1.91zm2.857 0h1.905v1.909h-1.905v-1.91zm2.857 1.909v-1.91H22v1.91h-1.905zm0-6.682V12H22v1.91h-1.905zm0 2.864v-1.91H22v1.91h-1.905zm0-5.727v-1.91H22v1.91h-1.905zm0-2.864v-1.91H22v1.91h-1.905zm0-2.864V3.41H22v1.91h-1.905zm-.952 0h-1.905V3.41h1.905v1.91zm-2.857 0H14.38V3.41h1.905v1.91zM11.524 1.5h1.905v21h-1.905v-21z"
59
+ })));
60
+ };
61
+
62
+ Contrast.propTypes = {
63
+ spin: _propTypes["default"].bool,
64
+ color: _propTypes["default"].string,
65
+ size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
66
+ };
67
+ Contrast.defaultProps = {
68
+ spin: false,
69
+ color: 'currentColor',
70
+ size: '16'
71
+ };
72
+ var _default = Contrast;
73
+ exports["default"] = _default;
@@ -27,7 +27,7 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
27
27
 
28
28
  var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} .tant-icon-span { display: inline-flex; align-items: center; justify-content: center }';
29
29
 
30
- var Placeholder = function Placeholder(props) {
30
+ var InfoFill = function InfoFill(props) {
31
31
  var color = props.color,
32
32
  size = props.size,
33
33
  spin = props.spin,
@@ -54,21 +54,20 @@ var Placeholder = function Placeholder(props) {
54
54
  } : {}), {}, {
55
55
  cursor: 'pointer'
56
56
  })
57
- }), /*#__PURE__*/_react["default"].createElement("rect", {
58
- width: "24",
59
- height: "24"
57
+ }), /*#__PURE__*/_react["default"].createElement("path", {
58
+ d: "M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12zm9 5h2v-6h-2v6zm0-10v2h2V7h-2z"
60
59
  })));
61
60
  };
62
61
 
63
- Placeholder.propTypes = {
62
+ InfoFill.propTypes = {
64
63
  spin: _propTypes["default"].bool,
65
64
  color: _propTypes["default"].string,
66
65
  size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
67
66
  };
68
- Placeholder.defaultProps = {
67
+ InfoFill.defaultProps = {
69
68
  spin: false,
70
69
  color: 'currentColor',
71
70
  size: '16'
72
71
  };
73
- var _default = Placeholder;
72
+ var _default = InfoFill;
74
73
  exports["default"] = _default;
@@ -0,0 +1,75 @@
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 Rename = function Rename(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: "M8 4h2v16H8v-2H5a3 3 0 01-3-3V9a3 3 0 013-3h3V4zm0 12V8H5a1 1 0 00-1 1v6a1 1 0 001 1h3zm4 0h7a1 1 0 001-1V9a1 1 0 00-1-1h-7V6h7a3 3 0 013 3v6a3 3 0 01-3 3h-7v-2z"
61
+ })));
62
+ };
63
+
64
+ Rename.propTypes = {
65
+ spin: _propTypes["default"].bool,
66
+ color: _propTypes["default"].string,
67
+ size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
68
+ };
69
+ Rename.defaultProps = {
70
+ spin: false,
71
+ color: 'currentColor',
72
+ size: '16'
73
+ };
74
+ var _default = Rename;
75
+ exports["default"] = _default;
@@ -55,15 +55,17 @@ var UPropertySm = function UPropertySm(props) {
55
55
  cursor: 'pointer'
56
56
  })
57
57
  }), /*#__PURE__*/_react["default"].createElement("path", {
58
- d: "M9 4h3v1H9V4z"
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"
59
61
  }), /*#__PURE__*/_react["default"].createElement("path", {
60
- d: "M12 7H9v1h3V7z"
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"
61
65
  }), /*#__PURE__*/_react["default"].createElement("path", {
62
- d: "M6 8a2 2 0 100-4 2 2 0 000 4zm0-1a1 1 0 110-2 1 1 0 010 2z"
66
+ d: "M14.392 3.78h-4.106V2.75h4.106v1.03z"
63
67
  }), /*#__PURE__*/_react["default"].createElement("path", {
64
- d: "M3 11a2 2 0 012-2h2a2 2 0 012 2 1 1 0 01-1 1H4a1 1 0 01-1-1zm1 0h4a1 1 0 00-1-1H5a1 1 0 00-1 1z"
65
- }), /*#__PURE__*/_react["default"].createElement("path", {
66
- d: "M1 3a2 2 0 012-2h10a2 2 0 012 2v10a2 2 0 01-2 2H3a2 2 0 01-2-2V3zm1 0v10a1 1 0 001 1h10a1 1 0 001-1V3a1 1 0 00-1-1H3a1 1 0 00-1 1z"
68
+ d: "M10.286 6.976h4.106v-1.03h-4.106v1.03z"
67
69
  })));
68
70
  };
69
71