a-icons 1.0.39 → 1.0.43

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/AddFilled.d.ts +6 -0
  2. package/es/AddFilled.js +39 -0
  3. package/es/ArrowsChevronFilled.d.ts +6 -0
  4. package/es/{FormFilled.js → ArrowsChevronFilled.js} +6 -7
  5. package/es/ArrowsChevronOutlined.d.ts +6 -0
  6. package/es/ArrowsChevronOutlined.js +38 -0
  7. package/es/ChainFilled.d.ts +6 -0
  8. package/es/ChainFilled.js +68 -0
  9. package/es/ChainOutlined.d.ts +6 -0
  10. package/es/ChainOutlined.js +40 -0
  11. package/es/PeopleSettingFilled.d.ts +6 -0
  12. package/es/PeopleSettingFilled.js +42 -0
  13. package/es/index.d.ts +6 -1
  14. package/es/index.js +6 -1
  15. package/lib/AddFilled.d.ts +6 -0
  16. package/lib/AddFilled.js +86 -0
  17. package/lib/ArrowsChevronFilled.d.ts +6 -0
  18. package/lib/{FormFilled.js → ArrowsChevronFilled.js} +6 -7
  19. package/lib/ArrowsChevronOutlined.d.ts +6 -0
  20. package/lib/ArrowsChevronOutlined.js +85 -0
  21. package/lib/ChainFilled.d.ts +6 -0
  22. package/lib/ChainFilled.js +115 -0
  23. package/lib/ChainOutlined.d.ts +6 -0
  24. package/lib/ChainOutlined.js +87 -0
  25. package/lib/PeopleSettingFilled.d.ts +6 -0
  26. package/lib/PeopleSettingFilled.js +89 -0
  27. package/lib/index.d.ts +6 -1
  28. package/lib/index.js +54 -9
  29. package/package.json +2 -2
  30. package/src/AddFilled.tsx +20 -0
  31. package/src/ArrowsChevronFilled.tsx +22 -0
  32. package/src/ArrowsChevronOutlined.tsx +18 -0
  33. package/src/CameraOutlined.tsx +1 -8
  34. package/src/CategoryFilled.tsx +1 -8
  35. package/src/ChainFilled.tsx +24 -0
  36. package/src/ChainOutlined.tsx +20 -0
  37. package/src/PeopleSettingFilled.tsx +19 -0
  38. package/src/SearchDocumentFilled.tsx +1 -4
  39. package/src/StampFilled.tsx +1 -6
  40. package/src/WalletFilled.tsx +1 -4
  41. package/src/index.tsx +6 -1
  42. package/svgs/filled/add-filled.svg +5 -0
  43. package/svgs/filled/arrows-chevron-filled.svg +8 -0
  44. package/svgs/filled/article-board-filled.svg +3 -1
  45. package/svgs/filled/chain-filled.svg +7 -0
  46. package/svgs/filled/people-setting-filled.svg +6 -0
  47. package/svgs/outlined/arrows-chevron-outlined.svg +8 -0
  48. package/svgs/outlined/chain-outlined.svg +6 -0
  49. package/tmpAllSvgs/add-filled.svg +5 -0
  50. package/tmpAllSvgs/arrows-chevron-filled.svg +8 -0
  51. package/tmpAllSvgs/arrows-chevron-outlined.svg +8 -0
  52. package/tmpAllSvgs/article-board-filled.svg +3 -1
  53. package/tmpAllSvgs/chain-filled.svg +7 -0
  54. package/tmpAllSvgs/chain-outlined.svg +6 -0
  55. package/tmpAllSvgs/people-setting-filled.svg +6 -0
  56. package/es/FormFilled.d.ts +0 -6
  57. package/lib/FormFilled.d.ts +0 -6
  58. package/src/FormFilled.tsx +0 -24
  59. package/svgs/filled/form-filled.svg +0 -8
  60. package/tmpAllSvgs/form-filled.svg +0 -8
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function AddFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace AddFilled {
4
+ var displayName: string;
5
+ }
6
+ export default AddFilled;
@@ -0,0 +1,39 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+
6
+ for (var p in s) {
7
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
8
+ }
9
+ }
10
+
11
+ return t;
12
+ };
13
+
14
+ return __assign.apply(this, arguments);
15
+ };
16
+
17
+ import * as React from 'react';
18
+ import Icon from 'a-base-icon/lib/Icon';
19
+
20
+ function AddFilled(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 24 24",
24
+ xmlns: "http://www.w3.org/2000/svg"
25
+ }, props), /*#__PURE__*/React.createElement("path", {
26
+ fillRule: "evenodd",
27
+ clipRule: "evenodd",
28
+ d: "M6.6 3h10.8A3.6 3.6 0 0121 6.6v10.8a3.6 3.6 0 01-3.6 3.6H6.6A3.6 3.6 0 013 17.4V6.6A3.6 3.6 0 016.6 3zm6.075 9.675H15.6a.675.675 0 100-1.35h-2.925V8.4a.675.675 0 10-1.35 0v2.925H8.4a.675.675 0 100 1.35h2.925V15.6a.675.675 0 001.35 0v-2.925z",
29
+ fill: "currentColor"
30
+ }));
31
+ };
32
+
33
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
34
+ component: IconNode
35
+ }));
36
+ }
37
+
38
+ AddFilled.displayName = 'AddFilled';
39
+ export default AddFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ArrowsChevronFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ArrowsChevronFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ArrowsChevronFilled;
@@ -17,18 +17,17 @@ var __assign = this && this.__assign || function () {
17
17
  import * as React from 'react';
18
18
  import Icon from 'a-base-icon/lib/Icon';
19
19
 
20
- function FormFilled(componentProps) {
20
+ function ArrowsChevronFilled(componentProps) {
21
21
  var IconNode = function IconNode(props) {
22
22
  return /*#__PURE__*/React.createElement("svg", __assign({
23
23
  viewBox: "0 0 24 24",
24
+ fill: "none",
24
25
  xmlns: "http://www.w3.org/2000/svg"
25
26
  }, props), /*#__PURE__*/React.createElement("path", {
26
- d: "M13.24 15.62l-3.41.73a1.832 1.832 0 01-.4 0 1.75 1.75 0 01-1.26-.52 1.81 1.81 0 01-.47-1.66l.73-3.4a3.51 3.51 0 011-1.75l5.7-5.7h-9a4.14 4.14 0 00-4.19 4.19v10.35A4.14 4.14 0 006.08 22h10.36a4.14 4.14 0 004.14-4.14V9.07L15 14.66a3.5 3.5 0 01-1.76.96z",
27
+ d: "M21 13.31a1.49 1.49 0 00-2.12 0l-1.4 1.39V9.23a1.5 1.5 0 00-3 0v5.47l-1.39-1.39a1.5 1.5 0 00-2.12 2.12l4 3.95c.072.069.149.132.23.19l.08.05.17.09h.12l.16.05c.198.04.402.04.6 0l.18-.05h.1l.18-.1h.08l.22-.19 4-3.95a1.51 1.51 0 00-.09-2.16z",
27
28
  fill: "currentColor"
28
29
  }), /*#__PURE__*/React.createElement("path", {
29
- fillRule: "evenodd",
30
- clipRule: "evenodd",
31
- d: "M16.77 3.11a3.22 3.22 0 014.51-.34 3.22 3.22 0 01-.34 4.56L14.27 14a2.48 2.48 0 01-1.27.64l-3.38.76a.77.77 0 01-.94-1l.73-3.4a2.55 2.55 0 01.69-1.22l6.67-6.67zm.41 4.66l2.24-2.24a.75.75 0 00-1.06-1.06l-2.24 2.24a.75.75 0 001.06 1.06z",
30
+ d: "M10.94 10.69c.28.283.662.442 1.06.44a1.45 1.45 0 001.06-.44 1.49 1.49 0 000-2.12l-4-3.95a1.63 1.63 0 00-.49-.33 1.56 1.56 0 00-1.1 0 1.51 1.51 0 00-.47.33l-4 4a1.51 1.51 0 000 2.12 1.49 1.49 0 002.12 0L6.55 9.3v5.47a1.5 1.5 0 003 0V9.3l1.39 1.39z",
32
31
  fill: "currentColor"
33
32
  }));
34
33
  };
@@ -38,5 +37,5 @@ function FormFilled(componentProps) {
38
37
  }));
39
38
  }
