a-icons 1.0.48 → 1.0.51

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 (41) hide show
  1. package/es/BoxAddFilled.d.ts +6 -0
  2. package/es/BoxAddFilled.js +43 -0
  3. package/es/EyeFilled.d.ts +6 -0
  4. package/es/EyeFilled.js +38 -0
  5. package/es/EyeOutlined.d.ts +6 -0
  6. package/es/EyeOutlined.js +38 -0
  7. package/es/FileSearchFilled.d.ts +6 -0
  8. package/es/FileSearchFilled.js +37 -0
  9. package/es/LeftOutlined.d.ts +6 -0
  10. package/es/LeftOutlined.js +38 -0
  11. package/es/index.d.ts +5 -0
  12. package/es/index.js +5 -0
  13. package/lib/BoxAddFilled.d.ts +6 -0
  14. package/lib/BoxAddFilled.js +90 -0
  15. package/lib/EyeFilled.d.ts +6 -0
  16. package/lib/EyeFilled.js +85 -0
  17. package/lib/EyeOutlined.d.ts +6 -0
  18. package/lib/EyeOutlined.js +85 -0
  19. package/lib/FileSearchFilled.d.ts +6 -0
  20. package/lib/FileSearchFilled.js +84 -0
  21. package/lib/LeftOutlined.d.ts +6 -0
  22. package/lib/LeftOutlined.js +85 -0
  23. package/lib/index.d.ts +5 -0
  24. package/lib/index.js +45 -0
  25. package/package.json +2 -2
  26. package/src/BoxAddFilled.tsx +24 -0
  27. package/src/EyeFilled.tsx +18 -0
  28. package/src/EyeOutlined.tsx +18 -0
  29. package/src/FileSearchFilled.tsx +18 -0
  30. package/src/LeftOutlined.tsx +18 -0
  31. package/src/index.tsx +5 -0
  32. package/svgs/filled/box-add-filled.svg +4 -0
  33. package/svgs/filled/eye-filled.svg +3 -0
  34. package/svgs/filled/file-search-filled.svg +3 -0
  35. package/svgs/outlined/eye-outlined.svg +3 -0
  36. package/svgs/outlined/left-outlined.svg +5 -0
  37. package/tmpAllSvgs/box-add-filled.svg +4 -0
  38. package/tmpAllSvgs/eye-filled.svg +3 -0
  39. package/tmpAllSvgs/eye-outlined.svg +3 -0
  40. package/tmpAllSvgs/file-search-filled.svg +3 -0
  41. package/tmpAllSvgs/left-outlined.svg +5 -0
@@ -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
@@ -9,6 +9,7 @@ export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
9
9
  export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
10
10
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
11
11
  export { default as BankCardFilled } from './BankCardFilled';
12
+ export { default as BoxAddFilled } from './BoxAddFilled';
12
13
  export { default as BoxFilled } from './BoxFilled';
13
14
  export { default as BoxOutlined } from './BoxOutlined';
14
15
  export { default as BrokenLineFilled } from './BrokenLineFilled';
@@ -46,8 +47,11 @@ export { default as DoubleTextOutlined } from './DoubleTextOutlined';
46
47
  export { default as EditFilled } from './EditFilled';
47
48
  export { default as EditSimpleOutlined } from './EditSimpleOutlined';
48
49
  export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
50
+ export { default as EyeFilled } from './EyeFilled';
51
+ export { default as EyeOutlined } from './EyeOutlined';
49
52
  export { default as FileFilled } from './FileFilled';
50
53
  export { default as FileOutlined } from './FileOutlined';
54
+ export { default as FileSearchFilled } from './FileSearchFilled';
51
55
  export { default as FormOutlined } from './FormOutlined';
52
56
  export { default as HandCoinsFilled } from './HandCoinsFilled';
53
57
  export { default as HomeFilled } from './HomeFilled';
@@ -57,6 +61,7 @@ export { default as ImacOutlined } from './ImacOutlined';
57
61
  export { default as KeyFilled } from './KeyFilled';
58
62
  export { default as LayerFilled } from './LayerFilled';
59
63
  export { default as LayerOutlined } from './LayerOutlined';
64
+ export { default as LeftOutlined } from './LeftOutlined';
60
65
  export { default as LineUpFilled } from './LineUpFilled';
