a-icons 1.0.38 → 1.0.42

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/ArrowsChevronFilled.js +41 -0
  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/FileFilled.js +1 -1
  12. package/es/FileOutlined.js +1 -1
  13. package/es/PeopleSettingFilled.d.ts +6 -0
  14. package/es/PeopleSettingFilled.js +42 -0
  15. package/es/index.d.ts +6 -0
  16. package/es/index.js +6 -0
  17. package/lib/AddFilled.d.ts +6 -0
  18. package/lib/AddFilled.js +86 -0
  19. package/lib/ArrowsChevronFilled.d.ts +6 -0
  20. package/lib/ArrowsChevronFilled.js +88 -0
  21. package/lib/ArrowsChevronOutlined.d.ts +6 -0
  22. package/lib/ArrowsChevronOutlined.js +85 -0
  23. package/lib/ChainFilled.d.ts +6 -0
  24. package/lib/ChainFilled.js +115 -0
  25. package/lib/ChainOutlined.d.ts +6 -0
  26. package/lib/ChainOutlined.js +87 -0
  27. package/lib/FileFilled.js +1 -1
  28. package/lib/FileOutlined.js +1 -1
  29. package/lib/PeopleSettingFilled.d.ts +6 -0
  30. package/lib/PeopleSettingFilled.js +89 -0
  31. package/lib/index.d.ts +6 -0
  32. package/lib/index.js +54 -0
  33. package/package.json +2 -2
  34. package/src/AddFilled.tsx +20 -0
  35. package/src/ArrowsChevronFilled.tsx +22 -0
  36. package/src/ArrowsChevronOutlined.tsx +18 -0
  37. package/src/ChainFilled.tsx +24 -0
  38. package/src/ChainOutlined.tsx +20 -0
  39. package/src/FileFilled.tsx +1 -1
  40. package/src/FileOutlined.tsx +1 -1
  41. package/src/PeopleSettingFilled.tsx +19 -0
  42. package/src/index.tsx +6 -0
  43. package/svgs/filled/add-filled.svg +5 -0
  44. package/svgs/filled/arrows-chevron-filled.svg +8 -0
  45. package/svgs/filled/article-board-filled.svg +3 -1
  46. package/svgs/filled/chain-filled.svg +7 -0
  47. package/svgs/filled/file-filled.svg +1 -3
  48. package/svgs/filled/people-setting-filled.svg +6 -0
  49. package/svgs/outlined/arrows-chevron-outlined.svg +8 -0
  50. package/svgs/outlined/chain-outlined.svg +6 -0
  51. package/svgs/outlined/file-outlined.svg +1 -3
  52. package/tmpAllSvgs/add-filled.svg +5 -0
  53. package/tmpAllSvgs/arrows-chevron-filled.svg +8 -0
  54. package/tmpAllSvgs/arrows-chevron-outlined.svg +8 -0
  55. package/tmpAllSvgs/article-board-filled.svg +3 -1
  56. package/tmpAllSvgs/chain-filled.svg +7 -0
  57. package/tmpAllSvgs/chain-outlined.svg +6 -0
  58. package/tmpAllSvgs/file-filled.svg +1 -3
  59. package/tmpAllSvgs/file-outlined.svg +1 -3
  60. package/tmpAllSvgs/people-setting-filled.svg +6 -0
