a-icons 1.0.79 → 1.0.80

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 (41) hide show
  1. package/es/QuestionMarkFilled.d.ts +7 -0
  2. package/es/QuestionMarkFilled.js +40 -0
  3. package/es/ShapArrowLeftOutlined.d.ts +7 -0
  4. package/es/ShapArrowLeftOutlined.js +40 -0
  5. package/es/ShapArrowRightOutlined.d.ts +7 -0
  6. package/es/ShapArrowRightOutlined.js +40 -0
  7. package/es/ShieldFilled.d.ts +7 -0
  8. package/es/ShieldFilled.js +40 -0
  9. package/es/ShieldOutlined.d.ts +7 -0
  10. package/es/ShieldOutlined.js +43 -0
  11. package/es/index.d.ts +5 -0
  12. package/es/index.js +5 -0
  13. package/lib/QuestionMarkFilled.d.ts +7 -0
  14. package/lib/QuestionMarkFilled.js +93 -0
  15. package/lib/ShapArrowLeftOutlined.d.ts +7 -0
  16. package/lib/ShapArrowLeftOutlined.js +93 -0
  17. package/lib/ShapArrowRightOutlined.d.ts +7 -0
  18. package/lib/ShapArrowRightOutlined.js +93 -0
  19. package/lib/ShieldFilled.d.ts +7 -0
  20. package/lib/ShieldFilled.js +93 -0
  21. package/lib/ShieldOutlined.d.ts +7 -0
  22. package/lib/ShieldOutlined.js +96 -0
  23. package/lib/index.d.ts +5 -0
  24. package/lib/index.js +47 -2
  25. package/package.json +2 -2
  26. package/src/QuestionMarkFilled.tsx +20 -0
  27. package/src/ShapArrowLeftOutlined.tsx +20 -0
  28. package/src/ShapArrowRightOutlined.tsx +20 -0
  29. package/src/ShieldFilled.tsx +20 -0
  30. package/src/ShieldOutlined.tsx +24 -0
  31. package/src/index.tsx +5 -0
  32. package/svgs/filled/question-mark-filled.svg +5 -0
  33. package/svgs/filled/shield-filled.svg +5 -0
  34. package/svgs/outlined/shap-arrow-left-outlined.svg +5 -0
  35. package/svgs/outlined/shap-arrow-right-outlined.svg +5 -0
  36. package/svgs/outlined/shield-outlined.svg +8 -0
  37. package/tmpAllSvgs/question-mark-filled.svg +5 -0
  38. package/tmpAllSvgs/shap-arrow-left-outlined.svg +5 -0
  39. package/tmpAllSvgs/shap-arrow-right-outlined.svg +5 -0
  40. package/tmpAllSvgs/shield-filled.svg +5 -0
  41. package/tmpAllSvgs/shield-outlined.svg +8 -0
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function QuestionMarkFilled(componentProps: IconProps): JSX.Element;
4
+ declare namespace QuestionMarkFilled {
5
+ var displayName: string;
6
+ }
7
+ export default QuestionMarkFilled;
@@ -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 QuestionMarkFilled(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: "M12 3a9 9 0 100 18 9 9 0 000-18zM9.882 7.896c.588-.602 1.4-.896 2.436-.896.896 0 1.624.238 2.184.742.56.49.84 1.162.84 2.002 0 .686-.182 1.26-.532 1.708-.126.154-.518.518-1.176 1.092a2.325 2.325 0 00-.588.728 1.88 1.88 0 00-.224.924c0 .146-.118.238-.265.238h-.995a.238.238 0 01-.238-.238c0-.518.084-.966.28-1.33.182-.392.714-.966 1.582-1.736l.238-.266c.252-.322.392-.658.392-1.022 0-.49-.14-.868-.406-1.148-.28-.28-.686-.42-1.19-.42-.63 0-1.092.196-1.372.602a1.806 1.806 0 00-.305.698c-.089.396-.402.73-.808.73s-.744-.331-.679-.732c.111-.68.387-1.237.826-1.676zm1.456 7.574c.196-.196.448-.28.728-.28.294 0 .546.084.742.28a.93.93 0 01.294.714.993.993 0 01-.308.728c-.196.182-.448.28-.728.28-.28 0-.532-.098-.728-.294a.972.972 0 01-.294-.714.93.93 0 01.294-.714z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ QuestionMarkFilled.displayName = 'QuestionMarkFilled';
40
+ export default QuestionMarkFilled;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function ShapArrowLeftOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace ShapArrowLeftOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default ShapArrowLeftOutlined;
@@ -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 ShapArrowLeftOutlined(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 25 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: "M6.833 0a6 6 0 00-6 6v12a6 6 0 006 6h12a6 6 0 006-6V6a6 6 0 00-6-6h-12zm8.132 18.913a.768.768 0 00.607.286.8.8 0 00.608-.287c.336-.381.336-1 0-1.382l-4.873-5.528 4.873-5.529c.336-.382.336-1 0-1.382a.802.802 0 00-.607-.291.802.802 0 00-.608.291l-5.482 6.22c-.335.382-.335 1 0 1.382l5.482 6.22z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ ShapArrowLeftOutlined.displayName = 'ShapArrowLeftOutlined';
40
+ export default ShapArrowLeftOutlined;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function ShapArrowRightOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace ShapArrowRightOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default ShapArrowRightOutlined;
@@ -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 ShapArrowRightOutlined(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 0a6 6 0 016 6v12a6 6 0 01-6 6H6a6 6 0 01-6-6V6a6 6 0 016-6h12zM9.869 18.913a.769.769 0 01-.608.286.8.8 0 01-.608-.287c-.335-.381-.335-1 0-1.382l4.874-5.528-4.874-5.529c-.335-.382-.335-1 0-1.382a.802.802 0 01.608-.291c.229 0 .448.105.608.291l5.481 6.22c.335.382.335 1 0 1.382l-5.481 6.22z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ ShapArrowRightOutlined.displayName = 'ShapArrowRightOutlined';
40
+ export default ShapArrowRightOutlined;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function ShieldFilled(componentProps: IconProps): JSX.Element;
4
+ declare namespace ShieldFilled {
5
+ var displayName: string;
6
+ }
7
+ export default ShieldFilled;
@@ -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 ShieldFilled(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: "M19.4 5.52l-5.89-3.28a3.12 3.12 0 00-3 0L4.6 5.52A3.08 3.08 0 003 8.23v6.35c-.003.26.034.52.11.77a3.26 3.26 0 00-.93 2.31 3.31 3.31 0 001 2.36l2.32 2.21a2.72 2.72 0 003.77 0l1-.91.62-.59a3.14 3.14 0 002.69-.16l5.89-3.28A3.1 3.1 0 0021 14.58V8.23a3.08 3.08 0 00-1.6-2.71zM10.5 19l-1 1-.32.3-1 .92a1.22 1.22 0 01-1.69 0L4.21 19a1.84 1.84 0 01-.09-2.49l.09-.11a1.85 1.85 0 012.61 0l.54.54.54-.54a1.8 1.8 0 011.3-.54c.488 0 .956.194 1.3.54a1.85 1.85 0 010 2.6zm2.76-7.85l4.41-2.45A.84.84 0 0018 7.56a.82.82 0 00-1.15-.32l-4.41 2.45a1 1 0 01-.9 0L7.13 7.24A.82.82 0 006 7.56a.84.84 0 00.33 1.14l4.41 2.45c.136.065.277.122.42.17v2.26a.84.84 0 001.68 0v-2.26a3.7 3.7 0 00.42-.17z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ ShieldFilled.displayName = 'ShieldFilled';
40
+ export default ShieldFilled;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function ShieldOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace ShieldOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default ShieldOutlined;
@@ -0,0 +1,43 @@
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 ShieldOutlined(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: "M19.77 5.19l-5.9-3.27a3.78 3.78 0 00-3.74 0l-5.9 3.27a3.86 3.86 0 00-2 3.37v6.35a4 4 0 00.4 1.72v.05a3.21 3.21 0 00.63 3.62l2.23 2.12a2.6 2.6 0 001.81.73 2.63 2.63 0 001.8-.72l.93-.89a3.81 3.81 0 003.74 0l5.9-3.27a3.86 3.86 0 002-3.37V8.56a3.86 3.86 0 00-1.9-3.37zM9.09 20.5l-.92.88a1.17 1.17 0 01-1.63 0l-2.2-2.1a1.77 1.77 0 011.25-3 1.8 1.8 0 011.25.52l.52.52.51-.52a1.8 1.8 0 011.25-.52 1.77 1.77 0 011.25 3L9.09 20.5zM19 17a2.36 2.36 0 001.25-2.09l-.04-6.35A2.36 2.36 0 0019 6.5l-5.82-3.27a2.32 2.32 0 00-2.28 0L5 6.5a2.36 2.36 0 00-1.23 2.06v6.34a2.3 2.3 0 000 .45 3.23 3.23 0 013.56 0 3.21 3.21 0 014 5l-.09.09a2.33 2.33 0 001.86-.17L19 17z",
30
+ fill: "currentColor"
31
+ }), /*#__PURE__*/React.createElement("path", {
32
+ d: "M16.9 7.64l-4.41 2.45a1 1 0 01-1 0L7.1 7.64A.772.772 0 106.37 9l4.41 2.46c.15.075.308.135.47.18v2.32a.75.75 0 001.5 0v-2.37c.164-.044.322-.108.47-.19L17.63 9a.75.75 0 10-.73-1.31v-.05z",
33
+ fill: "currentColor"
34
+ }));
35
+ };
36
+
37
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
38
+ component: IconNode
39
+ }));
40
+ }
41
+
42
+ ShieldOutlined.displayName = 'ShieldOutlined';
43
+ export default ShieldOutlined;
package/es/index.d.ts CHANGED
@@ -142,6 +142,7 @@ export { default as PlayFilled } from './PlayFilled';
142
142
  export { default as PlusFilled } from './PlusFilled';