40
39
 
41
- FormFilled.displayName = 'FormFilled';
42
- export default FormFilled;
40
+ ArrowsChevronFilled.displayName = 'ArrowsChevronFilled';
41
+ export default ArrowsChevronFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ArrowsChevronOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace ArrowsChevronOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default ArrowsChevronOutlined;
@@ -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 ArrowsChevronOutlined(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 24 24",
24
+ fill: "none",
25
+ xmlns: "http://www.w3.org/2000/svg"
26
+ }, props), /*#__PURE__*/React.createElement("path", {
27
+ d: "M21.91 14.28a.75.75 0 00-1.07 0l-3.4 3.41v-9a.75.75 0 00-1.5 0v9l-3.41-3.41a.753.753 0 00-1.07 1.06l4.7 4.66c.067.07.15.125.24.16a.718.718 0 00.57 0 .718.718 0 00.25-.16l4.69-4.69a.75.75 0 000-1.03zM11.47 9.72a.76.76 0 001.07 0 .75.75 0 000-1.06L7.84 4a.67.67 0 00-.24-.16.8.8 0 00-.57 0 .82.82 0 00-.25.16L2.09 8.66a.75.75 0 000 1.06.74.74 0 001.06 0l3.41-3.41v9a.75.75 0 001.5 0v-9l3.41 3.41z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ ArrowsChevronOutlined.displayName = 'ArrowsChevronOutlined';
38
+ export default ArrowsChevronOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ChainFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ChainFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ChainFilled;
@@ -0,0 +1,68 @@
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 ChainFilled(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 24 24",
24
+ fill: "none",
25
+ xmlns: "http://www.w3.org/2000/svg"
26
+ }, props), /*#__PURE__*/React.createElement("rect", {
27
+ x: 6.9,
28
+ y: 16.3,
29
+ width: 0.8,
30
+ height: 0.8,
31
+ rx: 0.23,
32
+ fill: "currentColor"
33
+ }), /*#__PURE__*/React.createElement("rect", {
34
+ x: 16.3,
35
+ y: 16.3,
36
+ width: 0.8,
37
+ height: 0.8,
38
+ rx: 0.23,
39
+ fill: "currentColor"
40
+ }), /*#__PURE__*/React.createElement("rect", {
41
+ x: 6.9,
42
+ y: 6.9,
43
+ width: 0.8,
44
+ height: 0.8,
45
+ rx: 0.23,
46
+ fill: "currentColor"
47
+ }), /*#__PURE__*/React.createElement("path", {
48
+ fillRule: "evenodd",
49
+ clipRule: "evenodd",
50
+ d: "M15.56 2.44H8.44a6 6 0 00-6 6v7.12a6 6 0 006 6h7.12a6 6 0 006-6V8.44a6 6 0 00-6-6zM5.35 7.13c0-.983.797-1.78 1.78-1.78h.35a1.79 1.79 0 011.66 1.18h3.57a.78.78 0 010 1.55H9.14a1.78 1.78 0 01-1.66 1.17h-.35a1.78 1.78 0 01-1.78-1.77v-.35zm2.13 11.52a1.78 1.78 0 001.77-1.78v-.35a1.78 1.78 0 00-1.17-1.66v-3.57a.77.77 0 00-.78-.77.76.76 0 00-.77.77v3.57a1.79 1.79 0 00-1.18 1.66v.35c0 .983.797 1.78 1.78 1.78h.35zm11.17-1.78a1.78 1.78 0 01-1.78 1.78h-.35a1.79 1.79 0 01-1.66-1.18h-3.57a.76.76 0 01-.77-.77.77.77 0 01.77-.78h3.57a1.78 1.78 0 011.66-1.17h.35c.98 0 1.774.79 1.78 1.77v.35zm-1.18-7.73a1.79 1.79 0 001.18-1.66v-.35a1.78 1.78 0 00-1.78-1.78h-.35c-.98.006-1.77.8-1.77 1.78v.35a1.78 1.78 0 001.17 1.66v3.57a.78.78 0 001.55 0V9.14z",
51
+ fill: "currentColor"
52
+ }), /*#__PURE__*/React.createElement("rect", {
53
+ x: 16.3,
54
+ y: 6.9,
55
+ width: 0.8,
56
+ height: 0.8,
57
+ rx: 0.23,
58
+ fill: "currentColor"
59
+ }));
60
+ };
61
+
62
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
63
+ component: IconNode
64
+ }));
65
+ }
66
+
67
+ ChainFilled.displayName = 'ChainFilled';
68
+ export default ChainFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ChainOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace ChainOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default ChainOutlined;
@@ -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 ChainOutlined(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: "M15.42 4.65a.75.75 0 01-.75.75H7.24v.09a1.76 1.76 0 01-1.75 1.75H3.81a1.76 1.76 0 01-1.75-1.75V3.81a1.76 1.76 0 011.75-1.75h1.68a1.76 1.76 0 011.75 1.75v.09h7.43a.75.75 0 01.75.75zM5.49 5.74a.25.25 0 00.25-.25V3.81a.25.25 0 00-.25-.25H3.81a.26.26 0 00-.25.25v1.68c0 .138.112.25.25.25h1.68zM18.51 2.06h1.68a1.76 1.76 0 011.75 1.75v1.68a1.76 1.76 0 01-1.75 1.75h-.09v7.43a.75.75 0 01-1.5 0V7.24h-.09a1.76 1.76 0 01-1.75-1.75V3.81a1.76 1.76 0 011.75-1.75zm1.68 3.68a.25.25 0 00.25-.25V3.81a.26.26 0 00-.25-.25h-1.68a.25.25 0 00-.25.25v1.68c0 .138.112.25.25.25h1.68zM5.4 16.76h.09a1.76 1.76 0 011.75 1.75v1.68a1.76 1.76 0 01-1.75 1.75H3.81a1.76 1.76 0 01-1.75-1.75v-1.68a1.76 1.76 0 011.75-1.75h.09V9.33a.75.75 0 111.5 0v7.43zm.09 3.68a.25.25 0 00.25-.25v-1.68a.25.25 0 00-.25-.25H3.81a.25.25 0 00-.25.25v1.68a.26.26 0 00.25.25h1.68zM18.51 16.76h1.68a1.76 1.76 0 011.75 1.75v1.68a1.76 1.76 0 01-1.75 1.75h-1.68a1.76 1.76 0 01-1.75-1.75v-.09H9.33a.75.75 0 010-1.5h7.43v-.09a1.76 1.76 0 011.75-1.75zm1.68 3.68a.26.26 0 00.25-.25v-1.68a.25.25 0 00-.25-.25h-1.68a.25.25 0 00-.25.25v1.68c0 .138.112.25.25.25h1.68z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ ChainOutlined.displayName = 'ChainOutlined';
40
+ export default ChainOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function PeopleSettingFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace PeopleSettingFilled {
4
+ var displayName: string;
5
+ }
6
+ export default PeopleSettingFilled;
@@ -0,0 +1,42 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+
6
+ for (var p in s) {
7
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
8
+ }
9
+ }
10
+
11
+ return t;
12
+ };
13
+
14
+ return __assign.apply(this, arguments);
15
+ };
16
+
17
+ import * as React from 'react';
18
+ import Icon from 'a-base-icon/lib/Icon';
19
+
20
+ function PeopleSettingFilled(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: "M10.827 13.698v7.814H3c0-2.073.825-4.06 2.293-5.526a7.834 7.834 0 015.534-2.288zm2.54 4.7a3.422 3.422 0 010-1.585l-.971-.56.978-1.692.97.56c.39-.369.861-.64 1.376-.793v-1.119h1.956v1.119c.52.154.99.43 1.375.793l.97-.56.979 1.692-.97.56c.123.52.123 1.063 0 1.584l.97.56-.978 1.691-.971-.56c-.39.369-.86.64-1.375.794V22H15.72v-1.118a3.423 3.423 0 01-1.375-.794l-.97.56-.98-1.692.971-.558zm3.33-1.77a.98.98 0 00-.977.977.976.976 0 00.978.976.98.98 0 00.978-.976.976.976 0 00-.978-.977z",
27
+ fill: "currentColor"
28
+ }), /*#__PURE__*/React.createElement("circle", {
29
+ cx: 11,
30
+ cy: 7,
31
+ r: 5,
32
+ fill: "currentColor"
33
+ }));
34
+ };
35
+
36
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
37
+ component: IconNode
38
+ }));
39
+ }
40
+
41
+ PeopleSettingFilled.displayName = 'PeopleSettingFilled';
42
+ export default PeopleSettingFilled;
package/es/index.d.ts CHANGED
@@ -1,7 +1,10 @@
1
1
  export { default as ImpassabilityFilled } from './ImpassabilityFilled';
