a-icons 1.0.43 → 1.0.47

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.
Files changed (48) hide show
  1. package/es/ArrowDropDownFilled.js +1 -2
  2. package/es/BankCardFilled.d.ts +6 -0
  3. package/es/BankCardFilled.js +38 -0
  4. package/es/CalendarOutlined.d.ts +6 -0
  5. package/es/CalendarOutlined.js +38 -0
  6. package/es/ErrorWarningOutlined.d.ts +6 -0
  7. package/es/{ErrorWarningLine.js → ErrorWarningOutlined.js} +3 -3
  8. package/es/HandCoinsFilled.d.ts +6 -0
  9. package/es/HandCoinsFilled.js +38 -0
  10. package/es/KeyFilled.d.ts +6 -0
  11. package/es/KeyFilled.js +38 -0
  12. package/es/index.d.ts +5 -1
  13. package/es/index.js +5 -1
  14. package/lib/ArrowDropDownFilled.js +1 -2
  15. package/lib/BankCardFilled.d.ts +6 -0
  16. package/lib/BankCardFilled.js +85 -0
  17. package/lib/CalendarOutlined.d.ts +6 -0
  18. package/lib/CalendarOutlined.js +85 -0
  19. package/lib/ErrorWarningOutlined.d.ts +6 -0
  20. package/lib/{ErrorWarningLine.js → ErrorWarningOutlined.js} +3 -3
  21. package/lib/HandCoinsFilled.d.ts +6 -0
  22. package/lib/HandCoinsFilled.js +85 -0
  23. package/lib/KeyFilled.d.ts +6 -0
  24. package/lib/KeyFilled.js +85 -0
  25. package/lib/index.d.ts +5 -1
  26. package/lib/index.js +39 -3
  27. package/package.json +2 -2
  28. package/src/ArrowDropDownFilled.tsx +1 -1
  29. package/src/BankCardFilled.tsx +18 -0
  30. package/src/CalendarOutlined.tsx +18 -0
  31. package/src/{ErrorWarningLine.tsx → ErrorWarningOutlined.tsx} +3 -3
  32. package/src/HandCoinsFilled.tsx +18 -0
  33. package/src/KeyFilled.tsx +18 -0
  34. package/src/index.tsx +115 -111
  35. package/svgs/filled/arrow-drop-down-filled.svg +1 -1
  36. package/svgs/filled/bank-card-filled.svg +3 -0
  37. package/svgs/filled/hand-coins-filled.svg +3 -0
  38. package/svgs/filled/key-filled.svg +3 -0
  39. package/svgs/outlined/calendar-outlined.svg +5 -0
  40. package/svgs/{filled/error-warning-line.svg → outlined/error-warning-outlined.svg} +0 -0
  41. package/tmpAllSvgs/arrow-drop-down-filled.svg +1 -1
  42. package/tmpAllSvgs/bank-card-filled.svg +3 -0
  43. package/tmpAllSvgs/calendar-outlined.svg +5 -0
  44. package/tmpAllSvgs/{error-warning-line.svg → error-warning-outlined.svg} +0 -0
  45. package/tmpAllSvgs/hand-coins-filled.svg +3 -0
  46. package/tmpAllSvgs/key-filled.svg +3 -0
  47. package/es/ErrorWarningLine.d.ts +0 -6
  48. package/lib/ErrorWarningLine.d.ts +0 -6
@@ -25,8 +25,7 @@ function ArrowDropDownFilled(componentProps) {
25
25
  xmlns: "http://www.w3.org/2000/svg"
26
26
  }, props), /*#__PURE__*/React.createElement("path", {
27
27
  d: "M12 14l-4-4h8l-4 4z",
28
- fill: "currentColor",
29
- fillOpacity: 0.5
28
+ fill: "currentColor"
30
29
  }));
31
30
  };