143
143
  export { default as PlusOutlined } from './PlusOutlined';
144
144
  export { default as QrCodeFilled } from './QrCodeFilled';
145
+ export { default as QuestionMarkFilled } from './QuestionMarkFilled';
145
146
  export { default as RefreshFilled } from './RefreshFilled';
146
147
  export { default as RefreshOutlined } from './RefreshOutlined';
147
148
  export { default as RetryRefreshFilled } from './RetryRefreshFilled';
@@ -154,10 +155,14 @@ export { default as SettingFilled } from './SettingFilled';
154
155
  export { default as SettingOutlined } from './SettingOutlined';
155
156
  export { default as SettingSquareFilled } from './SettingSquareFilled';
156
157
  export { default as SettingSquareOutlined } from './SettingSquareOutlined';
158
+ export { default as ShapArrowLeftOutlined } from './ShapArrowLeftOutlined';
159
+ export { default as ShapArrowRightOutlined } from './ShapArrowRightOutlined';
157
160
  export { default as ShapeFilled } from './ShapeFilled';
158
161
  export { default as ShapeOutlined } from './ShapeOutlined';
159
162
  export { default as ShareFilled } from './ShareFilled';
160
163
  export { default as ShareOutlined } from './ShareOutlined';
164
+ export { default as ShieldFilled } from './ShieldFilled';
165
+ export { default as ShieldOutlined } from './ShieldOutlined';
161
166
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
162
167
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
163
168
  export { default as SquareFilled } from './SquareFilled';
package/es/index.js CHANGED
@@ -142,6 +142,7 @@ export { default as PlayFilled } from './PlayFilled';
142
142
  export { default as PlusFilled } from './PlusFilled';
143
143
  export { default as PlusOutlined } from './PlusOutlined';
144
144
  export { default as QrCodeFilled } from './QrCodeFilled';
145
+ export { default as QuestionMarkFilled } from './QuestionMarkFilled';
145
146
  export { default as RefreshFilled } from './RefreshFilled';
146
147
  export { default as RefreshOutlined } from './RefreshOutlined';
147
148
  export { default as RetryRefreshFilled } from './RetryRefreshFilled';
@@ -154,10 +155,14 @@ export { default as SettingFilled } from './SettingFilled';
154
155
  export { default as SettingOutlined } from './SettingOutlined';
155
156
  export { default as SettingSquareFilled } from './SettingSquareFilled';
156
157
  export { default as SettingSquareOutlined } from './SettingSquareOutlined';
158
+ export { default as ShapArrowLeftOutlined } from './ShapArrowLeftOutlined';
159
+ export { default as ShapArrowRightOutlined } from './ShapArrowRightOutlined';
157
160
  export { default as ShapeFilled } from './ShapeFilled';
158
161
  export { default as ShapeOutlined } from './ShapeOutlined';
159
162
  export { default as ShareFilled } from './ShareFilled';
160
163
  export { default as ShareOutlined } from './ShareOutlined';
