a-icons 1.0.61 → 1.0.64

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 (77) hide show
  1. package/es/AtOutlined.d.ts +6 -0
  2. package/es/AtOutlined.js +40 -0
  3. package/es/FilterFilled.d.ts +6 -0
  4. package/es/FilterFilled.js +38 -0
  5. package/es/FilterOutlined.d.ts +6 -0
  6. package/es/FilterOutlined.js +54 -0
  7. package/es/LinksOutlined.d.ts +6 -0
  8. package/es/LinksOutlined.js +38 -0
  9. package/es/PeopleCardFilled.d.ts +6 -0
  10. package/es/PeopleCardFilled.js +44 -0
  11. package/es/PhoneOutlined.d.ts +6 -0
  12. package/es/PhoneOutlined.js +40 -0
  13. package/es/ShareFilled.d.ts +6 -0
  14. package/es/ShareFilled.js +37 -0
  15. package/es/ShareOutlined.d.ts +6 -0
  16. package/es/ShareOutlined.js +40 -0
  17. package/es/VectorOutlined.d.ts +6 -0
  18. package/es/VectorOutlined.js +37 -0
  19. package/es/index.d.ts +9 -0
  20. package/es/index.js +9 -0
  21. package/lib/AtOutlined.d.ts +6 -0
  22. package/lib/AtOutlined.js +87 -0
  23. package/lib/FilterFilled.d.ts +6 -0
  24. package/lib/FilterFilled.js +85 -0
  25. package/lib/FilterOutlined.d.ts +6 -0
  26. package/lib/FilterOutlined.js +101 -0
  27. package/lib/LinksOutlined.d.ts +6 -0
  28. package/lib/LinksOutlined.js +85 -0
  29. package/lib/PeopleCardFilled.d.ts +6 -0
  30. package/lib/PeopleCardFilled.js +91 -0
  31. package/lib/PhoneOutlined.d.ts +6 -0
  32. package/lib/PhoneOutlined.js +87 -0
  33. package/lib/ShareFilled.d.ts +6 -0
  34. package/lib/ShareFilled.js +84 -0
  35. package/lib/ShareOutlined.d.ts +6 -0
  36. package/lib/ShareOutlined.js +87 -0
  37. package/lib/VectorOutlined.d.ts +6 -0
  38. package/lib/VectorOutlined.js +84 -0
  39. package/lib/index.d.ts +9 -0
  40. package/lib/index.js +81 -0
  41. package/package.json +2 -2
  42. package/src/AtOutlined.tsx +20 -0
  43. package/src/FilterFilled.tsx +18 -0
  44. package/src/FilterOutlined.tsx +29 -0
  45. package/src/LinksOutlined.tsx +18 -0
  46. package/src/PeopleCardFilled.tsx +26 -0
  47. package/src/PhoneOutlined.tsx +20 -0
  48. package/src/ShareFilled.tsx +18 -0
  49. package/src/ShareOutlined.tsx +20 -0
  50. package/src/VectorOutlined.tsx +18 -0
  51. package/src/index.tsx +9 -0
  52. package/svgs/filled/filter-filled.svg +20 -0
  53. package/svgs/filled/layer-filled.svg +7 -4
  54. package/svgs/filled/people-card-filled.svg +8 -0
  55. package/svgs/filled/share-filled.svg +5 -0
  56. package/svgs/outlined/at-outlined.svg +5 -0
  57. package/svgs/outlined/biscuit-outlined.svg +1 -1
  58. package/svgs/outlined/broken-line-outlined.svg +1 -1
  59. package/svgs/outlined/close-outlined.svg +1 -1
  60. package/svgs/outlined/filter-outlined.svg +20 -0
  61. package/svgs/outlined/links-outlined.svg +3 -0
  62. package/svgs/outlined/phone-outlined.svg +3 -0
  63. package/svgs/outlined/share-outlined.svg +5 -0
  64. package/svgs/outlined/vector-outlined.svg +5 -0
  65. package/tmpAllSvgs/at-outlined.svg +5 -0
  66. package/tmpAllSvgs/biscuit-outlined.svg +1 -1
  67. package/tmpAllSvgs/broken-line-outlined.svg +1 -1
  68. package/tmpAllSvgs/close-outlined.svg +1 -1
  69. package/tmpAllSvgs/filter-filled.svg +20 -0
  70. package/tmpAllSvgs/filter-outlined.svg +20 -0
  71. package/tmpAllSvgs/layer-filled.svg +7 -4
  72. package/tmpAllSvgs/links-outlined.svg +3 -0
  73. package/tmpAllSvgs/people-card-filled.svg +8 -0
  74. package/tmpAllSvgs/phone-outlined.svg +3 -0
  75. package/tmpAllSvgs/share-filled.svg +5 -0
  76. package/tmpAllSvgs/share-outlined.svg +5 -0
  77. package/tmpAllSvgs/vector-outlined.svg +5 -0
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function AtOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace AtOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default AtOutlined;
@@ -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 AtOutlined(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: "M16.503 8.998v4.666c0 .527.178.906.459 1.15.276.242.634.337.968.337 1.12 0 2.233-1.045 2.233-3.153 0-4.501-3.662-8.163-8.162-8.163-4.501 0-8.163 3.662-8.163 8.163 0 4.5 3.662 8.162 8.163 8.162 1.82 0 3.541-.586 4.979-1.694A.836.836 0 0118 19.791a9.742 9.742 0 01-6 2.042c-5.423 0-9.835-4.412-9.835-9.835 0-5.423 4.412-9.835 9.835-9.835 5.423 0 9.835 4.412 9.835 9.835 0 3.2-1.987 4.825-3.905 4.825-.875 0-1.751-.348-2.346-1.02l-.125-.141-.122.142a4.823 4.823 0 01-3.67 1.696 4.841 4.841 0 01-4.836-4.836v-1.333a4.841 4.841 0 014.836-4.835 4.82 4.82 0 013.625 1.647l.067.075.097-.025a.826.826 0 01.21-.03c.462 0 .836.374.836.835zm-4.835-.83a3.167 3.167 0 00-3.164 3.163v1.333a3.167 3.167 0 003.164 3.164 3.166 3.166 0 003.163-3.164v-1.333a3.167 3.167 0 00-3.163-3.163z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ AtOutlined.displayName = 'AtOutlined';
40
+ export default AtOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function FilterFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace FilterFilled {
4
+ var displayName: string;
5
+ }
6
+ export default FilterFilled;
@@ -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 FilterFilled(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: "M4 7.39h6a1 1 0 100-2H4a1 1 0 000 2zM4 13.28h2a2.23 2.23 0 100-2H4a1 1 0 100 2zM13.72 8.46a2.21 2.21 0 001.89-1.07H20a1 1 0 100-2h-4.22a2.23 2.23 0 10-2.06 3.07zM10 17.49H4a1 1 0 100 2h6a1 1 0 000-2zM20 17.49h-3.94a2.24 2.24 0 10-.16 2H20a1 1 0 100-2zM20 11.28h-8a1 1 0 100 2h8a1 1 0 100-2z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ FilterFilled.displayName = 'FilterFilled';
38
+ export default FilterFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function FilterOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace FilterOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default FilterOutlined;
@@ -0,0 +1,54 @@
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 FilterOutlined(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.77 5.71h-6a.75.75 0 100 1.5h6a.75.75 0 000-1.5z",
28
+ fill: "currentColor"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ fillRule: "evenodd",
31
+ clipRule: "evenodd",
32
+ d: "M5.68 13.1H3.77a.75.75 0 010-1.5h1.91a2.23 2.23 0 110 1.5zm2.09-.02a.73.73 0 100-1.46.73.73 0 000 1.46zM15.49 7.17a2.23 2.23 0 01-2 1.36v-.07a2.23 2.23 0 112.15-2.79.5.5 0 01.13 0h3.95a.75.75 0 010 1.5h-4a.93.93 0 01-.23 0zm-1.266-.943a.73.73 0 00-.734-.697v.04a.73.73 0 00-.72.78.73.73 0 001.454-.123z",
33
+ fill: "currentColor"
34
+ }), /*#__PURE__*/React.createElement("path", {
35
+ d: "M9.77 17.81h-6a.77.77 0 100 1.54h6a.75.75 0 000-1.5v-.04z",
36
+ fill: "currentColor"
37
+ }), /*#__PURE__*/React.createElement("path", {
38
+ fillRule: "evenodd",
39
+ clipRule: "evenodd",
40
+ d: "M15.9 17.81h3.87v.04a.75.75 0 010 1.5h-4a2.22 2.22 0 11.13-1.54zm-2.812.877a.73.73 0 101.343-.573.73.73 0 00-1.342.573z",
41
+ fill: "currentColor"
42
+ }), /*#__PURE__*/React.createElement("path", {
43
+ d: "M19.77 11.6h-8a.75.75 0 000 1.5h8a.75.75 0 000-1.5z",
44
+ fill: "currentColor"
45
+ }));
46
+ };
47
+
48
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
49
+ component: IconNode
50
+ }));
51
+ }
52
+
53
+ FilterOutlined.displayName = 'FilterOutlined';
54
+ export default FilterOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function LinksOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace LinksOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default LinksOutlined;
@@ -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 LinksOutlined(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: "M13.06 8.11l1.415 1.415a7 7 0 010 9.9l-.354.353a7 7 0 01-9.9-9.9l1.415 1.415a5 5 0 107.071 7.071l.354-.354a5 5 0 000-7.07l-1.415-1.415 1.415-1.414-.001-.001zm6.718 6.011l-1.414-1.414a5.001 5.001 0 00-3.531-8.551 5 5 0 00-3.54 1.48l-.354.354a5 5 0 000 7.07l1.415 1.415-1.415 1.414-1.414-1.414a7 7 0 010-9.9l.354-.353a7 7 0 119.9 9.9l-.001-.001z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ LinksOutlined.displayName = 'LinksOutlined';
38
+ export default LinksOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function PeopleCardFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace PeopleCardFilled {
4
+ var displayName: string;
5
+ }
6
+ export default PeopleCardFilled;
@@ -0,0 +1,44 @@
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 PeopleCardFilled(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 24 24",
24
+ fill: "fill",
25
+ xmlns: "http://www.w3.org/2000/svg"
26
+ }, props), /*#__PURE__*/React.createElement("path", {
27
+ d: "M15.416 6.346a3.969 3.969 0 11-7.894-.83 3.969 3.969 0 017.894.83zM2.967 14.42c-.913 1.276.145 2.834 1.705 2.998l10.33 1.085c1.56.164 2.918-1.14 2.29-2.578a8.272 8.272 0 00-6.724-4.928 8.272 8.272 0 00-7.601 3.422z",
28
+ fill: "currentColor"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ d: "M9.374 17.832c-.355-1.774-.533-2.66-.092-3.322.44-.662 1.328-.84 3.102-1.195l5.402-1.082c1.774-.356 2.661-.534 3.323-.093.661.44.84 1.328 1.194 3.102l.343 1.708c.355 1.774.533 2.661.092 3.323-.44.662-1.327.84-3.101 1.195l-5.403 1.082c-1.774.356-2.661.534-3.323.093-.661-.441-.839-1.328-1.194-3.102l-.343-1.709z",
31
+ fill: "inherit"
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ d: "M11.453 15.423l8.004-1.604.123.615-8.003 1.604-.124-.615zM11.946 17.885l8.004-1.604.123.616-8.004 1.604-.123-.616zM12.44 20.348l3.694-.74.123.616-3.694.74-.123-.616z",
34
+ fill: "currentColor"
35
+ }));
36
+ };
37
+
38
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
39
+ component: IconNode
40
+ }));
41
+ }
42
+
43
+ PeopleCardFilled.displayName = 'PeopleCardFilled';
44
+ export default PeopleCardFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function PhoneOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace PhoneOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default PhoneOutlined;
@@ -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 PhoneOutlined(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: "M18 2H7a2 2 0 00-2 2v16a2 2 0 002 2h11a2 2 0 002-2V4a2 2 0 00-2-2zm.36 18a.36.36 0 01-.36.36H7a.36.36 0 01-.36-.36V4A.36.36 0 017 3.64h11a.36.36 0 01.36.36v16zm-5.86-1a1 1 0 100-2 1 1 0 000 2z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ PhoneOutlined.displayName = 'PhoneOutlined';
40
+ export default PhoneOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ShareFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ShareFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ShareFilled;
@@ -0,0 +1,37 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+
6
+ for (var p in s) {
7
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
8
+ }
9
+ }
10
+
11
+ return t;
12
+ };
13
+
14
+ return __assign.apply(this, arguments);
15
+ };
16
+
17
+ import * as React from 'react';
18
+ import Icon from 'a-base-icon/lib/Icon';
19
+
20
+ function ShareFilled(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: "M16.238 15.594a2.53 2.53 0 00-2.46-.12l-3-3a2.52 2.52 0 00.14-1.61 2 2 0 00-.08-.22l2.94-2.94a2.48 2.48 0 10-1.06-1l-2.77 2.73a2.5 2.5 0 10-.83 4.46c.234-.068.456-.17.66-.3l3 3a2.49 2.49 0 103.5-1h-.04z",
27
+ fill: "currentColor"
28
+ }));
29
+ };
30
+
31
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
32
+ component: IconNode
33
+ }));
34
+ }
35
+
36
+ ShareFilled.displayName = 'ShareFilled';
37
+ export default ShareFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ShareOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace ShareOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default ShareOutlined;
@@ -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 ShareOutlined(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: "M14.953 15.23c.451.002.894.126 1.28.36h-.01a2.49 2.49 0 11-3.49 1l-2.93-2.99a2.58 2.58 0 01-.68.29 2.5 2.5 0 11-.61-4.92c.516 0 1.02.161 1.44.46l2.78-2.78A2.48 2.48 0 0114.953 3a2.47 2.47 0 011.28.35 2.51 2.51 0 01-2.42 4.4l-2.94 2.94c.033.071.06.145.08.22a2.46 2.46 0 01-.15 1.61l3 3a2.55 2.55 0 011.15-.29zm0-10.73a1 1 0 00-.86.48 1 1 0 00-.11.76.94.94 0 00.45.61 1 1 0 00.51.15 1 1 0 00.86-.49 1 1 0 00-.34-1.37.94.94 0 00-.51-.14zm-6.44 7.97a1 1 0 01-1-.76 1 1 0 01.12-.76 1 1 0 01.61-.45h.24a1 1 0 01.89 1.51l-.06.07a1 1 0 01-.55.39h-.25zm6.43 6.21a1 1 0 00.86-.48 1 1 0 00-.34-1.32 1 1 0 00-.51-.15 1 1 0 00-.86.49 1 1 0 00.34 1.37.94.94 0 00.51.09z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ ShareOutlined.displayName = 'ShareOutlined';
40
+ export default ShareOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function VectorOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace VectorOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default VectorOutlined;
@@ -0,0 +1,37 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+
6
+ for (var p in s) {
7
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
8
+ }
9
+ }
10
+
11
+ return t;
12
+ };
13
+
14
+ return __assign.apply(this, arguments);
15
+ };
16
+
17
+ import * as React from 'react';
18
+ import Icon from 'a-base-icon/lib/Icon';
19
+
20
+ function VectorOutlined(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 16 19",
24
+ xmlns: "http://www.w3.org/2000/svg"
25
+ }, props), /*#__PURE__*/React.createElement("path", {
26
+ d: "M2.167 14h11.666V8.192c0-3.235-2.611-5.859-5.833-5.859s-5.833 2.624-5.833 5.86V14zM8 .667c4.142 0 7.5 3.369 7.5 7.525v7.475H.5V8.192C.5 4.036 3.858.667 8 .667zM5.917 16.5h4.166a2.083 2.083 0 11-4.166 0z",
27
+ fill: "currentColor"
28
+ }));
29
+ };
30
+
31
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
32
+ component: IconNode
33
+ }));
34
+ }
35
+
36
+ VectorOutlined.displayName = 'VectorOutlined';
37
+ export default VectorOutlined;
package/es/index.d.ts CHANGED
@@ -10,6 +10,7 @@ export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
10
10
  export { default as ArrowsRightLeftFilled } from './ArrowsRightLeftFilled';