2
+ export { default as AddFilled } from './AddFilled';
2
3
  export { default as AlertTriangleFilled } from './AlertTriangleFilled';
3
4
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
4
5
  export { default as ArrowDropDownFilled } from './ArrowDropDownFilled';
6
+ export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
7
+ export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
5
8
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
6
9
  export { default as BoxFilled } from './BoxFilled';
7
10
  export { default as BoxOutlined } from './BoxOutlined';
@@ -15,6 +18,8 @@ export { default as CardFilled } from './CardFilled';
15
18
  export { default as CardOutlined } from './CardOutlined';
16
19
  export { default as CategoryFilled } from './CategoryFilled';
17
20
  export { default as CategoryOutlined } from './CategoryOutlined';
21
+ export { default as ChainFilled } from './ChainFilled';
22
+ export { default as ChainOutlined } from './ChainOutlined';
18
23
  export { default as ChevronRightOutlined } from './ChevronRightOutlined';
19
24
  export { default as ChevronUpFilled } from './ChevronUpFilled';
20
25
  export { default as CirclePlusFilled } from './CirclePlusFilled';
@@ -39,7 +44,6 @@ export { default as EditSimpleOutlined } from './EditSimpleOutlined';
39
44
  export { default as ErrorWarningLine } from './ErrorWarningLine';
