a-icons 1.0.20 → 1.0.24

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 (88) hide show
  1. package/es/CameraFilled.d.ts +6 -0
  2. package/es/CameraFilled.js +44 -0
  3. package/es/CameraOutlined.d.ts +6 -0
  4. package/es/CameraOutlined.js +51 -0
  5. package/es/ChevronUpFilled.d.ts +6 -0
  6. package/es/ChevronUpFilled.js +44 -0
  7. package/es/HomeFilled.d.ts +6 -0
  8. package/es/HomeFilled.js +39 -0
  9. package/es/HomeOutlined.d.ts +6 -0
  10. package/es/HomeOutlined.js +42 -0
  11. package/es/MoveOutlined.js +1 -2
  12. package/es/SearchDocumentFilled.d.ts +6 -0
  13. package/es/SearchDocumentFilled.js +45 -0
  14. package/es/SearchDocumentOutlined.d.ts +6 -0
  15. package/es/SearchDocumentOutlined.js +44 -0
  16. package/es/StarFilled.d.ts +6 -0
  17. package/es/StarFilled.js +37 -0
  18. package/es/StarOutlined.d.ts +6 -0
  19. package/es/StarOutlined.js +39 -0
  20. package/es/WalletFilled.d.ts +6 -0
  21. package/es/WalletFilled.js +40 -0
  22. package/es/WalletOutlined.d.ts +6 -0
  23. package/es/WalletOutlined.js +43 -0
  24. package/es/index.d.ts +11 -0
  25. package/es/index.js +12 -1
  26. package/lib/CameraFilled.d.ts +6 -0
  27. package/lib/CameraFilled.js +91 -0
  28. package/lib/CameraOutlined.d.ts +6 -0
  29. package/lib/CameraOutlined.js +98 -0
  30. package/lib/ChevronUpFilled.d.ts +6 -0
  31. package/lib/ChevronUpFilled.js +91 -0
  32. package/lib/HomeFilled.d.ts +6 -0
  33. package/lib/HomeFilled.js +86 -0
  34. package/lib/HomeOutlined.d.ts +6 -0
  35. package/lib/HomeOutlined.js +89 -0
  36. package/lib/MoveOutlined.js +1 -2
  37. package/lib/SearchDocumentFilled.d.ts +6 -0
  38. package/lib/SearchDocumentFilled.js +92 -0
  39. package/lib/SearchDocumentOutlined.d.ts +6 -0
  40. package/lib/SearchDocumentOutlined.js +91 -0
  41. package/lib/StarFilled.d.ts +6 -0
  42. package/lib/StarFilled.js +84 -0
  43. package/lib/StarOutlined.d.ts +6 -0
  44. package/lib/StarOutlined.js +86 -0
  45. package/lib/WalletFilled.d.ts +6 -0
  46. package/lib/WalletFilled.js +87 -0
  47. package/lib/WalletOutlined.d.ts +6 -0
  48. package/lib/WalletOutlined.js +90 -0
  49. package/lib/index.d.ts +11 -0
  50. package/lib/index.js +99 -0
  51. package/package.json +3 -3
  52. package/src/CameraFilled.tsx +21 -0
  53. package/src/CameraOutlined.tsx +27 -0
  54. package/src/ChevronUpFilled.tsx +25 -0
  55. package/src/HomeFilled.tsx +20 -0
  56. package/src/HomeOutlined.tsx +21 -0
  57. package/src/MoveOutlined.tsx +1 -1
  58. package/src/SearchDocumentFilled.tsx +25 -0
  59. package/src/SearchDocumentOutlined.tsx +26 -0
  60. package/src/StarFilled.tsx +18 -0
  61. package/src/StarOutlined.tsx +20 -0
  62. package/src/WalletFilled.tsx +19 -0
  63. package/src/WalletOutlined.tsx +25 -0
  64. package/src/index.tsx +11 -0
  65. package/svgs/filled/camera-filled.svg +6 -0
  66. package/svgs/filled/chevron-up-filled.svg +4 -0
  67. package/svgs/filled/home-filled.svg +5 -0
  68. package/svgs/filled/search-document-filled.svg +11 -0
  69. package/svgs/filled/star-filled.svg +5 -0
  70. package/svgs/filled/wallet-filled.svg +8 -0
  71. package/svgs/outlined/camera-outlined.svg +9 -0
  72. package/svgs/outlined/home-outlined.svg +8 -0
  73. package/svgs/outlined/move-outlined.svg +14 -8
  74. package/svgs/outlined/search-document-outlined.svg +8 -0
  75. package/svgs/outlined/star-outlined.svg +5 -0
  76. package/svgs/outlined/wallet-outlined.svg +8 -0
  77. package/tmpAllSvgs/camera-filled.svg +6 -0
  78. package/tmpAllSvgs/camera-outlined.svg +9 -0
  79. package/tmpAllSvgs/chevron-up-filled.svg +4 -0
  80. package/tmpAllSvgs/home-filled.svg +5 -0
  81. package/tmpAllSvgs/home-outlined.svg +8 -0
  82. package/tmpAllSvgs/move-outlined.svg +14 -8
  83. package/tmpAllSvgs/search-document-filled.svg +11 -0
  84. package/tmpAllSvgs/search-document-outlined.svg +8 -0
  85. package/tmpAllSvgs/star-filled.svg +5 -0
  86. package/tmpAllSvgs/star-outlined.svg +5 -0
  87. package/tmpAllSvgs/wallet-filled.svg +8 -0
  88. package/tmpAllSvgs/wallet-outlined.svg +8 -0
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function CameraFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace CameraFilled {
4
+ var displayName: string;
5
+ }
6
+ export default CameraFilled;
@@ -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 CameraFilled(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("circle", {
26
+ cx: 12.43,
27
+ cy: 12.78,
28
+ fill: "currentColor",
29
+ r: 2.5
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ fillRule: "evenodd",
32
+ clipRule: "evenodd",
33
+ d: "M17.94 5H7.06A4.05 4.05 0 003 9.05v6.9A4.05 4.05 0 007.06 20h10.88A4.05 4.05 0 0022 15.95v-6.9A4.05 4.05 0 0017.94 5zm-5.51 11.78a4 4 0 110-8 4 4 0 010 8zm5.5-7a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-1a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h1z",
34
+ fill: "currentColor"
35
+ }));
36
+ };
37
+
38
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
39
+ component: IconNode
40
+ }));
41
+ }
42
+
43
+ CameraFilled.displayName = 'CameraFilled';
44
+ export default CameraFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function CameraOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace CameraOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default CameraOutlined;
@@ -0,0 +1,51 @@
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 CameraOutlined(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: "M6.274 4h11.452A4.263 4.263 0 0122 8.263v7.263a4.263 4.263 0 01-4.274 4.264H6.274A4.263 4.263 0 012 15.526V8.263A4.263 4.263 0 016.274 4zm11.452 14.21a2.695 2.695 0 002.695-2.631V8.263a2.695 2.695 0 00-2.695-2.684H6.274a2.695 2.695 0 00-2.695 2.684v7.263a2.695 2.695 0 002.695 2.684h11.452z",
29
+ fill: "currentColor"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ fillRule: "evenodd",
32
+ clipRule: "evenodd",
33
+ d: "M7.716 12.19a4.21 4.21 0 118.42 0 4.21 4.21 0 01-8.42 0zm1.579 0a2.632 2.632 0 105.263 0 2.632 2.632 0 00-5.263 0z",
34
+ fill: "currentColor"
35
+ }), /*#__PURE__*/React.createElement("rect", {
36
+ x: 16.137,
37
+ y: 6.916,
38
+ width: 2.105,
39
+ height: 2.116,
40
+ rx: 0.5,
41
+ fill: "currentColor"
42
+ }));
43
+ };
44
+
45
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
46
+ component: IconNode
47
+ }));
48
+ }
49
+
50
+ CameraOutlined.displayName = 'CameraOutlined';
51
+ export default CameraOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ChevronUpFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ChevronUpFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ChevronUpFilled;
@@ -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 ChevronUpFilled(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("rect", {
27
+ fill: "currentColor",
28
+ width: 19.12,
29
+ height: 19.12,
30
+ rx: 2,
31
+ transform: "matrix(0 -1 -1 0 21.52 21.6)"
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ d: "M7.19 8.9a.75.75 0 00-.53.22.74.74 0 000 1.06l4.77 4.78a.75.75 0 001.06 0l4.77-4.78a.74.74 0 000-1.06.75.75 0 00-1.06 0l-4.24 4.25-4.24-4.25a.79.79 0 00-.53-.22z",
34
+ fill: "#fff"
35
+ }));
36
+ };
37
+
38
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
39
+ component: IconNode
40
+ }));
41
+ }
42
+
43
+ ChevronUpFilled.displayName = 'ChevronUpFilled';
44
+ export default ChevronUpFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function HomeFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace HomeFilled {
4
+ var displayName: string;
5
+ }
6
+ export default HomeFilled;
@@ -0,0 +1,39 @@
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 HomeFilled(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: "M14.454 3.803l5.002 3.695A3.733 3.733 0 0121 10.5v6.688a3.903 3.903 0 01-3.988 3.79H6.998A3.903 3.903 0 013 17.189v-6.688a3.733 3.733 0 011.544-3.003l5.002-3.695a4.15 4.15 0 014.908 0zM7.737 16.972h8.526a.71.71 0 100-1.421H7.737a.71.71 0 100 1.42z",
29
+ fill: "currentColor"
30
+ }));
31
+ };
32
+
33
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
34
+ component: IconNode
35
+ }));
36
+ }
37
+
38
+ HomeFilled.displayName = 'HomeFilled';
39
+ export default HomeFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function HomeOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace HomeOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default HomeOutlined;
@@ -0,0 +1,42 @@
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 HomeOutlined(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: "M14.73 2.89L20.29 7A4.15 4.15 0 0122 10.33v7.44A4.34 4.34 0 0117.56 22H6.44A4.34 4.34 0 012 17.77v-7.43A4.14 4.14 0 013.72 7l5.55-4.11a4.63 4.63 0 015.46 0zm2.83 17.61a2.84 2.84 0 002.94-2.73v-7.44a2.61 2.61 0 00-1.11-2.12L13.84 4.1a3.12 3.12 0 00-3.68 0L4.61 8.2a2.65 2.65 0 00-1.11 2.14v7.43a2.85 2.85 0 002.94 2.73h11.12z",
29
+ fill: "currentColor"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ d: "M16.5 15.75h-9a.75.75 0 000 1.5h9a.75.75 0 000-1.5z",
32
+ fill: "currentColor"
33
+ }));
34
+ };
35
+
36
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
37
+ component: IconNode
38
+ }));
39
+ }
40
+
41
+ HomeOutlined.displayName = 'HomeOutlined';
42
+ export default HomeOutlined;
@@ -20,8 +20,7 @@ import Icon from 'a-base-icon/lib/Icon';
20
20
  function MoveOutlined(componentProps) {
21
21
  var IconNode = function IconNode(props) {
22
22
  return /*#__PURE__*/React.createElement("svg", __assign({
23
- width: 24,
24
- height: 24,
23
+ viewBox: "0 0 24 24",
25
24
  xmlns: "http://www.w3.org/2000/svg"
26
25
  }, props), /*#__PURE__*/React.createElement("path", {
27
26
  fill: "inherit",
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function SearchDocumentFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace SearchDocumentFilled {
4
+ var displayName: string;
5
+ }
6
+ export default SearchDocumentFilled;
@@ -0,0 +1,45 @@
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 SearchDocumentFilled(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: "M14.17 9.14h4.62a.56.56 0 00.39-1l-5.55-5.45a.56.56 0 00-1 .39v4.57a1.49 1.49 0 001.54 1.49z",
27
+ fill: "currentColor"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ fillRule: "evenodd",
30
+ clipRule: "evenodd",
31
+ d: "M14.07 10.24h4.78a.5.5 0 01.5.5v6.92a4 4 0 01-4 4H8.46a4 4 0 01-4-4V6.5a4 4 0 014-4h2.67a.51.51 0 01.5.5v4.78a2.45 2.45 0 002.44 2.46zm-5.22 8.04a2.87 2.87 0 001.51.44l.04-.05a2.84 2.84 0 10-2.84-2.84c.002.461.119.915.34 1.32a.996.996 0 00-.13.09l-1.06 1.1a.75.75 0 00.54 1.27.7.7 0 00.54-.23l1.06-1.1z",
32
+ fill: "currentColor"
33
+ }), /*#__PURE__*/React.createElement("path", {
34
+ d: "M10.36 14.53a1.35 1.35 0 10-.02 2.7 1.35 1.35 0 00.02-2.7z",
35
+ fill: "currentColor"
36
+ }));
37
+ };
38
+
39
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
40
+ component: IconNode
41
+ }));
42
+ }
43
+
44
+ SearchDocumentFilled.displayName = 'SearchDocumentFilled';
45
+ export default SearchDocumentFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function SearchDocumentOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace SearchDocumentOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default SearchDocumentOutlined;
@@ -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 SearchDocumentOutlined(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: "M5.08 15.021A3.91 3.91 0 018.51 13a3.91 3.91 0 11-2.36 7.07L4.7 21.58a.78.78 0 01-.54.23.73.73 0 01-.52-.21.75.75 0 010-1.06L5.09 19h.11a3.91 3.91 0 01-.12-3.979zM6.1 16.91a2.41 2.41 0 002.41 2.41v-.03a2.41 2.41 0 002.41-2.38 2.41 2.41 0 00-4.82 0z",
29
+ fill: "currentColor"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ fillRule: "evenodd",
32
+ clipRule: "evenodd",
33
+ d: "M13.35 2.38l7 7a.75.75 0 01.27.56v7a4.75 4.75 0 01-4.75 4.75H13a.75.75 0 010-1.5h2.82a3.25 3.25 0 003.25-3.25v-6.25h-4.25a2.76 2.76 0 01-2.75-2.75V3.69H9.82a3.26 3.26 0 00-3.25 3.25v5a.75.75 0 01-1.5 0v-5a4.75 4.75 0 014.75-4.78h3c.199 0 .39.08.53.22zm.22 2.34v3.22c0 .69.56 1.25 1.25 1.25H18l-4.43-4.47z",
34
+ fill: "currentColor"
35
+ }));
36
+ };
37
+
38
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
39
+ component: IconNode
40
+ }));
41
+ }
42
+
43
+ SearchDocumentOutlined.displayName = 'SearchDocumentOutlined';
44
+ export default SearchDocumentOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function StarFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace StarFilled {
4
+ var displayName: string;
5
+ }
6
+ export default StarFilled;
@@ -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 StarFilled(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: "M14.44 4.537l.66 2a2.25 2.25 0 002.13 1.56h2.08a2.24 2.24 0 011.32 4.06l-1.71 1.24a2.25 2.25 0 00-.82 2.51l.66 2a2.24 2.24 0 01-3.45 2.54l-1.68-1.25a2.25 2.25 0 00-2.64 0l-1.68 1.25a2.24 2.24 0 01-3.45-2.51l.66-2a2.25 2.25 0 00-.82-2.51l-1.75-1.26a2.24 2.24 0 011.36-4.07h2.08a2.25 2.25 0 002.13-1.54l.66-2a2.24 2.24 0 014.26-.02z",
27
+ fill: "currentColor"
28
+ }));
29
+ };
30
+
31
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
32
+ component: IconNode
33
+ }));
34
+ }
35
+
36
+ StarFilled.displayName = 'StarFilled';
37
+ export default StarFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function StarOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace StarOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default StarOutlined;
@@ -0,0 +1,39 @@
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 StarOutlined(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: "M10.124 4.55A2.2 2.2 0 0112.254 3a2.2 2.2 0 012.13 1.57l.66 2a2.23 2.23 0 002.13 1.55h2.08a2.24 2.24 0 011.36 4.08l-1.71 1.25a2.23 2.23 0 00-.82 2.5l.66 2a2.25 2.25 0 01-2.18 2.95 2.22 2.22 0 01-1.31-.44l-1.64-1.25a2.24 2.24 0 00-2.64 0l-1.72 1.25a2.22 2.22 0 01-1.35.49 2.25 2.25 0 01-2.14-3l.66-2a2.23 2.23 0 00-.78-2.52l-1.71-1.25a2.24 2.24 0 011.32-4.06h2.08a2.23 2.23 0 002.13-1.57l.66-2zm2.66.52a.52.52 0 00-.53-.39.52.52 0 00-.53.43l-.66 2a3.92 3.92 0 01-3.73 2.71h-2.12a.56.56 0 00-.33 1l1.71 1.25a3.92 3.92 0 011.43 4.39l-.66 2a.5.5 0 00.07.49.63.63 0 00.49.27.56.56 0 00.33-.12l1.69-1.25c1.378-1 3.243-1 4.62 0l1.67 1.19a.56.56 0 00.33.12.63.63 0 00.47-.26.5.5 0 00.07-.49l-.66-2a3.92 3.92 0 011.43-4.39l1.71-1.24a.56.56 0 00-.33-1h-2.08a3.92 3.92 0 01-3.73-2.71l-.66-2z",
29
+ fill: "currentColor"
30
+ }));
31
+ };
32
+
33
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
34
+ component: IconNode
35
+ }));
36
+ }
37
+
38
+ StarOutlined.displayName = 'StarOutlined';
39
+ export default StarOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function WalletFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace WalletFilled {
4
+ var displayName: string;
5
+ }
6
+ export default WalletFilled;
@@ -0,0 +1,40 @@
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 WalletFilled(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: "M18.314 11.22a.676.676 0 100 1.351H22V11.2h-.105l-3.58.02z",
27
+ fill: "currentColor"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ d: "M21.895 14.381h-3.58a2.486 2.486 0 010-4.971H22v-1.6A3.81 3.81 0 0018.19 4H5.81A3.81 3.81 0 002 7.81v8.171a3.81 3.81 0 003.81 3.81h12.38A3.81 3.81 0 0022 15.98v-1.62l-.105.02z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ WalletFilled.displayName = 'WalletFilled';
40
+ export default WalletFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function WalletOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace WalletOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default WalletOutlined;
@@ -0,0 +1,43 @@
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 WalletOutlined(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: "M18.19 5.639c1.239 0 2.191.963 2.191 2.216v8.29c0 1.253-.952 2.216-2.19 2.216H5.81c-1.239 0-2.19-.963-2.19-2.216v-8.29C3.618 6.602 4.57 5.64 5.81 5.64h12.38zm0-1.639H5.81C3.714 4 2 5.735 2 7.855v8.29C2 18.265 3.714 20 5.81 20h12.38c2.096 0 3.81-1.735 3.81-3.855v-8.29C22 5.735 20.286 4 18.19 4z",
27
+ fill: "currentColor"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ d: "M20.952 10.361h-2.666c-.857 0-1.62.675-1.62 1.639 0 .867.667 1.639 1.62 1.639h2.666",
30
+ stroke: "currentColor",
31
+ strokeWidth: 1.903,
32
+ strokeLinecap: "round",
33
+ strokeLinejoin: "round"
34
+ }));
35
+ };
36
+
37
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
38
+ component: IconNode
39
+ }));
40
+ }
41
+
42
+ WalletOutlined.displayName = 'WalletOutlined';
43
+ export default WalletOutlined;
package/es/index.d.ts CHANGED
@@ -2,10 +2,13 @@ export { default as AlertTriangleFilled } from './AlertTriangleFilled';
2
2
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
3
3
  export { default as BrokenLineFilled } from './BrokenLineFilled';
