a-icons 1.0.57 → 1.0.60

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 (55) hide show
  1. package/es/Edit2Filled.d.ts +6 -0
  2. package/es/Edit2Filled.js +38 -0
  3. package/es/ErrorWarningFilled.d.ts +6 -0
  4. package/es/ErrorWarningFilled.js +38 -0
  5. package/es/FireFilled.d.ts +6 -0
  6. package/es/FireFilled.js +38 -0
  7. package/es/LockEllipsisFilled.d.ts +6 -0
  8. package/es/LockEllipsisFilled.js +38 -0
  9. package/es/PencilOutlined.d.ts +6 -0
  10. package/es/PencilOutlined.js +38 -0
  11. package/es/QrCodeFilled.d.ts +6 -0
  12. package/es/QrCodeFilled.js +38 -0
  13. package/es/RoundedRectangleClockFilled.d.ts +6 -0
  14. package/es/RoundedRectangleClockFilled.js +40 -0
  15. package/es/index.d.ts +7 -0
  16. package/es/index.js +7 -0
  17. package/lib/Edit2Filled.d.ts +6 -0
  18. package/lib/Edit2Filled.js +85 -0
  19. package/lib/ErrorWarningFilled.d.ts +6 -0
  20. package/lib/ErrorWarningFilled.js +85 -0
  21. package/lib/FireFilled.d.ts +6 -0
  22. package/lib/FireFilled.js +85 -0
  23. package/lib/LockEllipsisFilled.d.ts +6 -0
  24. package/lib/LockEllipsisFilled.js +85 -0
  25. package/lib/PencilOutlined.d.ts +6 -0
  26. package/lib/PencilOutlined.js +85 -0
  27. package/lib/QrCodeFilled.d.ts +6 -0
  28. package/lib/QrCodeFilled.js +85 -0
  29. package/lib/RoundedRectangleClockFilled.d.ts +6 -0
  30. package/lib/RoundedRectangleClockFilled.js +87 -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/Edit2Filled.tsx +18 -0
  35. package/src/ErrorWarningFilled.tsx +18 -0
  36. package/src/FireFilled.tsx +18 -0
  37. package/src/LockEllipsisFilled.tsx +18 -0
  38. package/src/PencilOutlined.tsx +18 -0
  39. package/src/QrCodeFilled.tsx +18 -0
  40. package/src/RoundedRectangleClockFilled.tsx +20 -0
  41. package/src/index.tsx +7 -0
  42. package/svgs/filled/edit-2-filled.svg +5 -0
  43. package/svgs/filled/error-warning-filled.svg +5 -0
  44. package/svgs/filled/fire-filled.svg +3 -0
  45. package/svgs/filled/lock-ellipsis-filled.svg +3 -0
  46. package/svgs/filled/qr-code-filled.svg +3 -0
  47. package/svgs/filled/rounded-rectangle-clock-filled.svg +3 -0
  48. package/svgs/outlined/pencil-outlined.svg +5 -0
  49. package/tmpAllSvgs/edit-2-filled.svg +5 -0
  50. package/tmpAllSvgs/error-warning-filled.svg +5 -0
  51. package/tmpAllSvgs/fire-filled.svg +3 -0
  52. package/tmpAllSvgs/lock-ellipsis-filled.svg +3 -0
  53. package/tmpAllSvgs/pencil-outlined.svg +5 -0
  54. package/tmpAllSvgs/qr-code-filled.svg +3 -0
  55. package/tmpAllSvgs/rounded-rectangle-clock-filled.svg +3 -0
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function Edit2Filled(componentProps: IconProps): JSX.Element;
3
+ declare namespace Edit2Filled {
4
+ var displayName: string;
5
+ }
6
+ export default Edit2Filled;
@@ -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 Edit2Filled(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 24 24",
24
+ fill: "none",
25
+ xmlns: "http://www.w3.org/2000/svg"
26
+ }, props), /*#__PURE__*/React.createElement("path", {
27
+ d: "M9.243 19H21v2H3v-4.243l9.9-9.9 4.242 4.244-7.9 7.9h.001zm5.07-13.556l2.122-2.122a1 1 0 011.414 0l2.829 2.83a1 1 0 010 1.413l-2.122 2.121-4.242-4.242h-.001z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ Edit2Filled.displayName = 'Edit2Filled';
38
+ export default Edit2Filled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ErrorWarningFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ErrorWarningFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ErrorWarningFilled;
@@ -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 ErrorWarningFilled(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 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-7v2h2v-2h-2zm0-8v6h2V7h-2z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ ErrorWarningFilled.displayName = 'ErrorWarningFilled';
38
+ export default ErrorWarningFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function FireFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace FireFilled {
4
+ var displayName: string;
5
+ }
6
+ export default FireFilled;
@@ -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 FireFilled(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.057 0l-1.566 3.186a22.35 22.35 0 01-4.434 6.12l-.205.194A6.063 6.063 0 004 13.79v.204a7.804 7.804 0 004.8 7.27l.297.126a7.734 7.734 0 006.023 0h.068A7.963 7.963 0 0020 13.983V9.045a9.84 9.84 0 01-5.016 5.029h-.069c-.069 0-.869.33-1.211 0a.862.862 0 01-.069-1.138l.08-.057h.057a6.171 6.171 0 001.394-8.385C13.68 2.241 12.057 0 12.057 0z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ FireFilled.displayName = 'FireFilled';
38
+ export default FireFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function LockEllipsisFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace LockEllipsisFilled {
4
+ var displayName: string;
5
+ }
6
+ export default LockEllipsisFilled;
@@ -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 LockEllipsisFilled(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: "M18 8.5h2a1 1 0 011 1v12a1 1 0 01-1 1H4a1 1 0 01-1-1v-12a1 1 0 011-1h2v-1a6 6 0 1112 0v1zm-2 0v-1a4 4 0 10-8 0v1h8zm-5 6v2h2v-2h-2zm-4 0v2h2v-2H7zm8 0v2h2v-2h-2z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ LockEllipsisFilled.displayName = 'LockEllipsisFilled';
38
+ export default LockEllipsisFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function PencilOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace PencilOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default PencilOutlined;
@@ -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 PencilOutlined(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: "M15.728 9.686l-1.414-1.414L5 17.586V19h1.414l9.314-9.314zm1.414-1.414l1.414-1.414-1.414-1.414-1.414 1.414 1.414 1.414zM7.242 21H3v-4.243L16.435 3.322a1 1 0 011.414 0l2.829 2.83a1 1 0 010 1.413L7.243 21h-.001z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ PencilOutlined.displayName = 'PencilOutlined';
38
+ export default PencilOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function QrCodeFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace QrCodeFilled {
4
+ var displayName: string;
5
+ }
6
+ export default QrCodeFilled;
@@ -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 QrCodeFilled(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: "M2.148 1.499h8.412c.856.083.65 1.57.65 2.534V8.63c0 .998.19 2.223-.48 2.506-.437.185-1.609.056-2.174.056h-4.46c-1.03 0-2.439.243-2.597-.64V2.139c.116-.313.318-.54.65-.64zm1.158 1.894v5.989h6.069V3.309H3.334c-.033.005-.03.044-.028.084zM13.44 1.499h8.412c.343.125.578.357.649.752v8.19c-.077.34-.257.63-.593.723-.549.153-1.46.028-2.117.028h-4.319c-.651 0-1.617.136-2.145-.028-.747-.23-.537-1.668-.537-2.674V4.2c0-1.16-.258-2.54.65-2.701zm1.157 1.894v5.989h6.069V3.309h-6.04c-.034.005-.031.044-.029.084zM6.072 5.148c.845-.158 1.51.406 1.524 1.17.02 1.007-1.023 1.56-1.834 1.142-.929-.48-.867-2.093.31-2.312zm11.291 0c1.991-.367 1.953 2.744 0 2.423-1.242-.204-1.282-2.187 0-2.423zM10.503 22.5H2.178c-.346-.104-.58-.32-.678-.668v-8.384c.082-.246.272-.532.565-.613.552-.154 1.455-.028 2.117-.028H8.5c.638 0 1.567-.14 2.145.028.782.227.565 1.642.565 2.646v4.429c0 1.083.236 2.494-.706 2.59zm-7.197-7.799v5.989h6.069v-6.073H3.334c-.033.005-.03.044-.028.084zM22.5 13.56v2.34c-.066.789-.01 1.699-.029 2.534H16.46V17.07c-.565-.065-1.251-.01-1.863-.028-.066 1.764-.01 3.649-.028 5.46h-1.101c-.947-.188-.678-1.59-.678-2.703v-4.317c0-.65-.133-1.623.029-2.145.192-.623 1.027-.53 1.863-.53h4.093v3.705h1.89c.02-1.225-.037-2.525.03-3.704.91-.053 1.752-.04 1.806.752zM6.213 16.429a1.242 1.242 0 011.299 1.7c-.486 1.305-2.806.814-2.371-.837.12-.456.467-.797 1.072-.863zm12.28 6.072H16.46c.019-.715-.038-1.504.028-2.172h2.004V22.5zM22.5 20.33v1.42c-.079.396-.313.638-.678.752h-1.44c.02-.715-.037-1.504.029-2.172H22.5z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ QrCodeFilled.displayName = 'QrCodeFilled';
38
+ export default QrCodeFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function RoundedRectangleClockFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace RoundedRectangleClockFilled {
4
+ var displayName: string;
5
+ }
6
+ export default RoundedRectangleClockFilled;
@@ -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 RoundedRectangleClockFilled(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: "M10 2h4.24a8 8 0 018 8v4.24a8 8 0 01-8 8H10a8 8 0 01-8-8V10a8 8 0 018-8zm2.12 16.12a1 1 0 001-1v-5a1 1 0 00-.29-.71l-4-4a1.004 1.004 0 00-1.42 1.42l3.71 3.7v4.59a1 1 0 001 1z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ RoundedRectangleClockFilled.displayName = 'RoundedRectangleClockFilled';
40
+ export default RoundedRectangleClockFilled;
package/es/index.d.ts CHANGED
@@ -55,8 +55,10 @@ export { default as DocumentOutlined } from './DocumentOutlined';
55
55
  export { default as DoubleTextFilled } from './DoubleTextFilled';
56
56
  export { default as DoubleTextOutlined } from './DoubleTextOutlined';
57
57
  export { default as DownloadOutlined } from './DownloadOutlined';
58
+ export { default as Edit2Filled } from './Edit2Filled';
58
59
  export { default as EditFilled } from './EditFilled';
59
60
  export { default as EditSimpleOutlined } from './EditSimpleOutlined';
61
+ export { default as ErrorWarningFilled } from './ErrorWarningFilled';
60
62
  export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
61
63
  export { default as ExternalLinkFilled } from './ExternalLinkFilled';
62
64
  export { default as EyeFilled } from './EyeFilled';
@@ -66,6 +68,7 @@ export { default as FileFilled } from './FileFilled';
66
68
  export { default as FileListFilled } from './FileListFilled';
67
69
  export { default as FileOutlined } from './FileOutlined';
68
70
  export { default as FileSearchFilled } from './FileSearchFilled';
71
+ export { default as FireFilled } from './FireFilled';
69
72
  export { default as FolderAddOutlined } from './FolderAddOutlined';
70
73
  export { default as FormOutlined } from './FormOutlined';
71
74
  export { default as GarbageCanOutlined } from './GarbageCanOutlined';
@@ -85,6 +88,7 @@ export { default as ListCaptionFilled } from './ListCaptionFilled';
85
88
  export { default as ListCaptionOutlined } from './ListCaptionOutlined';
86
89
  export { default as ListFilled } from './ListFilled';
87
90
  export { default as ListOutlined } from './ListOutlined';
91
+ export { default as LockEllipsisFilled } from './LockEllipsisFilled';
88
92
  export { default as LockFilled } from './LockFilled';
89
93
  export { default as LoopFilled } from './LoopFilled';
90
94
  export { default as LoopFolderFilled } from './LoopFolderFilled';
@@ -98,6 +102,7 @@ export { default as MoveOutlined } from './MoveOutlined';
98
102
  export { default as OngoingFilled } from './OngoingFilled';
99
103
  export { default as OpenMailFilled } from './OpenMailFilled';
100
104
  export { default as OpenMailOutlined } from './OpenMailOutlined';
105
+ export { default as PencilOutlined } from './PencilOutlined';
101
106
  export { default as PeopleAddFilled } from './PeopleAddFilled';
102
107
  export { default as PeopleAddOutlined } from './PeopleAddOutlined';
103
108
  export { default as PeopleCloseFilled } from './PeopleCloseFilled';
@@ -114,9 +119,11 @@ export { default as PeopleTeamFilled } from './PeopleTeamFilled';
114
119
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
115
120
  export { default as PlusFilled } from './PlusFilled';
116
121
  export { default as PlusOutlined } from './PlusOutlined';
122
+ export { default as QrCodeFilled } from './QrCodeFilled';
117
123
  export { default as RefreshFilled } from './RefreshFilled';
118
124
  export { default as RefreshOutlined } from './RefreshOutlined';
119
125
  export { default as RetryRefreshFilled } from './RetryRefreshFilled';
126
+ export { default as RoundedRectangleClockFilled } from './RoundedRectangleClockFilled';
120
127
  export { default as SearchDocumentFilled } from './SearchDocumentFilled';
121
128
  export { default as SearchDocumentOutlined } from './SearchDocumentOutlined';
122
129
  export { default as SearchFilled } from './SearchFilled';
package/es/index.js CHANGED
@@ -55,8 +55,10 @@ export { default as DocumentOutlined } from './DocumentOutlined';
55
55
  export { default as DoubleTextFilled } from './DoubleTextFilled';
56
56
  export { default as DoubleTextOutlined } from './DoubleTextOutlined';
57
57
  export { default as DownloadOutlined } from './DownloadOutlined';
58
+ export { default as Edit2Filled } from './Edit2Filled';
58
59
  export { default as EditFilled } from './EditFilled';
59
60
  export { default as EditSimpleOutlined } from './EditSimpleOutlined';
61
+ export { default as ErrorWarningFilled } from './ErrorWarningFilled';
60
62
  export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
61
63
  export { default as ExternalLinkFilled } from './ExternalLinkFilled';
62
64
  export { default as EyeFilled } from './EyeFilled';
@@ -66,6 +68,7 @@ export { default as FileFilled } from './FileFilled';
66
68
  export { default as FileListFilled } from './FileListFilled';
67
69
  export { default as FileOutlined } from './FileOutlined';
68
70
  export { default as FileSearchFilled } from './FileSearchFilled';
71
+ export { default as FireFilled } from './FireFilled';
69
72
  export { default as FolderAddOutlined } from './FolderAddOutlined';
70
73
  export { default as FormOutlined } from './FormOutlined';
71
74
  export { default as GarbageCanOutlined } from './GarbageCanOutlined';
@@ -85,6 +88,7 @@ export { default as ListCaptionFilled } from './ListCaptionFilled';
85
88
  export { default as ListCaptionOutlined } from './ListCaptionOutlined';
86
89
  export { default as ListFilled } from './ListFilled';
87
90
  export { default as ListOutlined } from './ListOutlined';
91
+ export { default as LockEllipsisFilled } from './LockEllipsisFilled';
88
92
  export { default as LockFilled } from './LockFilled';
89
93
  export { default as LoopFilled } from './LoopFilled';
90
94
  export { default as LoopFolderFilled } from './LoopFolderFilled';
@@ -98,6 +102,7 @@ export { default as MoveOutlined } from './MoveOutlined';
98
102
  export { default as OngoingFilled } from './OngoingFilled';
99
103
  export { default as OpenMailFilled } from './OpenMailFilled';
100
104
  export { default as OpenMailOutlined } from './OpenMailOutlined';
105
+ export { default as PencilOutlined } from './PencilOutlined';
101
106
  export { default as PeopleAddFilled } from './PeopleAddFilled';
102
107
  export { default as PeopleAddOutlined } from './PeopleAddOutlined';
103
108
  export { default as PeopleCloseFilled } from './PeopleCloseFilled';
@@ -114,9 +119,11 @@ export { default as PeopleTeamFilled } from './PeopleTeamFilled';
114
119
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
115
120
  export { default as PlusFilled } from './PlusFilled';
116
121
  export { default as PlusOutlined } from './PlusOutlined';
122
+ export { default as QrCodeFilled } from './QrCodeFilled';
117
123
  export { default as RefreshFilled } from './RefreshFilled';
118
124
  export { default as RefreshOutlined } from './RefreshOutlined';
119
125
  export { default as RetryRefreshFilled } from './RetryRefreshFilled';
126
+ export { default as RoundedRectangleClockFilled } from './RoundedRectangleClockFilled';
120
127
  export { default as SearchDocumentFilled } from './SearchDocumentFilled';
121
128
  export { default as SearchDocumentOutlined } from './SearchDocumentOutlined';
122
129
  export { default as SearchFilled } from './SearchFilled';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function Edit2Filled(componentProps: IconProps): JSX.Element;
3
+ declare namespace Edit2Filled {
4
+ var displayName: string;
5
+ }
6
+ export default Edit2Filled;
@@ -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 Edit2Filled(componentProps) {
68
+ var IconNode = function IconNode(props) {
69
+ return React.createElement("svg", __assign({
70
+ viewBox: "0 0 24 24",
71
+ fill: "none",
72
+ xmlns: "http://www.w3.org/2000/svg"
73
+ }, props), React.createElement("path", {
74
+ d: "M9.243 19H21v2H3v-4.243l9.9-9.9 4.242 4.244-7.9 7.9h.001zm5.07-13.556l2.122-2.122a1 1 0 011.414 0l2.829 2.83a1 1 0 010 1.413l-2.122 2.121-4.242-4.242h-.001z",
75
+ fill: "currentColor"
76
+ }));
77
+ };
78
+
79
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
80
+ component: IconNode
81
+ }));
82
+ }
83
+
84
+ Edit2Filled.displayName = 'Edit2Filled';
85
+ exports["default"] = Edit2Filled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ErrorWarningFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ErrorWarningFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ErrorWarningFilled;
@@ -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 ErrorWarningFilled(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 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-7v2h2v-2h-2zm0-8v6h2V7h-2z",
75
+ fill: "currentColor"
76
+ }));
77
+ };
78
+
79
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
80
+ component: IconNode
81
+ }));
82
+ }
83
+
84
+ ErrorWarningFilled.displayName = 'ErrorWarningFilled';
85
+ exports["default"] = ErrorWarningFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function FireFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace FireFilled {
4
+ var displayName: string;
5
+ }
6
+ export default FireFilled;