11
11
  export { default as ArrowsRightLeftOutlined } from './ArrowsRightLeftOutlined';
12
12
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
13
+ export { default as AtOutlined } from './AtOutlined';
13
14
  export { default as BankCardFilled } from './BankCardFilled';
14
15
  export { default as BiscuitFilled } from './BiscuitFilled';
15
16
  export { default as BiscuitOutlined } from './BiscuitOutlined';
@@ -68,6 +69,8 @@ export { default as FileFilled } from './FileFilled';
68
69
  export { default as FileListFilled } from './FileListFilled';
69
70
  export { default as FileOutlined } from './FileOutlined';
70
71
  export { default as FileSearchFilled } from './FileSearchFilled';
72
+ export { default as FilterFilled } from './FilterFilled';
73
+ export { default as FilterOutlined } from './FilterOutlined';
71
74
  export { default as FireFilled } from './FireFilled';
72
75
  export { default as FolderAddOutlined } from './FolderAddOutlined';
73
76
  export { default as FormOutlined } from './FormOutlined';
@@ -84,6 +87,7 @@ export { default as LayerOutlined } from './LayerOutlined';
84
87
  export { default as LeftOutlined } from './LeftOutlined';
85
88
  export { default as LineUpFilled } from './LineUpFilled';
86
89
  export { default as LineUpOutlined } from './LineUpOutlined';