40
45
  export { default as FileFilled } from './FileFilled';
41
46
  export { default as FileOutlined } from './FileOutlined';
42
- export { default as FormFilled } from './FormFilled';
43
47
  export { default as FormOutlined } from './FormOutlined';
44
48
  export { default as HomeFilled } from './HomeFilled';
45
49
  export { default as HomeOutlined } from './HomeOutlined';
@@ -72,6 +76,7 @@ export { default as PeopleFilled } from './PeopleFilled';
72
76
  export { default as PeopleGroupFilled } from './PeopleGroupFilled';
73
77
  export { default as PeopleGroupOutlined } from './PeopleGroupOutlined';
74
78
  export { default as PeopleOutlined } from './PeopleOutlined';
79
+ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
75
80
  export { default as PeopleTeamFilled } from './PeopleTeamFilled';
76
81
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
77
82
  export { default as PlusFilled } from './PlusFilled';
package/es/index.js CHANGED
@@ -1,7 +1,10 @@
1
1
  export { default as ImpassabilityFilled } from './ImpassabilityFilled';
2
+ export { default as AddFilled } from './AddFilled';
2
3
  export { default as AlertTriangleFilled } from './AlertTriangleFilled';
3
4
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
4
5
  export { default as ArrowDropDownFilled } from './ArrowDropDownFilled';