61
66
  export { default as LineUpOutlined } from './LineUpOutlined';
62
67
  export { default as ListCaptionFilled } from './ListCaptionFilled';
package/es/index.js CHANGED
@@ -9,6 +9,7 @@ export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
9
9
  export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
10
10
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
11
11
  export { default as BankCardFilled } from './BankCardFilled';
12
+ export { default as BoxAddFilled } from './BoxAddFilled';
12
13
  export { default as BoxFilled } from './BoxFilled';
13
14
  export { default as BoxOutlined } from './BoxOutlined';
14
15
  export { default as BrokenLineFilled } from './BrokenLineFilled';
@@ -46,8 +47,11 @@ export { default as DoubleTextOutlined } from './DoubleTextOutlined';
46
47
  export { default as EditFilled } from './EditFilled';
47
48
  export { default as EditSimpleOutlined } from './EditSimpleOutlined';
48
49
  export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
50
+ export { default as EyeFilled } from './EyeFilled';
51
+ export { default as EyeOutlined } from './EyeOutlined';
49
52
  export { default as FileFilled } from './FileFilled';
50
53
  export { default as FileOutlined } from './FileOutlined';
54
+ export { default as FileSearchFilled } from './FileSearchFilled';
51
55
  export { default as FormOutlined } from './FormOutlined';
52
56
  export { default as HandCoinsFilled } from './HandCoinsFilled';
53
57
  export { default as HomeFilled } from './HomeFilled';
@@ -57,6 +61,7 @@ export { default as ImacOutlined } from './ImacOutlined';
57
61
  export { default as KeyFilled } from './KeyFilled';
58
62
  export { default as LayerFilled } from './LayerFilled';
59
63
  export { default as LayerOutlined } from './LayerOutlined';
64
+ export { default as LeftOutlined } from './LeftOutlined';
60
65
  export { default as LineUpFilled } from './LineUpFilled';
61
66
  export { default as LineUpOutlined } from './LineUpOutlined';
62
67
  export { default as ListCaptionFilled } from './ListCaptionFilled';
@@ -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,90 @@
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 BoxAddFilled(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: "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",
77
+ fill: "currentColor"
78
+ }), React.createElement("path", {
79
+ 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",
80
+ fill: "currentColor"
81
+ }));
82
+ };
83
+
84
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
85
+ component: IconNode
86
+ }));
87
+ }
88
+
89
+ BoxAddFilled.displayName = 'BoxAddFilled';
90
+ exports["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,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 EyeFilled(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: "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",
75
+ fill: "currentColor"
76
+ }));
77
+ };
78
+
79
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
80
+ component: IconNode
81
+ }));
82
+ }
83
+
84
+ EyeFilled.displayName = 'EyeFilled';
85
+ exports["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,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 EyeOutlined(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: "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",
75
+ fill: "currentColor"
76
+ }));
77
+ };
78
+
79
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
80
+ component: IconNode
81
+ }));
82
+ }
83
+
84
+ EyeOutlined.displayName = 'EyeOutlined';
85
+ exports["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,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 FileSearchFilled(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: "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",
74
+ fill: "currentColor"
75
+ }));
76
+ };
77
+
78
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
79
+ component: IconNode
80
+ }));
81
+ }
82
+
83
+ FileSearchFilled.displayName = 'FileSearchFilled';
84
+ exports["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,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 LeftOutlined(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: "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",
75
+ fill: "currentColor"
76
+ }));
77
+ };
78
+
79
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
80
+ component: IconNode
81
+ }));
82
+ }
83
+
84
+ LeftOutlined.displayName = 'LeftOutlined';
85
+ exports["default"] = LeftOutlined;
package/lib/index.d.ts CHANGED
@@ -9,6 +9,7 @@ export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
9
9
  export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
10
10
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
11
11
  export { default as BankCardFilled } from './BankCardFilled';
12
+ export { default as BoxAddFilled } from './BoxAddFilled';
12
13
  export { default as BoxFilled } from './BoxFilled';
13
14
  export { default as BoxOutlined } from './BoxOutlined';
14
15
  export { default as BrokenLineFilled } from './BrokenLineFilled';
@@ -46,8 +47,11 @@ export { default as DoubleTextOutlined } from './DoubleTextOutlined';
46
47
  export { default as EditFilled } from './EditFilled';