90
+ export { default as LinksOutlined } from './LinksOutlined';
87
91
  export { default as ListCaptionFilled } from './ListCaptionFilled';
88
92
  export { default as ListCaptionOutlined } from './ListCaptionOutlined';
89
93
  export { default as ListFilled } from './ListFilled';
@@ -106,6 +110,7 @@ export { default as OpenMailOutlined } from './OpenMailOutlined';
106
110
  export { default as PencilOutlined } from './PencilOutlined';
107
111
  export { default as PeopleAddFilled } from './PeopleAddFilled';
108
112
  export { default as PeopleAddOutlined } from './PeopleAddOutlined';
113
+ export { default as PeopleCardFilled } from './PeopleCardFilled';
109
114
  export { default as PeopleCloseFilled } from './PeopleCloseFilled';
110
115
  export { default as PeopleConfirmFilled } from './PeopleConfirmFilled';
111
116
  export { default as PeopleEllipsisFilled } from './PeopleEllipsisFilled';
@@ -118,6 +123,7 @@ export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
118
123
  export { default as PeopleSettingFilled } from './PeopleSettingFilled';
119
124
  export { default as PeopleTeamFilled } from './PeopleTeamFilled';
120
125
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
126
+ export { default as PhoneOutlined } from './PhoneOutlined';
121
127
  export { default as PlusFilled } from './PlusFilled';