32
31
 
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function BankCardFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace BankCardFilled {
4
+ var displayName: string;
5
+ }
6
+ export default BankCardFilled;
@@ -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 BankCardFilled(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: "M21 11.222v7.89a.883.883 0 01-.264.628.906.906 0 01-.636.26H3.9a.906.906 0 01-.636-.26A.883.883 0 013 19.11v-7.889h18zm0-1.778H3V5.89c0-.236.095-.462.264-.629A.906.906 0 013.9 5h16.2c.239 0 .468.094.636.26A.883.883 0 0121 5.89v3.555zm-6.3 6.112v1.777h3.6v-1.777h-3.6z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ BankCardFilled.displayName = 'BankCardFilled';
38
+ export default BankCardFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function CalendarOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace CalendarOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default CalendarOutlined;
@@ -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 CalendarOutlined(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: "M17 3h4a1 1 0 011 1v16a1 1 0 01-1 1H3a1 1 0 01-1-1V4a1 1 0 011-1h4V1h2v2h6V1h2v2zm3 8H4v8h16v-8zm-5-6H9v2H7V5H4v4h16V5h-3v2h-2V5zm-9 8h2v2H6v-2zm5 0h2v2h-2v-2zm5 0h2v2h-2v-2z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ CalendarOutlined.displayName = 'CalendarOutlined';
38
+ export default CalendarOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ErrorWarningOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace ErrorWarningOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default ErrorWarningOutlined;
@@ -17,7 +17,7 @@ var __assign = this && this.__assign || function () {
17
17
  import * as React from 'react';
18
18
  import Icon from 'a-base-icon/lib/Icon';
19
19
 
20
- function ErrorWarningLine(componentProps) {
20
+ function ErrorWarningOutlined(componentProps) {
21
21
  var IconNode = function IconNode(props) {
22
22
  return /*#__PURE__*/React.createElement("svg", __assign({
23
23
  viewBox: "0 0 24 24",
@@ -34,5 +34,5 @@ function ErrorWarningLine(componentProps) {
34
34
  }));
35
35
  }
36
36
 
37
- ErrorWarningLine.displayName = 'ErrorWarningLine';
38
- export default ErrorWarningLine;
37
+ ErrorWarningOutlined.displayName = 'ErrorWarningOutlined';
38
+ export default ErrorWarningOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function HandCoinsFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace HandCoinsFilled {
4
+ var displayName: string;
5
+ }
6
+ export default HandCoinsFilled;
@@ -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 HandCoinsFilled(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: "M9.4 12.5h1.927c1.06 0 2.076.424 2.826 1.18.75.754 1.17 1.779 1.17 2.846H9.106l.001.895h7.106v-.895a5.018 5.018 0 00-.787-2.684h2.564c.84 0 1.662.24 2.372.69A4.464 4.464 0 0122 16.394C19.9 19.186 16.498 21 12.66 21c-2.453 0-4.531-.528-6.219-1.454v-8.325A6.167 6.167 0 019.4 12.5zm-3.847 6.71a.898.898 0 01-.26.633.885.885 0 01-.628.262H2.888a.885.885 0 01-.628-.262.898.898 0 01-.26-.633v-8.052c0-.237.094-.465.26-.633a.885.885 0 01.628-.262h1.777c.235 0 .461.094.628.262.166.168.26.396.26.633v8.053zM17.1 6.684c.707 0 1.385.283 1.885.786a2.694 2.694 0 010 3.796 2.655 2.655 0 01-3.769 0 2.694 2.694 0 010-3.796 2.655 2.655 0 011.884-.786zM10.883 4c.706 0 1.384.283 1.884.786a2.694 2.694 0 010 3.796 2.655 2.655 0 01-3.769 0 2.694 2.694 0 010-3.796A2.655 2.655 0 0110.883 4z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ HandCoinsFilled.displayName = 'HandCoinsFilled';
38
+ export default HandCoinsFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function KeyFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace KeyFilled {
4
+ var displayName: string;
5
+ }
6
+ export default KeyFilled;
@@ -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 KeyFilled(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: "M10.313 11.566l7.94-7.94 2.121 2.121-1.414 1.414 2.121 2.121-3.535 3.536-2.121-2.121-2.99 2.99a5.003 5.003 0 01-7.97 5.849 5 5 0 015.848-7.97zm-.899 5.848a2 2 0 10-2.78-2.877 2 2 0 002.78 2.877z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ KeyFilled.displayName = 'KeyFilled';
38
+ export default KeyFilled;
package/es/index.d.ts CHANGED
@@ -6,12 +6,14 @@ export { default as ArrowDropDownFilled } from './ArrowDropDownFilled';
6
6
  export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
7
7
  export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
8
8
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
9
+ export { default as BankCardFilled } from './BankCardFilled';
9
10
  export { default as BoxFilled } from './BoxFilled';
10
11
  export { default as BoxOutlined } from './BoxOutlined';
11
12
  export { default as BrokenLineFilled } from './BrokenLineFilled';
12
13
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
13
14
  export { default as BusinessCardFilled } from './BusinessCardFilled';
14
15
  export { default as BusinessCardOutlined } from './BusinessCardOutlined';
16
+ export { default as CalendarOutlined } from './CalendarOutlined';
15
17
  export { default as CameraFilled } from './CameraFilled';
16
18
  export { default as CameraOutlined } from './CameraOutlined';
17
19
  export { default as CardFilled } from './CardFilled';
@@ -41,14 +43,16 @@ export { default as DoubleTextFilled } from './DoubleTextFilled';
41
43
  export { default as DoubleTextOutlined } from './DoubleTextOutlined';
42
44
  export { default as EditFilled } from './EditFilled';
43
45
  export { default as EditSimpleOutlined } from './EditSimpleOutlined';
44
- export { default as ErrorWarningLine } from './ErrorWarningLine';
46
+ export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
45
47
  export { default as FileFilled } from './FileFilled';
46
48
  export { default as FileOutlined } from './FileOutlined';
47
49
  export { default as FormOutlined } from './FormOutlined';
50
+ export { default as HandCoinsFilled } from './HandCoinsFilled';
48
51
  export { default as HomeFilled } from './HomeFilled';
49
52
  export { default as HomeOutlined } from './HomeOutlined';
50
53
  export { default as ImacFilled } from './ImacFilled';
51
54
  export { default as ImacOutlined } from './ImacOutlined';
55
+ export { default as KeyFilled } from './KeyFilled';
52
56
  export { default as LayerFilled } from './LayerFilled';
53
57
  export { default as LayerOutlined } from './LayerOutlined';
54
58
  export { default as LineUpFilled } from './LineUpFilled';
package/es/index.js CHANGED
@@ -6,12 +6,14 @@ export { default as ArrowDropDownFilled } from './ArrowDropDownFilled';
6
6
  export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
7
7
  export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
8
8
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
9
+ export { default as BankCardFilled } from './BankCardFilled';
9
10
  export { default as BoxFilled } from './BoxFilled';
10
11
  export { default as BoxOutlined } from './BoxOutlined';
11
12
  export { default as BrokenLineFilled } from './BrokenLineFilled';
12
13
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
13
14
  export { default as BusinessCardFilled } from './BusinessCardFilled';
14
15
  export { default as BusinessCardOutlined } from './BusinessCardOutlined';
16
+ export { default as CalendarOutlined } from './CalendarOutlined';
15
17
  export { default as CameraFilled } from './CameraFilled';
16
18
  export { default as CameraOutlined } from './CameraOutlined';
17
19
  export { default as CardFilled } from './CardFilled';
@@ -41,14 +43,16 @@ export { default as DoubleTextFilled } from './DoubleTextFilled';
41
43
  export { default as DoubleTextOutlined } from './DoubleTextOutlined';
42
44
  export { default as EditFilled } from './EditFilled';
43
45
  export { default as EditSimpleOutlined } from './EditSimpleOutlined';
44
- export { default as ErrorWarningLine } from './ErrorWarningLine';
46
+ export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
45
47
  export { default as FileFilled } from './FileFilled';
46
48
  export { default as FileOutlined } from './FileOutlined';
47
49
  export { default as FormOutlined } from './FormOutlined';
50
+ export { default as HandCoinsFilled } from './HandCoinsFilled';
48
51
  export { default as HomeFilled } from './HomeFilled';
49
52
  export { default as HomeOutlined } from './HomeOutlined';
50
53
  export { default as ImacFilled } from './ImacFilled';
51
54
  export { default as ImacOutlined } from './ImacOutlined';
55
+ export { default as KeyFilled } from './KeyFilled';
52
56
  export { default as LayerFilled } from './LayerFilled';
53
57
  export { default as LayerOutlined } from './LayerOutlined';
54
58
  export { default as LineUpFilled } from './LineUpFilled';
@@ -72,8 +72,7 @@ function ArrowDropDownFilled(componentProps) {
72
72
  xmlns: "http://www.w3.org/2000/svg"
73
73
  }, props), React.createElement("path", {
74
74
  d: "M12 14l-4-4h8l-4 4z",
75
- fill: "currentColor",
76
- fillOpacity: 0.5
75
+ fill: "currentColor"
77
76
  }));
78
77
  };
79
78
 
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function BankCardFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace BankCardFilled {
4
+ var displayName: string;
5
+ }
6
+ export default BankCardFilled;
@@ -0,0 +1,85 @@
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 BankCardFilled(componentProps) {
68
+ var IconNode = function IconNode(props) {
69
+ return React.createElement("svg", __assign({
70
+ viewBox: "0 0 24 24",
71
+ fill: "none",
72
+ xmlns: "http://www.w3.org/2000/svg"
73
+ }, props), React.createElement("path", {
74
+ d: "M21 11.222v7.89a.883.883 0 01-.264.628.906.906 0 01-.636.26H3.9a.906.906 0 01-.636-.26A.883.883 0 013 19.11v-7.889h18zm0-1.778H3V5.89c0-.236.095-.462.264-.629A.906.906 0 013.9 5h16.2c.239 0 .468.094.636.26A.883.883 0 0121 5.89v3.555zm-6.3 6.112v1.777h3.6v-1.777h-3.6z",
75
+ fill: "currentColor"
76
+ }));
77
+ };
78
+
79
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
80
+ component: IconNode
81
+ }));
82
+ }
83
+
84
+ BankCardFilled.displayName = 'BankCardFilled';
85
+ exports["default"] = BankCardFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function CalendarOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace CalendarOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default CalendarOutlined;
@@ -0,0 +1,85 @@
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 CalendarOutlined(componentProps) {
68
+ var IconNode = function IconNode(props) {
69
+ return React.createElement("svg", __assign({
70
+ viewBox: "0 0 24 24",
71
+ fill: "none",
72
+ xmlns: "http://www.w3.org/2000/svg"
73
+ }, props), React.createElement("path", {
74
+ d: "M17 3h4a1 1 0 011 1v16a1 1 0 01-1 1H3a1 1 0 01-1-1V4a1 1 0 011-1h4V1h2v2h6V1h2v2zm3 8H4v8h16v-8zm-5-6H9v2H7V5H4v4h16V5h-3v2h-2V5zm-9 8h2v2H6v-2zm5 0h2v2h-2v-2zm5 0h2v2h-2v-2z",
75
+ fill: "currentColor"
76
+ }));
77
+ };
78
+
79
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
80
+ component: IconNode
81
+ }));
82
+ }
83
+
84
+ CalendarOutlined.displayName = 'CalendarOutlined';
85
+ exports["default"] = CalendarOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ErrorWarningOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace ErrorWarningOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default ErrorWarningOutlined;
@@ -64,7 +64,7 @@ var React = __importStar(require("react"));
64
64
 