164
+ export { default as ShieldFilled } from './ShieldFilled';
165
+ export { default as ShieldOutlined } from './ShieldOutlined';
161
166
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
162
167
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
163
168
  export { default as SquareFilled } from './SquareFilled';
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function QuestionMarkFilled(componentProps: IconProps): JSX.Element;
4
+ declare namespace QuestionMarkFilled {
5
+ var displayName: string;
6
+ }
7
+ export default QuestionMarkFilled;
@@ -0,0 +1,93 @@
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
+ var desc = Object.getOwnPropertyDescriptor(m, k);
22
+
23
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
24
+ desc = {
25
+ enumerable: true,
26
+ get: function get() {
27
+ return m[k];
28
+ }
29
+ };
30
+ }
31
+
32
+ Object.defineProperty(o, k2, desc);
33
+ } : function (o, m, k, k2) {
34
+ if (k2 === undefined) k2 = k;
35
+ o[k2] = m[k];
36
+ });
37
+
38
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
39
+ Object.defineProperty(o, "default", {
40
+ enumerable: true,
41
+ value: v
42
+ });
43
+ } : function (o, v) {
44
+ o["default"] = v;
45
+ });
46
+
47
+ var __importStar = this && this.__importStar || function (mod) {
48
+ if (mod && mod.__esModule) return mod;
49
+ var result = {};
50
+ if (mod != null) for (var k in mod) {
51
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
52
+ }
53
+
54
+ __setModuleDefault(result, mod);
55
+
56
+ return result;
57
+ };
58
+
59
+ var __importDefault = this && this.__importDefault || function (mod) {
60
+ return mod && mod.__esModule ? mod : {
61
+ "default": mod
62
+ };
63
+ };
64
+
65
+ Object.defineProperty(exports, "__esModule", {
66
+ value: true
67
+ });
68
+
69
+ var React = __importStar(require("react"));
70
+
71
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
72
+
73
+ function QuestionMarkFilled(componentProps) {
74
+ var IconNode = function IconNode(props) {
75
+ return React.createElement("svg", __assign({
76
+ viewBox: "0 0 24 24",
77
+ fill: "none",
78
+ xmlns: "http://www.w3.org/2000/svg"
79
+ }, props), React.createElement("path", {
80
+ fillRule: "evenodd",
81
+ clipRule: "evenodd",
82
+ d: "M12 3a9 9 0 100 18 9 9 0 000-18zM9.882 7.896c.588-.602 1.4-.896 2.436-.896.896 0 1.624.238 2.184.742.56.49.84 1.162.84 2.002 0 .686-.182 1.26-.532 1.708-.126.154-.518.518-1.176 1.092a2.325 2.325 0 00-.588.728 1.88 1.88 0 00-.224.924c0 .146-.118.238-.265.238h-.995a.238.238 0 01-.238-.238c0-.518.084-.966.28-1.33.182-.392.714-.966 1.582-1.736l.238-.266c.252-.322.392-.658.392-1.022 0-.49-.14-.868-.406-1.148-.28-.28-.686-.42-1.19-.42-.63 0-1.092.196-1.372.602a1.806 1.806 0 00-.305.698c-.089.396-.402.73-.808.73s-.744-.331-.679-.732c.111-.68.387-1.237.826-1.676zm1.456 7.574c.196-.196.448-.28.728-.28.294 0 .546.084.742.28a.93.93 0 01.294.714.993.993 0 01-.308.728c-.196.182-.448.28-.728.28-.28 0-.532-.098-.728-.294a.972.972 0 01-.294-.714.93.93 0 01.294-.714z",
83
+ fill: "currentColor"
84
+ }));
85
+ };
86
+
87
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
88
+ component: IconNode
89
+ }));
90
+ }
91
+
92
+ QuestionMarkFilled.displayName = 'QuestionMarkFilled';
93
+ exports["default"] = QuestionMarkFilled;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function ShapArrowLeftOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace ShapArrowLeftOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default ShapArrowLeftOutlined;
@@ -0,0 +1,93 @@
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
+ var desc = Object.getOwnPropertyDescriptor(m, k);
22
+
23
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
24
+ desc = {
25
+ enumerable: true,
26
+ get: function get() {
27
+ return m[k];
28
+ }
29
+ };
30
+ }
31
+
32
+ Object.defineProperty(o, k2, desc);
33
+ } : function (o, m, k, k2) {
34
+ if (k2 === undefined) k2 = k;
35
+ o[k2] = m[k];
36
+ });
37
+
38
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
39
+ Object.defineProperty(o, "default", {
40
+ enumerable: true,
41
+ value: v
42
+ });
43
+ } : function (o, v) {
44
+ o["default"] = v;
45
+ });
46
+
47
+ var __importStar = this && this.__importStar || function (mod) {
48
+ if (mod && mod.__esModule) return mod;
49
+ var result = {};
50
+ if (mod != null) for (var k in mod) {
51
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
52
+ }
53
+
54
+ __setModuleDefault(result, mod);
55
+
56
+ return result;
57
+ };
58
+
59
+ var __importDefault = this && this.__importDefault || function (mod) {
60
+ return mod && mod.__esModule ? mod : {
61
+ "default": mod
62
+ };
63
+ };
64
+
65
+ Object.defineProperty(exports, "__esModule", {
66
+ value: true
67
+ });
68
+
69
+ var React = __importStar(require("react"));
70
+
71
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
72
+
73
+ function ShapArrowLeftOutlined(componentProps) {
74
+ var IconNode = function IconNode(props) {
75
+ return React.createElement("svg", __assign({
76
+ viewBox: "0 0 25 24",
77
+ fill: "none",
78
+ xmlns: "http://www.w3.org/2000/svg"
79
+ }, props), React.createElement("path", {
80
+ fillRule: "evenodd",
81
+ clipRule: "evenodd",
82
+ d: "M6.833 0a6 6 0 00-6 6v12a6 6 0 006 6h12a6 6 0 006-6V6a6 6 0 00-6-6h-12zm8.132 18.913a.768.768 0 00.607.286.8.8 0 00.608-.287c.336-.381.336-1 0-1.382l-4.873-5.528 4.873-5.529c.336-.382.336-1 0-1.382a.802.802 0 00-.607-.291.802.802 0 00-.608.291l-5.482 6.22c-.335.382-.335 1 0 1.382l5.482 6.22z",
83
+ fill: "currentColor"
84
+ }));
85
+ };
86
+
87
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
88
+ component: IconNode
89
+ }));
90
+ }
91
+
92
+ ShapArrowLeftOutlined.displayName = 'ShapArrowLeftOutlined';
93
+ exports["default"] = ShapArrowLeftOutlined;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function ShapArrowRightOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace ShapArrowRightOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default ShapArrowRightOutlined;
@@ -0,0 +1,93 @@
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
+ var desc = Object.getOwnPropertyDescriptor(m, k);
22
+
23
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
24
+ desc = {
25
+ enumerable: true,
26
+ get: function get() {
27
+ return m[k];
28
+ }
29
+ };
30
+ }
31
+
32
+ Object.defineProperty(o, k2, desc);
33
+ } : function (o, m, k, k2) {
34
+ if (k2 === undefined) k2 = k;
35
+ o[k2] = m[k];
36
+ });
37
+
38
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
39
+ Object.defineProperty(o, "default", {
40
+ enumerable: true,
41
+ value: v
42
+ });
43
+ } : function (o, v) {
44
+ o["default"] = v;
45
+ });
46
+
47
+ var __importStar = this && this.__importStar || function (mod) {
48
+ if (mod && mod.__esModule) return mod;
49
+ var result = {};
50
+ if (mod != null) for (var k in mod) {
51
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
52
+ }
53
+
54
+ __setModuleDefault(result, mod);
55
+
56
+ return result;
57
+ };
58
+
59
+ var __importDefault = this && this.__importDefault || function (mod) {
60
+ return mod && mod.__esModule ? mod : {
61
+ "default": mod
62
+ };
63
+ };
64
+
65
+ Object.defineProperty(exports, "__esModule", {
66
+ value: true
67
+ });
68
+
69
+ var React = __importStar(require("react"));
70
+
71
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
72
+
73
+ function ShapArrowRightOutlined(componentProps) {
74
+ var IconNode = function IconNode(props) {
75
+ return React.createElement("svg", __assign({
76
+ viewBox: "0 0 24 24",
77
+ fill: "none",
78
+ xmlns: "http://www.w3.org/2000/svg"
79
+ }, props), React.createElement("path", {
80
+ fillRule: "evenodd",
81
+ clipRule: "evenodd",
82
+ d: "M18 0a6 6 0 016 6v12a6 6 0 01-6 6H6a6 6 0 01-6-6V6a6 6 0 016-6h12zM9.869 18.913a.769.769 0 01-.608.286.8.8 0 01-.608-.287c-.335-.381-.335-1 0-1.382l4.874-5.528-4.874-5.529c-.335-.382-.335-1 0-1.382a.802.802 0 01.608-.291c.229 0 .448.105.608.291l5.481 6.22c.335.382.335 1 0 1.382l-5.481 6.22z",
83
+ fill: "currentColor"
84
+ }));
85
+ };
86
+
87
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
88
+ component: IconNode
89
+ }));
90
+ }
91
+
92
+ ShapArrowRightOutlined.displayName = 'ShapArrowRightOutlined';
93
+ exports["default"] = ShapArrowRightOutlined;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function ShieldFilled(componentProps: IconProps): JSX.Element;
4
+ declare namespace ShieldFilled {
5
+ var displayName: string;
6
+ }
7
+ export default ShieldFilled;
@@ -0,0 +1,93 @@
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
+ var desc = Object.getOwnPropertyDescriptor(m, k);
22
+
23
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
24
+ desc = {
25
+ enumerable: true,
26
+ get: function get() {
27
+ return m[k];
28
+ }
29
+ };
30
+ }
31
+
32
+ Object.defineProperty(o, k2, desc);
33
+ } : function (o, m, k, k2) {
34
+ if (k2 === undefined) k2 = k;
35
+ o[k2] = m[k];
36
+ });
37
+
38
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
39
+ Object.defineProperty(o, "default", {
40
+ enumerable: true,
41
+ value: v
42
+ });
43
+ } : function (o, v) {
44
+ o["default"] = v;
45
+ });
46
+
47
+ var __importStar = this && this.__importStar || function (mod) {
48
+ if (mod && mod.__esModule) return mod;
49
+ var result = {};
50
+ if (mod != null) for (var k in mod) {
51
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
52
+ }
53
+
54
+ __setModuleDefault(result, mod);
55
+
56
+ return result;
57
+ };
58
+
59
+ var __importDefault = this && this.__importDefault || function (mod) {
60
+ return mod && mod.__esModule ? mod : {
61
+ "default": mod
62
+ };
63
+ };
64
+
65
+ Object.defineProperty(exports, "__esModule", {
66
+ value: true
67
+ });
68
+
69
+ var React = __importStar(require("react"));
70
+
71
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
72
+
73
+ function ShieldFilled(componentProps) {
74
+ var IconNode = function IconNode(props) {
75
+ return React.createElement("svg", __assign({
76
+ viewBox: "0 0 24 24",
77
+ fill: "none",
78
+ xmlns: "http://www.w3.org/2000/svg"
79
+ }, props), React.createElement("path", {
80
+ fillRule: "evenodd",
81
+ clipRule: "evenodd",
82
+ d: "M19.4 5.52l-5.89-3.28a3.12 3.12 0 00-3 0L4.6 5.52A3.08 3.08 0 003 8.23v6.35c-.003.26.034.52.11.77a3.26 3.26 0 00-.93 2.31 3.31 3.31 0 001 2.36l2.32 2.21a2.72 2.72 0 003.77 0l1-.91.62-.59a3.14 3.14 0 002.69-.16l5.89-3.28A3.1 3.1 0 0021 14.58V8.23a3.08 3.08 0 00-1.6-2.71zM10.5 19l-1 1-.32.3-1 .92a1.22 1.22 0 01-1.69 0L4.21 19a1.84 1.84 0 01-.09-2.49l.09-.11a1.85 1.85 0 012.61 0l.54.54.54-.54a1.8 1.8 0 011.3-.54c.488 0 .956.194 1.3.54a1.85 1.85 0 010 2.6zm2.76-7.85l4.41-2.45A.84.84 0 0018 7.56a.82.82 0 00-1.15-.32l-4.41 2.45a1 1 0 01-.9 0L7.13 7.24A.82.82 0 006 7.56a.84.84 0 00.33 1.14l4.41 2.45c.136.065.277.122.42.17v2.26a.84.84 0 001.68 0v-2.26a3.7 3.7 0 00.42-.17z",
83
+ fill: "currentColor"
84
+ }));
85
+ };
86
+
87
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
88
+ component: IconNode
89
+ }));
90
+ }
91
+
92
+ ShieldFilled.displayName = 'ShieldFilled';
93
+ exports["default"] = ShieldFilled;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function ShieldOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace ShieldOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default ShieldOutlined;
@@ -0,0 +1,96 @@
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
+ var desc = Object.getOwnPropertyDescriptor(m, k);
22
+
23
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
24
+ desc = {
25
+ enumerable: true,
26
+ get: function get() {
27
+ return m[k];
28
+ }
29
+ };
30
+ }
31
+
32
+ Object.defineProperty(o, k2, desc);
33
+ } : function (o, m, k, k2) {
34
+ if (k2 === undefined) k2 = k;
35
+ o[k2] = m[k];
36
+ });
37
+
38
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
39
+ Object.defineProperty(o, "default", {
40
+ enumerable: true,
41
+ value: v
42
+ });
43
+ } : function (o, v) {
44
+ o["default"] = v;
45
+ });
46
+
47
+ var __importStar = this && this.__importStar || function (mod) {
48
+ if (mod && mod.__esModule) return mod;
49
+ var result = {};
50
+ if (mod != null) for (var k in mod) {
51
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
52
+ }
53
+
54
+ __setModuleDefault(result, mod);
55
+
56
+ return result;
57
+ };
58
+
59
+ var __importDefault = this && this.__importDefault || function (mod) {
60
+ return mod && mod.__esModule ? mod : {
61
+ "default": mod
62
+ };
63
+ };
64
+
65
+ Object.defineProperty(exports, "__esModule", {
66
+ value: true
67
+ });
68
+
69
+ var React = __importStar(require("react"));
70
+
71
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
72
+
73
+ function ShieldOutlined(componentProps) {
74
+ var IconNode = function IconNode(props) {
75
+ return React.createElement("svg", __assign({
76
+ viewBox: "0 0 24 24",
77
+ fill: "none",
78
+ xmlns: "http://www.w3.org/2000/svg"
79
+ }, props), React.createElement("path", {
80
+ fillRule: "evenodd",
81
+ clipRule: "evenodd",
82
+ d: "M19.77 5.19l-5.9-3.27a3.78 3.78 0 00-3.74 0l-5.9 3.27a3.86 3.86 0 00-2 3.37v6.35a4 4 0 00.4 1.72v.05a3.21 3.21 0 00.63 3.62l2.23 2.12a2.6 2.6 0 001.81.73 2.63 2.63 0 001.8-.72l.93-.89a3.81 3.81 0 003.74 0l5.9-3.27a3.86 3.86 0 002-3.37V8.56a3.86 3.86 0 00-1.9-3.37zM9.09 20.5l-.92.88a1.17 1.17 0 01-1.63 0l-2.2-2.1a1.77 1.77 0 011.25-3 1.8 1.8 0 011.25.52l.52.52.51-.52a1.8 1.8 0 011.25-.52 1.77 1.77 0 011.25 3L9.09 20.5zM19 17a2.36 2.36 0 001.25-2.09l-.04-6.35A2.36 2.36 0 0019 6.5l-5.82-3.27a2.32 2.32 0 00-2.28 0L5 6.5a2.36 2.36 0 00-1.23 2.06v6.34a2.3 2.3 0 000 .45 3.23 3.23 0 013.56 0 3.21 3.21 0 014 5l-.09.09a2.33 2.33 0 001.86-.17L19 17z",
83
+ fill: "currentColor"
84
+ }), React.createElement("path", {
85
+ d: "M16.9 7.64l-4.41 2.45a1 1 0 01-1 0L7.1 7.64A.772.772 0 106.37 9l4.41 2.46c.15.075.308.135.47.18v2.32a.75.75 0 001.5 0v-2.37c.164-.044.322-.108.47-.19L17.63 9a.75.75 0 10-.73-1.31v-.05z",
86
+ fill: "currentColor"
87
+ }));
88
+ };
89
+
90
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
91
+ component: IconNode
92
+ }));
93
+ }
94
+
95
+ ShieldOutlined.displayName = 'ShieldOutlined';
96
+ exports["default"] = ShieldOutlined;
package/lib/index.d.ts CHANGED
@@ -142,6 +142,7 @@ export { default as PlayFilled } from './PlayFilled';
142
142
  export { default as PlusFilled } from './PlusFilled';