122
128
  export { default as PlusOutlined } from './PlusOutlined';
123
129
  export { default as QrCodeFilled } from './QrCodeFilled';
@@ -135,6 +141,8 @@ export { default as SettingSquareFilled } from './SettingSquareFilled';
135
141
  export { default as SettingSquareOutlined } from './SettingSquareOutlined';
136
142
  export { default as ShapeFilled } from './ShapeFilled';
137
143
  export { default as ShapeOutlined } from './ShapeOutlined';
144
+ export { default as ShareFilled } from './ShareFilled';
145
+ export { default as ShareOutlined } from './ShareOutlined';
138
146
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
139
147
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
140
148
  export { default as SquareFilled } from './SquareFilled';
@@ -152,5 +160,6 @@ export { default as UnlockFilled } from './UnlockFilled';
152
160
  export { default as UpFilled } from './UpFilled';
153
161
  export { default as UpOutlined } from './UpOutlined';
154
162
  export { default as UpgradeFilled } from './UpgradeFilled';
163
+ export { default as VectorOutlined } from './VectorOutlined';
155
164
  export { default as WalletFilled } from './WalletFilled';
156
165
  export { default as WalletOutlined } from './WalletOutlined';
package/es/index.js CHANGED
@@ -10,6 +10,7 @@ export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
10
10
  export { default as ArrowsRightLeftFilled } from './ArrowsRightLeftFilled';