@@ -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;
@@ -0,0 +1,41 @@
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 ArrowsChevronFilled(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 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",
28
+ fill: "currentColor"
29
+ }), /*#__PURE__*/React.createElement("path", {
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",
31
+ fill: "currentColor"
32
+ }));
33
+ };
34
+
35
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
36
+ component: IconNode
37
+ }));
38
+ }
39
+
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;
package/es/FileFilled.js CHANGED
@@ -23,7 +23,7 @@ function FileFilled(componentProps) {
23
23
  viewBox: "0 0 24 24",
24
24
  xmlns: "http://www.w3.org/2000/svg"
25
25
  }, props), /*#__PURE__*/React.createElement("path", {
26
- d: "M21.82 10.267v7.498a3.412 3.412 0 01-3.412 3.412H5.412A3.412 3.412 0 012 17.765V6.412A3.412 3.412 0 015.412 3h4.57c1.065 0 1.928.863 1.928 1.927a1.927 1.927 0 001.927 1.896h4.57a3.412 3.412 0 013.413 3.444z",
26
+ d: "M20.14 10.284v6.484a2.95 2.95 0 01-2.95 2.951H5.95A2.95 2.95 0 013 16.77V6.95A2.95 2.95 0 015.95 4h3.953c.92 0 1.667.746 1.667 1.667.015.91.757 1.64 1.667 1.639h3.952a2.95 2.95 0 012.95 2.978z",
27
27
  fill: "currentColor"
28
28
  }));
29
29
  };
@@ -25,7 +25,7 @@ function FileOutlined(componentProps) {
25
25
  }, props), /*#__PURE__*/React.createElement("path", {
26
26
  fillRule: "evenodd",
27
27
  clipRule: "evenodd",
28
- d: "M5.72 2H9.98a3.346 3.346 0 013.346 3.346.21.21 0 00.21.21h4.195a4.73 4.73 0 014.72 4.72v6.933a4.73 4.73 0 01-4.72 4.72H5.72A4.72 4.72 0 011 17.21V6.72A4.71 4.71 0 015.72 2zm6 3.346c0-.979-.794-1.773-1.773-1.773H5.72A3.147 3.147 0 002.573 6.72v10.49a3.147 3.147 0 003.147 3.146H17.7a3.147 3.147 0 003.146-3.147v-6.933A3.147 3.147 0 0017.7 7.129h-4.196a1.783 1.783 0 01-1.783-1.783z",
28
+ d: "M6.925 4h3.404a2.674 2.674 0 012.675 2.674.167.167 0 00.167.168h3.354a3.781 3.781 0 013.772 3.773v5.541a3.781 3.781 0 01-3.772 3.773h-9.6a3.773 3.773 0 01-3.772-3.773V7.773A3.764 3.764 0 016.925 4zm4.796 2.674c0-.782-.635-1.416-1.417-1.416H6.925A2.515 2.515 0 004.41 7.773v8.383a2.515 2.515 0 002.515 2.516H16.5a2.515 2.515 0 002.516-2.516v-5.541A2.515 2.515 0 0016.499 8.1h-3.353a1.425 1.425 0 01-1.425-1.426z",
29
29
  fill: "currentColor"
30
30
  }));
31
31
  };
@@ -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';
@@ -72,6 +77,7 @@ export { default as PeopleFilled } from './PeopleFilled';
72
77
  export { default as PeopleGroupFilled } from './PeopleGroupFilled';
73
78
  export { default as PeopleGroupOutlined } from './PeopleGroupOutlined';
74
79
  export { default as PeopleOutlined } from './PeopleOutlined';
80
+ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
75
81
  export { default as PeopleTeamFilled } from './PeopleTeamFilled';
76
82
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
77
83
  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';
@@ -72,6 +77,7 @@ export { default as PeopleFilled } from './PeopleFilled';
72
77
  export { default as PeopleGroupFilled } from './PeopleGroupFilled';
73
78
  export { default as PeopleGroupOutlined } from './PeopleGroupOutlined';
74
79
  export { default as PeopleOutlined } from './PeopleOutlined';
80
+ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
75
81
  export { default as PeopleTeamFilled } from './PeopleTeamFilled';
76
82
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
77
83
  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;
@@ -0,0 +1,88 @@
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 ArrowsChevronFilled(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 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",
75
+ fill: "currentColor"
76
+ }), React.createElement("path", {
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",
78
+ fill: "currentColor"
79
+ }));
80
+ };
81
+
82
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
83
+ component: IconNode
84
+ }));
85
+ }
86
+
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;