a-icons 1.0.33 → 1.0.34
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/ImpassabilityFilled.d.ts +6 -0
- package/es/ImpassabilityFilled.js +37 -0
- package/es/UpgradeFilled.d.ts +6 -0
- package/es/UpgradeFilled.js +37 -0
- package/es/index.d.ts +5 -0
- package/es/index.js +5 -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/ImpassabilityFilled.d.ts +6 -0
- package/lib/ImpassabilityFilled.js +84 -0
- package/lib/UpgradeFilled.d.ts +6 -0
- package/lib/UpgradeFilled.js +84 -0
- package/lib/index.d.ts +5 -0
- package/lib/index.js +45 -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/ImpassabilityFilled.tsx +18 -0
- package/src/UpgradeFilled.tsx +18 -0
- package/src/index.tsx +5 -0
- package/svgs/filled/Impassability-filled.svg +5 -0
- package/svgs/filled/dashboard-filled.svg +8 -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/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/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;
|
|
@@ -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;
|
|
@@ -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';
|
|
@@ -93,5 +97,6 @@ export { default as TrashCanFilled } from './TrashCanFilled';
|
|
|
93
97
|
export { default as TrashOutlined } from './TrashOutlined';
|
|
94
98
|
export { default as UpFilled } from './UpFilled';
|
|
95
99
|
export { default as UpOutlined } from './UpOutlined';
|
|
100
|
+
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
96
101
|
export { default as WalletFilled } from './WalletFilled';
|
|
97
102
|
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';
|
|
@@ -93,5 +97,6 @@ export { default as TrashCanFilled } from './TrashCanFilled';
|
|
|
93
97
|
export { default as TrashOutlined } from './TrashOutlined';
|
|
94
98
|
export { default as UpFilled } from './UpFilled';
|
|
95
99
|
export { default as UpOutlined } from './UpOutlined';
|
|
100
|
+
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
96
101
|
export { default as WalletFilled } from './WalletFilled';
|
|
97
102
|
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;
|
|
@@ -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 DashboardOutlined(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: "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",
|
|
76
|
+
fill: "currentColor"
|
|
77
|
+
}), React.createElement("path", {
|
|
78
|
+
fillRule: "evenodd",
|
|
79
|
+
clipRule: "evenodd",
|
|
80
|
+
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",
|
|
81
|
+
fill: "currentColor"
|
|
82
|
+
}));
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
86
|
+
component: IconNode
|
|
87
|
+
}));
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
DashboardOutlined.displayName = 'DashboardOutlined';
|
|
91
|
+
exports["default"] = DashboardOutlined;
|
|
@@ -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 ImpassabilityFilled(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: "M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zM7 11v2h10v-2H7z",
|
|
74
|
+
fill: "currentColor"
|
|
75
|
+
}));
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
79
|
+
component: IconNode
|
|
80
|
+
}));
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
ImpassabilityFilled.displayName = 'ImpassabilityFilled';
|
|
84
|
+
exports["default"] = ImpassabilityFilled;
|
|
@@ -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 UpgradeFilled(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: "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",
|
|
74
|
+
fill: "currentColor"
|
|
75
|
+
}));
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
79
|
+
component: IconNode
|
|
80
|
+
}));
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
UpgradeFilled.displayName = 'UpgradeFilled';
|
|
84
|
+
exports["default"] = UpgradeFilled;
|
package/lib/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';
|
|
@@ -93,5 +97,6 @@ export { default as TrashCanFilled } from './TrashCanFilled';
|
|
|
93
97
|
export { default as TrashOutlined } from './TrashOutlined';
|
|
94
98
|
export { default as UpFilled } from './UpFilled';
|
|
95
99
|
export { default as UpOutlined } from './UpOutlined';
|
|
100
|
+
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
96
101
|
export { default as WalletFilled } from './WalletFilled';
|
|
97
102
|
export { default as WalletOutlined } from './WalletOutlined';
|
package/lib/index.js
CHANGED
|
@@ -4,6 +4,15 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
|
|
7
|
+
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
8
|
+
|
|
9
|
+
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
get: function get() {
|
|
12
|
+
return ImpassabilityFilled_1["default"];
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
|
|
7
16
|
var AlertTriangleFilled_1 = require("./AlertTriangleFilled");
|
|
8
17
|
|
|
9
18
|
Object.defineProperty(exports, "AlertTriangleFilled", {
|
|
@@ -139,6 +148,15 @@ Object.defineProperty(exports, "CategoryOutlined", {
|
|
|
139
148
|
}
|
|
140
149
|
});
|
|
141
150
|
|
|
151
|
+
var ChevronRightOutlined_1 = require("./ChevronRightOutlined");
|
|
152
|
+
|
|
153
|
+
Object.defineProperty(exports, "ChevronRightOutlined", {
|
|
154
|
+
enumerable: true,
|
|
155
|
+
get: function get() {
|
|
156
|
+
return ChevronRightOutlined_1["default"];
|
|
157
|
+
}
|
|
158
|
+
});
|
|
159
|
+
|
|
142
160
|
var ChevronUpFilled_1 = require("./ChevronUpFilled");
|
|
143
161
|
|
|
144
162
|
Object.defineProperty(exports, "ChevronUpFilled", {
|
|
@@ -265,6 +283,24 @@ Object.defineProperty(exports, "CreditCardOutlined", {
|
|
|
265
283
|
}
|
|
266
284
|
});
|
|
267
285
|
|
|
286
|
+
var DashboardFilled_1 = require("./DashboardFilled");
|
|
287
|
+
|
|
288
|
+
Object.defineProperty(exports, "DashboardFilled", {
|
|
289
|
+
enumerable: true,
|
|
290
|
+
get: function get() {
|
|
291
|
+
return DashboardFilled_1["default"];
|
|
292
|
+
}
|
|
293
|
+
});
|
|
294
|
+
|
|
295
|
+
var DashboardOutlined_1 = require("./DashboardOutlined");
|
|
296
|
+
|
|
297
|
+
Object.defineProperty(exports, "DashboardOutlined", {
|
|
298
|
+
enumerable: true,
|
|
299
|
+
get: function get() {
|
|
300
|
+
return DashboardOutlined_1["default"];
|
|
301
|
+
}
|
|
302
|
+
});
|
|
303
|
+
|
|
268
304
|
var DoubleTextFilled_1 = require("./DoubleTextFilled");
|
|
269
305
|
|
|
270
306
|
Object.defineProperty(exports, "DoubleTextFilled", {
|
|
@@ -859,6 +895,15 @@ Object.defineProperty(exports, "UpOutlined", {
|
|
|
859
895
|
}
|
|
860
896
|
});
|
|
861
897
|
|
|
898
|
+
var UpgradeFilled_1 = require("./UpgradeFilled");
|
|
899
|
+
|
|
900
|
+
Object.defineProperty(exports, "UpgradeFilled", {
|
|
901
|
+
enumerable: true,
|
|
902
|
+
get: function get() {
|
|
903
|
+
return UpgradeFilled_1["default"];
|
|
904
|
+
}
|
|
905
|
+
});
|
|
906
|
+
|
|
862
907
|
var WalletFilled_1 = require("./WalletFilled");
|
|
863
908
|
|
|
864
909
|
Object.defineProperty(exports, "WalletFilled", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.34",
|
|
4
4
|
"repository": "git@github.com:SPOTEC-LTD/assui.git",
|
|
5
5
|
"author": "jason <usochen@gmail.com>",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"assui": "^2.0.2"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "2ee8b7e4d9b2f91d13298759edfa6af397446ae5"
|
|
26
26
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function ChevronRightOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
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"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
ChevronRightOutlined.displayName = 'ChevronRightOutlined';
|
|
18
|
+
export default ChevronRightOutlined;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function DashboardFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
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"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
fillRule="evenodd"
|
|
15
|
+
clipRule="evenodd"
|
|
16
|
+
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"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
DashboardFilled.displayName = 'DashboardFilled';
|
|
26
|
+
export default DashboardFilled;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function DashboardOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
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"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
fillRule="evenodd"
|
|
15
|
+
clipRule="evenodd"
|
|
16
|
+
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"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
DashboardOutlined.displayName = 'DashboardOutlined';
|
|
26
|
+
export default DashboardOutlined;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function ImpassabilityFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
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"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
ImpassabilityFilled.displayName = 'ImpassabilityFilled';
|
|
18
|
+
export default ImpassabilityFilled;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function UpgradeFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
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"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
UpgradeFilled.displayName = 'UpgradeFilled';
|
|
18
|
+
export default UpgradeFilled;
|
package/src/index.tsx
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';
|
|
@@ -93,5 +97,6 @@ export { default as TrashCanFilled } from './TrashCanFilled';
|
|
|
93
97
|
export { default as TrashOutlined } from './TrashOutlined';
|
|
94
98
|
export { default as UpFilled } from './UpFilled';
|
|
95
99
|
export { default as UpOutlined } from './UpOutlined';
|
|
100
|
+
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
96
101
|
export { default as WalletFilled } from './WalletFilled';
|
|
97
102
|
export { default as WalletOutlined } from './WalletOutlined';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M11.0026 4.06242C11.5506 3.99356 12 4.44772 12 5.00001V11C12 11.5523 12.4477 12 13 12H19C19.5523 12 20.0064 12.4495 19.9376 12.9974C19.7832 14.2262 19.3449 15.4073 18.6518 16.4446C17.7727 17.7602 16.5233 18.7855 15.0615 19.391C13.5997 19.9965 11.9911 20.155 10.4393 19.8463C8.88743 19.5376 7.46197 18.7757 6.34315 17.6569C5.22433 16.538 4.4624 15.1126 4.15372 13.5607C3.84504 12.0089 4.00347 10.4003 4.60897 8.93854C5.21447 7.47673 6.23985 6.2273 7.55544 5.34825C8.59276 4.65514 9.77376 4.21683 11.0026 4.06242Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M20.6999 10C20.6999 9.12015 20.5266 8.24891 20.1899 7.43602C19.8532 6.62314 19.3597 5.88454 18.7375 5.26239C18.1154 4.64023 17.3768 4.14672 16.5639 3.81001C15.751 3.4733 14.8798 3.3 13.9999 3.3C13.8143 3.3 13.6362 3.37375 13.505 3.50503C13.3737 3.6363 13.2999 3.81435 13.2999 4V10C13.2999 10.3866 13.6133 10.7 13.9999 10.7L19.9999 10.7C20.1856 10.7 20.3636 10.6263 20.4949 10.495C20.6262 10.3637 20.6999 10.1857 20.6999 10Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M8 20.75C8.19907 20.7509 8.39012 20.6716 8.53 20.53L16.53 12.53C16.8225 12.2372 16.8225 11.7628 16.53 11.47L8.53 3.46997C8.23449 3.19461 7.77399 3.20274 7.48838 3.48835C7.20277 3.77396 7.19464 4.23446 7.47 4.52997L14.94 12L7.47 19.47C7.17755 19.7628 7.17755 20.2372 7.47 20.53C7.60988 20.6716 7.80093 20.7509 8 20.75Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M12 13.4C11.2268 13.4 10.6 12.7732 10.6 12V5.5502C9.79478 5.72499 9.02525 6.04992 8.33324 6.51231C7.24788 7.23752 6.40194 8.2683 5.9024 9.4743C5.40286 10.6803 5.27216 12.0073 5.52682 13.2876C5.78148 14.5679 6.41007 15.7439 7.3331 16.6669C8.25613 17.5899 9.43213 18.2185 10.7124 18.4732C11.9927 18.7279 13.3197 18.5971 14.5257 18.0976C15.7317 17.5981 16.7625 16.7521 17.4877 15.6668C17.9501 14.9748 18.275 14.2052 18.4498 13.4H12ZM11.0026 4.06242C11.5506 3.99356 12 4.44772 12 5.00001V12H19C19.5523 12 20.0064 12.4495 19.9376 12.9974C19.7832 14.2262 19.3449 15.4073 18.6518 16.4446C17.7727 17.7602 16.5233 18.7855 15.0615 19.391C13.5997 19.9965 11.9911 20.155 10.4393 19.8463C8.88743 19.5376 7.46197 18.7757 6.34315 17.6569C5.22433 16.538 4.4624 15.1126 4.15372 13.5607C3.84504 12.0089 4.00347 10.4003 4.60897 8.93854C5.21447 7.47673 6.23985 6.2273 7.55544 5.34825C8.59276 4.65514 9.77376 4.21683 11.0026 4.06242Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M20.1899 7.43602C20.5267 8.24891 20.7 9.12015 20.7 10C20.7 10.1857 20.6262 10.3637 20.4949 10.495C20.3637 10.6263 20.1856 10.7 20 10.7L14 10.7C13.6134 10.7 13.3 10.3866 13.3 10L13.3 4C13.3 3.81435 13.3737 3.6363 13.505 3.50503C13.6363 3.37375 13.8143 3.3 14 3.3C14.8798 3.3 15.751 3.4733 16.5639 3.81001C17.3768 4.14672 18.1154 4.64023 18.7376 5.26239C19.3597 5.88454 19.8532 6.62314 20.1899 7.43602ZM19.2535 9.3C19.1928 8.84462 19.0731 8.39806 18.8965 7.97178C18.6302 7.32876 18.2398 6.74449 17.7476 6.25234C17.2555 5.76019 16.6712 5.36979 16.0282 5.10344C15.6019 4.92687 15.1553 4.80711 14.7 4.74643L14.7 9.3L19.2535 9.3Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M8 20.75C8.19907 20.7509 8.39012 20.6716 8.53 20.53L16.53 12.53C16.8225 12.2372 16.8225 11.7628 16.53 11.47L8.53 3.46997C8.23449 3.19461 7.77399 3.20274 7.48838 3.48835C7.20277 3.77396 7.19464 4.23446 7.47 4.52997L14.94 12L7.47 19.47C7.17755 19.7628 7.17755 20.2372 7.47 20.53C7.60988 20.6716 7.80093 20.7509 8 20.75Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M11.0026 4.06242C11.5506 3.99356 12 4.44772 12 5.00001V11C12 11.5523 12.4477 12 13 12H19C19.5523 12 20.0064 12.4495 19.9376 12.9974C19.7832 14.2262 19.3449 15.4073 18.6518 16.4446C17.7727 17.7602 16.5233 18.7855 15.0615 19.391C13.5997 19.9965 11.9911 20.155 10.4393 19.8463C8.88743 19.5376 7.46197 18.7757 6.34315 17.6569C5.22433 16.538 4.4624 15.1126 4.15372 13.5607C3.84504 12.0089 4.00347 10.4003 4.60897 8.93854C5.21447 7.47673 6.23985 6.2273 7.55544 5.34825C8.59276 4.65514 9.77376 4.21683 11.0026 4.06242Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M20.6999 10C20.6999 9.12015 20.5266 8.24891 20.1899 7.43602C19.8532 6.62314 19.3597 5.88454 18.7375 5.26239C18.1154 4.64023 17.3768 4.14672 16.5639 3.81001C15.751 3.4733 14.8798 3.3 13.9999 3.3C13.8143 3.3 13.6362 3.37375 13.505 3.50503C13.3737 3.6363 13.2999 3.81435 13.2999 4V10C13.2999 10.3866 13.6133 10.7 13.9999 10.7L19.9999 10.7C20.1856 10.7 20.3636 10.6263 20.4949 10.495C20.6262 10.3637 20.6999 10.1857 20.6999 10Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M12 13.4C11.2268 13.4 10.6 12.7732 10.6 12V5.5502C9.79478 5.72499 9.02525 6.04992 8.33324 6.51231C7.24788 7.23752 6.40194 8.2683 5.9024 9.4743C5.40286 10.6803 5.27216 12.0073 5.52682 13.2876C5.78148 14.5679 6.41007 15.7439 7.3331 16.6669C8.25613 17.5899 9.43213 18.2185 10.7124 18.4732C11.9927 18.7279 13.3197 18.5971 14.5257 18.0976C15.7317 17.5981 16.7625 16.7521 17.4877 15.6668C17.9501 14.9748 18.275 14.2052 18.4498 13.4H12ZM11.0026 4.06242C11.5506 3.99356 12 4.44772 12 5.00001V12H19C19.5523 12 20.0064 12.4495 19.9376 12.9974C19.7832 14.2262 19.3449 15.4073 18.6518 16.4446C17.7727 17.7602 16.5233 18.7855 15.0615 19.391C13.5997 19.9965 11.9911 20.155 10.4393 19.8463C8.88743 19.5376 7.46197 18.7757 6.34315 17.6569C5.22433 16.538 4.4624 15.1126 4.15372 13.5607C3.84504 12.0089 4.00347 10.4003 4.60897 8.93854C5.21447 7.47673 6.23985 6.2273 7.55544 5.34825C8.59276 4.65514 9.77376 4.21683 11.0026 4.06242Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M20.1899 7.43602C20.5267 8.24891 20.7 9.12015 20.7 10C20.7 10.1857 20.6262 10.3637 20.4949 10.495C20.3637 10.6263 20.1856 10.7 20 10.7L14 10.7C13.6134 10.7 13.3 10.3866 13.3 10L13.3 4C13.3 3.81435 13.3737 3.6363 13.505 3.50503C13.6363 3.37375 13.8143 3.3 14 3.3C14.8798 3.3 15.751 3.4733 16.5639 3.81001C17.3768 4.14672 18.1154 4.64023 18.7376 5.26239C19.3597 5.88454 19.8532 6.62314 20.1899 7.43602ZM19.2535 9.3C19.1928 8.84462 19.0731 8.39806 18.8965 7.97178C18.6302 7.32876 18.2398 6.74449 17.7476 6.25234C17.2555 5.76019 16.6712 5.36979 16.0282 5.10344C15.6019 4.92687 15.1553 4.80711 14.7 4.74643L14.7 9.3L19.2535 9.3Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|