47
48
  export { default as EditSimpleOutlined } from './EditSimpleOutlined';
48
49
  export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
50
+ export { default as EyeFilled } from './EyeFilled';
51
+ export { default as EyeOutlined } from './EyeOutlined';
49
52
  export { default as FileFilled } from './FileFilled';
50
53
  export { default as FileOutlined } from './FileOutlined';
54
+ export { default as FileSearchFilled } from './FileSearchFilled';
51
55
  export { default as FormOutlined } from './FormOutlined';
52
56
  export { default as HandCoinsFilled } from './HandCoinsFilled';
53
57
  export { default as HomeFilled } from './HomeFilled';
@@ -57,6 +61,7 @@ export { default as ImacOutlined } from './ImacOutlined';
57
61
  export { default as KeyFilled } from './KeyFilled';
58
62
  export { default as LayerFilled } from './LayerFilled';
59
63
  export { default as LayerOutlined } from './LayerOutlined';
64
+ export { default as LeftOutlined } from './LeftOutlined';
60
65
  export { default as LineUpFilled } from './LineUpFilled';
61
66
  export { default as LineUpOutlined } from './LineUpOutlined';
62
67
  export { default as ListCaptionFilled } from './ListCaptionFilled';
package/lib/index.js CHANGED
@@ -103,6 +103,15 @@ Object.defineProperty(exports, "BankCardFilled", {
103
103
  }
104
104
  });
105
105
 
106
+ var BoxAddFilled_1 = require("./BoxAddFilled");
107
+
108
+ Object.defineProperty(exports, "BoxAddFilled", {
109
+ enumerable: true,
110
+ get: function get() {
111
+ return BoxAddFilled_1["default"];
112
+ }
113
+ });
114
+
106
115
  var BoxFilled_1 = require("./BoxFilled");
107
116
 
108
117
  Object.defineProperty(exports, "BoxFilled", {
@@ -436,6 +445,24 @@ Object.defineProperty(exports, "ErrorWarningOutlined", {
436
445
  }
437
446
  });
438
447
 
448
+ var EyeFilled_1 = require("./EyeFilled");
449
+
450
+ Object.defineProperty(exports, "EyeFilled", {
451
+ enumerable: true,
452
+ get: function get() {
453
+ return EyeFilled_1["default"];
454
+ }
455
+ });
456
+
457
+ var EyeOutlined_1 = require("./EyeOutlined");
458
+
459
+ Object.defineProperty(exports, "EyeOutlined", {
460
+ enumerable: true,
461
+ get: function get() {
462
+ return EyeOutlined_1["default"];
463
+ }
464
+ });
465
+
439
466
  var FileFilled_1 = require("./FileFilled");
440
467
 
441
468
  Object.defineProperty(exports, "FileFilled", {
@@ -454,6 +481,15 @@ Object.defineProperty(exports, "FileOutlined", {
454
481
  }
455
482
  });
456
483
 
484
+ var FileSearchFilled_1 = require("./FileSearchFilled");
485
+
486
+ Object.defineProperty(exports, "FileSearchFilled", {
487
+ enumerable: true,
488
+ get: function get() {
489
+ return FileSearchFilled_1["default"];
490
+ }
491
+ });
492
+
457
493
  var FormOutlined_1 = require("./FormOutlined");
458
494
 
459
495
  Object.defineProperty(exports, "FormOutlined", {
@@ -535,6 +571,15 @@ Object.defineProperty(exports, "LayerOutlined", {
535
571
  }
536
572
  });
537
573
 
574
+ var LeftOutlined_1 = require("./LeftOutlined");
575
+
576
+ Object.defineProperty(exports, "LeftOutlined", {
577
+ enumerable: true,
578
+ get: function get() {
579
+ return LeftOutlined_1["default"];
580
+ }
581
+ });
582
+
538
583
  var LineUpFilled_1 = require("./LineUpFilled");
539
584
 
540
585
  Object.defineProperty(exports, "LineUpFilled", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.0.48",
3
+ "version": "1.0.51",
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": "7d0b05f8a5addd9d2bccf44b108b496e94321fb0"
25
+ "gitHead": "3871c2af4095f1875f95460cb583c6d5ecf5f6c3"
26
26
  }
@@ -0,0 +1,24 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function BoxAddFilled(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <path
8
+ fillRule="evenodd"
9
+ clipRule="evenodd"
10
+ 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"
11
+ fill="currentColor"
12
+ />
13
+ <path
14
+ 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"
15
+ fill="currentColor"
16
+ />
17
+ </svg>
18
+ );
19
+
20
+ return <Icon {...componentProps} component={IconNode} />;
21
+ }
22
+
23
+ BoxAddFilled.displayName = 'BoxAddFilled';
24
+ export default BoxAddFilled;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function EyeFilled(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <path
8
+ 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"
9
+ fill="currentColor"
10
+ />
11
+ </svg>
12
+ );
13
+
14
+ return <Icon {...componentProps} component={IconNode} />;
15
+ }
16
+
17
+ EyeFilled.displayName = 'EyeFilled';
18
+ export default EyeFilled;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function EyeOutlined(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <path
8
+ 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"
9
+ fill="currentColor"
10
+ />
11
+ </svg>
12
+ );
13
+
14
+ return <Icon {...componentProps} component={IconNode} />;
15
+ }
16
+
17
+ EyeOutlined.displayName = 'EyeOutlined';
18
+ export default EyeOutlined;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function FileSearchFilled(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="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"
9
+ fill="currentColor"
10
+ />
11
+ </svg>
12
+ );
13
+
14
+ return <Icon {...componentProps} component={IconNode} />;
15
+ }
16
+
17
+ FileSearchFilled.displayName = 'FileSearchFilled';
18
+ export default FileSearchFilled;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function LeftOutlined(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <path
8
+ 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"
9
+ fill="currentColor"
10
+ />
11
+ </svg>
12
+ );
13
+
14
+ return <Icon {...componentProps} component={IconNode} />;
15
+ }
16
+
17
+ LeftOutlined.displayName = 'LeftOutlined';
18
+ export default LeftOutlined;
package/src/index.tsx CHANGED
@@ -9,6 +9,7 @@ export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
9
9
  export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
