a-icons 1.0.47 → 1.0.50

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 (60) hide show
  1. package/es/ArrowDownFilled.d.ts +6 -0
  2. package/es/ArrowDownFilled.js +40 -0
  3. package/es/ArrowUpFilled.d.ts +6 -0
  4. package/es/ArrowUpFilled.js +40 -0
  5. package/es/BoxAddFilled.d.ts +6 -0
  6. package/es/BoxAddFilled.js +43 -0
  7. package/es/EyeFilled.d.ts +6 -0
  8. package/es/EyeFilled.js +38 -0
  9. package/es/EyeOutlined.d.ts +6 -0
  10. package/es/EyeOutlined.js +38 -0
  11. package/es/FileSearchFilled.d.ts +6 -0
  12. package/es/FileSearchFilled.js +37 -0
  13. package/es/LeftOutlined.d.ts +6 -0
  14. package/es/LeftOutlined.js +38 -0
  15. package/es/index.d.ts +7 -0
  16. package/es/index.js +7 -0
  17. package/lib/ArrowDownFilled.d.ts +6 -0
  18. package/lib/ArrowDownFilled.js +87 -0
  19. package/lib/ArrowUpFilled.d.ts +6 -0
  20. package/lib/ArrowUpFilled.js +87 -0
  21. package/lib/BoxAddFilled.d.ts +6 -0
  22. package/lib/BoxAddFilled.js +90 -0
  23. package/lib/EyeFilled.d.ts +6 -0
  24. package/lib/EyeFilled.js +85 -0
  25. package/lib/EyeOutlined.d.ts +6 -0
  26. package/lib/EyeOutlined.js +85 -0
  27. package/lib/FileSearchFilled.d.ts +6 -0
  28. package/lib/FileSearchFilled.js +84 -0
  29. package/lib/LeftOutlined.d.ts +6 -0
  30. package/lib/LeftOutlined.js +85 -0
  31. package/lib/index.d.ts +7 -0
  32. package/lib/index.js +63 -0
  33. package/package.json +2 -2
  34. package/src/ArrowDownFilled.tsx +20 -0
  35. package/src/ArrowUpFilled.tsx +20 -0
  36. package/src/BoxAddFilled.tsx +24 -0
  37. package/src/CameraOutlined.tsx +8 -1
  38. package/src/CategoryFilled.tsx +8 -1
  39. package/src/EyeFilled.tsx +18 -0
  40. package/src/EyeOutlined.tsx +18 -0
  41. package/src/FileSearchFilled.tsx +18 -0
  42. package/src/LeftOutlined.tsx +18 -0
  43. package/src/SearchDocumentFilled.tsx +4 -1
  44. package/src/StampFilled.tsx +6 -1
  45. package/src/WalletFilled.tsx +4 -1
  46. package/src/index.tsx +122 -115
  47. package/svgs/filled/arrow-down-filled.svg +3 -0
  48. package/svgs/filled/arrow-up-filled.svg +3 -0
  49. package/svgs/filled/box-add-filled.svg +4 -0
  50. package/svgs/filled/eye-filled.svg +3 -0
  51. package/svgs/filled/file-search-filled.svg +3 -0
  52. package/svgs/outlined/eye-outlined.svg +3 -0
  53. package/svgs/outlined/left-outlined.svg +5 -0
  54. package/tmpAllSvgs/arrow-down-filled.svg +3 -0
  55. package/tmpAllSvgs/arrow-up-filled.svg +3 -0
  56. package/tmpAllSvgs/box-add-filled.svg +4 -0
  57. package/tmpAllSvgs/eye-filled.svg +3 -0
  58. package/tmpAllSvgs/eye-outlined.svg +3 -0
  59. package/tmpAllSvgs/file-search-filled.svg +3 -0
  60. package/tmpAllSvgs/left-outlined.svg +5 -0
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ArrowDownFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ArrowDownFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ArrowDownFilled;
@@ -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 ArrowDownFilled(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
+ fillRule: "evenodd",
28
+ clipRule: "evenodd",
29
+ d: "M20.42 6c-.403 0-.808.154-1.116.462L12 13.767 4.696 6.462a1.581 1.581 0 00-2.234 0 1.581 1.581 0 000 2.234l8.42 8.42a1.581 1.581 0 002.235 0l8.42-8.42a1.581 1.581 0 000-2.234A1.574 1.574 0 0020.422 6z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ ArrowDownFilled.displayName = 'ArrowDownFilled';
40
+ export default ArrowDownFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ArrowUpFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ArrowUpFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ArrowUpFilled;
@@ -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 ArrowUpFilled(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
+ fillRule: "evenodd",
28
+ clipRule: "evenodd",
29
+ d: "M20.42 17.579c-.403 0-.808-.154-1.116-.462L12 9.81l-7.304 7.306a1.581 1.581 0 01-2.234 0 1.581 1.581 0 010-2.234l8.42-8.421a1.581 1.581 0 012.235 0l8.42 8.42a1.581 1.581 0 010 2.235 1.574 1.574 0 01-1.116.462z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ ArrowUpFilled.displayName = 'ArrowUpFilled';
40
+ export default ArrowUpFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function BoxAddFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace BoxAddFilled {
4
+ var displayName: string;
5
+ }
6
+ export default BoxAddFilled;
@@ -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 BoxAddFilled(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
+ fillRule: "evenodd",
28
+ clipRule: "evenodd",
29
+ d: "M19.92 5l-5.85-3.25a3.09 3.09 0 00-3 0L5.24 5a3.08 3.08 0 00-1.58 2.69v6.22A2.51 2.51 0 002.5 16v4.1A2.53 2.53 0 005 22.63h4.09a2.54 2.54 0 002.53-2.49 3 3 0 002.45-.22l5.85-3.25A3.08 3.08 0 0021.5 14V7.69A3.08 3.08 0 0019.92 5zM10 20.1a.88.88 0 01-.87.87H5a.87.87 0 01-.86-.87V16a.87.87 0 01.86-.84h4.09A.88.88 0 0110 16v4.1zm3.92-9.1l4.71-2.62a.87.87 0 00.37-1.2.91.91 0 00-1.2-.36l-4.69 2.62a1 1 0 01-1 0l-4.7-2.62a.91.91 0 00-1.22.36.87.87 0 00.34 1.2L11.24 11c.094.05.188.085.28.118.055.02.108.04.16.062v4.08a.9.9 0 101.8 0v-4.08c.052-.022.105-.042.16-.062.091-.033.186-.068.28-.118z",
30
+ fill: "currentColor"
31
+ }), /*#__PURE__*/React.createElement("path", {
32
+ d: "M8.41 17.24h-.53v-.53a.83.83 0 10-1.66 0v.53h-.53a.83.83 0 000 1.65h.53v.53a.83.83 0 101.66 0v-.53h.53a.83.83 0 100-1.65z",
33
+ fill: "currentColor"
34
+ }));
35
+ };
36
+
37
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
38
+ component: IconNode
39
+ }));
40
+ }
41
+
42
+ BoxAddFilled.displayName = 'BoxAddFilled';
43
+ export default BoxAddFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function EyeFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace EyeFilled {
4
+ var displayName: string;
5
+ }
6
+ export default EyeFilled;
@@ -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 EyeFilled(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: "M1.181 12C2.121 6.88 6.608 3 12 3c5.392 0 9.878 3.88 10.819 9-.94 5.12-5.427 9-10.819 9-5.392 0-9.878-3.88-10.819-9zM12 17a5 5 0 100-10 5 5 0 000 10zm0-2a3 3 0 110-6 3 3 0 010 6z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ EyeFilled.displayName = 'EyeFilled';
38
+ export default EyeFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function EyeOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace EyeOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default EyeOutlined;
@@ -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 EyeOutlined(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: "M12 3c5.392 0 9.878 3.88 10.819 9-.94 5.12-5.427 9-10.819 9-5.392 0-9.878-3.88-10.819-9C2.121 6.88 6.608 3 12 3zm0 16a9.005 9.005 0 008.777-7 9.005 9.005 0 00-17.554 0A9.005 9.005 0 0012 19zm0-2.5a4.5 4.5 0 110-9 4.5 4.5 0 010 9zm0-2a2.5 2.5 0 100-5 2.5 2.5 0 000 5z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ EyeOutlined.displayName = 'EyeOutlined';
38
+ export default EyeOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function FileSearchFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace FileSearchFilled {
4
+ var displayName: string;
5
+ }
6
+ export default FileSearchFilled;
@@ -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 FileSearchFilled(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: "M15.172 2a2 2 0 011.414.586l3.828 3.828A2 2 0 0121 7.828v13.18a.993.993 0 01-.993.992H3.993A1 1 0 013 21.008V2.992C3 2.444 3.445 2 3.993 2h11.179zm-1.643 12.446l2.21 2.21 1.415-1.413-2.21-2.21a4.002 4.002 0 00-6.276-4.861 4 4 0 004.861 6.274zm-.618-2.032a2 2 0 11-2.877-2.78 2 2 0 012.877 2.78z",
27
+ fill: "currentColor"
28
+ }));
29
+ };
30
+
31
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
32
+ component: IconNode
33
+ }));
34
+ }
35
+
36
+ FileSearchFilled.displayName = 'FileSearchFilled';
37
+ export default FileSearchFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function LeftOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace LeftOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default LeftOutlined;
@@ -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 LeftOutlined(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: "M16 20.75a.74.74 0 01-.53-.22l-8-8a.75.75 0 010-1.06l8-8a.75.75 0 011.06 1.06L9.06 12l7.47 7.47a.75.75 0 01-.53 1.28z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ LeftOutlined.displayName = 'LeftOutlined';
38
+ export default LeftOutlined;
package/es/index.d.ts CHANGED
@@ -2,11 +2,14 @@ export { default as ImpassabilityFilled } from './ImpassabilityFilled';
2
2
  export { default as AddFilled } from './AddFilled';
3
3
  export { default as AlertTriangleFilled } from './AlertTriangleFilled';
4
4
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
5
+ export { default as ArrowDownFilled } from './ArrowDownFilled';
5
6
  export { default as ArrowDropDownFilled } from './ArrowDropDownFilled';
7
+ export { default as ArrowUpFilled } from './ArrowUpFilled';
6
8
  export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
7
9
  export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
8
10
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
9
11
  export { default as BankCardFilled } from './BankCardFilled';
12
+ export { default as BoxAddFilled } from './BoxAddFilled';
10
13
  export { default as BoxFilled } from './BoxFilled';
11
14
  export { default as BoxOutlined } from './BoxOutlined';
12
15
  export { default as BrokenLineFilled } from './BrokenLineFilled';
@@ -44,8 +47,11 @@ export { default as DoubleTextOutlined } from './DoubleTextOutlined';
44
47
  export { default as EditFilled } from './EditFilled';
45
48
  export { default as EditSimpleOutlined } from './EditSimpleOutlined';
46
49
  export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
50
+ export { default as EyeFilled } from './EyeFilled';
51
+ export { default as EyeOutlined } from './EyeOutlined';
47
52
  export { default as FileFilled } from './FileFilled';
48
53
  export { default as FileOutlined } from './FileOutlined';
54
+ export { default as FileSearchFilled } from './FileSearchFilled';
49
55
  export { default as FormOutlined } from './FormOutlined';
50
56
  export { default as HandCoinsFilled } from './HandCoinsFilled';
51
57
  export { default as HomeFilled } from './HomeFilled';
@@ -55,6 +61,7 @@ export { default as ImacOutlined } from './ImacOutlined';
55
61
  export { default as KeyFilled } from './KeyFilled';
56
62
  export { default as LayerFilled } from './LayerFilled';
57
63
  export { default as LayerOutlined } from './LayerOutlined';
64
+ export { default as LeftOutlined } from './LeftOutlined';
58
65
  export { default as LineUpFilled } from './LineUpFilled';
59
66
  export { default as LineUpOutlined } from './LineUpOutlined';
60
67
  export { default as ListCaptionFilled } from './ListCaptionFilled';
package/es/index.js CHANGED
@@ -2,11 +2,14 @@ export { default as ImpassabilityFilled } from './ImpassabilityFilled';
2
2
  export { default as AddFilled } from './AddFilled';
3
3
  export { default as AlertTriangleFilled } from './AlertTriangleFilled';
4
4
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
5
+ export { default as ArrowDownFilled } from './ArrowDownFilled';
5
6
  export { default as ArrowDropDownFilled } from './ArrowDropDownFilled';
7
+ export { default as ArrowUpFilled } from './ArrowUpFilled';
6
8
  export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
7
9
  export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
8
10
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
9
11
  export { default as BankCardFilled } from './BankCardFilled';
12
+ export { default as BoxAddFilled } from './BoxAddFilled';
10
13
  export { default as BoxFilled } from './BoxFilled';
11
14
  export { default as BoxOutlined } from './BoxOutlined';
12
15
  export { default as BrokenLineFilled } from './BrokenLineFilled';
@@ -44,8 +47,11 @@ export { default as DoubleTextOutlined } from './DoubleTextOutlined';
44
47
  export { default as EditFilled } from './EditFilled';
45
48
  export { default as EditSimpleOutlined } from './EditSimpleOutlined';
46
49
  export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
50
+ export { default as EyeFilled } from './EyeFilled';
51
+ export { default as EyeOutlined } from './EyeOutlined';
47
52
  export { default as FileFilled } from './FileFilled';
48
53
  export { default as FileOutlined } from './FileOutlined';
54
+ export { default as FileSearchFilled } from './FileSearchFilled';
49
55
  export { default as FormOutlined } from './FormOutlined';
50
56
  export { default as HandCoinsFilled } from './HandCoinsFilled';
51
57
  export { default as HomeFilled } from './HomeFilled';
@@ -55,6 +61,7 @@ export { default as ImacOutlined } from './ImacOutlined';
55
61
  export { default as KeyFilled } from './KeyFilled';
56
62
  export { default as LayerFilled } from './LayerFilled';
57
63
  export { default as LayerOutlined } from './LayerOutlined';
64
+ export { default as LeftOutlined } from './LeftOutlined';
58
65
  export { default as LineUpFilled } from './LineUpFilled';
59
66
  export { default as LineUpOutlined } from './LineUpOutlined';
60
67
  export { default as ListCaptionFilled } from './ListCaptionFilled';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ArrowDownFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ArrowDownFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ArrowDownFilled;
@@ -0,0 +1,87 @@
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 ArrowDownFilled(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
+ fillRule: "evenodd",
75
+ clipRule: "evenodd",
76
+ d: "M20.42 6c-.403 0-.808.154-1.116.462L12 13.767 4.696 6.462a1.581 1.581 0 00-2.234 0 1.581 1.581 0 000 2.234l8.42 8.42a1.581 1.581 0 002.235 0l8.42-8.42a1.581 1.581 0 000-2.234A1.574 1.574 0 0020.422 6z",
77
+ fill: "currentColor"
78
+ }));
79
+ };
80
+
81
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
82
+ component: IconNode
83
+ }));
84
+ }
85
+
86
+ ArrowDownFilled.displayName = 'ArrowDownFilled';
87
+ exports["default"] = ArrowDownFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ArrowUpFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ArrowUpFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ArrowUpFilled;
@@ -0,0 +1,87 @@
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 ArrowUpFilled(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
+ fillRule: "evenodd",
75
+ clipRule: "evenodd",
76
+ d: "M20.42 17.579c-.403 0-.808-.154-1.116-.462L12 9.81l-7.304 7.306a1.581 1.581 0 01-2.234 0 1.581 1.581 0 010-2.234l8.42-8.421a1.581 1.581 0 012.235 0l8.42 8.42a1.581 1.581 0 010 2.235 1.574 1.574 0 01-1.116.462z",
77
+ fill: "currentColor"
78
+ }));
79
+ };
80
+
81
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
82
+ component: IconNode
83
+ }));
84
+ }
85
+
86
+ ArrowUpFilled.displayName = 'ArrowUpFilled';
87
+ exports["default"] = ArrowUpFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function BoxAddFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace BoxAddFilled {
4
+ var displayName: string;
5
+ }
6
+ export default BoxAddFilled;