11
11
  export { default as ArrowsRightLeftOutlined } from './ArrowsRightLeftOutlined';
12
12
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
13
+ export { default as AtOutlined } from './AtOutlined';
13
14
  export { default as BankCardFilled } from './BankCardFilled';
14
15
  export { default as BiscuitFilled } from './BiscuitFilled';
15
16
  export { default as BiscuitOutlined } from './BiscuitOutlined';
@@ -68,6 +69,8 @@ export { default as FileFilled } from './FileFilled';
68
69
  export { default as FileListFilled } from './FileListFilled';
69
70
  export { default as FileOutlined } from './FileOutlined';
70
71
  export { default as FileSearchFilled } from './FileSearchFilled';
72
+ export { default as FilterFilled } from './FilterFilled';
73
+ export { default as FilterOutlined } from './FilterOutlined';
71
74
  export { default as FireFilled } from './FireFilled';
72
75
  export { default as FolderAddOutlined } from './FolderAddOutlined';
73
76
  export { default as FormOutlined } from './FormOutlined';
@@ -84,6 +87,7 @@ export { default as LayerOutlined } from './LayerOutlined';
84
87
  export { default as LeftOutlined } from './LeftOutlined';
85
88
  export { default as LineUpFilled } from './LineUpFilled';
86
89
  export { default as LineUpOutlined } from './LineUpOutlined';
90
+ export { default as LinksOutlined } from './LinksOutlined';
87
91
  export { default as ListCaptionFilled } from './ListCaptionFilled';
88
92
  export { default as ListCaptionOutlined } from './ListCaptionOutlined';
89
93
  export { default as ListFilled } from './ListFilled';