10
10
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
11
11
  export { default as BankCardFilled } from './BankCardFilled';
12
+ export { default as BoxAddFilled } from './BoxAddFilled';
12
13
  export { default as BoxFilled } from './BoxFilled';
13
14
  export { default as BoxOutlined } from './BoxOutlined';
14
15
  export { default as BrokenLineFilled } from './BrokenLineFilled';
@@ -46,8 +47,11 @@ export { default as DoubleTextOutlined } from './DoubleTextOutlined';
46
47
  export { default as EditFilled } from './EditFilled';
47
48
  export { default as EditSimpleOutlined } from './EditSimpleOutlined';
48
49
  export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
50
+ export { default as EyeFilled } from './EyeFilled';
51
+ export { default as EyeOutlined } from './EyeOutlined';
49
52
  export { default as FileFilled } from './FileFilled';
50
53
  export { default as FileOutlined } from './FileOutlined';
54
+ export { default as FileSearchFilled } from './FileSearchFilled';
51
55
  export { default as FormOutlined } from './FormOutlined';
52
56
  export { default as HandCoinsFilled } from './HandCoinsFilled';
53
57
  export { default as HomeFilled } from './HomeFilled';
@@ -57,6 +61,7 @@ export { default as ImacOutlined } from './ImacOutlined';
57
61
  export { default as KeyFilled } from './KeyFilled';
58
62
  export { default as LayerFilled } from './LayerFilled';
59
63
  export { default as LayerOutlined } from './LayerOutlined';
64
+ export { default as LeftOutlined } from './LeftOutlined';
60
65
  export { default as LineUpFilled } from './LineUpFilled';
61
66
  export { default as LineUpOutlined } from './LineUpOutlined';