4
4
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
5
+ export { default as CameraFilled } from './CameraFilled';
6
+ export { default as CameraOutlined } from './CameraOutlined';
5
7
  export { default as CardFilled } from './CardFilled';
6
8
  export { default as CardOutlined } from './CardOutlined';
7
9
  export { default as CategoryFilled } from './CategoryFilled';
8
10
  export { default as CategoryOutlined } from './CategoryOutlined';
11
+ export { default as ChevronUpFilled } from './ChevronUpFilled';
9
12
  export { default as ClockCircleFilled } from './ClockCircleFilled';
10
13
  export { default as ClockCircleOutline } from './ClockCircleOutline';
11
14
  export { default as CloseCircleFilled } from './CloseCircleFilled';
@@ -25,6 +28,8 @@ export { default as FileFilled } from './FileFilled';
25
28
  export { default as FileOutlined } from './FileOutlined';
26
29
  export { default as FormFilled } from './FormFilled';
27
30
  export { default as FormOutlined } from './FormOutlined';
31
+ export { default as HomeFilled } from './HomeFilled';
32
+ export { default as HomeOutlined } from './HomeOutlined';
28
33
  export { default as LayerFilled } from './LayerFilled';
29
34
  export { default as LayerOutlined } from './LayerOutlined';
30
35
  export { default as LineUpFilled } from './LineUpFilled';