6
+ export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
7
+ export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
5
8
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
6
9
  export { default as BoxFilled } from './BoxFilled';
7
10
  export { default as BoxOutlined } from './BoxOutlined';
@@ -15,6 +18,8 @@ export { default as CardFilled } from './CardFilled';
15
18
  export { default as CardOutlined } from './CardOutlined';
16
19
  export { default as CategoryFilled } from './CategoryFilled';
17
20
  export { default as CategoryOutlined } from './CategoryOutlined';
21
+ export { default as ChainFilled } from './ChainFilled';
22
+ export { default as ChainOutlined } from './ChainOutlined';
18
23
  export { default as ChevronRightOutlined } from './ChevronRightOutlined';
19
24
  export { default as ChevronUpFilled } from './ChevronUpFilled';
20
25
  export { default as CirclePlusFilled } from './CirclePlusFilled';
@@ -39,7 +44,6 @@ export { default as EditSimpleOutlined } from './EditSimpleOutlined';
39
44
  export { default as ErrorWarningLine } from './ErrorWarningLine';
40
45
  export { default as FileFilled } from './FileFilled';
41
46
  export { default as FileOutlined } from './FileOutlined';
42
- export { default as FormFilled } from './FormFilled';
43
47
  export { default as FormOutlined } from './FormOutlined';