143
143
  export { default as PlusOutlined } from './PlusOutlined';
144
144
  export { default as QrCodeFilled } from './QrCodeFilled';
145
+ export { default as QuestionMarkFilled } from './QuestionMarkFilled';
145
146
  export { default as RefreshFilled } from './RefreshFilled';
146
147
  export { default as RefreshOutlined } from './RefreshOutlined';
147
148
  export { default as RetryRefreshFilled } from './RetryRefreshFilled';
@@ -154,10 +155,14 @@ export { default as SettingFilled } from './SettingFilled';
154
155
  export { default as SettingOutlined } from './SettingOutlined';
155
156
  export { default as SettingSquareFilled } from './SettingSquareFilled';
156
157
  export { default as SettingSquareOutlined } from './SettingSquareOutlined';
158
+ export { default as ShapArrowLeftOutlined } from './ShapArrowLeftOutlined';
159
+ export { default as ShapArrowRightOutlined } from './ShapArrowRightOutlined';
157
160
  export { default as ShapeFilled } from './ShapeFilled';
158
161
  export { default as ShapeOutlined } from './ShapeOutlined';
159
162
  export { default as ShareFilled } from './ShareFilled';
160
163
  export { default as ShareOutlined } from './ShareOutlined';
164
+ export { default as ShieldFilled } from './ShieldFilled';
165
+ export { default as ShieldOutlined } from './ShieldOutlined';
161
166
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
162
167
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
163
168
  export { default as SquareFilled } from './SquareFilled';
package/lib/index.js CHANGED
@@ -11,8 +11,8 @@ Object.defineProperty(exports, "__esModule", {
11
11
  });
