@tant/icons 1.18.24 → 1.18.26
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/compass.js +63 -0
- package/dist/es/icons/pin-2.js +1 -1
- package/dist/es/icons/{pin-2-fill.js → pin-fill.js} +4 -4
- package/dist/es/index.js +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/lib/icons/compass.js +70 -0
- package/dist/lib/icons/pin-2.js +1 -1
- package/dist/lib/icons/{pin-2-fill.js → pin-fill.js} +4 -4
- package/dist/lib/index.js +11 -4
- package/dist/tant-icons.cjs.js +732 -679
- package/dist/tant-icons.esm.js +731 -679
- package/package.json +1 -1
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
3
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
6
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
7
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
8
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
9
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
10
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
11
|
+
import React from 'react';
|
|
12
|
+
import PropTypes from 'prop-types';
|
|
13
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
+
var Compass = function Compass(props) {
|
|
15
|
+
var color = props.color,
|
|
16
|
+
size = props.size,
|
|
17
|
+
spin = props.spin,
|
|
18
|
+
style = props.style,
|
|
19
|
+
className = props.className,
|
|
20
|
+
iconClassName = props.iconClassName,
|
|
21
|
+
testid = props.testid,
|
|
22
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
23
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
24
|
+
role: "img",
|
|
25
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
27
|
+
children: loadingCircleStyle
|
|
28
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: color
|
|
34
|
+
}, otherProps, {
|
|
35
|
+
className: iconClassName,
|
|
36
|
+
"data-testid": testid,
|
|
37
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
38
|
+
animationDuration: '1s',
|
|
39
|
+
animationIterationCount: 'infinite',
|
|
40
|
+
animationName: 'loadingCircle',
|
|
41
|
+
animationTimingFunction: 'linear'
|
|
42
|
+
} : {})
|
|
43
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
44
|
+
width: "24",
|
|
45
|
+
height: "24",
|
|
46
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
47
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
d: "M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 100-16 8 8 0 000 16zm4.5-12.5L14 14l-6.5 2.5L10 10l6.5-2.5zM12 13a1 1 0 100-2 1 1 0 000 2z"
|
|
49
|
+
}))));
|
|
50
|
+
};
|
|
51
|
+
Compass.propTypes = {
|
|
52
|
+
iconClassName: PropTypes.string,
|
|
53
|
+
spin: PropTypes.bool,
|
|
54
|
+
color: PropTypes.string,
|
|
55
|
+
testid: PropTypes.string,
|
|
56
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
57
|
+
};
|
|
58
|
+
Compass.defaultProps = {
|
|
59
|
+
spin: false,
|
|
60
|
+
color: 'currentColor',
|
|
61
|
+
size: '1em'
|
|
62
|
+
};
|
|
63
|
+
export default Compass;
|
package/dist/es/icons/pin-2.js
CHANGED
|
@@ -47,7 +47,7 @@ var Pin2 = function Pin2(props) {
|
|
|
47
47
|
}, /*#__PURE__*/React.createElement("g", {
|
|
48
48
|
clipPath: "url(#clip0_9610_29)"
|
|
49
49
|
}, /*#__PURE__*/React.createElement("path", {
|
|
50
|
-
d: "M23.314 10.
|
|
50
|
+
d: "M23.314 10.172l-1.415 1.414-.707-.707-4.242 4.242-.708 3.536-1.414 1.414-4.242-4.243-4.95 4.95-1.414-1.414 4.95-4.95-4.243-4.242 1.414-1.415 3.535-.707 4.243-4.242-.707-.707 1.414-1.415 8.486 8.486zm-7.779-4.95l-4.67 4.67-2.822.565 6.5 6.5.564-2.822 4.67-4.67-4.242-4.243z"
|
|
51
51
|
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
52
52
|
id: "clip0_9610_29"
|
|
53
53
|
}, /*#__PURE__*/React.createElement("rect", {
|
|
@@ -11,7 +11,7 @@ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t =
|
|
|
11
11
|
import React from 'react';
|
|
12
12
|
import PropTypes from 'prop-types';
|
|
13
13
|
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
-
var
|
|
14
|
+
var PinFill = function PinFill(props) {
|
|
15
15
|
var color = props.color,
|
|
16
16
|
size = props.size,
|
|
17
17
|
spin = props.spin,
|
|
@@ -48,16 +48,16 @@ var Pin2Fill = function Pin2Fill(props) {
|
|
|
48
48
|
d: "M18 5V3H6v2h1v6l-2 3v2h6v7h2v-7h6v-2l-2-3V5h1z"
|
|
49
49
|
}))));
|
|
50
50
|
};
|
|
51
|
-
|
|
51
|
+
PinFill.propTypes = {
|
|
52
52
|
iconClassName: PropTypes.string,
|
|
53
53
|
spin: PropTypes.bool,
|
|
54
54
|
color: PropTypes.string,
|
|
55
55
|
testid: PropTypes.string,
|
|
56
56
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
57
57
|
};
|
|
58
|
-
|
|
58
|
+
PinFill.defaultProps = {
|
|
59
59
|
spin: false,
|
|
60
60
|
color: 'currentColor',
|
|
61
61
|
size: '1em'
|
|
62
62
|
};
|
|
63
|
-
export default
|
|
63
|
+
export default PinFill;
|
package/dist/es/index.js
CHANGED
|
@@ -332,6 +332,7 @@ export { default as TaDrag2 } from './icons/drag-2';
|
|
|
332
332
|
export { default as TaExternal } from './icons/external';
|
|
333
333
|
export { default as TaDisplayS } from './icons/display-s';
|
|
334
334
|
export { default as TaShare } from './icons/share';
|
|
335
|
+
export { default as TaCompass } from './icons/compass';
|
|
335
336
|
export { default as TaPlay } from './icons/play';
|
|
336
337
|
export { default as TaConfig } from './icons/config';
|
|
337
338
|
export { default as TaSetting } from './icons/setting';
|
|
@@ -390,8 +391,10 @@ export { default as TaFullDownload } from './icons/full-download';
|
|
|
390
391
|
export { default as TaDownload } from './icons/download';
|
|
391
392
|
export { default as TaEventModify } from './icons/event-modify';
|
|
392
393
|
export { default as TaPin } from './icons/pin';
|
|
394
|
+
export { default as TaPinFill } from './icons/pin-fill';
|
|
393
395
|
export { default as TaPinUnsave } from './icons/pin-unsave';
|
|
394
396
|
export { default as TaUnpin } from './icons/unpin';
|
|
397
|
+
export { default as TaPin2 } from './icons/pin-2';
|
|
395
398
|
export { default as TaUnsave } from './icons/unsave';
|
|
396
399
|
export { default as TaSticky } from './icons/sticky';
|
|
397
400
|
export { default as TaOnline } from './icons/online';
|
|
@@ -402,8 +405,6 @@ export { default as TaArrowGoBack } from './icons/arrow-go-back';
|
|
|
402
405
|
export { default as TaArrowGoForward } from './icons/arrow-go-forward';
|
|
403
406
|
export { default as TaRecycle } from './icons/recycle';
|
|
404
407
|
export { default as TaOfflineSync } from './icons/offline-sync';
|
|
405
|
-
export { default as TaPin2 } from './icons/pin-2';
|
|
406
|
-
export { default as TaPin2Fill } from './icons/pin-2-fill';
|
|
407
408
|
export { default as TaInfo } from './icons/info';
|
|
408
409
|
export { default as TaInfoFill } from './icons/info-fill';
|
|
409
410
|
export { default as TaHelp } from './icons/help';
|
package/dist/index.d.ts
CHANGED
|
@@ -344,6 +344,7 @@ export const TaDrag2: Icon;
|
|
|
344
344
|
export const TaExternal: Icon;
|
|
345
345
|
export const TaDisplayS: Icon;
|
|
346
346
|
export const TaShare: Icon;
|
|
347
|
+
export const TaCompass: Icon;
|
|
347
348
|
export const TaPlay: Icon;
|
|
348
349
|
export const TaConfig: Icon;
|
|
349
350
|
export const TaSetting: Icon;
|
|
@@ -402,8 +403,10 @@ export const TaFullDownload: Icon;
|
|
|
402
403
|
export const TaDownload: Icon;
|
|
403
404
|
export const TaEventModify: Icon;
|
|
404
405
|
export const TaPin: Icon;
|
|
406
|
+
export const TaPinFill: Icon;
|
|
405
407
|
export const TaPinUnsave: Icon;
|
|
406
408
|
export const TaUnpin: Icon;
|
|
409
|
+
export const TaPin2: Icon;
|
|
407
410
|
export const TaUnsave: Icon;
|
|
408
411
|
export const TaSticky: Icon;
|
|
409
412
|
export const TaOnline: Icon;
|
|
@@ -414,8 +417,6 @@ export const TaArrowGoBack: Icon;
|
|
|
414
417
|
export const TaArrowGoForward: Icon;
|
|
415
418
|
export const TaRecycle: Icon;
|
|
416
419
|
export const TaOfflineSync: Icon;
|
|
417
|
-
export const TaPin2: Icon;
|
|
418
|
-
export const TaPin2Fill: Icon;
|
|
419
420
|
export const TaInfo: Icon;
|
|
420
421
|
export const TaInfoFill: Icon;
|
|
421
422
|
export const TaHelp: Icon;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports["default"] = void 0;
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
10
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
13
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
14
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
15
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
16
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
17
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
18
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
19
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
20
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
+
var Compass = function Compass(props) {
|
|
22
|
+
var color = props.color,
|
|
23
|
+
size = props.size,
|
|
24
|
+
spin = props.spin,
|
|
25
|
+
style = props.style,
|
|
26
|
+
className = props.className,
|
|
27
|
+
iconClassName = props.iconClassName,
|
|
28
|
+
testid = props.testid,
|
|
29
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
30
|
+
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
31
|
+
role: "img",
|
|
32
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33
|
+
}, /*#__PURE__*/_react["default"].createElement("style", {
|
|
34
|
+
children: loadingCircleStyle
|
|
35
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", _extends({
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
width: size,
|
|
38
|
+
height: size,
|
|
39
|
+
viewBox: "0 0 24 24",
|
|
40
|
+
fill: color
|
|
41
|
+
}, otherProps, {
|
|
42
|
+
className: iconClassName,
|
|
43
|
+
"data-testid": testid,
|
|
44
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
45
|
+
animationDuration: '1s',
|
|
46
|
+
animationIterationCount: 'infinite',
|
|
47
|
+
animationName: 'loadingCircle',
|
|
48
|
+
animationTimingFunction: 'linear'
|
|
49
|
+
} : {})
|
|
50
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
51
|
+
width: "24",
|
|
52
|
+
height: "24",
|
|
53
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
54
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
55
|
+
d: "M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 100-16 8 8 0 000 16zm4.5-12.5L14 14l-6.5 2.5L10 10l6.5-2.5zM12 13a1 1 0 100-2 1 1 0 000 2z"
|
|
56
|
+
}))));
|
|
57
|
+
};
|
|
58
|
+
Compass.propTypes = {
|
|
59
|
+
iconClassName: _propTypes["default"].string,
|
|
60
|
+
spin: _propTypes["default"].bool,
|
|
61
|
+
color: _propTypes["default"].string,
|
|
62
|
+
testid: _propTypes["default"].string,
|
|
63
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
64
|
+
};
|
|
65
|
+
Compass.defaultProps = {
|
|
66
|
+
spin: false,
|
|
67
|
+
color: 'currentColor',
|
|
68
|
+
size: '1em'
|
|
69
|
+
};
|
|
70
|
+
var _default = exports["default"] = Compass;
|
package/dist/lib/icons/pin-2.js
CHANGED
|
@@ -54,7 +54,7 @@ var Pin2 = function Pin2(props) {
|
|
|
54
54
|
}, /*#__PURE__*/_react["default"].createElement("g", {
|
|
55
55
|
clipPath: "url(#clip0_9610_29)"
|
|
56
56
|
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
57
|
-
d: "M23.314 10.
|
|
57
|
+
d: "M23.314 10.172l-1.415 1.414-.707-.707-4.242 4.242-.708 3.536-1.414 1.414-4.242-4.243-4.95 4.95-1.414-1.414 4.95-4.95-4.243-4.242 1.414-1.415 3.535-.707 4.243-4.242-.707-.707 1.414-1.415 8.486 8.486zm-7.779-4.95l-4.67 4.67-2.822.565 6.5 6.5.564-2.822 4.67-4.67-4.242-4.243z"
|
|
58
58
|
})), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("clipPath", {
|
|
59
59
|
id: "clip0_9610_29"
|
|
60
60
|
}, /*#__PURE__*/_react["default"].createElement("rect", {
|
|
@@ -18,7 +18,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
18
18
|
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
19
19
|
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
20
20
|
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
-
var
|
|
21
|
+
var PinFill = function PinFill(props) {
|
|
22
22
|
var color = props.color,
|
|
23
23
|
size = props.size,
|
|
24
24
|
spin = props.spin,
|
|
@@ -55,16 +55,16 @@ var Pin2Fill = function Pin2Fill(props) {
|
|
|
55
55
|
d: "M18 5V3H6v2h1v6l-2 3v2h6v7h2v-7h6v-2l-2-3V5h1z"
|
|
56
56
|
}))));
|
|
57
57
|
};
|
|
58
|
-
|
|
58
|
+
PinFill.propTypes = {
|
|
59
59
|
iconClassName: _propTypes["default"].string,
|
|
60
60
|
spin: _propTypes["default"].bool,
|
|
61
61
|
color: _propTypes["default"].string,
|
|
62
62
|
testid: _propTypes["default"].string,
|
|
63
63
|
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
64
64
|
};
|
|
65
|
-
|
|
65
|
+
PinFill.defaultProps = {
|
|
66
66
|
spin: false,
|
|
67
67
|
color: 'currentColor',
|
|
68
68
|
size: '1em'
|
|
69
69
|
};
|
|
70
|
-
var _default = exports["default"] =
|
|
70
|
+
var _default = exports["default"] = PinFill;
|
package/dist/lib/index.js
CHANGED
|
@@ -495,6 +495,12 @@ Object.defineProperty(exports, "TaComment", {
|
|
|
495
495
|
return _comment["default"];
|
|
496
496
|
}
|
|
497
497
|
});
|
|
498
|
+
Object.defineProperty(exports, "TaCompass", {
|
|
499
|
+
enumerable: true,
|
|
500
|
+
get: function get() {
|
|
501
|
+
return _compass["default"];
|
|
502
|
+
}
|
|
503
|
+
});
|
|
498
504
|
Object.defineProperty(exports, "TaConfig", {
|
|
499
505
|
enumerable: true,
|
|
500
506
|
get: function get() {
|
|
@@ -2031,10 +2037,10 @@ Object.defineProperty(exports, "TaPin2", {
|
|
|
2031
2037
|
return _pin2["default"];
|
|
2032
2038
|
}
|
|
2033
2039
|
});
|
|
2034
|
-
Object.defineProperty(exports, "
|
|
2040
|
+
Object.defineProperty(exports, "TaPinFill", {
|
|
2035
2041
|
enumerable: true,
|
|
2036
2042
|
get: function get() {
|
|
2037
|
-
return
|
|
2043
|
+
return _pinFill["default"];
|
|
2038
2044
|
}
|
|
2039
2045
|
});
|
|
2040
2046
|
Object.defineProperty(exports, "TaPinUnsave", {
|
|
@@ -3241,6 +3247,7 @@ var _drag2 = _interopRequireDefault(require("./icons/drag-2"));
|
|
|
3241
3247
|
var _external = _interopRequireDefault(require("./icons/external"));
|
|
3242
3248
|
var _displayS = _interopRequireDefault(require("./icons/display-s"));
|
|
3243
3249
|
var _share = _interopRequireDefault(require("./icons/share"));
|
|
3250
|
+
var _compass = _interopRequireDefault(require("./icons/compass"));
|
|
3244
3251
|
var _play = _interopRequireDefault(require("./icons/play"));
|
|
3245
3252
|
var _config = _interopRequireDefault(require("./icons/config"));
|
|
3246
3253
|
var _setting = _interopRequireDefault(require("./icons/setting"));
|
|
@@ -3299,8 +3306,10 @@ var _fullDownload = _interopRequireDefault(require("./icons/full-download"));
|
|
|
3299
3306
|
var _download = _interopRequireDefault(require("./icons/download"));
|
|
3300
3307
|
var _eventModify = _interopRequireDefault(require("./icons/event-modify"));
|
|
3301
3308
|
var _pin = _interopRequireDefault(require("./icons/pin"));
|
|
3309
|
+
var _pinFill = _interopRequireDefault(require("./icons/pin-fill"));
|
|
3302
3310
|
var _pinUnsave = _interopRequireDefault(require("./icons/pin-unsave"));
|
|
3303
3311
|
var _unpin = _interopRequireDefault(require("./icons/unpin"));
|
|
3312
|
+
var _pin2 = _interopRequireDefault(require("./icons/pin-2"));
|
|
3304
3313
|
var _unsave = _interopRequireDefault(require("./icons/unsave"));
|
|
3305
3314
|
var _sticky = _interopRequireDefault(require("./icons/sticky"));
|
|
3306
3315
|
var _online = _interopRequireDefault(require("./icons/online"));
|
|
@@ -3311,8 +3320,6 @@ var _arrowGoBack = _interopRequireDefault(require("./icons/arrow-go-back"));
|
|
|
3311
3320
|
var _arrowGoForward = _interopRequireDefault(require("./icons/arrow-go-forward"));
|
|
3312
3321
|
var _recycle = _interopRequireDefault(require("./icons/recycle"));
|
|
3313
3322
|
var _offlineSync = _interopRequireDefault(require("./icons/offline-sync"));
|
|
3314
|
-
var _pin2 = _interopRequireDefault(require("./icons/pin-2"));
|
|
3315
|
-
var _pin2Fill = _interopRequireDefault(require("./icons/pin-2-fill"));
|
|
3316
3323
|
var _info = _interopRequireDefault(require("./icons/info"));
|
|
3317
3324
|
var _infoFill = _interopRequireDefault(require("./icons/info-fill"));
|
|
3318
3325
|
var _help = _interopRequireDefault(require("./icons/help"));
|