44
48
  export { default as HomeFilled } from './HomeFilled';
45
49
  export { default as HomeOutlined } from './HomeOutlined';
@@ -72,6 +76,7 @@ export { default as PeopleFilled } from './PeopleFilled';
72
76
  export { default as PeopleGroupFilled } from './PeopleGroupFilled';
73
77
  export { default as PeopleGroupOutlined } from './PeopleGroupOutlined';
74
78
  export { default as PeopleOutlined } from './PeopleOutlined';
79
+ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
75
80
  export { default as PeopleTeamFilled } from './PeopleTeamFilled';
76
81
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
77
82
  export { default as PlusFilled } from './PlusFilled';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function AddFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace AddFilled {
4
+ var displayName: string;
5
+ }
6
+ export default AddFilled;
@@ -0,0 +1,86 @@
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 AddFilled(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
+ fillRule: "evenodd",
74
+ clipRule: "evenodd",
75
+ d: "M6.6 3h10.8A3.6 3.6 0 0121 6.6v10.8a3.6 3.6 0 01-3.6 3.6H6.6A3.6 3.6 0 013 17.4V6.6A3.6 3.6 0 016.6 3zm6.075 9.675H15.6a.675.675 0 100-1.35h-2.925V8.4a.675.675 0 10-1.35 0v2.925H8.4a.675.675 0 100 1.35h2.925V15.6a.675.675 0 001.35 0v-2.925z",
76
+ fill: "currentColor"
77
+ }));
78
+ };
79
+
80
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
81
+ component: IconNode
82
+ }));
83
+ }
84
+
85
+ AddFilled.displayName = 'AddFilled';
86
+ exports["default"] = AddFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ArrowsChevronFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ArrowsChevronFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ArrowsChevronFilled;
@@ -64,18 +64,17 @@ var React = __importStar(require("react"));
64
64
 
65
65
  var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
66
66
 
