@tant/icons 1.1.77 → 1.1.90
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.js +69 -0
- package/dist/es/icons/edit-fill.js +9 -2
- package/dist/es/icons/expand.js +63 -0
- package/dist/es/icons/grid.js +65 -0
- package/dist/es/icons/link-2.js +63 -0
- package/dist/es/icons/logo-dingding-cl.js +10 -2
- package/dist/es/icons/logo-king-cl.js +10 -2
- package/dist/es/icons/new-indicator.js +86 -0
- package/dist/es/icons/one-time.js +1 -1
- package/dist/es/icons/pinch .js +65 -0
- package/dist/es/icons/td-logo.js +6 -6
- package/dist/es/index.js +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/lib/icons/approve.js +81 -0
- package/dist/lib/icons/edit-fill.js +9 -2
- package/dist/lib/icons/expand.js +75 -0
- package/dist/lib/icons/grid.js +77 -0
- package/dist/lib/icons/link-2.js +75 -0
- package/dist/lib/icons/logo-dingding-cl.js +10 -2
- package/dist/lib/icons/logo-king-cl.js +10 -2
- package/dist/lib/icons/new-indicator.js +98 -0
- package/dist/lib/icons/one-time.js +1 -1
- package/dist/lib/icons/pinch .js +77 -0
- package/dist/lib/icons/td-logo.js +6 -6
- package/dist/lib/index.js +48 -0
- package/dist/tant-icons.cjs.js +874 -530
- package/dist/tant-icons.esm.js +869 -531
- package/package.json +1 -1
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
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) }} ';
|
|
18
|
+
|
|
19
|
+
var Approve = function Approve(props) {
|
|
20
|
+
var color = props.color,
|
|
21
|
+
size = props.size,
|
|
22
|
+
spin = props.spin,
|
|
23
|
+
style = props.style,
|
|
24
|
+
className = props.className,
|
|
25
|
+
iconClassName = props.iconClassName,
|
|
26
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
27
|
+
|
|
28
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
29
|
+
role: "img",
|
|
30
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
32
|
+
children: loadingCircleStyle
|
|
33
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35
|
+
width: size,
|
|
36
|
+
height: size,
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
fill: color
|
|
39
|
+
}, otherProps, {
|
|
40
|
+
className: iconClassName,
|
|
41
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
42
|
+
animationDuration: '1s',
|
|
43
|
+
animationIterationCount: 'infinite',
|
|
44
|
+
animationName: 'loadingCircle',
|
|
45
|
+
animationTimingFunction: 'linear'
|
|
46
|
+
} : {})
|
|
47
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
fillRule: "evenodd",
|
|
49
|
+
clipRule: "evenodd",
|
|
50
|
+
d: "M6 17v3h12v-3h2v3a2 2 0 01-2 2H6a2 2 0 01-2-2v-3h2z"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
52
|
+
fillRule: "evenodd",
|
|
53
|
+
clipRule: "evenodd",
|
|
54
|
+
d: "M6.975 4.02c0-1.116.901-2.02 2.013-2.02h6.04c1.112 0 2.014.904 2.014 2.02v.847c0 .63-.293 1.223-.791 1.605l-1.276.978.045 3.94 5.16 1.897a2.692 2.692 0 011.82 2.55v1.142c0 1.116-.901 2.02-2.013 2.02L4.013 19A2.017 2.017 0 012 16.98v-1.143c0-1.153.732-2.18 1.82-2.55l5.168-1.894V7.446l-1.245-.983a2.022 2.022 0 01-.768-1.587V4.02zm8.053 0h-6.04v.856l1.245.983c.485.383.769.968.769 1.587v3.947a2.02 2.02 0 01-1.323 1.897l-5.193 1.904-.014.004a.673.673 0 00-.459.64v1.142h15.974v-1.144a.672.672 0 00-.46-.638l-.014-.005-5.186-1.906a2.02 2.02 0 01-1.32-1.873l-.045-3.94a2.022 2.022 0 01.79-1.628l1.276-.979V4.02z"
|
|
55
|
+
})));
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
Approve.propTypes = {
|
|
59
|
+
iconClassName: PropTypes.string,
|
|
60
|
+
spin: PropTypes.bool,
|
|
61
|
+
color: PropTypes.string,
|
|
62
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
63
|
+
};
|
|
64
|
+
Approve.defaultProps = {
|
|
65
|
+
spin: false,
|
|
66
|
+
color: 'currentColor',
|
|
67
|
+
size: '1em'
|
|
68
|
+
};
|
|
69
|
+
export default Approve;
|
|
@@ -44,11 +44,18 @@ var EditFill = function EditFill(props) {
|
|
|
44
44
|
animationName: 'loadingCircle',
|
|
45
45
|
animationTimingFunction: 'linear'
|
|
46
46
|
} : {})
|
|
47
|
-
}), /*#__PURE__*/React.createElement("
|
|
47
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
48
|
+
clipPath: "url(#clip0_970_67)"
|
|
49
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
48
50
|
d: "M3 17.25L14.06 6.19l3.75 3.75L8.75 19H21v2H3v-3.75z"
|
|
49
51
|
}), /*#__PURE__*/React.createElement("path", {
|
|
50
52
|
d: "M20.71 5.63c.39.39.39 1.02 0 1.41l-1.83 1.83-3.75-3.75 1.83-1.83a.996.996 0 011.41 0l2.34 2.34z"
|
|
51
|
-
}))
|
|
53
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
54
|
+
id: "clip0_970_67"
|
|
55
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
56
|
+
width: "24",
|
|
57
|
+
height: "24"
|
|
58
|
+
})))));
|
|
52
59
|
};
|
|
53
60
|
|
|
54
61
|
EditFill.propTypes = {
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
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) }} ';
|
|
18
|
+
|
|
19
|
+
var Expand = function Expand(props) {
|
|
20
|
+
var color = props.color,
|
|
21
|
+
size = props.size,
|
|
22
|
+
spin = props.spin,
|
|
23
|
+
style = props.style,
|
|
24
|
+
className = props.className,
|
|
25
|
+
iconClassName = props.iconClassName,
|
|
26
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
27
|
+
|
|
28
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
29
|
+
role: "img",
|
|
30
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
32
|
+
children: loadingCircleStyle
|
|
33
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35
|
+
width: size,
|
|
36
|
+
height: size,
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
fill: color
|
|
39
|
+
}, otherProps, {
|
|
40
|
+
className: iconClassName,
|
|
41
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
42
|
+
animationDuration: '1s',
|
|
43
|
+
animationIterationCount: 'infinite',
|
|
44
|
+
animationName: 'loadingCircle',
|
|
45
|
+
animationTimingFunction: 'linear'
|
|
46
|
+
} : {})
|
|
47
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
d: "M13.27 3.963a.915.915 0 00.943.933h.734l3.096-.198-2.441 2.333-2.808 2.78a.899.899 0 00-.278.675c0 .291.09.53.268.715.178.192.413.288.704.288a.875.875 0 00.378-.08.915.915 0 00.317-.208l2.808-2.8 2.312-2.442-.188 3.117v.745c0 .278.086.506.258.685a.878.878 0 00.674.278.91.91 0 00.685-.278A.928.928 0 0021 9.82V4.618c0-.516-.142-.916-.427-1.201-.284-.278-.678-.417-1.18-.417h-5.18c-.265 0-.49.09-.675.268a.962.962 0 00-.268.695zM3 14.169v5.213c0 .516.142.913.427 1.191.278.285.671.427 1.18.427h5.17a.898.898 0 00.675-.278.91.91 0 00.278-.685.916.916 0 00-.953-.943h-.734l-3.096.208 2.441-2.333 2.808-2.79a.853.853 0 00.288-.665c0-.291-.093-.533-.278-.725-.178-.185-.413-.278-.704-.278-.133 0-.258.024-.377.07a.912.912 0 00-.318.208L7.01 15.6l-2.322 2.442.188-3.117v-.755a.97.97 0 00-.258-.685.882.882 0 00-.664-.268.927.927 0 00-.685.268.95.95 0 00-.268.685z"
|
|
49
|
+
})));
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
Expand.propTypes = {
|
|
53
|
+
iconClassName: PropTypes.string,
|
|
54
|
+
spin: PropTypes.bool,
|
|
55
|
+
color: PropTypes.string,
|
|
56
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
57
|
+
};
|
|
58
|
+
Expand.defaultProps = {
|
|
59
|
+
spin: false,
|
|
60
|
+
color: 'currentColor',
|
|
61
|
+
size: '1em'
|
|
62
|
+
};
|
|
63
|
+
export default Expand;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
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) }} ';
|
|
18
|
+
|
|
19
|
+
var Grid = function Grid(props) {
|
|
20
|
+
var color = props.color,
|
|
21
|
+
size = props.size,
|
|
22
|
+
spin = props.spin,
|
|
23
|
+
style = props.style,
|
|
24
|
+
className = props.className,
|
|
25
|
+
iconClassName = props.iconClassName,
|
|
26
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
27
|
+
|
|
28
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
29
|
+
role: "img",
|
|
30
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
32
|
+
children: loadingCircleStyle
|
|
33
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35
|
+
width: size,
|
|
36
|
+
height: size,
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
fill: color
|
|
39
|
+
}, otherProps, {
|
|
40
|
+
className: iconClassName,
|
|
41
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
42
|
+
animationDuration: '1s',
|
|
43
|
+
animationIterationCount: 'infinite',
|
|
44
|
+
animationName: 'loadingCircle',
|
|
45
|
+
animationTimingFunction: 'linear'
|
|
46
|
+
} : {})
|
|
47
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
fillRule: "evenodd",
|
|
49
|
+
clipRule: "evenodd",
|
|
50
|
+
d: "M5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm7 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm2 9c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2 5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9-12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2 5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm2 9c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zM5 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm2 9c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2z"
|
|
51
|
+
})));
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
Grid.propTypes = {
|
|
55
|
+
iconClassName: PropTypes.string,
|
|
56
|
+
spin: PropTypes.bool,
|
|
57
|
+
color: PropTypes.string,
|
|
58
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
59
|
+
};
|
|
60
|
+
Grid.defaultProps = {
|
|
61
|
+
spin: false,
|
|
62
|
+
color: 'currentColor',
|
|
63
|
+
size: '1em'
|
|
64
|
+
};
|
|
65
|
+
export default Grid;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
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) }} ';
|
|
18
|
+
|
|
19
|
+
var Link2 = function Link2(props) {
|
|
20
|
+
var color = props.color,
|
|
21
|
+
size = props.size,
|
|
22
|
+
spin = props.spin,
|
|
23
|
+
style = props.style,
|
|
24
|
+
className = props.className,
|
|
25
|
+
iconClassName = props.iconClassName,
|
|
26
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
27
|
+
|
|
28
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
29
|
+
role: "img",
|
|
30
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
32
|
+
children: loadingCircleStyle
|
|
33
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35
|
+
width: size,
|
|
36
|
+
height: size,
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
fill: color
|
|
39
|
+
}, otherProps, {
|
|
40
|
+
className: iconClassName,
|
|
41
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
42
|
+
animationDuration: '1s',
|
|
43
|
+
animationIterationCount: 'infinite',
|
|
44
|
+
animationName: 'loadingCircle',
|
|
45
|
+
animationTimingFunction: 'linear'
|
|
46
|
+
} : {})
|
|
47
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
d: "M13.06 8.11l1.415 1.415a7 7 0 010 9.9l-.354.353a7 7 0 01-9.9-9.9l1.415 1.415a5 5 0 107.07 7.071l.355-.354a5 5 0 000-7.07l-1.415-1.415 1.415-1.414-.001-.001zm6.718 6.011l-1.414-1.414a5 5 0 10-7.071-7.071l-.354.354a5 5 0 000 7.07l1.415 1.415-1.415 1.414-1.414-1.414a7 7 0 010-9.9l.354-.353a7 7 0 019.9 9.9l-.001-.001z"
|
|
49
|
+
})));
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
Link2.propTypes = {
|
|
53
|
+
iconClassName: PropTypes.string,
|
|
54
|
+
spin: PropTypes.bool,
|
|
55
|
+
color: PropTypes.string,
|
|
56
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
57
|
+
};
|
|
58
|
+
Link2.defaultProps = {
|
|
59
|
+
spin: false,
|
|
60
|
+
color: 'currentColor',
|
|
61
|
+
size: '1em'
|
|
62
|
+
};
|
|
63
|
+
export default Link2;
|
|
@@ -44,10 +44,18 @@ var LogoDingdingCl = function LogoDingdingCl(props) {
|
|
|
44
44
|
animationName: 'loadingCircle',
|
|
45
45
|
animationTimingFunction: 'linear'
|
|
46
46
|
} : {})
|
|
47
|
-
}), /*#__PURE__*/React.createElement("
|
|
47
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
48
|
+
clipPath: "url(#clip0_3340_346)"
|
|
49
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
48
50
|
d: "M12 .375C5.55.375.3 5.625.3 12.075c0 6.45 5.25 11.7 11.7 11.7 6.45 0 11.7-5.25 11.7-11.7 0-6.45-5.25-11.7-11.7-11.7zM17.475 10.5c0 .075-.075.225-.15.45-.525 1.05-1.8 3.15-1.8 3.15l-.375.675h1.8l-3.45 4.5.75-3.15h-1.425l.525-2.1c-.375.075-.9.225-1.425.375 0 0-.75.45-2.175-.825 0 0-.975-.825-.375-1.05.225-.075 1.125-.225 1.875-.3.975-.15 1.575-.225 1.575-.225s-3 .075-3.675-.075c-.675-.075-1.575-1.275-1.8-2.325 0 0-.3-.6.675-.3.975.3 4.8 1.05 4.8 1.05S7.8 8.775 7.425 8.4c-.3-.375-.975-2.025-.9-3.075 0 0 0-.225.3-.15 0 0 3.75 1.725 6.225 2.625 2.475 1.05 4.65 1.5 4.425 2.7z",
|
|
49
51
|
fill: "#3AA2EB"
|
|
50
|
-
}))
|
|
52
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
53
|
+
id: "clip0_3340_346"
|
|
54
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
55
|
+
width: "24",
|
|
56
|
+
height: "24",
|
|
57
|
+
fill: "#fff"
|
|
58
|
+
})))));
|
|
51
59
|
};
|
|
52
60
|
|
|
53
61
|
LogoDingdingCl.propTypes = {
|
|
@@ -44,10 +44,18 @@ var LogoKingCl = function LogoKingCl(props) {
|
|
|
44
44
|
animationName: 'loadingCircle',
|
|
45
45
|
animationTimingFunction: 'linear'
|
|
46
46
|
} : {})
|
|
47
|
-
}), /*#__PURE__*/React.createElement("
|
|
47
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
48
|
+
clipPath: "url(#clip0_3344_421)"
|
|
49
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
48
50
|
d: "M2.173.094H21.59a2.109 2.109 0 012.103 2.103v4.54c-3.727-.029-8.463.892-11.293 1.98-3.553 1.366-5.62 2.617-6.625 3.946-1.003 1.329.955 1.794 2.855 1.807 1.9.013 3.516-1.418 6.475-3.123 2.308-1.33 5.467-2.564 8.588-3.583v7.576c-1.524-.779-3.363-1.322-7.22-1.121-4.219.218-10.004 1.285-13.53 3.714 4.23-.33 9.327-.38 12.969-.27 3.02.09 5.818 1.28 7.78 1.187v2.763a2.109 2.109 0 01-2.102 2.103H2.173A2.109 2.109 0 01.07 21.613v-5.65a113.965 113.965 0 014.765-4.345c2.745-2.382 6.512-4.297 7.273-5.285.76-.987-1.588-2.488-3.292-2.174-1.705.314-3.194 2.053-5.788 4.517-.953.906-1.994 2.141-2.958 3.516V2.197A2.109 2.109 0 012.173.094z",
|
|
49
51
|
fill: "#E30016"
|
|
50
|
-
}))
|
|
52
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
53
|
+
id: "clip0_3344_421"
|
|
54
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
55
|
+
width: "24",
|
|
56
|
+
height: "24",
|
|
57
|
+
fill: "#fff"
|
|
58
|
+
})))));
|
|
51
59
|
};
|
|
52
60
|
|
|
53
61
|
LogoKingCl.propTypes = {
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
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) }} ';
|
|
18
|
+
|
|
19
|
+
var NewIndicator = function NewIndicator(props) {
|
|
20
|
+
var color = props.color,
|
|
21
|
+
size = props.size,
|
|
22
|
+
spin = props.spin,
|
|
23
|
+
style = props.style,
|
|
24
|
+
className = props.className,
|
|
25
|
+
iconClassName = props.iconClassName,
|
|
26
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
27
|
+
|
|
28
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
29
|
+
role: "img",
|
|
30
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
32
|
+
children: loadingCircleStyle
|
|
33
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35
|
+
width: size,
|
|
36
|
+
height: size,
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
fill: color
|
|
39
|
+
}, otherProps, {
|
|
40
|
+
className: iconClassName,
|
|
41
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
42
|
+
animationDuration: '1s',
|
|
43
|
+
animationIterationCount: 'infinite',
|
|
44
|
+
animationName: 'loadingCircle',
|
|
45
|
+
animationTimingFunction: 'linear'
|
|
46
|
+
} : {})
|
|
47
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
fillRule: "evenodd",
|
|
49
|
+
clipRule: "evenodd",
|
|
50
|
+
d: "M19.414 2.586A2 2 0 0120 4v14a2 2 0 01-2 2H4a2 2 0 01-2-2V4a2 2 0 012-2h14a2 2 0 011.414.586zM18 4H4v14h14V4zM9.175 7.937L4.4 11.519l1.2 1.6L8.825 10.7l2 2.5 4.247-3.185 1.294 1.718.629-4.475-4.475-.628 1.348 1.787-2.693 2.02-2-2.5z"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
52
|
+
x: "10",
|
|
53
|
+
y: "13",
|
|
54
|
+
width: "12",
|
|
55
|
+
height: "10",
|
|
56
|
+
rx: "1"
|
|
57
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
58
|
+
x: "13",
|
|
59
|
+
y: "17",
|
|
60
|
+
width: "8",
|
|
61
|
+
height: "2"
|
|
62
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
63
|
+
x: "16",
|
|
64
|
+
y: "14",
|
|
65
|
+
width: "2",
|
|
66
|
+
height: "8"
|
|
67
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
68
|
+
x: "17",
|
|
69
|
+
y: "11",
|
|
70
|
+
width: "4",
|
|
71
|
+
height: "2"
|
|
72
|
+
})));
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
NewIndicator.propTypes = {
|
|
76
|
+
iconClassName: PropTypes.string,
|
|
77
|
+
spin: PropTypes.bool,
|
|
78
|
+
color: PropTypes.string,
|
|
79
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
80
|
+
};
|
|
81
|
+
NewIndicator.defaultProps = {
|
|
82
|
+
spin: false,
|
|
83
|
+
color: 'currentColor',
|
|
84
|
+
size: '1em'
|
|
85
|
+
};
|
|
86
|
+
export default NewIndicator;
|
|
@@ -49,7 +49,7 @@ var OneTime = function OneTime(props) {
|
|
|
49
49
|
}), /*#__PURE__*/React.createElement("path", {
|
|
50
50
|
fillRule: "evenodd",
|
|
51
51
|
clipRule: "evenodd",
|
|
52
|
-
d: "M8
|
|
52
|
+
d: "M8 1v2h8V1h2v2h1.2C20.77 3 22 4.298 22 5.846v13.308C22 20.702 20.77 22 19.2 22H4.8C3.23 22 2 20.702 2 19.154V5.846C2 4.298 3.23 3 4.8 3H6V1h2zm8 4v1h2V5h1.2c.418 0 .8.355.8.846V9H4V5.846C4 5.355 4.382 5 4.8 5H6v1h2V5h8zM4 11v8.154c0 .491.382.846.8.846h14.4c.418 0 .8-.355.8-.846V11H4z"
|
|
53
53
|
})));
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
|
|
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) }} ';
|
|
18
|
+
|
|
19
|
+
var Pinch = function Pinch(props) {
|
|
20
|
+
var color = props.color,
|
|
21
|
+
size = props.size,
|
|
22
|
+
spin = props.spin,
|
|
23
|
+
style = props.style,
|
|
24
|
+
className = props.className,
|
|
25
|
+
iconClassName = props.iconClassName,
|
|
26
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
27
|
+
|
|
28
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
29
|
+
role: "img",
|
|
30
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
31
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
32
|
+
children: loadingCircleStyle
|
|
33
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
34
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35
|
+
width: size,
|
|
36
|
+
height: size,
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
fill: color
|
|
39
|
+
}, otherProps, {
|
|
40
|
+
className: iconClassName,
|
|
41
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
42
|
+
animationDuration: '1s',
|
|
43
|
+
animationIterationCount: 'infinite',
|
|
44
|
+
animationName: 'loadingCircle',
|
|
45
|
+
animationTimingFunction: 'linear'
|
|
46
|
+
} : {})
|
|
47
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
fillRule: "evenodd",
|
|
49
|
+
clipRule: "evenodd",
|
|
50
|
+
d: "M20.78 3.22a.75.75 0 010 1.06L15.46 9.6h3.69a.75.75 0 110 1.5h-5.5a.749.749 0 01-.75-.75v-5.5a.75.75 0 011.5 0v3.69l5.32-5.32a.75.75 0 011.06 0zM11.1 13.65a.749.749 0 00-.75-.75h-5.5a.75.75 0 000 1.5h3.69l-5.32 5.32a.75.75 0 001.06 1.06l5.32-5.32v3.69a.75.75 0 001.5 0v-5.5z"
|
|
51
|
+
})));
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
Pinch.propTypes = {
|
|
55
|
+
iconClassName: PropTypes.string,
|
|
56
|
+
spin: PropTypes.bool,
|
|
57
|
+
color: PropTypes.string,
|
|
58
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
59
|
+
};
|
|
60
|
+
Pinch.defaultProps = {
|
|
61
|
+
spin: false,
|
|
62
|
+
color: 'currentColor',
|
|
63
|
+
size: '1em'
|
|
64
|
+
};
|
|
65
|
+
export default Pinch;
|
package/dist/es/icons/td-logo.js
CHANGED
|
@@ -45,15 +45,15 @@ var TdLogo = function TdLogo(props) {
|
|
|
45
45
|
animationTimingFunction: 'linear'
|
|
46
46
|
} : {})
|
|
47
47
|
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
-
d: "M5.
|
|
48
|
+
d: "M5.904 2h.978c.069 0 .124.055.124.123v.964a.124.124 0 01-.124.124h-.978a.124.124 0 01-.124-.124v-.964c0-.068.056-.123.124-.123z"
|
|
49
49
|
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
-
|
|
51
|
-
clipRule: "evenodd",
|
|
52
|
-
d: "M7.837 3.245h2.155v1.846c.597-.179 4.373-1.182 6.838 1.252 0 0 1.671 1.472 1.46 3.753 0 0 0 .16.082.257.081.098 1.659 2.06 1.659 2.06s.318.271.188.455-1.059.527-1.059.527-.392.241-.04.658c.32.377.261.434.102.586a2.73 2.73 0 00-.054.052c-.196.197-.188.295-.047.426l.066.058c.115.099.204.175.1.314a.903.903 0 01-.098.105c-.113.111-.228.222-.147.524.035.13.096.265.158.402.124.277.252.562.178.825-.112.392-.642.797-1.41.919-.77.123-2.127.393-1.891 1.79 0 0 .177.81.87 1.019 0 0-4.086 2.375-8.73-.536 0 0 1.176-.801.988-2.395-.189-1.595-1.6-2.65-1.6-2.65s-2.024-.875-1.648-5.486v-.002H4.639V8.266h1.688v1.2h1.537V7.825H6.268v-2.22h2.155v1.72h1.707V5.361h-.138v.104H7.837v-2.22zm4.647 5.682h-1.851V6.965h1.85v1.962zM9.813 12.03H7.961v-1.962h1.852v1.962z"
|
|
50
|
+
d: "M3.642 4.953h1.3c.07 0 .125.055.125.124v1.28a.124.124 0 01-.124.124h-1.3a.124.124 0 01-.125-.124v-1.28c0-.069.056-.124.124-.124z"
|
|
53
51
|
}), /*#__PURE__*/React.createElement("path", {
|
|
54
|
-
d: "
|
|
52
|
+
d: "M2.989 8.34h-.865A.124.124 0 002 8.461v.852c0 .068.056.124.124.124h.865a.124.124 0 00.124-.124v-.852a.124.124 0 00-.124-.123z"
|
|
55
53
|
}), /*#__PURE__*/React.createElement("path", {
|
|
56
|
-
|
|
54
|
+
fillRule: "evenodd",
|
|
55
|
+
clipRule: "evenodd",
|
|
56
|
+
d: "M20.974 13.075a.348.348 0 01.026.133l-.004.004v.017a.235.235 0 01-.01.07.481.481 0 01-.321.319c-.326.15-.729.288-.729.288s-.415.243-.041.665c.336.379.274.436.108.588a3.17 3.17 0 00-.06.055c-.206.2-.197.299-.048.43.024.023.05.043.074.063.12.098.215.175.101.314-.03.037-.065.07-.1.102-.123.114-.244.226-.159.533.037.133.102.271.168.411.13.279.265.565.187.828-.118.396-.678.807-1.492.929-.457.07-1.061.18-1.411.357-.063.03-.084.235-.098.372l-.005.055v.035a3.295 3.295 0 00-.01.488c.02.354.117.7.283 1.013 0 0 .169.198-.233.298l-.052.011c-4.167 1.098-7.26.25-8.085-.025l-.17-.052-.155-.05c-.243-.088-.11-.332-.11-.332.207-.375.342-.985.413-1.372l.035-.225.023-.142c.15-.917-.048-1.69-.273-2.1-.273-.5-.711-.914-1.024-1.208-.089-.084-.168-.159-.23-.223-.031-.033-.07-.07-.112-.113-.507-.503-1.714-1.7-1.782-4.135a9.057 9.057 0 01.019-1.006s.005-.062.022-.166h-1.08a.246.246 0 01-.245-.245V8.716a.244.244 0 01.245-.244H6.01a.246.246 0 01.246.244v.603a.244.244 0 00.245.23H8.05a.246.246 0 00.245-.245V7.776a.244.244 0 00-.245-.245H6.5a.246.246 0 01-.245-.244V5.768a.244.244 0 01.245-.244h1.553a.246.246 0 01.245.244v1.519a.244.244 0 00.246.244h1.535a.246.246 0 00.246-.244V5.763a.284.284 0 000-.045v-.015a.196.196 0 00-.009-.028v-.014a.128.128 0 00-.014-.026l-.008-.013a.215.215 0 00-.026-.032l-.01-.007-.023-.02-.016-.01-.02-.012-.02-.007a.245.245 0 00-.088-.017H8.545a.246.246 0 01-.246-.245V3.748a.244.244 0 01.246-.244h1.552a.246.246 0 01.246.244v1.524a.242.242 0 00.086.186 7.76 7.76 0 011.194-.215s6.395-.926 7.41 5.332a.45.45 0 00.087.26l1.756 2.076.011.015a.466.466 0 01.071.087v.028c.007.01.012.022.016.034zM10.393 7.607a.244.244 0 00-.072.172l.005 1.524a.244.244 0 00.245.244h1.543a.246.246 0 00.246-.244V7.78a.244.244 0 00-.246-.244h-1.547a.246.246 0 00-.174.072zm-2.024 3.889a.246.246 0 00.174.071l1.547-.003a.247.247 0 00.246-.245V9.8a.244.244 0 00-.246-.244H8.543a.246.246 0 00-.246.244v1.523c0 .065.026.127.072.173z"
|
|
57
57
|
})));
|
|
58
58
|
};
|
|
59
59
|
|
package/dist/es/index.js
CHANGED
|
@@ -50,6 +50,7 @@ export { default as TaEarth } from './icons/earth';
|
|
|
50
50
|
export { default as TaGoal } from './icons/goal';
|
|
51
51
|
export { default as TaOneTime } from './icons/one-time';
|
|
52
52
|
export { default as TaRecurring } from './icons/recurring';
|
|
53
|
+
export { default as TaApprove } from './icons/approve';
|
|
53
54
|
export { default as TaTdLogo } from './icons/td-logo';
|
|
54
55
|
export { default as TaLanguage } from './icons/language';
|
|
55
56
|
export { default as TaCalendar } from './icons/calendar';
|
|
@@ -225,6 +226,7 @@ export { default as TaFullscreen } from './icons/fullscreen';
|
|
|
225
226
|
export { default as TaArrowLeftDown } from './icons/arrow-left-down';
|
|
226
227
|
export { default as TaLink } from './icons/link';
|
|
227
228
|
export { default as TaUnlink } from './icons/unlink';
|
|
229
|
+
export { default as TaLink2 } from './icons/link-2';
|
|
228
230
|
export { default as TaMenuUnfold } from './icons/menu-unfold';
|
|
229
231
|
export { default as TaMenuFold } from './icons/menu-fold';
|
|
230
232
|
export { default as TaList } from './icons/list';
|
|
@@ -248,6 +250,9 @@ export { default as TaUpdateData } from './icons/update-data';
|
|
|
248
250
|
export { default as TaUpload } from './icons/upload';
|
|
249
251
|
export { default as TaClick } from './icons/click';
|
|
250
252
|
export { default as TaInstall } from './icons/install';
|
|
253
|
+
export { default as TaExpand } from './icons/expand';
|
|
254
|
+
export { default as TaPinch } from './icons/pinch ';
|
|
255
|
+
export { default as TaNewIndicator } from './icons/new-indicator';
|
|
251
256
|
export { default as TaReport } from './icons/report';
|
|
252
257
|
export { default as TaReportRemoval } from './icons/report-removal';
|
|
253
258
|
export { default as TaFileAdd } from './icons/file-add';
|
|
@@ -306,6 +311,7 @@ export { default as TaDropUp } from './icons/drop-up';
|
|
|
306
311
|
export { default as TaMore1 } from './icons/more-1';
|
|
307
312
|
export { default as TaMore2 } from './icons/more-2';
|
|
308
313
|
export { default as TaDrag } from './icons/drag';
|
|
314
|
+
export { default as TaGrid } from './icons/grid';
|
|
309
315
|
export { default as TaDrag2 } from './icons/drag-2';
|
|
310
316
|
export { default as TaExternal } from './icons/external';
|
|
311
317
|
export { default as TaDisplayS } from './icons/display-s';
|
package/dist/index.d.ts
CHANGED
|
@@ -61,6 +61,7 @@ export const TaEarth: Icon;
|
|
|
61
61
|
export const TaGoal: Icon;
|
|
62
62
|
export const TaOneTime: Icon;
|
|
63
63
|
export const TaRecurring: Icon;
|
|
64
|
+
export const TaApprove: Icon;
|
|
64
65
|
export const TaTdLogo: Icon;
|
|
65
66
|
export const TaLanguage: Icon;
|
|
66
67
|
export const TaCalendar: Icon;
|
|
@@ -236,6 +237,7 @@ export const TaFullscreen: Icon;
|
|
|
236
237
|
export const TaArrowLeftDown: Icon;
|
|
237
238
|
export const TaLink: Icon;
|
|
238
239
|
export const TaUnlink: Icon;
|
|
240
|
+
export const TaLink2: Icon;
|
|
239
241
|
export const TaMenuUnfold: Icon;
|
|
240
242
|
export const TaMenuFold: Icon;
|
|
241
243
|
export const TaList: Icon;
|
|
@@ -259,6 +261,9 @@ export const TaUpdateData: Icon;
|
|
|
259
261
|
export const TaUpload: Icon;
|
|
260
262
|
export const TaClick: Icon;
|
|
261
263
|
export const TaInstall: Icon;
|
|
264
|
+
export const TaExpand: Icon;
|
|
265
|
+
export const TaPinch: Icon;
|
|
266
|
+
export const TaNewIndicator: Icon;
|
|
262
267
|
export const TaReport: Icon;
|
|
263
268
|
export const TaReportRemoval: Icon;
|
|
264
269
|
export const TaFileAdd: Icon;
|
|
@@ -317,6 +322,7 @@ export const TaDropUp: Icon;
|
|
|
317
322
|
export const TaMore1: Icon;
|
|
318
323
|
export const TaMore2: Icon;
|
|
319
324
|
export const TaDrag: Icon;
|
|
325
|
+
export const TaGrid: Icon;
|
|
320
326
|
export const TaDrag2: Icon;
|
|
321
327
|
export const TaExternal: Icon;
|
|
322
328
|
export const TaDisplayS: Icon;
|