65
65
  var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
66
66
 
67
- function ErrorWarningLine(componentProps) {
67
+ function ErrorWarningOutlined(componentProps) {
68
68
  var IconNode = function IconNode(props) {
69
69
  return React.createElement("svg", __assign({
70
70
  viewBox: "0 0 24 24",
@@ -81,5 +81,5 @@ function ErrorWarningLine(componentProps) {
81
81
  }));
82
82
  }
83
83
 
84
- ErrorWarningLine.displayName = 'ErrorWarningLine';
85
- exports["default"] = ErrorWarningLine;
84
+ ErrorWarningOutlined.displayName = 'ErrorWarningOutlined';
85
+ exports["default"] = ErrorWarningOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function HandCoinsFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace HandCoinsFilled {
4
+ var displayName: string;
5
+ }
6
+ export default HandCoinsFilled;
@@ -0,0 +1,85 @@
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 HandCoinsFilled(componentProps) {
68
+ var IconNode = function IconNode(props) {
69
+ return React.createElement("svg", __assign({
70
+ viewBox: "0 0 24 24",
71
+ fill: "none",
72
+ xmlns: "http://www.w3.org/2000/svg"
73
+ }, props), React.createElement("path", {
74
+ d: "M9.4 12.5h1.927c1.06 0 2.076.424 2.826 1.18.75.754 1.17 1.779 1.17 2.846H9.106l.001.895h7.106v-.895a5.018 5.018 0 00-.787-2.684h2.564c.84 0 1.662.24 2.372.69A4.464 4.464 0 0122 16.394C19.9 19.186 16.498 21 12.66 21c-2.453 0-4.531-.528-6.219-1.454v-8.325A6.167 6.167 0 019.4 12.5zm-3.847 6.71a.898.898 0 01-.26.633.885.885 0 01-.628.262H2.888a.885.885 0 01-.628-.262.898.898 0 01-.26-.633v-8.052c0-.237.094-.465.26-.633a.885.885 0 01.628-.262h1.777c.235 0 .461.094.628.262.166.168.26.396.26.633v8.053zM17.1 6.684c.707 0 1.385.283 1.885.786a2.694 2.694 0 010 3.796 2.655 2.655 0 01-3.769 0 2.694 2.694 0 010-3.796 2.655 2.655 0 011.884-.786zM10.883 4c.706 0 1.384.283 1.884.786a2.694 2.694 0 010 3.796 2.655 2.655 0 01-3.769 0 2.694 2.694 0 010-3.796A2.655 2.655 0 0110.883 4z",
75
+ fill: "currentColor"
76
+ }));
77
+ };
78
+
79
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
80
+ component: IconNode
81
+ }));
82
+ }
83
+
84
+ HandCoinsFilled.displayName = 'HandCoinsFilled';
85
+ exports["default"] = HandCoinsFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function KeyFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace KeyFilled {
4
+ var displayName: string;
5
+ }
6
+ export default KeyFilled;