62
67
  export { default as ListCaptionFilled } from './ListCaptionFilled';
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.92 5.00001L14.07 1.75001C13.1371 1.23201 12.0029 1.23201 11.07 1.75001L5.24 5.00001C4.26459 5.54391 3.66002 6.57321 3.66 7.69001V13.91C2.94513 14.366 2.50882 15.1521 2.5 16V20.1C2.4999 21.4857 3.61445 22.6136 5 22.63H9.09C10.4696 22.6248 11.5929 21.5194 11.62 20.14C12.4306 20.4203 13.3223 20.3402 14.07 19.92L19.92 16.67C20.8892 16.1296 21.4928 15.1097 21.5 14V7.69001C21.5 6.57321 20.8954 5.54391 19.92 5.00001ZM10 20.1C9.9946 20.5782 9.60823 20.9646 9.13 20.97H5C4.52342 20.9645 4.13997 20.5766 4.14 20.1V16C4.15601 15.5351 4.53487 15.1651 5 15.16H9.09C9.57237 15.1431 9.97836 15.5178 10 16V20.1ZM13.92 11L18.63 8.38001C18.8418 8.27362 19.001 8.08542 19.0709 7.85891C19.1407 7.6324 19.1151 7.38721 19 7.18001C18.7594 6.75993 18.2321 6.60173 17.8 6.82001L13.11 9.44001C12.8006 9.61864 12.4194 9.61864 12.11 9.44001L7.41 6.82001C6.97306 6.58868 6.43135 6.74852 6.19 7.18001C6.07265 7.3835 6.04257 7.6258 6.1066 7.85181C6.17064 8.07781 6.32335 8.26832 6.53 8.38001L11.24 11C11.3343 11.0503 11.4285 11.0848 11.5203 11.1183C11.5746 11.1382 11.628 11.1577 11.68 11.18V15.26C11.68 15.7571 12.0829 16.16 12.58 16.16C13.0771 16.16 13.48 15.7571 13.48 15.26V11.18C13.532 11.1577 13.5854 11.1382 13.6397 11.1183C13.7315 11.0848 13.8257 11.0503 13.92 11Z" fill="currentColor" />
3
+ <path d="M8.40996 17.24H7.87996V16.71C7.87996 16.2516 7.50836 15.88 7.04996 15.88C6.59156 15.88 6.21996 16.2516 6.21996 16.71V17.24H5.68996C5.26932 17.2864 4.95093 17.6418 4.95093 18.065C4.95093 18.4882 5.26932 18.8436 5.68996 18.89H6.21996V19.42C6.21996 19.8784 6.59156 20.25 7.04996 20.25C7.50836 20.25 7.87996 19.8784 7.87996 19.42V18.89H8.40996C8.72639 18.9249 9.0349 18.7757 9.20406 18.506C9.37322 18.2363 9.37322 17.8937 9.20406 17.624C9.0349 17.3543 8.72639 17.2051 8.40996 17.24Z" fill="currentColor" />
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.18103 12C2.12103 6.88 6.60803 3 12 3C17.392 3 21.878 6.88 22.819 12C21.879 17.12 17.392 21 12 21C6.60803 21 2.12203 17.12 1.18103 12ZM12 17C13.3261 17 14.5979 16.4732 15.5356 15.5355C16.4732 14.5979 17 13.3261 17 12C17 10.6739 16.4732 9.40215 15.5356 8.46447C14.5979 7.52678 13.3261 7 12 7C10.6739 7 9.40218 7.52678 8.4645 8.46447C7.52681 9.40215 7.00003 10.6739 7.00003 12C7.00003 13.3261 7.52681 14.5979 8.4645 15.5355C9.40218 16.4732 10.6739 17 12 17ZM12 15C11.2044 15 10.4413 14.6839 9.87871 14.1213C9.3161 13.5587 9.00003 12.7956 9.00003 12C9.00003 11.2044 9.3161 10.4413 9.87871 9.87868C10.4413 9.31607 11.2044 9 12 9C12.7957 9 13.5587 9.31607 14.1214 9.87868C14.684 10.4413 15 11.2044 15 12C15 12.7956 14.684 13.5587 14.1214 14.1213C13.5587 14.6839 12.7957 15 12 15Z" fill="currentColor" />
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.1716 2C15.702 2 16.2107 2.21071 16.5858 2.58579L20.4142 6.41421C20.7893 6.78929 21 7.29799 21 7.82843V21.008C20.9997 21.2712 20.895 21.5235 20.7088 21.7095C20.5226 21.8955 20.2702 22 20.007 22H3.993C3.73038 21.9982 3.47902 21.8931 3.29322 21.7075C3.10742 21.5219 3.00209 21.2706 3 21.008V2.992C3 2.444 3.445 2 3.993 2H15.1716ZM13.529 14.446L15.739 16.656L17.154 15.243L14.944 13.033C15.4365 12.1941 15.6066 11.2045 15.4224 10.2493C15.2383 9.29406 14.7125 8.43863 13.9434 7.84294C13.1743 7.24725 12.2146 6.95209 11.2436 7.01265C10.2727 7.07321 9.3571 7.48535 8.668 8.172C7.97903 8.86039 7.56489 9.77651 7.50326 10.7485C7.44164 11.7205 7.73675 12.6816 8.33326 13.4515C8.92976 14.2214 9.78667 14.7472 10.7432 14.9303C11.6998 15.1134 12.6903 14.9412 13.529 14.446ZM12.911 12.414C12.7265 12.605 12.5058 12.7574 12.2618 12.8622C12.0178 12.967 11.7554 13.0222 11.4898 13.0245C11.2242 13.0268 10.9609 12.9762 10.7151 12.8756C10.4693 12.7751 10.246 12.6266 10.0582 12.4388C9.87042 12.251 9.72192 12.0277 9.62136 11.7819C9.5208 11.5361 9.47019 11.2728 9.4725 11.0072C9.47481 10.7416 9.52998 10.4792 9.6348 10.2352C9.73961 9.99118 9.89198 9.77049 10.083 9.586C10.4602 9.22168 10.9654 9.02009 11.4898 9.02465C12.0142 9.02921 12.5158 9.23955 12.8866 9.61036C13.2575 9.98118 13.4678 10.4828 13.4723 11.0072C13.4769 11.5316 13.2753 12.0368 12.911 12.414Z" fill="currentColor" />
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 3C17.392 3 21.878 6.88 22.819 12C21.879 17.12 17.392 21 12 21C6.60797 21 2.12197 17.12 1.18097 12C2.12097 6.88 6.60797 3 12 3ZM12 19C14.0394 18.9996 16.0184 18.3068 17.6128 17.0352C19.2073 15.7635 20.3229 13.9883 20.777 12C20.3212 10.0133 19.2049 8.24 17.6106 6.97003C16.0163 5.70005 14.0383 5.00853 12 5.00853C9.96167 5.00853 7.98366 5.70005 6.38935 6.97003C4.79503 8.24 3.67874 10.0133 3.22297 12C3.67707 13.9883 4.79264 15.7635 6.38711 17.0352C7.98158 18.3068 9.9605 18.9996 12 19ZM12 16.5C10.8065 16.5 9.6619 16.0259 8.81799 15.182C7.97408 14.3381 7.49997 13.1935 7.49997 12C7.49997 10.8065 7.97408 9.66193 8.81799 8.81802C9.6619 7.97411 10.8065 7.5 12 7.5C13.1934 7.5 14.338 7.97411 15.1819 8.81802C16.0259 9.66193 16.5 10.8065 16.5 12C16.5 13.1935 16.0259 14.3381 15.1819 15.182C14.338 16.0259 13.1934 16.5 12 16.5ZM12 14.5C12.663 14.5 13.2989 14.2366 13.7677 13.7678C14.2366 13.2989 14.5 12.663 14.5 12C14.5 11.337 14.2366 10.7011 13.7677 10.2322C13.2989 9.76339 12.663 9.5 12 9.5C11.3369 9.5 10.701 9.76339 10.2322 10.2322C9.76336 10.7011 9.49997 11.337 9.49997 12C9.49997 12.663 9.76336 13.2989 10.2322 13.7678C10.701 14.2366 11.3369 14.5 12 14.5Z" fill="currentColor" />
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M16 20.7498C15.8009 20.7508 15.6099 20.6715 15.47 20.5298L7.47001 12.5298C7.17756 12.237 7.17756 11.7627 7.47001 11.4698L15.47 3.46985C15.7655 3.19449 16.226 3.20261 16.5116 3.48823C16.7972 3.77384 16.8054 4.23434 16.53 4.52985L9.06001 11.9998L16.53 19.4698C16.8225 19.7627 16.8225 20.237 16.53 20.5298C16.3901 20.6715 16.1991 20.7508 16 20.7498Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.92 5.00001L14.07 1.75001C13.1371 1.23201 12.0029 1.23201 11.07 1.75001L5.24 5.00001C4.26459 5.54391 3.66002 6.57321 3.66 7.69001V13.91C2.94513 14.366 2.50882 15.1521 2.5 16V20.1C2.4999 21.4857 3.61445 22.6136 5 22.63H9.09C10.4696 22.6248 11.5929 21.5194 11.62 20.14C12.4306 20.4203 13.3223 20.3402 14.07 19.92L19.92 16.67C20.8892 16.1296 21.4928 15.1097 21.5 14V7.69001C21.5 6.57321 20.8954 5.54391 19.92 5.00001ZM10 20.1C9.9946 20.5782 9.60823 20.9646 9.13 20.97H5C4.52342 20.9645 4.13997 20.5766 4.14 20.1V16C4.15601 15.5351 4.53487 15.1651 5 15.16H9.09C9.57237 15.1431 9.97836 15.5178 10 16V20.1ZM13.92 11L18.63 8.38001C18.8418 8.27362 19.001 8.08542 19.0709 7.85891C19.1407 7.6324 19.1151 7.38721 19 7.18001C18.7594 6.75993 18.2321 6.60173 17.8 6.82001L13.11 9.44001C12.8006 9.61864 12.4194 9.61864 12.11 9.44001L7.41 6.82001C6.97306 6.58868 6.43135 6.74852 6.19 7.18001C6.07265 7.3835 6.04257 7.6258 6.1066 7.85181C6.17064 8.07781 6.32335 8.26832 6.53 8.38001L11.24 11C11.3343 11.0503 11.4285 11.0848 11.5203 11.1183C11.5746 11.1382 11.628 11.1577 11.68 11.18V15.26C11.68 15.7571 12.0829 16.16 12.58 16.16C13.0771 16.16 13.48 15.7571 13.48 15.26V11.18C13.532 11.1577 13.5854 11.1382 13.6397 11.1183C13.7315 11.0848 13.8257 11.0503 13.92 11Z" fill="currentColor" />
3
+ <path d="M8.40996 17.24H7.87996V16.71C7.87996 16.2516 7.50836 15.88 7.04996 15.88C6.59156 15.88 6.21996 16.2516 6.21996 16.71V17.24H5.68996C5.26932 17.2864 4.95093 17.6418 4.95093 18.065C4.95093 18.4882 5.26932 18.8436 5.68996 18.89H6.21996V19.42C6.21996 19.8784 6.59156 20.25 7.04996 20.25C7.50836 20.25 7.87996 19.8784 7.87996 19.42V18.89H8.40996C8.72639 18.9249 9.0349 18.7757 9.20406 18.506C9.37322 18.2363 9.37322 17.8937 9.20406 17.624C9.0349 17.3543 8.72639 17.2051 8.40996 17.24Z" fill="currentColor" />
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.18103 12C2.12103 6.88 6.60803 3 12 3C17.392 3 21.878 6.88 22.819 12C21.879 17.12 17.392 21 12 21C6.60803 21 2.12203 17.12 1.18103 12ZM12 17C13.3261 17 14.5979 16.4732 15.5356 15.5355C16.4732 14.5979 17 13.3261 17 12C17 10.6739 16.4732 9.40215 15.5356 8.46447C14.5979 7.52678 13.3261 7 12 7C10.6739 7 9.40218 7.52678 8.4645 8.46447C7.52681 9.40215 7.00003 10.6739 7.00003 12C7.00003 13.3261 7.52681 14.5979 8.4645 15.5355C9.40218 16.4732 10.6739 17 12 17ZM12 15C11.2044 15 10.4413 14.6839 9.87871 14.1213C9.3161 13.5587 9.00003 12.7956 9.00003 12C9.00003 11.2044 9.3161 10.4413 9.87871 9.87868C10.4413 9.31607 11.2044 9 12 9C12.7957 9 13.5587 9.31607 14.1214 9.87868C14.684 10.4413 15 11.2044 15 12C15 12.7956 14.684 13.5587 14.1214 14.1213C13.5587 14.6839 12.7957 15 12 15Z" fill="currentColor" />
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 3C17.392 3 21.878 6.88 22.819 12C21.879 17.12 17.392 21 12 21C6.60797 21 2.12197 17.12 1.18097 12C2.12097 6.88 6.60797 3 12 3ZM12 19C14.0394 18.9996 16.0184 18.3068 17.6128 17.0352C19.2073 15.7635 20.3229 13.9883 20.777 12C20.3212 10.0133 19.2049 8.24 17.6106 6.97003C16.0163 5.70005 14.0383 5.00853 12 5.00853C9.96167 5.00853 7.98366 5.70005 6.38935 6.97003C4.79503 8.24 3.67874 10.0133 3.22297 12C3.67707 13.9883 4.79264 15.7635 6.38711 17.0352C7.98158 18.3068 9.9605 18.9996 12 19ZM12 16.5C10.8065 16.5 9.6619 16.0259 8.81799 15.182C7.97408 14.3381 7.49997 13.1935 7.49997 12C7.49997 10.8065 7.97408 9.66193 8.81799 8.81802C9.6619 7.97411 10.8065 7.5 12 7.5C13.1934 7.5 14.338 7.97411 15.1819 8.81802C16.0259 9.66193 16.5 10.8065 16.5 12C16.5 13.1935 16.0259 14.3381 15.1819 15.182C14.338 16.0259 13.1934 16.5 12 16.5ZM12 14.5C12.663 14.5 13.2989 14.2366 13.7677 13.7678C14.2366 13.2989 14.5 12.663 14.5 12C14.5 11.337 14.2366 10.7011 13.7677 10.2322C13.2989 9.76339 12.663 9.5 12 9.5C11.3369 9.5 10.701 9.76339 10.2322 10.2322C9.76336 10.7011 9.49997 11.337 9.49997 12C9.49997 12.663 9.76336 13.2989 10.2322 13.7678C10.701 14.2366 11.3369 14.5 12 14.5Z" fill="currentColor" />
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.1716 2C15.702 2 16.2107 2.21071 16.5858 2.58579L20.4142 6.41421C20.7893 6.78929 21 7.29799 21 7.82843V21.008C20.9997 21.2712 20.895 21.5235 20.7088 21.7095C20.5226 21.8955 20.2702 22 20.007 22H3.993C3.73038 21.9982 3.47902 21.8931 3.29322 21.7075C3.10742 21.5219 3.00209 21.2706 3 21.008V2.992C3 2.444 3.445 2 3.993 2H15.1716ZM13.529 14.446L15.739 16.656L17.154 15.243L14.944 13.033C15.4365 12.1941 15.6066 11.2045 15.4224 10.2493C15.2383 9.29406 14.7125 8.43863 13.9434 7.84294C13.1743 7.24725 12.2146 6.95209 11.2436 7.01265C10.2727 7.07321 9.3571 7.48535 8.668 8.172C7.97903 8.86039 7.56489 9.77651 7.50326 10.7485C7.44164 11.7205 7.73675 12.6816 8.33326 13.4515C8.92976 14.2214 9.78667 14.7472 10.7432 14.9303C11.6998 15.1134 12.6903 14.9412 13.529 14.446ZM12.911 12.414C12.7265 12.605 12.5058 12.7574 12.2618 12.8622C12.0178 12.967 11.7554 13.0222 11.4898 13.0245C11.2242 13.0268 10.9609 12.9762 10.7151 12.8756C10.4693 12.7751 10.246 12.6266 10.0582 12.4388C9.87042 12.251 9.72192 12.0277 9.62136 11.7819C9.5208 11.5361 9.47019 11.2728 9.4725 11.0072C9.47481 10.7416 9.52998 10.4792 9.6348 10.2352C9.73961 9.99118 9.89198 9.77049 10.083 9.586C10.4602 9.22168 10.9654 9.02009 11.4898 9.02465C12.0142 9.02921 12.5158 9.23955 12.8866 9.61036C13.2575 9.98118 13.4678 10.4828 13.4723 11.0072C13.4769 11.5316 13.2753 12.0368 12.911 12.414Z" fill="currentColor" />
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M16 20.7498C15.8009 20.7508 15.6099 20.6715 15.47 20.5298L7.47001 12.5298C7.17756 12.237 7.17756 11.7627 7.47001 11.4698L15.47 3.46985C15.7655 3.19449 16.226 3.20261 16.5116 3.48823C16.7972 3.77384 16.8054 4.23434 16.53 4.52985L9.06001 11.9998L16.53 19.4698C16.8225 19.7627 16.8225 20.237 16.53 20.5298C16.3901 20.6715 16.1991 20.7508 16 20.7498Z"
4
+ fill="currentColor" />
5
+ </svg>