a-icons 1.0.33 → 1.0.37
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/es/ChevronRightOutlined.d.ts +6 -0
- package/es/ChevronRightOutlined.js +37 -0
- package/es/DashboardFilled.d.ts +6 -0
- package/es/DashboardFilled.js +44 -0
- package/es/DashboardOutlined.d.ts +6 -0
- package/es/DashboardOutlined.js +44 -0
- package/es/EditSimpleOutlined.js +3 -1
- package/es/ImpassabilityFilled.d.ts +6 -0
- package/es/ImpassabilityFilled.js +37 -0
- package/es/LockFilled.d.ts +6 -0
- package/es/LockFilled.js +38 -0
- package/es/UnlockFilled.d.ts +6 -0
- package/es/UnlockFilled.js +38 -0
- package/es/UpgradeFilled.d.ts +6 -0
- package/es/UpgradeFilled.js +37 -0
- package/es/index.d.ts +7 -0
- package/es/index.js +7 -0
- package/lib/ChevronRightOutlined.d.ts +6 -0
- package/lib/ChevronRightOutlined.js +84 -0
- package/lib/DashboardFilled.d.ts +6 -0
- package/lib/DashboardFilled.js +91 -0
- package/lib/DashboardOutlined.d.ts +6 -0
- package/lib/DashboardOutlined.js +91 -0
- package/lib/EditSimpleOutlined.js +3 -1
- package/lib/ImpassabilityFilled.d.ts +6 -0
- package/lib/ImpassabilityFilled.js +84 -0
- package/lib/LockFilled.d.ts +6 -0
- package/lib/LockFilled.js +85 -0
- package/lib/UnlockFilled.d.ts +6 -0
- package/lib/UnlockFilled.js +85 -0
- package/lib/UpgradeFilled.d.ts +6 -0
- package/lib/UpgradeFilled.js +84 -0
- package/lib/index.d.ts +7 -0
- package/lib/index.js +63 -0
- package/package.json +2 -2
- package/src/ChevronRightOutlined.tsx +18 -0
- package/src/DashboardFilled.tsx +26 -0
- package/src/DashboardOutlined.tsx +26 -0
- package/src/EditSimpleOutlined.tsx +3 -1
- package/src/ImpassabilityFilled.tsx +18 -0
- package/src/LockFilled.tsx +18 -0
- package/src/UnlockFilled.tsx +18 -0
- package/src/UpgradeFilled.tsx +18 -0
- package/src/index.tsx +7 -0
- package/svgs/filled/Impassability-filled.svg +5 -0
- package/svgs/filled/dashboard-filled.svg +8 -0
- package/svgs/filled/lock-filled.svg +3 -0
- package/svgs/filled/unlock-filled.svg +3 -0
- package/svgs/filled/upgrade-filled.svg +5 -0
- package/svgs/outlined/chevron-right-outlined.svg +5 -0
- package/svgs/outlined/dashboard-outlined.svg +8 -0
- package/svgs/outlined/edit-simple-outlined.svg +2 -2
- package/tmpAllSvgs/Impassability-filled.svg +5 -0
- package/tmpAllSvgs/chevron-right-outlined.svg +5 -0
- package/tmpAllSvgs/dashboard-filled.svg +8 -0
- package/tmpAllSvgs/dashboard-outlined.svg +8 -0
- package/tmpAllSvgs/edit-simple-outlined.svg +2 -2
- package/tmpAllSvgs/lock-filled.svg +3 -0
- package/tmpAllSvgs/unlock-filled.svg +3 -0
- package/tmpAllSvgs/upgrade-filled.svg +5 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function ChevronRightOutlined(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M8 20.75c.2 0 .39-.078.53-.22l8-8a.75.75 0 000-1.06l-8-8a.75.75 0 00-1.06 1.06L14.94 12l-7.47 7.47A.75.75 0 008 20.75z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}));
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
32
|
+
component: IconNode
|
|
33
|
+
}));
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
ChevronRightOutlined.displayName = 'ChevronRightOutlined';
|
|
37
|
+
export default ChevronRightOutlined;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function DashboardFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
fillRule: "evenodd",
|
|
27
|
+
clipRule: "evenodd",
|
|
28
|
+
d: "M11.003 4.062c.548-.068.997.386.997.938v6a1 1 0 001 1h6c.552 0 1.006.45.938.997a8 8 0 11-8.935-8.935z",
|
|
29
|
+
fill: "currentColor"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
fillRule: "evenodd",
|
|
32
|
+
clipRule: "evenodd",
|
|
33
|
+
d: "M20.7 10A6.7 6.7 0 0014 3.3a.7.7 0 00-.7.7v6a.7.7 0 00.7.7h6a.7.7 0 00.7-.7z",
|
|
34
|
+
fill: "currentColor"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
39
|
+
component: IconNode
|
|
40
|
+
}));
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
DashboardFilled.displayName = 'DashboardFilled';
|
|
44
|
+
export default DashboardFilled;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function DashboardOutlined(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
fillRule: "evenodd",
|
|
27
|
+
clipRule: "evenodd",
|
|
28
|
+
d: "M12 13.4a1.4 1.4 0 01-1.4-1.4V5.55a6.6 6.6 0 107.85 7.85H12zm-.997-9.338c.548-.068.997.386.997.938v7h7c.552 0 1.006.45.938.997a8 8 0 11-8.935-8.935z",
|
|
29
|
+
fill: "currentColor"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
fillRule: "evenodd",
|
|
32
|
+
clipRule: "evenodd",
|
|
33
|
+
d: "M20.19 7.436c.337.813.51 1.684.51 2.564a.7.7 0 01-.7.7h-6a.7.7 0 01-.7-.7V4a.7.7 0 01.7-.7 6.7 6.7 0 016.19 4.136zM19.253 9.3A5.3 5.3 0 0014.7 4.746V9.3h4.553z",
|
|
34
|
+
fill: "currentColor"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
39
|
+
component: IconNode
|
|
40
|
+
}));
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
DashboardOutlined.displayName = 'DashboardOutlined';
|
|
44
|
+
export default DashboardOutlined;
|
package/es/EditSimpleOutlined.js
CHANGED
|
@@ -25,7 +25,9 @@ function EditSimpleOutlined(componentProps) {
|
|
|
25
25
|
xmlns: "http://www.w3.org/2000/svg"
|
|
26
26
|
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27
27
|
d: "M13.706 5H7a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-5.52M12 12l7-7",
|
|
28
|
-
|
|
28
|
+
stroke: "currentColor",
|
|
29
|
+
strokeWidth: 1.4,
|
|
30
|
+
strokeLinecap: "round"
|
|
29
31
|
}));
|
|
30
32
|
};
|
|
31
33
|
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function ImpassabilityFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zM7 11v2h10v-2H7z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}));
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
32
|
+
component: IconNode
|
|
33
|
+
}));
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
ImpassabilityFilled.displayName = 'ImpassabilityFilled';
|
|
37
|
+
export default ImpassabilityFilled;
|
package/es/LockFilled.js
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function LockFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M18.222 10.2h.89c.235 0 .461.095.628.264.166.168.26.397.26.636v9a.906.906 0 01-.26.636.883.883 0 01-.629.264H4.89a.883.883 0 01-.629-.264A.906.906 0 014 20.1v-9c0-.239.094-.468.26-.636a.883.883 0 01.629-.264h.889v-.9c0-.827.16-1.647.473-2.41a6.306 6.306 0 011.35-2.045A6.218 6.218 0 019.618 3.48a6.156 6.156 0 014.762 0c.755.316 1.441.78 2.019 1.365a6.306 6.306 0 011.349 2.044c.312.764.473 1.584.473 2.411v.9zm-1.778 0v-.9a4.529 4.529 0 00-1.301-3.182A4.417 4.417 0 0012 4.8c-1.179 0-2.31.474-3.143 1.318A4.529 4.529 0 007.556 9.3v.9h8.888zm-5.333 3.6v3.6h1.778v-3.6H11.11z",
|
|
28
|
+
fill: "currentColor"
|
|
29
|
+
}));
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
33
|
+
component: IconNode
|
|
34
|
+
}));
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
LockFilled.displayName = 'LockFilled';
|
|
38
|
+
export default LockFilled;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function UnlockFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M7.556 10.201H19.11c.236 0 .462.095.629.264.166.169.26.398.26.636v9a.905.905 0 01-.26.635.883.883 0 01-.629.264H4.89a.883.883 0 01-.629-.264A.905.905 0 014 20.1v-8.999c0-.238.094-.467.26-.636a.884.884 0 01.629-.264h.889v-.9c0-1.419.472-2.797 1.342-3.91a6.214 6.214 0 013.45-2.222 6.153 6.153 0 014.068.425 6.258 6.258 0 012.928 2.89l-1.59.804a4.47 4.47 0 00-2.092-2.064 4.395 4.395 0 00-2.905-.304 4.439 4.439 0 00-2.465 1.588A4.535 4.535 0 007.556 9.3v.9zm2.666 4.5v1.8h3.556v-1.8h-3.556z",
|
|
28
|
+
fill: "currentColor"
|
|
29
|
+
}));
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
33
|
+
component: IconNode
|
|
34
|
+
}));
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
UnlockFilled.displayName = 'UnlockFilled';
|
|
38
|
+
export default UnlockFilled;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function UpgradeFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2zm1 10h3l-4-4-4 4h3v4h2v-4z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}));
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
32
|
+
component: IconNode
|
|
33
|
+
}));
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
UpgradeFilled.displayName = 'UpgradeFilled';
|
|
37
|
+
export default UpgradeFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as ImpassabilityFilled } from './ImpassabilityFilled';
|
|
1
2
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
2
3
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
|
|
3
4
|
export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
@@ -13,6 +14,7 @@ export { default as CardFilled } from './CardFilled';
|
|
|
13
14
|
export { default as CardOutlined } from './CardOutlined';
|
|
14
15
|
export { default as CategoryFilled } from './CategoryFilled';
|
|
15
16
|
export { default as CategoryOutlined } from './CategoryOutlined';
|
|
17
|
+
export { default as ChevronRightOutlined } from './ChevronRightOutlined';
|
|
16
18
|
export { default as ChevronUpFilled } from './ChevronUpFilled';
|
|
17
19
|
export { default as CirclePlusFilled } from './CirclePlusFilled';
|
|
18
20
|
export { default as ClockCircleFilled } from './ClockCircleFilled';
|
|
@@ -27,6 +29,8 @@ export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
|
|
|
27
29
|
export { default as ConfirmCircleOutlined } from './ConfirmCircleOutlined';
|
|
28
30
|
export { default as CreditCardFilled } from './CreditCardFilled';
|
|
29
31
|
export { default as CreditCardOutlined } from './CreditCardOutlined';
|
|
32
|
+
export { default as DashboardFilled } from './DashboardFilled';
|
|
33
|
+
export { default as DashboardOutlined } from './DashboardOutlined';
|
|
30
34
|
export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
31
35
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
32
36
|
export { default as EditFilled } from './EditFilled';
|
|
@@ -47,6 +51,7 @@ export { default as ListCaptionFilled } from './ListCaptionFilled';
|
|
|
47
51
|
export { default as ListCaptionOutlined } from './ListCaptionOutlined';
|
|
48
52
|
export { default as ListFilled } from './ListFilled';
|
|
49
53
|
export { default as ListOutlined } from './ListOutlined';
|
|
54
|
+
export { default as LockFilled } from './LockFilled';
|
|
50
55
|
export { default as LoopFilled } from './LoopFilled';
|
|
51
56
|
export { default as LoopFolderFilled } from './LoopFolderFilled';
|
|
52
57
|
export { default as LoopFolderOutlined } from './LoopFolderOutlined';
|
|
@@ -91,7 +96,9 @@ export { default as StopOutlined } from './StopOutlined';
|
|
|
91
96
|
export { default as TmdLogo } from './TmdLogo';
|
|
92
97
|
export { default as TrashCanFilled } from './TrashCanFilled';
|
|
93
98
|
export { default as TrashOutlined } from './TrashOutlined';
|
|
99
|
+
export { default as UnlockFilled } from './UnlockFilled';
|
|
94
100
|
export { default as UpFilled } from './UpFilled';
|
|
95
101
|
export { default as UpOutlined } from './UpOutlined';
|
|
102
|
+
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
96
103
|
export { default as WalletFilled } from './WalletFilled';
|
|
97
104
|
export { default as WalletOutlined } from './WalletOutlined';
|
package/es/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as ImpassabilityFilled } from './ImpassabilityFilled';
|
|
1
2
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
2
3
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
|
|
3
4
|
export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
@@ -13,6 +14,7 @@ export { default as CardFilled } from './CardFilled';
|
|
|
13
14
|
export { default as CardOutlined } from './CardOutlined';
|
|
14
15
|
export { default as CategoryFilled } from './CategoryFilled';
|
|
15
16
|
export { default as CategoryOutlined } from './CategoryOutlined';
|
|
17
|
+
export { default as ChevronRightOutlined } from './ChevronRightOutlined';
|
|
16
18
|
export { default as ChevronUpFilled } from './ChevronUpFilled';
|
|
17
19
|
export { default as CirclePlusFilled } from './CirclePlusFilled';
|
|
18
20
|
export { default as ClockCircleFilled } from './ClockCircleFilled';
|
|
@@ -27,6 +29,8 @@ export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
|
|
|
27
29
|
export { default as ConfirmCircleOutlined } from './ConfirmCircleOutlined';
|
|
28
30
|
export { default as CreditCardFilled } from './CreditCardFilled';
|
|
29
31
|
export { default as CreditCardOutlined } from './CreditCardOutlined';
|
|
32
|
+
export { default as DashboardFilled } from './DashboardFilled';
|
|
33
|
+
export { default as DashboardOutlined } from './DashboardOutlined';
|
|
30
34
|
export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
31
35
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
32
36
|
export { default as EditFilled } from './EditFilled';
|
|
@@ -47,6 +51,7 @@ export { default as ListCaptionFilled } from './ListCaptionFilled';
|
|
|
47
51
|
export { default as ListCaptionOutlined } from './ListCaptionOutlined';
|
|
48
52
|
export { default as ListFilled } from './ListFilled';
|
|
49
53
|
export { default as ListOutlined } from './ListOutlined';
|
|
54
|
+
export { default as LockFilled } from './LockFilled';
|
|
50
55
|
export { default as LoopFilled } from './LoopFilled';
|
|
51
56
|
export { default as LoopFolderFilled } from './LoopFolderFilled';
|
|
52
57
|
export { default as LoopFolderOutlined } from './LoopFolderOutlined';
|
|
@@ -91,7 +96,9 @@ export { default as StopOutlined } from './StopOutlined';
|
|
|
91
96
|
export { default as TmdLogo } from './TmdLogo';
|
|
92
97
|
export { default as TrashCanFilled } from './TrashCanFilled';
|
|
93
98
|
export { default as TrashOutlined } from './TrashOutlined';
|
|
99
|
+
export { default as UnlockFilled } from './UnlockFilled';
|
|
94
100
|
export { default as UpFilled } from './UpFilled';
|
|
95
101
|
export { default as UpOutlined } from './UpOutlined';
|
|
102
|
+
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
96
103
|
export { default as WalletFilled } from './WalletFilled';
|
|
97
104
|
export { default as WalletOutlined } from './WalletOutlined';
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
|
|
8
|
+
for (var p in s) {
|
|
9
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return __assign.apply(this, arguments);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
Object.defineProperty(o, k2, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function get() {
|
|
24
|
+
return m[k];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
33
|
+
Object.defineProperty(o, "default", {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
value: v
|
|
36
|
+
});
|
|
37
|
+
} : function (o, v) {
|
|
38
|
+
o["default"] = v;
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
42
|
+
if (mod && mod.__esModule) return mod;
|
|
43
|
+
var result = {};
|
|
44
|
+
if (mod != null) for (var k in mod) {
|
|
45
|
+
if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
__setModuleDefault(result, mod);
|
|
49
|
+
|
|
50
|
+
return result;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
54
|
+
return mod && mod.__esModule ? mod : {
|
|
55
|
+
"default": mod
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
Object.defineProperty(exports, "__esModule", {
|
|
60
|
+
value: true
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
var React = __importStar(require("react"));
|
|
64
|
+
|
|
65
|
+
var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
|
|
66
|
+
|
|
67
|
+
function ChevronRightOutlined(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
72
|
+
}, props), React.createElement("path", {
|
|
73
|
+
d: "M8 20.75c.2 0 .39-.078.53-.22l8-8a.75.75 0 000-1.06l-8-8a.75.75 0 00-1.06 1.06L14.94 12l-7.47 7.47A.75.75 0 008 20.75z",
|
|
74
|
+
fill: "currentColor"
|
|
75
|
+
}));
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
79
|
+
component: IconNode
|
|
80
|
+
}));
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
ChevronRightOutlined.displayName = 'ChevronRightOutlined';
|
|
84
|
+
exports["default"] = ChevronRightOutlined;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
|
|
8
|
+
for (var p in s) {
|
|
9
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return __assign.apply(this, arguments);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
Object.defineProperty(o, k2, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function get() {
|
|
24
|
+
return m[k];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
33
|
+
Object.defineProperty(o, "default", {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
value: v
|
|
36
|
+
});
|
|
37
|
+
} : function (o, v) {
|
|
38
|
+
o["default"] = v;
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
42
|
+
if (mod && mod.__esModule) return mod;
|
|
43
|
+
var result = {};
|
|
44
|
+
if (mod != null) for (var k in mod) {
|
|
45
|
+
if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
__setModuleDefault(result, mod);
|
|
49
|
+
|
|
50
|
+
return result;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
54
|
+
return mod && mod.__esModule ? mod : {
|
|
55
|
+
"default": mod
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
Object.defineProperty(exports, "__esModule", {
|
|
60
|
+
value: true
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
var React = __importStar(require("react"));
|
|
64
|
+
|
|
65
|
+
var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
|
|
66
|
+
|
|
67
|
+
function DashboardFilled(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
72
|
+
}, props), React.createElement("path", {
|
|
73
|
+
fillRule: "evenodd",
|
|
74
|
+
clipRule: "evenodd",
|
|
75
|
+
d: "M11.003 4.062c.548-.068.997.386.997.938v6a1 1 0 001 1h6c.552 0 1.006.45.938.997a8 8 0 11-8.935-8.935z",
|
|
76
|
+
fill: "currentColor"
|
|
77
|
+
}), React.createElement("path", {
|
|
78
|
+
fillRule: "evenodd",
|
|
79
|
+
clipRule: "evenodd",
|
|
80
|
+
d: "M20.7 10A6.7 6.7 0 0014 3.3a.7.7 0 00-.7.7v6a.7.7 0 00.7.7h6a.7.7 0 00.7-.7z",
|
|
81
|
+
fill: "currentColor"
|
|
82
|
+
}));
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
86
|
+
component: IconNode
|
|
87
|
+
}));
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
DashboardFilled.displayName = 'DashboardFilled';
|
|
91
|
+
exports["default"] = DashboardFilled;
|