@@ -106,6 +110,7 @@ export { default as OpenMailOutlined } from './OpenMailOutlined';
106
110
  export { default as PencilOutlined } from './PencilOutlined';
107
111
  export { default as PeopleAddFilled } from './PeopleAddFilled';
108
112
  export { default as PeopleAddOutlined } from './PeopleAddOutlined';
113
+ export { default as PeopleCardFilled } from './PeopleCardFilled';
109
114
  export { default as PeopleCloseFilled } from './PeopleCloseFilled';
110
115
  export { default as PeopleConfirmFilled } from './PeopleConfirmFilled';
111
116
  export { default as PeopleEllipsisFilled } from './PeopleEllipsisFilled';
@@ -118,6 +123,7 @@ export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
118
123
  export { default as PeopleSettingFilled } from './PeopleSettingFilled';
119
124
  export { default as PeopleTeamFilled } from './PeopleTeamFilled';
120
125
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
126
+ export { default as PhoneOutlined } from './PhoneOutlined';
121
127
  export { default as PlusFilled } from './PlusFilled';
122
128
  export { default as PlusOutlined } from './PlusOutlined';
123
129
  export { default as QrCodeFilled } from './QrCodeFilled';
@@ -135,6 +141,8 @@ export { default as SettingSquareFilled } from './SettingSquareFilled';
135
141
  export { default as SettingSquareOutlined } from './SettingSquareOutlined';
136
142
  export { default as ShapeFilled } from './ShapeFilled';
137
143
  export { default as ShapeOutlined } from './ShapeOutlined';
144
+ export { default as ShareFilled } from './ShareFilled';
145
+ export { default as ShareOutlined } from './ShareOutlined';
138
146
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
139
147
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
140
148
  export { default as SquareFilled } from './SquareFilled';
@@ -152,5 +160,6 @@ export { default as UnlockFilled } from './UnlockFilled';
152
160
  export { default as UpFilled } from './UpFilled';
153
161
  export { default as UpOutlined } from './UpOutlined';
154
162
  export { default as UpgradeFilled } from './UpgradeFilled';
163
+ export { default as VectorOutlined } from './VectorOutlined';
155
164
  export { default as WalletFilled } from './WalletFilled';
156
165
  export { default as WalletOutlined } from './WalletOutlined';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function AtOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace AtOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default AtOutlined;
@@ -0,0 +1,87 @@
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 AtOutlined(componentProps) {
68
+ var IconNode = function IconNode(props) {
69
+ return React.createElement("svg", __assign({
70
+ viewBox: "0 0 24 24",
71
+ fill: "none",
72
+ xmlns: "http://www.w3.org/2000/svg"
73
+ }, props), React.createElement("path", {
74
+ fillRule: "evenodd",
75
+ clipRule: "evenodd",
76
+ d: "M16.503 8.998v4.666c0 .527.178.906.459 1.15.276.242.634.337.968.337 1.12 0 2.233-1.045 2.233-3.153 0-4.501-3.662-8.163-8.162-8.163-4.501 0-8.163 3.662-8.163 8.163 0 4.5 3.662 8.162 8.163 8.162 1.82 0 3.541-.586 4.979-1.694A.836.836 0 0118 19.791a9.742 9.742 0 01-6 2.042c-5.423 0-9.835-4.412-9.835-9.835 0-5.423 4.412-9.835 9.835-9.835 5.423 0 9.835 4.412 9.835 9.835 0 3.2-1.987 4.825-3.905 4.825-.875 0-1.751-.348-2.346-1.02l-.125-.141-.122.142a4.823 4.823 0 01-3.67 1.696 4.841 4.841 0 01-4.836-4.836v-1.333a4.841 4.841 0 014.836-4.835 4.82 4.82 0 013.625 1.647l.067.075.097-.025a.826.826 0 01.21-.03c.462 0 .836.374.836.835zm-4.835-.83a3.167 3.167 0 00-3.164 3.163v1.333a3.167 3.167 0 003.164 3.164 3.166 3.166 0 003.163-3.164v-1.333a3.167 3.167 0 00-3.163-3.163z",
77
+ fill: "currentColor"
78
+ }));
79
+ };
80
+
81
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
82
+ component: IconNode
83
+ }));
84
+ }
85
+
86
+ AtOutlined.displayName = 'AtOutlined';
87
+ exports["default"] = AtOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function FilterFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace FilterFilled {
4
+ var displayName: string;
5
+ }
6
+ export default FilterFilled;