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.
- package/es/AddFilled.d.ts +6 -0
- package/es/AddFilled.js +39 -0
- package/es/ArrowsChevronFilled.d.ts +6 -0
- package/es/{FormFilled.js → ArrowsChevronFilled.js} +6 -7
- package/es/ArrowsChevronOutlined.d.ts +6 -0
- package/es/ArrowsChevronOutlined.js +38 -0
- package/es/ChainFilled.d.ts +6 -0
- package/es/ChainFilled.js +68 -0
- package/es/ChainOutlined.d.ts +6 -0
- package/es/ChainOutlined.js +40 -0
- package/es/PeopleSettingFilled.d.ts +6 -0
- package/es/PeopleSettingFilled.js +42 -0
- package/es/index.d.ts +6 -1
- package/es/index.js +6 -1
- package/lib/AddFilled.d.ts +6 -0
- package/lib/AddFilled.js +86 -0
- package/lib/ArrowsChevronFilled.d.ts +6 -0
- package/lib/{FormFilled.js → ArrowsChevronFilled.js} +6 -7
- package/lib/ArrowsChevronOutlined.d.ts +6 -0
- package/lib/ArrowsChevronOutlined.js +85 -0
- package/lib/ChainFilled.d.ts +6 -0
- package/lib/ChainFilled.js +115 -0
- package/lib/ChainOutlined.d.ts +6 -0
- package/lib/ChainOutlined.js +87 -0
- package/lib/PeopleSettingFilled.d.ts +6 -0
- package/lib/PeopleSettingFilled.js +89 -0
- package/lib/index.d.ts +6 -1
- package/lib/index.js +54 -9
- package/package.json +2 -2
- package/src/AddFilled.tsx +20 -0
- package/src/ArrowsChevronFilled.tsx +22 -0
- package/src/ArrowsChevronOutlined.tsx +18 -0
- package/src/CameraOutlined.tsx +1 -8
- package/src/CategoryFilled.tsx +1 -8
- package/src/ChainFilled.tsx +24 -0
- package/src/ChainOutlined.tsx +20 -0
- package/src/PeopleSettingFilled.tsx +19 -0
- package/src/SearchDocumentFilled.tsx +1 -4
- package/src/StampFilled.tsx +1 -6
- package/src/WalletFilled.tsx +1 -4
- package/src/index.tsx +6 -1
- package/svgs/filled/add-filled.svg +5 -0
- package/svgs/filled/arrows-chevron-filled.svg +8 -0
- package/svgs/filled/article-board-filled.svg +3 -1
- package/svgs/filled/chain-filled.svg +7 -0
- package/svgs/filled/people-setting-filled.svg +6 -0
- package/svgs/outlined/arrows-chevron-outlined.svg +8 -0
- package/svgs/outlined/chain-outlined.svg +6 -0
- package/tmpAllSvgs/add-filled.svg +5 -0
- package/tmpAllSvgs/arrows-chevron-filled.svg +8 -0
- package/tmpAllSvgs/arrows-chevron-outlined.svg +8 -0
- package/tmpAllSvgs/article-board-filled.svg +3 -1
- package/tmpAllSvgs/chain-filled.svg +7 -0
- package/tmpAllSvgs/chain-outlined.svg +6 -0
- package/tmpAllSvgs/people-setting-filled.svg +6 -0
- package/es/FormFilled.d.ts +0 -6
- package/lib/FormFilled.d.ts +0 -6
- package/src/FormFilled.tsx +0 -24
- package/svgs/filled/form-filled.svg +0 -8
- package/tmpAllSvgs/form-filled.svg +0 -8
package/es/AddFilled.js
ADDED
|
@@ -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;
|
|
@@ -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
|
|
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: "
|
|
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
|
-
|
|
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
|
-
|
|
42
|
-
export default
|
|
40
|
+
ArrowsChevronFilled.displayName = 'ArrowsChevronFilled';
|
|
41
|
+
export default ArrowsChevronFilled;
|
|
@@ -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,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,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,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';
|
package/lib/AddFilled.js
ADDED
|
@@ -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;
|
|
@@ -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
|
|
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: "
|
|
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
|
-
|
|
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
|
-
|
|
89
|
-
exports["default"] =
|
|
87
|
+
ArrowsChevronFilled.displayName = 'ArrowsChevronFilled';
|
|
88
|
+
exports["default"] = ArrowsChevronFilled;
|
|
@@ -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;
|