67
- function FormFilled(componentProps) {
67
+ function ArrowsChevronFilled(componentProps) {
68
68
  var IconNode = function IconNode(props) {
69
69
  return React.createElement("svg", __assign({
70
70
  viewBox: "0 0 24 24",
71
+ fill: "none",
71
72
  xmlns: "http://www.w3.org/2000/svg"
72
73
  }, props), React.createElement("path", {
73
- d: "M13.24 15.62l-3.41.73a1.832 1.832 0 01-.4 0 1.75 1.75 0 01-1.26-.52 1.81 1.81 0 01-.47-1.66l.73-3.4a3.51 3.51 0 011-1.75l5.7-5.7h-9a4.14 4.14 0 00-4.19 4.19v10.35A4.14 4.14 0 006.08 22h10.36a4.14 4.14 0 004.14-4.14V9.07L15 14.66a3.5 3.5 0 01-1.76.96z",
74
+ d: "M21 13.31a1.49 1.49 0 00-2.12 0l-1.4 1.39V9.23a1.5 1.5 0 00-3 0v5.47l-1.39-1.39a1.5 1.5 0 00-2.12 2.12l4 3.95c.072.069.149.132.23.19l.08.05.17.09h.12l.16.05c.198.04.402.04.6 0l.18-.05h.1l.18-.1h.08l.22-.19 4-3.95a1.51 1.51 0 00-.09-2.16z",
74
75
  fill: "currentColor"
75
76
  }), React.createElement("path", {
76
- fillRule: "evenodd",
77
- clipRule: "evenodd",
78
- d: "M16.77 3.11a3.22 3.22 0 014.51-.34 3.22 3.22 0 01-.34 4.56L14.27 14a2.48 2.48 0 01-1.27.64l-3.38.76a.77.77 0 01-.94-1l.73-3.4a2.55 2.55 0 01.69-1.22l6.67-6.67zm.41 4.66l2.24-2.24a.75.75 0 00-1.06-1.06l-2.24 2.24a.75.75 0 001.06 1.06z",
77
+ d: "M10.94 10.69c.28.283.662.442 1.06.44a1.45 1.45 0 001.06-.44 1.49 1.49 0 000-2.12l-4-3.95a1.63 1.63 0 00-.49-.33 1.56 1.56 0 00-1.1 0 1.51 1.51 0 00-.47.33l-4 4a1.51 1.51 0 000 2.12 1.49 1.49 0 002.12 0L6.55 9.3v5.47a1.5 1.5 0 003 0V9.3l1.39 1.39z",
79
78
  fill: "currentColor"
80
79
  }));
81
80
  };
@@ -85,5 +84,5 @@ function FormFilled(componentProps) {
85
84
  }));
86
85
  }
87
86
 
88
- FormFilled.displayName = 'FormFilled';
89
- exports["default"] = FormFilled;
87
+ ArrowsChevronFilled.displayName = 'ArrowsChevronFilled';
88
+ exports["default"] = ArrowsChevronFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ArrowsChevronOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace ArrowsChevronOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default ArrowsChevronOutlined;
@@ -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 ArrowsChevronOutlined(componentProps) {
68
+ var IconNode = function IconNode(props) {
69
+ return React.createElement("svg", __assign({
70
+ viewBox: "0 0 24 24",
71
+ fill: "none",
72
+ xmlns: "http://www.w3.org/2000/svg"
73
+ }, props), React.createElement("path", {
74
+ d: "M21.91 14.28a.75.75 0 00-1.07 0l-3.4 3.41v-9a.75.75 0 00-1.5 0v9l-3.41-3.41a.753.753 0 00-1.07 1.06l4.7 4.66c.067.07.15.125.24.16a.718.718 0 00.57 0 .718.718 0 00.25-.16l4.69-4.69a.75.75 0 000-1.03zM11.47 9.72a.76.76 0 001.07 0 .75.75 0 000-1.06L7.84 4a.67.67 0 00-.24-.16.8.8 0 00-.57 0 .82.82 0 00-.25.16L2.09 8.66a.75.75 0 000 1.06.74.74 0 001.06 0l3.41-3.41v9a.75.75 0 001.5 0v-9l3.41 3.41z",
75
+ fill: "currentColor"
76
+ }));
77
+ };
78
+
79
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
80
+ component: IconNode
81
+ }));
82
+ }
83
+
84
+ ArrowsChevronOutlined.displayName = 'ArrowsChevronOutlined';
85
+ exports["default"] = ArrowsChevronOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ChainFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ChainFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ChainFilled;