12
12
  exports.ComputerOutlined = exports.ComputerFilled = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.CirclePlusFilled = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BankCardFilled = exports.AtOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddFilled = exports.ImpassabilityFilled = void 0;
13
13
  exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.KeyFilled = exports.InviteFriendFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GiftFilled = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FormOutlined = exports.FolderAddOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFilled = exports.FileDownloadLineOutlined = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = exports.EarthOutlined = exports.EarthFilled = exports.DownloadOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DashboardOutlined = exports.DashboardFilled = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = void 0;
14
- exports.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RetryRefreshFilled = exports.RefreshOutlined = exports.RefreshFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LineUpOutlined = exports.LineUpFilled = void 0;
15
- exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SearchOutlined = exports.SearchFilled = void 0;
14
+ exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RetryRefreshFilled = exports.RefreshOutlined = exports.RefreshFilled = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LineUpOutlined = exports.LineUpFilled = void 0;
15
+ exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightOutlined = exports.ShapArrowLeftOutlined = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = void 0;
16
16
 
17
17
  var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
18
18
 
@@ -1310,6 +1310,15 @@ Object.defineProperty(exports, "QrCodeFilled", {
1310
1310
  }
1311
1311
  });
1312
1312
 
1313
+ var QuestionMarkFilled_1 = require("./QuestionMarkFilled");
1314
+
1315
+ Object.defineProperty(exports, "QuestionMarkFilled", {
1316
+ enumerable: true,
1317
+ get: function get() {
1318
+ return __importDefault(QuestionMarkFilled_1)["default"];
1319
+ }
1320
+ });
1321
+
1313
1322
  var RefreshFilled_1 = require("./RefreshFilled");
1314
1323
 