@@ -56,12 +61,16 @@ export { default as PlusFilled } from './PlusFilled';
56
61
  export { default as PlusOutlined } from './PlusOutlined';
57
62
  export { default as RefreshFilled } from './RefreshFilled';
58
63
  export { default as RefreshOutlined } from './RefreshOutlined';
64
+ export { default as SearchDocumentFilled } from './SearchDocumentFilled';
65
+ export { default as SearchDocumentOutlined } from './SearchDocumentOutlined';
59
66
  export { default as SearchFilled } from './SearchFilled';
60
67
  export { default as SearchOutlined } from './SearchOutlined';
61
68
  export { default as SettingFilled } from './SettingFilled';
62
69
  export { default as SettingOutlined } from './SettingOutlined';
63
70
  export { default as SettingSquareFilled } from './SettingSquareFilled';
64
71
  export { default as SettingSquareOutlined } from './SettingSquareOutlined';
72
+ export { default as StarFilled } from './StarFilled';
73
+ export { default as StarOutlined } from './StarOutlined';
65
74
  export { default as StopFilled } from './StopFilled';
66
75
  export { default as StopOutlined } from './StopOutlined';
67
76
  export { default as TmdLogo } from './TmdLogo';
@@ -69,3 +78,5 @@ export { default as TrashCanFilled } from './TrashCanFilled';
69
78
  export { default as TrashOutlined } from './TrashOutlined';
70
79
  export { default as UpFilled } from './UpFilled';
71
80
  export { default as UpOutlined } from './UpOutlined';
81
+ export { default as WalletFilled } from './WalletFilled';
82
+ export { default as WalletOutlined } from './WalletOutlined';