1315
1324
  Object.defineProperty(exports, "RefreshFilled", {
@@ -1418,6 +1427,24 @@ Object.defineProperty(exports, "SettingSquareOutlined", {
1418
1427
  }
1419
1428
  });
1420
1429
 
1430
+ var ShapArrowLeftOutlined_1 = require("./ShapArrowLeftOutlined");
1431
+
1432
+ Object.defineProperty(exports, "ShapArrowLeftOutlined", {
1433
+ enumerable: true,
1434
+ get: function get() {
1435
+ return __importDefault(ShapArrowLeftOutlined_1)["default"];
1436
+ }
1437
+ });
1438
+
1439
+ var ShapArrowRightOutlined_1 = require("./ShapArrowRightOutlined");
1440
+
1441
+ Object.defineProperty(exports, "ShapArrowRightOutlined", {
1442
+ enumerable: true,
1443
+ get: function get() {
1444
+ return __importDefault(ShapArrowRightOutlined_1)["default"];
1445
+ }
1446
+ });
1447
+
1421
1448
  var ShapeFilled_1 = require("./ShapeFilled");
1422
1449
 
1423
1450
  Object.defineProperty(exports, "ShapeFilled", {
@@ -1454,6 +1481,24 @@ Object.defineProperty(exports, "ShareOutlined", {
1454
1481
  }
1455
1482
  });
1456
1483
 
1484
+ var ShieldFilled_1 = require("./ShieldFilled");
1485
+
1486
+ Object.defineProperty(exports, "ShieldFilled", {
1487
+ enumerable: true,
1488
+ get: function get() {
1489
+ return __importDefault(ShieldFilled_1)["default"];
1490
+ }
1491
+ });
1492
+
1493
+ var ShieldOutlined_1 = require("./ShieldOutlined");
1494
+
1495
+ Object.defineProperty(exports, "ShieldOutlined", {
1496
+ enumerable: true,
1497
+ get: function get() {
1498
+ return __importDefault(ShieldOutlined_1)["default"];
1499
+ }
1500
+ });
1501
+
1457
1502
  var ShopKeeperFilled_1 = require("./ShopKeeperFilled");
1458
1503
 
1459
1504
  Object.defineProperty(exports, "ShopKeeperFilled", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.0.79",
3
+ "version": "1.0.80",
4
4
  "repository": "git@github.com:SPOTEC-LTD/assui.git",
5
5
  "author": "jason <usochen@gmail.com>",
6
6
  "main": "./lib/index.js",
@@ -22,5 +22,5 @@
22
22
  "peerDependencies": {
23
23
  "assui": "^2.0.2"
24
24
  },
25
- "gitHead": "6d1866af978a5138ed66cc995dbb450564d60a60"
25
+ "gitHead": "edb141713b468cd0fdf21f7c8b5c846f8ead9781"
26
26
  }
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function QuestionMarkFilled(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <path
8
+ fillRule="evenodd"
9
+ clipRule="evenodd"
10
+ d="M12 3a9 9 0 100 18 9 9 0 000-18zM9.882 7.896c.588-.602 1.4-.896 2.436-.896.896 0 1.624.238 2.184.742.56.49.84 1.162.84 2.002 0 .686-.182 1.26-.532 1.708-.126.154-.518.518-1.176 1.092a2.325 2.325 0 00-.588.728 1.88 1.88 0 00-.224.924c0 .146-.118.238-.265.238h-.995a.238.238 0 01-.238-.238c0-.518.084-.966.28-1.33.182-.392.714-.966 1.582-1.736l.238-.266c.252-.322.392-.658.392-1.022 0-.49-.14-.868-.406-1.148-.28-.28-.686-.42-1.19-.42-.63 0-1.092.196-1.372.602a1.806 1.806 0 00-.305.698c-.089.396-.402.73-.808.73s-.744-.331-.679-.732c.111-.68.387-1.237.826-1.676zm1.456 7.574c.196-.196.448-.28.728-.28.294 0 .546.084.742.28a.93.93 0 01.294.714.993.993 0 01-.308.728c-.196.182-.448.28-.728.28-.28 0-.532-.098-.728-.294a.972.972 0 01-.294-.714.93.93 0 01.294-.714z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ );
15
+
16
+ return <Icon {...componentProps} component={IconNode} />;
17
+ }
18
+
19
+ QuestionMarkFilled.displayName = 'QuestionMarkFilled';
20
+ export default QuestionMarkFilled;
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function ShapArrowLeftOutlined(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <path
8
+ fillRule="evenodd"
9
+ clipRule="evenodd"
10
+ d="M6.833 0a6 6 0 00-6 6v12a6 6 0 006 6h12a6 6 0 006-6V6a6 6 0 00-6-6h-12zm8.132 18.913a.768.768 0 00.607.286.8.8 0 00.608-.287c.336-.381.336-1 0-1.382l-4.873-5.528 4.873-5.529c.336-.382.336-1 0-1.382a.802.802 0 00-.607-.291.802.802 0 00-.608.291l-5.482 6.22c-.335.382-.335 1 0 1.382l5.482 6.22z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ );
15
+
16
+ return <Icon {...componentProps} component={IconNode} />;
17
+ }
18
+
19
+ ShapArrowLeftOutlined.displayName = 'ShapArrowLeftOutlined';
20
+ export default ShapArrowLeftOutlined;
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function ShapArrowRightOutlined(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <path
8
+ fillRule="evenodd"
9
+ clipRule="evenodd"
10
+ d="M18 0a6 6 0 016 6v12a6 6 0 01-6 6H6a6 6 0 01-6-6V6a6 6 0 016-6h12zM9.869 18.913a.769.769 0 01-.608.286.8.8 0 01-.608-.287c-.335-.381-.335-1 0-1.382l4.874-5.528-4.874-5.529c-.335-.382-.335-1 0-1.382a.802.802 0 01.608-.291c.229 0 .448.105.608.291l5.481 6.22c.335.382.335 1 0 1.382l-5.481 6.22z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ );
15
+
16
+ return <Icon {...componentProps} component={IconNode} />;
17
+ }
18
+
19
+ ShapArrowRightOutlined.displayName = 'ShapArrowRightOutlined';
20
+ export default ShapArrowRightOutlined;
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function ShieldFilled(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <path
8
+ fillRule="evenodd"
9
+ clipRule="evenodd"
10
+ d="M19.4 5.52l-5.89-3.28a3.12 3.12 0 00-3 0L4.6 5.52A3.08 3.08 0 003 8.23v6.35c-.003.26.034.52.11.77a3.26 3.26 0 00-.93 2.31 3.31 3.31 0 001 2.36l2.32 2.21a2.72 2.72 0 003.77 0l1-.91.62-.59a3.14 3.14 0 002.69-.16l5.89-3.28A3.1 3.1 0 0021 14.58V8.23a3.08 3.08 0 00-1.6-2.71zM10.5 19l-1 1-.32.3-1 .92a1.22 1.22 0 01-1.69 0L4.21 19a1.84 1.84 0 01-.09-2.49l.09-.11a1.85 1.85 0 012.61 0l.54.54.54-.54a1.8 1.8 0 011.3-.54c.488 0 .956.194 1.3.54a1.85 1.85 0 010 2.6zm2.76-7.85l4.41-2.45A.84.84 0 0018 7.56a.82.82 0 00-1.15-.32l-4.41 2.45a1 1 0 01-.9 0L7.13 7.24A.82.82 0 006 7.56a.84.84 0 00.33 1.14l4.41 2.45c.136.065.277.122.42.17v2.26a.84.84 0 001.68 0v-2.26a3.7 3.7 0 00.42-.17z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ );
15
+
16
+ return <Icon {...componentProps} component={IconNode} />;
17
+ }
18
+
19
+ ShieldFilled.displayName = 'ShieldFilled';
20
+ export default ShieldFilled;
@@ -0,0 +1,24 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function ShieldOutlined(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <path
8
+ fillRule="evenodd"
9
+ clipRule="evenodd"
10
+ d="M19.77 5.19l-5.9-3.27a3.78 3.78 0 00-3.74 0l-5.9 3.27a3.86 3.86 0 00-2 3.37v6.35a4 4 0 00.4 1.72v.05a3.21 3.21 0 00.63 3.62l2.23 2.12a2.6 2.6 0 001.81.73 2.63 2.63 0 001.8-.72l.93-.89a3.81 3.81 0 003.74 0l5.9-3.27a3.86 3.86 0 002-3.37V8.56a3.86 3.86 0 00-1.9-3.37zM9.09 20.5l-.92.88a1.17 1.17 0 01-1.63 0l-2.2-2.1a1.77 1.77 0 011.25-3 1.8 1.8 0 011.25.52l.52.52.51-.52a1.8 1.8 0 011.25-.52 1.77 1.77 0 011.25 3L9.09 20.5zM19 17a2.36 2.36 0 001.25-2.09l-.04-6.35A2.36 2.36 0 0019 6.5l-5.82-3.27a2.32 2.32 0 00-2.28 0L5 6.5a2.36 2.36 0 00-1.23 2.06v6.34a2.3 2.3 0 000 .45 3.23 3.23 0 013.56 0 3.21 3.21 0 014 5l-.09.09a2.33 2.33 0 001.86-.17L19 17z"
11
+ fill="currentColor"
12
+ />
13
+ <path
14
+ d="M16.9 7.64l-4.41 2.45a1 1 0 01-1 0L7.1 7.64A.772.772 0 106.37 9l4.41 2.46c.15.075.308.135.47.18v2.32a.75.75 0 001.5 0v-2.37c.164-.044.322-.108.47-.19L17.63 9a.75.75 0 10-.73-1.31v-.05z"
15
+ fill="currentColor"
16
+ />
17
+ </svg>
18
+ );
19
+
20
+ return <Icon {...componentProps} component={IconNode} />;
21
+ }
22
+
23
+ ShieldOutlined.displayName = 'ShieldOutlined';
24
+ export default ShieldOutlined;
package/src/index.tsx CHANGED
@@ -142,6 +142,7 @@ export { default as PlayFilled } from './PlayFilled';
142
142
  export { default as PlusFilled } from './PlusFilled';
143
143
  export { default as PlusOutlined } from './PlusOutlined';
144
144
  export { default as QrCodeFilled } from './QrCodeFilled';
145
+ export { default as QuestionMarkFilled } from './QuestionMarkFilled';
145
146
  export { default as RefreshFilled } from './RefreshFilled';
146
147
  export { default as RefreshOutlined } from './RefreshOutlined';
147
148
  export { default as RetryRefreshFilled } from './RetryRefreshFilled';
@@ -154,10 +155,14 @@ export { default as SettingFilled } from './SettingFilled';
154
155
  export { default as SettingOutlined } from './SettingOutlined';
155
156
  export { default as SettingSquareFilled } from './SettingSquareFilled';
156
157
  export { default as SettingSquareOutlined } from './SettingSquareOutlined';
158
+ export { default as ShapArrowLeftOutlined } from './ShapArrowLeftOutlined';
159
+ export { default as ShapArrowRightOutlined } from './ShapArrowRightOutlined';
157
160
  export { default as ShapeFilled } from './ShapeFilled';
158
161
  export { default as ShapeOutlined } from './ShapeOutlined';
159
162
  export { default as ShareFilled } from './ShareFilled';
160
163
  export { default as ShareOutlined } from './ShareOutlined';
164
+ export { default as ShieldFilled } from './ShieldFilled';
165
+ export { default as ShieldOutlined } from './ShieldOutlined';
161
166
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
162
167
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
163
168
  export { default as SquareFilled } from './SquareFilled';
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM9.882 7.896C10.47 7.294 11.282 7 12.318 7C13.214 7 13.942 7.238 14.502 7.742C15.062 8.232 15.342 8.904 15.342 9.744C15.342 10.43 15.16 11.004 14.81 11.452C14.684 11.606 14.292 11.97 13.634 12.544C13.368 12.768 13.172 13.02 13.046 13.272C12.892 13.552 12.822 13.86 12.822 14.196C12.822 14.3421 12.7035 14.434 12.5574 14.434H11.562C11.4306 14.434 11.324 14.3274 11.324 14.196C11.324 13.678 11.408 13.23 11.604 12.866C11.786 12.474 12.318 11.9 13.186 11.13L13.424 10.864C13.676 10.542 13.816 10.206 13.816 9.842C13.816 9.352 13.676 8.974 13.41 8.694C13.13 8.414 12.724 8.274 12.22 8.274C11.59 8.274 11.128 8.47 10.848 8.876C10.7066 9.06459 10.6048 9.29728 10.5428 9.57407C10.454 9.97017 10.1409 10.304 9.735 10.304C9.32907 10.304 8.99088 9.97253 9.05632 9.57191C9.16736 8.8921 9.44259 8.33541 9.882 7.896ZM11.338 15.47C11.534 15.274 11.786 15.19 12.066 15.19C12.36 15.19 12.612 15.274 12.808 15.47C13.004 15.652 13.102 15.89 13.102 16.184C13.102 16.478 12.99 16.716 12.794 16.912C12.598 17.094 12.346 17.192 12.066 17.192C11.786 17.192 11.534 17.094 11.338 16.898C11.142 16.702 11.044 16.464 11.044 16.184C11.044 15.89 11.142 15.652 11.338 15.47Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M19.3999 5.51995L13.5099 2.23995C12.5756 1.72763 11.4443 1.72763 10.5099 2.23995L4.59995 5.51995C3.61053 6.06207 2.99669 7.10176 2.99995 8.22995V14.5799C2.99654 14.8408 3.03365 15.1005 3.10995 15.3499C2.50649 15.9666 2.17206 16.7972 2.17995 17.6599C2.18281 18.549 2.5432 19.3995 3.17995 20.0199L5.49995 22.2299C6.55282 23.2421 8.21707 23.2421 9.26995 22.2299L10.2699 21.32L10.8899 20.7299C11.7651 21.0836 12.7529 21.0249 13.5799 20.57L19.4699 17.2899C20.4293 16.7266 21.0132 15.6924 20.9999 14.5799V8.22995C21.0032 7.10176 20.3894 6.06207 19.3999 5.51995ZM10.4999 18.9999L9.49995 20L9.17995 20.2999L8.17995 21.2199C7.70782 21.6733 6.96207 21.6733 6.48995 21.2199L4.20995 18.9999C3.53705 18.3196 3.49792 17.2371 4.11995 16.5099L4.20995 16.3999C4.93169 15.6817 6.0982 15.6817 6.81995 16.3999L7.35995 16.9399L7.89995 16.3999C8.24201 16.0509 8.71128 15.856 9.19995 15.8599C9.68795 15.8594 10.1559 16.0538 10.4999 16.3999C11.2116 17.1205 11.2116 18.2794 10.4999 18.9999ZM13.2599 11.15L17.6699 8.69995C18.0755 8.47597 18.2231 7.96593 17.9999 7.55995C17.8948 7.35997 17.7117 7.21225 17.494 7.15168C17.2763 7.0911 17.0433 7.12304 16.8499 7.23995L12.4399 9.68995C12.1569 9.83258 11.823 9.83258 11.5399 9.68995L7.12995 7.23995C6.9383 7.12964 6.71022 7.10141 6.49747 7.16166C6.28471 7.22191 6.1053 7.36554 5.99995 7.55995C5.77675 7.96593 5.92439 8.47597 6.32995 8.69995L10.7399 11.15C10.8763 11.2152 11.0166 11.2719 11.1599 11.32V13.58C11.1599 14.0439 11.536 14.4199 11.9999 14.4199C12.4639 14.4199 12.8399 14.0439 12.8399 13.58V11.32C12.9833 11.2719 13.1236 11.2152 13.2599 11.15Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M6.83335 0C3.51964 0 0.833351 2.68629 0.833351 6V18C0.833351 21.3137 3.51964 24 6.83335 24H18.8334C22.1471 24 24.8334 21.3137 24.8334 18V6C24.8334 2.68629 22.1471 0 18.8334 0H6.83335ZM14.9648 18.9125C15.1228 19.1011 15.3435 19.2053 15.5725 19.1994C15.8008 19.2006 16.0199 19.0972 16.1803 18.9125C16.5157 18.5307 16.5157 17.9122 16.1803 17.5304L11.3067 12.0018L16.1803 6.47327C16.5157 6.09146 16.5157 5.47294 16.1803 5.09113C16.0206 4.90474 15.8014 4.79962 15.5725 4.79962C15.3436 4.79962 15.1245 4.90474 14.9648 5.09113L9.48335 11.3108C9.14798 11.6926 9.14798 12.3111 9.48335 12.6929L14.9648 18.9125Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M18 0C21.3137 0 24 2.68629 24 6V18C24 21.3137 21.3137 24 18 24H5.99995C2.68624 24 -4.95911e-05 21.3137 -4.95911e-05 18V6C-4.95911e-05 2.68629 2.68624 0 5.99995 0H18ZM9.86855 18.9125C9.71048 19.1011 9.48984 19.2053 9.26078 19.1994C9.0325 19.2006 8.81342 19.0972 8.65301 18.9125C8.31764 18.5307 8.31764 17.9122 8.65301 17.5304L13.5266 12.0018L8.65301 6.47327C8.31764 6.09146 8.31764 5.47294 8.65301 5.09113C8.81273 4.90474 9.0319 4.79962 9.26078 4.79962C9.48965 4.79962 9.70882 4.90474 9.86855 5.09113L15.35 11.3108C15.6853 11.6926 15.6853 12.3111 15.35 12.6929L9.86855 18.9125Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M19.77 5.19001L13.87 1.92001C12.7107 1.26006 11.2893 1.26006 10.13 1.92001L4.22998 5.19001C3.00026 5.86624 2.23446 7.15663 2.22998 8.56001V14.91C2.23351 15.506 2.37018 16.0936 2.62998 16.63V16.68C2.0603 17.8994 2.31183 19.3447 3.25998 20.3L5.48998 22.42C5.97563 22.8891 6.62474 23.1509 7.29998 23.15C7.96977 23.148 8.61355 22.8905 9.09998 22.43L10.03 21.54C11.1909 22.194 12.6091 22.194 13.77 21.54L19.67 18.27C20.8997 17.5938 21.6655 16.3034 21.67 14.9V8.56001C21.6859 7.17746 20.9612 5.89198 19.77 5.19001ZM9.08998 20.5L8.16998 21.38C7.71602 21.8207 6.99394 21.8207 6.53998 21.38L4.33998 19.28C3.84909 18.7722 3.70713 18.0211 3.97879 17.3691C4.25045 16.7171 4.88372 16.289 5.58998 16.28C6.05844 16.2841 6.50686 16.4706 6.83998 16.8L7.35998 17.32L7.86998 16.8C8.2031 16.4706 8.65152 16.2841 9.11998 16.28C9.82624 16.289 10.4595 16.7171 10.7312 17.3691C11.0028 18.0211 10.8609 18.7722 10.37 19.28L9.08998 20.5ZM19 17C19.7717 16.5887 20.2527 15.7845 20.25 14.91L20.21 8.56001C20.2097 7.70483 19.7468 6.91673 19 6.50001L13.18 3.23001C12.4724 2.8308 11.6076 2.8308 10.9 3.23001L4.99998 6.50001C4.24548 6.9115 3.77431 7.7006 3.76998 8.56001V14.9C3.75527 15.0496 3.75527 15.2004 3.76998 15.35C4.84956 14.637 6.2504 14.637 7.32998 15.35C8.71657 14.3969 10.6038 14.6762 11.6549 15.99C12.706 17.3039 12.5642 19.2065 11.33 20.35L11.24 20.44C11.8566 20.6452 12.5308 20.5836 13.1 20.27L19 17Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M16.9 7.63999L12.49 10.09C12.1806 10.2686 11.7994 10.2686 11.49 10.09L7.10003 7.63999C6.85709 7.50958 6.56303 7.51869 6.32863 7.66389C6.09423 7.80908 5.95509 8.06829 5.96363 8.34389C5.97217 8.61948 6.12709 8.86958 6.37003 8.99999L10.78 11.46C10.9307 11.5346 11.0881 11.5949 11.25 11.64V13.96C11.25 14.3742 11.5858 14.71 12 14.71C12.4142 14.71 12.75 14.3742 12.75 13.96V11.59C12.9138 11.5458 13.0716 11.482 13.22 11.4L17.63 8.99999C17.8701 8.87275 18.0226 8.62561 18.0287 8.35396C18.0347 8.08231 17.8933 7.82864 17.6591 7.69086C17.4249 7.55308 17.1345 7.55275 16.9 7.68999V7.63999Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM9.882 7.896C10.47 7.294 11.282 7 12.318 7C13.214 7 13.942 7.238 14.502 7.742C15.062 8.232 15.342 8.904 15.342 9.744C15.342 10.43 15.16 11.004 14.81 11.452C14.684 11.606 14.292 11.97 13.634 12.544C13.368 12.768 13.172 13.02 13.046 13.272C12.892 13.552 12.822 13.86 12.822 14.196C12.822 14.3421 12.7035 14.434 12.5574 14.434H11.562C11.4306 14.434 11.324 14.3274 11.324 14.196C11.324 13.678 11.408 13.23 11.604 12.866C11.786 12.474 12.318 11.9 13.186 11.13L13.424 10.864C13.676 10.542 13.816 10.206 13.816 9.842C13.816 9.352 13.676 8.974 13.41 8.694C13.13 8.414 12.724 8.274 12.22 8.274C11.59 8.274 11.128 8.47 10.848 8.876C10.7066 9.06459 10.6048 9.29728 10.5428 9.57407C10.454 9.97017 10.1409 10.304 9.735 10.304C9.32907 10.304 8.99088 9.97253 9.05632 9.57191C9.16736 8.8921 9.44259 8.33541 9.882 7.896ZM11.338 15.47C11.534 15.274 11.786 15.19 12.066 15.19C12.36 15.19 12.612 15.274 12.808 15.47C13.004 15.652 13.102 15.89 13.102 16.184C13.102 16.478 12.99 16.716 12.794 16.912C12.598 17.094 12.346 17.192 12.066 17.192C11.786 17.192 11.534 17.094 11.338 16.898C11.142 16.702 11.044 16.464 11.044 16.184C11.044 15.89 11.142 15.652 11.338 15.47Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M6.83335 0C3.51964 0 0.833351 2.68629 0.833351 6V18C0.833351 21.3137 3.51964 24 6.83335 24H18.8334C22.1471 24 24.8334 21.3137 24.8334 18V6C24.8334 2.68629 22.1471 0 18.8334 0H6.83335ZM14.9648 18.9125C15.1228 19.1011 15.3435 19.2053 15.5725 19.1994C15.8008 19.2006 16.0199 19.0972 16.1803 18.9125C16.5157 18.5307 16.5157 17.9122 16.1803 17.5304L11.3067 12.0018L16.1803 6.47327C16.5157 6.09146 16.5157 5.47294 16.1803 5.09113C16.0206 4.90474 15.8014 4.79962 15.5725 4.79962C15.3436 4.79962 15.1245 4.90474 14.9648 5.09113L9.48335 11.3108C9.14798 11.6926 9.14798 12.3111 9.48335 12.6929L14.9648 18.9125Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M18 0C21.3137 0 24 2.68629 24 6V18C24 21.3137 21.3137 24 18 24H5.99995C2.68624 24 -4.95911e-05 21.3137 -4.95911e-05 18V6C-4.95911e-05 2.68629 2.68624 0 5.99995 0H18ZM9.86855 18.9125C9.71048 19.1011 9.48984 19.2053 9.26078 19.1994C9.0325 19.2006 8.81342 19.0972 8.65301 18.9125C8.31764 18.5307 8.31764 17.9122 8.65301 17.5304L13.5266 12.0018L8.65301 6.47327C8.31764 6.09146 8.31764 5.47294 8.65301 5.09113C8.81273 4.90474 9.0319 4.79962 9.26078 4.79962C9.48965 4.79962 9.70882 4.90474 9.86855 5.09113L15.35 11.3108C15.6853 11.6926 15.6853 12.3111 15.35 12.6929L9.86855 18.9125Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M19.3999 5.51995L13.5099 2.23995C12.5756 1.72763 11.4443 1.72763 10.5099 2.23995L4.59995 5.51995C3.61053 6.06207 2.99669 7.10176 2.99995 8.22995V14.5799C2.99654 14.8408 3.03365 15.1005 3.10995 15.3499C2.50649 15.9666 2.17206 16.7972 2.17995 17.6599C2.18281 18.549 2.5432 19.3995 3.17995 20.0199L5.49995 22.2299C6.55282 23.2421 8.21707 23.2421 9.26995 22.2299L10.2699 21.32L10.8899 20.7299C11.7651 21.0836 12.7529 21.0249 13.5799 20.57L19.4699 17.2899C20.4293 16.7266 21.0132 15.6924 20.9999 14.5799V8.22995C21.0032 7.10176 20.3894 6.06207 19.3999 5.51995ZM10.4999 18.9999L9.49995 20L9.17995 20.2999L8.17995 21.2199C7.70782 21.6733 6.96207 21.6733 6.48995 21.2199L4.20995 18.9999C3.53705 18.3196 3.49792 17.2371 4.11995 16.5099L4.20995 16.3999C4.93169 15.6817 6.0982 15.6817 6.81995 16.3999L7.35995 16.9399L7.89995 16.3999C8.24201 16.0509 8.71128 15.856 9.19995 15.8599C9.68795 15.8594 10.1559 16.0538 10.4999 16.3999C11.2116 17.1205 11.2116 18.2794 10.4999 18.9999ZM13.2599 11.15L17.6699 8.69995C18.0755 8.47597 18.2231 7.96593 17.9999 7.55995C17.8948 7.35997 17.7117 7.21225 17.494 7.15168C17.2763 7.0911 17.0433 7.12304 16.8499 7.23995L12.4399 9.68995C12.1569 9.83258 11.823 9.83258 11.5399 9.68995L7.12995 7.23995C6.9383 7.12964 6.71022 7.10141 6.49747 7.16166C6.28471 7.22191 6.1053 7.36554 5.99995 7.55995C5.77675 7.96593 5.92439 8.47597 6.32995 8.69995L10.7399 11.15C10.8763 11.2152 11.0166 11.2719 11.1599 11.32V13.58C11.1599 14.0439 11.536 14.4199 11.9999 14.4199C12.4639 14.4199 12.8399 14.0439 12.8399 13.58V11.32C12.9833 11.2719 13.1236 11.2152 13.2599 11.15Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M19.77 5.19001L13.87 1.92001C12.7107 1.26006 11.2893 1.26006 10.13 1.92001L4.22998 5.19001C3.00026 5.86624 2.23446 7.15663 2.22998 8.56001V14.91C2.23351 15.506 2.37018 16.0936 2.62998 16.63V16.68C2.0603 17.8994 2.31183 19.3447 3.25998 20.3L5.48998 22.42C5.97563 22.8891 6.62474 23.1509 7.29998 23.15C7.96977 23.148 8.61355 22.8905 9.09998 22.43L10.03 21.54C11.1909 22.194 12.6091 22.194 13.77 21.54L19.67 18.27C20.8997 17.5938 21.6655 16.3034 21.67 14.9V8.56001C21.6859 7.17746 20.9612 5.89198 19.77 5.19001ZM9.08998 20.5L8.16998 21.38C7.71602 21.8207 6.99394 21.8207 6.53998 21.38L4.33998 19.28C3.84909 18.7722 3.70713 18.0211 3.97879 17.3691C4.25045 16.7171 4.88372 16.289 5.58998 16.28C6.05844 16.2841 6.50686 16.4706 6.83998 16.8L7.35998 17.32L7.86998 16.8C8.2031 16.4706 8.65152 16.2841 9.11998 16.28C9.82624 16.289 10.4595 16.7171 10.7312 17.3691C11.0028 18.0211 10.8609 18.7722 10.37 19.28L9.08998 20.5ZM19 17C19.7717 16.5887 20.2527 15.7845 20.25 14.91L20.21 8.56001C20.2097 7.70483 19.7468 6.91673 19 6.50001L13.18 3.23001C12.4724 2.8308 11.6076 2.8308 10.9 3.23001L4.99998 6.50001C4.24548 6.9115 3.77431 7.7006 3.76998 8.56001V14.9C3.75527 15.0496 3.75527 15.2004 3.76998 15.35C4.84956 14.637 6.2504 14.637 7.32998 15.35C8.71657 14.3969 10.6038 14.6762 11.6549 15.99C12.706 17.3039 12.5642 19.2065 11.33 20.35L11.24 20.44C11.8566 20.6452 12.5308 20.5836 13.1 20.27L19 17Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M16.9 7.63999L12.49 10.09C12.1806 10.2686 11.7994 10.2686 11.49 10.09L7.10003 7.63999C6.85709 7.50958 6.56303 7.51869 6.32863 7.66389C6.09423 7.80908 5.95509 8.06829 5.96363 8.34389C5.97217 8.61948 6.12709 8.86958 6.37003 8.99999L10.78 11.46C10.9307 11.5346 11.0881 11.5949 11.25 11.64V13.96C11.25 14.3742 11.5858 14.71 12 14.71C12.4142 14.71 12.75 14.3742 12.75 13.96V11.59C12.9138 11.5458 13.0716 11.482 13.22 11.4L17.63 8.99999C17.8701 8.87275 18.0226 8.62561 18.0287 8.35396C18.0347 8.08231 17.8933 7.82864 17.6591 7.69086C17.4249 7.55308 17.1345 7.55275 16.9 7.68999V7.63999Z"
7
+ fill="currentColor" />
8
+ </svg>