a-icons 1.0.27 → 1.0.31

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 (37) hide show
  1. package/es/ArticleBoardFilled.js +4 -3
  2. package/es/BusinessCardFilled.d.ts +6 -0
  3. package/es/BusinessCardFilled.js +40 -0
  4. package/es/BusinessCardOutlined.d.ts +6 -0
  5. package/es/BusinessCardOutlined.js +53 -0
  6. package/es/CirclePlusFilled.d.ts +6 -0
  7. package/es/CirclePlusFilled.js +38 -0
  8. package/es/EditSimpleOutlined.js +1 -3
  9. package/es/index.d.ts +3 -0
  10. package/es/index.js +3 -0
  11. package/lib/ArticleBoardFilled.js +4 -3
  12. package/lib/BusinessCardFilled.d.ts +6 -0
  13. package/lib/BusinessCardFilled.js +87 -0
  14. package/lib/BusinessCardOutlined.d.ts +6 -0
  15. package/lib/BusinessCardOutlined.js +100 -0
  16. package/lib/CirclePlusFilled.d.ts +6 -0
  17. package/lib/CirclePlusFilled.js +85 -0
  18. package/lib/EditSimpleOutlined.js +1 -3
  19. package/lib/index.d.ts +3 -0
  20. package/lib/index.js +27 -0
  21. package/package.json +2 -2
  22. package/src/ArticleBoardFilled.tsx +3 -2
  23. package/src/BusinessCardFilled.tsx +20 -0
  24. package/src/BusinessCardOutlined.tsx +35 -0
  25. package/src/CirclePlusFilled.tsx +18 -0
  26. package/src/EditSimpleOutlined.tsx +1 -3
  27. package/src/index.tsx +3 -0
  28. package/svgs/filled/article-board-filled.svg +3 -4
  29. package/svgs/filled/business-card-filled.svg +3 -0
  30. package/svgs/filled/circle-plus-filled.svg +3 -0
  31. package/svgs/outlined/business-card-outlined.svg +8 -0
  32. package/svgs/outlined/edit-simple-outlined.svg +2 -2
  33. package/tmpAllSvgs/article-board-filled.svg +3 -4
  34. package/tmpAllSvgs/business-card-filled.svg +3 -0
  35. package/tmpAllSvgs/business-card-outlined.svg +8 -0
  36. package/tmpAllSvgs/circle-plus-filled.svg +3 -0
  37. package/tmpAllSvgs/edit-simple-outlined.svg +2 -2
@@ -20,13 +20,14 @@ import Icon from 'a-base-icon/lib/Icon';
20
20
  function ArticleBoardFilled(componentProps) {
21
21
  var IconNode = function IconNode(props) {
22
22
  return /*#__PURE__*/React.createElement("svg", __assign({
23
- viewBox: "0 0 15 19",
24
- fill: "currentColor",
23
+ viewBox: "0 0 24 24",
24
+ fill: "none",
25
25
  xmlns: "http://www.w3.org/2000/svg"
26
26
  }, props), /*#__PURE__*/React.createElement("path", {
27
27
  fillRule: "evenodd",
28
28
  clipRule: "evenodd",
29
- d: "M11.074 1.527v-.154C11.074.615 10.46 0 9.701 0H5.599C4.84 0 4.225.615 4.225 1.373V1.5A3.804 3.804 0 00.738 5.313v9.614A3.813 3.813 0 004.56 18.74h6.19a3.813 3.813 0 003.821-3.813V5.313a3.813 3.813 0 00-3.497-3.786zm-5.476-.154h4.12V2.45h-4.12V1.373zm2.099 5.078h-2.82a.678.678 0 000 1.356h2.82a.678.678 0 100-1.356zm1.978 6.822H4.877a.678.678 0 010-1.355h4.798a.678.678 0 010 1.355zm-4.798-2.647h5.548a.678.678 0 100-1.355H4.877a.678.678 0 100 1.355z"
29
+ d: "M15.074 4.527v-.154c0-.758-.614-1.373-1.373-1.373H9.599c-.759 0-1.374.615-1.374 1.373V4.5a3.804 3.804 0 00-3.487 3.813v9.614A3.813 3.813 0 008.56 21.74h6.19a3.813 3.813 0 003.821-3.813V8.313a3.813 3.813 0 00-3.497-3.786zm-5.476-.154h4.12V5.45h-4.12V4.373zm2.098 5.078H8.878a.678.678 0 000 1.356h2.82a.678.678 0 100-1.356zm1.98 6.822H8.876a.678.678 0 010-1.355h4.798a.678.678 0 010 1.355zm-4.799-2.647h5.548a.678.678 0 100-1.355H8.877a.678.678 0 000 1.355z",
30
+ fill: "currentColor"
30
31
  }));
31
32
  };
32
33
 
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function BusinessCardFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace BusinessCardFilled {
4
+ var displayName: string;
5
+ }
6
+ export default BusinessCardFilled;
@@ -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 BusinessCardFilled(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: "M2 3a2 2 0 00-2 2v14a2 2 0 002 2h20a2 2 0 002-2V5a2 2 0 00-2-2H2zm5.004 3.8H6.46c-1.177.021-2.12.981-2.12 2.158v.659a2.435 2.435 0 104.87 0v-.659A2.167 2.167 0 007.004 6.8zm.736 2.817a1.002 1.002 0 11-2.005 0v-.659c0-.4.325-.725.725-.725h.544c.403 0 .73.323.736.725v.659zm2.596 4.535a1.986 1.986 0 00-1.909-1.604h-3.38a1.976 1.976 0 00-1.91 1.604l-.095.44a2.062 2.062 0 00.43 1.727c.362.453.91.716 1.49.716h3.541a1.91 1.91 0 001.5-.716 2.09 2.09 0 00.42-1.728l-.087-.44zm-1.441 1.26a.544.544 0 01-.392.191H4.961a.496.496 0 01-.382-.19.601.601 0 01-.124-.536l.086-.439a.544.544 0 01.506-.458h3.37a.554.554 0 01.516.458l.086.44a.668.668 0 01-.124.534zM12.8 9a.7.7 0 01.7-.7h7a.7.7 0 110 1.4h-7a.7.7 0 01-.7-.7zm.7 2.3a.7.7 0 100 1.4h7a.7.7 0 100-1.4h-7zm-.7 3.7a.7.7 0 01.7-.7h7a.7.7 0 110 1.4h-7a.7.7 0 01-.7-.7z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ BusinessCardFilled.displayName = 'BusinessCardFilled';
40
+ export default BusinessCardFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function BusinessCardOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace BusinessCardOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default BusinessCardOutlined;
@@ -0,0 +1,53 @@
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 BusinessCardOutlined(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 24 24",
24
+ fill: "none",
25
+ xmlns: "http://www.w3.org/2000/svg"
26
+ }, props), /*#__PURE__*/React.createElement("rect", {
27
+ x: 0.7,
28
+ y: 3.7,
29
+ width: 22.6,
30
+ height: 16.6,
31
+ rx: 1.3,
32
+ stroke: "currentColor",
33
+ strokeWidth: 1.4
34
+ }), /*#__PURE__*/React.createElement("path", {
35
+ fillRule: "evenodd",
36
+ clipRule: "evenodd",
37
+ d: "M6.46 6.8h.544A2.167 2.167 0 019.21 8.958v.659a2.435 2.435 0 11-4.87 0v-.659c0-1.177.943-2.137 2.12-2.158zm.277 3.82c.554 0 1.003-.45 1.003-1.003v-.659a.735.735 0 00-.736-.725H6.46c-.4 0-.725.324-.725.725v.659c0 .554.448 1.002 1.002 1.002zM8.427 12.548c.935.018 1.73.687 1.91 1.604l.085.44a2.09 2.09 0 01-.42 1.727 1.91 1.91 0 01-1.499.716H4.961a1.91 1.91 0 01-1.49-.716 2.062 2.062 0 01-.429-1.728l.096-.44a1.976 1.976 0 011.91-1.603h3.379zm.076 3.055a.544.544 0 00.392-.19.668.668 0 00.124-.536l-.086-.439a.554.554 0 00-.516-.458h-3.37a.544.544 0 00-.506.458l-.086.44a.601.601 0 00.124.534.496.496 0 00.382.191h3.542z",
38
+ fill: "currentColor"
39
+ }), /*#__PURE__*/React.createElement("path", {
40
+ d: "M13.5 9h7M13.5 12h7M13.5 15h7",
41
+ stroke: "currentColor",
42
+ strokeWidth: 1.4,
43
+ strokeLinecap: "round"
44
+ }));
45
+ };
46
+
47
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
48
+ component: IconNode
49
+ }));
50
+ }
51
+
52
+ BusinessCardOutlined.displayName = 'BusinessCardOutlined';
53
+ export default BusinessCardOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function CirclePlusFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace CirclePlusFilled {
4
+ var displayName: string;
5
+ }
6
+ export default CirclePlusFilled;
@@ -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 CirclePlusFilled(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: "M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-11H7v2h4v4h2v-4h4v-2h-4V7h-2v4z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+
32
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
33
+ component: IconNode
34
+ }));
35
+ }
36
+
37
+ CirclePlusFilled.displayName = 'CirclePlusFilled';
38
+ export default CirclePlusFilled;
@@ -25,9 +25,7 @@ function EditSimpleOutlined(componentProps) {
25
25
  xmlns: "http://www.w3.org/2000/svg"
26
26
  }, props), /*#__PURE__*/React.createElement("path", {
27
27
  d: "M13.706 5H7a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-5.52M12 12l7-7",
28
- stroke: "currentColor",
29
- strokeWidth: 1.4,
30
- strokeLinecap: "round"
28
+ fill: "currentColor"
31
29
  }));
32
30
  };
33
31
 
package/es/index.d.ts CHANGED
@@ -3,6 +3,8 @@ export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
3
3
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
4
4
  export { default as BrokenLineFilled } from './BrokenLineFilled';
5
5
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
6
+ export { default as BusinessCardFilled } from './BusinessCardFilled';
7
+ export { default as BusinessCardOutlined } from './BusinessCardOutlined';
6
8
  export { default as CameraFilled } from './CameraFilled';
7
9
  export { default as CameraOutlined } from './CameraOutlined';
8
10
  export { default as CardFilled } from './CardFilled';
@@ -10,6 +12,7 @@ export { default as CardOutlined } from './CardOutlined';
10
12
  export { default as CategoryFilled } from './CategoryFilled';
11
13
  export { default as CategoryOutlined } from './CategoryOutlined';
12
14
  export { default as ChevronUpFilled } from './ChevronUpFilled';
15
+ export { default as CirclePlusFilled } from './CirclePlusFilled';
13
16
  export { default as ClockCircleFilled } from './ClockCircleFilled';
14
17
  export { default as ClockCircleOutline } from './ClockCircleOutline';
15
18
  export { default as CloseCircleFilled } from './CloseCircleFilled';
package/es/index.js CHANGED
@@ -3,6 +3,8 @@ export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
3
3
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
4
4
  export { default as BrokenLineFilled } from './BrokenLineFilled';
5
5
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
6
+ export { default as BusinessCardFilled } from './BusinessCardFilled';
7
+ export { default as BusinessCardOutlined } from './BusinessCardOutlined';
6
8
  export { default as CameraFilled } from './CameraFilled';
7
9
  export { default as CameraOutlined } from './CameraOutlined';
8
10
  export { default as CardFilled } from './CardFilled';
@@ -10,6 +12,7 @@ export { default as CardOutlined } from './CardOutlined';
10
12
  export { default as CategoryFilled } from './CategoryFilled';
11
13
  export { default as CategoryOutlined } from './CategoryOutlined';
12
14
  export { default as ChevronUpFilled } from './ChevronUpFilled';
15
+ export { default as CirclePlusFilled } from './CirclePlusFilled';
13
16
  export { default as ClockCircleFilled } from './ClockCircleFilled';
14
17
  export { default as ClockCircleOutline } from './ClockCircleOutline';
15
18
  export { default as CloseCircleFilled } from './CloseCircleFilled';
@@ -67,13 +67,14 @@ var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
67
67
  function ArticleBoardFilled(componentProps) {
68
68
  var IconNode = function IconNode(props) {
69
69
  return React.createElement("svg", __assign({
70
- viewBox: "0 0 15 19",
71
- fill: "currentColor",
70
+ viewBox: "0 0 24 24",
71
+ fill: "none",
72
72
  xmlns: "http://www.w3.org/2000/svg"
73
73
  }, props), React.createElement("path", {
74
74
  fillRule: "evenodd",
75
75
  clipRule: "evenodd",
76
- d: "M11.074 1.527v-.154C11.074.615 10.46 0 9.701 0H5.599C4.84 0 4.225.615 4.225 1.373V1.5A3.804 3.804 0 00.738 5.313v9.614A3.813 3.813 0 004.56 18.74h6.19a3.813 3.813 0 003.821-3.813V5.313a3.813 3.813 0 00-3.497-3.786zm-5.476-.154h4.12V2.45h-4.12V1.373zm2.099 5.078h-2.82a.678.678 0 000 1.356h2.82a.678.678 0 100-1.356zm1.978 6.822H4.877a.678.678 0 010-1.355h4.798a.678.678 0 010 1.355zm-4.798-2.647h5.548a.678.678 0 100-1.355H4.877a.678.678 0 100 1.355z"
76
+ d: "M15.074 4.527v-.154c0-.758-.614-1.373-1.373-1.373H9.599c-.759 0-1.374.615-1.374 1.373V4.5a3.804 3.804 0 00-3.487 3.813v9.614A3.813 3.813 0 008.56 21.74h6.19a3.813 3.813 0 003.821-3.813V8.313a3.813 3.813 0 00-3.497-3.786zm-5.476-.154h4.12V5.45h-4.12V4.373zm2.098 5.078H8.878a.678.678 0 000 1.356h2.82a.678.678 0 100-1.356zm1.98 6.822H8.876a.678.678 0 010-1.355h4.798a.678.678 0 010 1.355zm-4.799-2.647h5.548a.678.678 0 100-1.355H8.877a.678.678 0 000 1.355z",
77
+ fill: "currentColor"
77
78
  }));
78
79
  };
79
80
 
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function BusinessCardFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace BusinessCardFilled {
4
+ var displayName: string;
5
+ }
6
+ export default BusinessCardFilled;
@@ -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 BusinessCardFilled(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: "M2 3a2 2 0 00-2 2v14a2 2 0 002 2h20a2 2 0 002-2V5a2 2 0 00-2-2H2zm5.004 3.8H6.46c-1.177.021-2.12.981-2.12 2.158v.659a2.435 2.435 0 104.87 0v-.659A2.167 2.167 0 007.004 6.8zm.736 2.817a1.002 1.002 0 11-2.005 0v-.659c0-.4.325-.725.725-.725h.544c.403 0 .73.323.736.725v.659zm2.596 4.535a1.986 1.986 0 00-1.909-1.604h-3.38a1.976 1.976 0 00-1.91 1.604l-.095.44a2.062 2.062 0 00.43 1.727c.362.453.91.716 1.49.716h3.541a1.91 1.91 0 001.5-.716 2.09 2.09 0 00.42-1.728l-.087-.44zm-1.441 1.26a.544.544 0 01-.392.191H4.961a.496.496 0 01-.382-.19.601.601 0 01-.124-.536l.086-.439a.544.544 0 01.506-.458h3.37a.554.554 0 01.516.458l.086.44a.668.668 0 01-.124.534zM12.8 9a.7.7 0 01.7-.7h7a.7.7 0 110 1.4h-7a.7.7 0 01-.7-.7zm.7 2.3a.7.7 0 100 1.4h7a.7.7 0 100-1.4h-7zm-.7 3.7a.7.7 0 01.7-.7h7a.7.7 0 110 1.4h-7a.7.7 0 01-.7-.7z",
77
+ fill: "currentColor"
78
+ }));
79
+ };
80
+
81
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
82
+ component: IconNode
83
+ }));
84
+ }
85
+
86
+ BusinessCardFilled.displayName = 'BusinessCardFilled';
87
+ exports["default"] = BusinessCardFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function BusinessCardOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace BusinessCardOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default BusinessCardOutlined;
@@ -0,0 +1,100 @@
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 BusinessCardOutlined(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("rect", {
74
+ x: 0.7,
75
+ y: 3.7,
76
+ width: 22.6,
77
+ height: 16.6,
78
+ rx: 1.3,
79
+ stroke: "currentColor",
80
+ strokeWidth: 1.4
81
+ }), React.createElement("path", {
82
+ fillRule: "evenodd",
83
+ clipRule: "evenodd",
84
+ d: "M6.46 6.8h.544A2.167 2.167 0 019.21 8.958v.659a2.435 2.435 0 11-4.87 0v-.659c0-1.177.943-2.137 2.12-2.158zm.277 3.82c.554 0 1.003-.45 1.003-1.003v-.659a.735.735 0 00-.736-.725H6.46c-.4 0-.725.324-.725.725v.659c0 .554.448 1.002 1.002 1.002zM8.427 12.548c.935.018 1.73.687 1.91 1.604l.085.44a2.09 2.09 0 01-.42 1.727 1.91 1.91 0 01-1.499.716H4.961a1.91 1.91 0 01-1.49-.716 2.062 2.062 0 01-.429-1.728l.096-.44a1.976 1.976 0 011.91-1.603h3.379zm.076 3.055a.544.544 0 00.392-.19.668.668 0 00.124-.536l-.086-.439a.554.554 0 00-.516-.458h-3.37a.544.544 0 00-.506.458l-.086.44a.601.601 0 00.124.534.496.496 0 00.382.191h3.542z",
85
+ fill: "currentColor"
86
+ }), React.createElement("path", {
87
+ d: "M13.5 9h7M13.5 12h7M13.5 15h7",
88
+ stroke: "currentColor",
89
+ strokeWidth: 1.4,
90
+ strokeLinecap: "round"
91
+ }));
92
+ };
93
+
94
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
95
+ component: IconNode
96
+ }));
97
+ }
98
+
99
+ BusinessCardOutlined.displayName = 'BusinessCardOutlined';
100
+ exports["default"] = BusinessCardOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function CirclePlusFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace CirclePlusFilled {
4
+ var displayName: string;
5
+ }
6
+ export default CirclePlusFilled;
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+
3
+ var __assign = this && this.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+
8
+ for (var p in s) {
9
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
10
+ }
11
+ }
12
+
13
+ return t;
14
+ };
15
+
16
+ return __assign.apply(this, arguments);
17
+ };
18
+
19
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
20
+ if (k2 === undefined) k2 = k;
21
+ Object.defineProperty(o, k2, {
22
+ enumerable: true,
23
+ get: function get() {
24
+ return m[k];
25
+ }
26
+ });
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+
32
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
33
+ Object.defineProperty(o, "default", {
34
+ enumerable: true,
35
+ value: v
36
+ });
37
+ } : function (o, v) {
38
+ o["default"] = v;
39
+ });
40
+
41
+ var __importStar = this && this.__importStar || function (mod) {
42
+ if (mod && mod.__esModule) return mod;
43
+ var result = {};
44
+ if (mod != null) for (var k in mod) {
45
+ if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
46
+ }
47
+
48
+ __setModuleDefault(result, mod);
49
+
50
+ return result;
51
+ };
52
+
53
+ var __importDefault = this && this.__importDefault || function (mod) {
54
+ return mod && mod.__esModule ? mod : {
55
+ "default": mod
56
+ };
57
+ };
58
+
59
+ Object.defineProperty(exports, "__esModule", {
60
+ value: true
61
+ });
62
+
63
+ var React = __importStar(require("react"));
64
+
65
+ var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
66
+
67
+ function CirclePlusFilled(componentProps) {
68
+ var IconNode = function IconNode(props) {
69
+ return React.createElement("svg", __assign({
70
+ viewBox: "0 0 24 24",
71
+ fill: "none",
72
+ xmlns: "http://www.w3.org/2000/svg"
73
+ }, props), React.createElement("path", {
74
+ d: "M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-11H7v2h4v4h2v-4h4v-2h-4V7h-2v4z",
75
+ fill: "currentColor"
76
+ }));
77
+ };
78
+
79
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
80
+ component: IconNode
81
+ }));
82
+ }
83
+
84
+ CirclePlusFilled.displayName = 'CirclePlusFilled';
85
+ exports["default"] = CirclePlusFilled;
@@ -72,9 +72,7 @@ function EditSimpleOutlined(componentProps) {
72
72
  xmlns: "http://www.w3.org/2000/svg"
73
73
  }, props), React.createElement("path", {
74
74
  d: "M13.706 5H7a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-5.52M12 12l7-7",
75
- stroke: "currentColor",
76
- strokeWidth: 1.4,
77
- strokeLinecap: "round"
75
+ fill: "currentColor"
78
76
  }));
79
77
  };
80
78
 
package/lib/index.d.ts CHANGED
@@ -3,6 +3,8 @@ export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
3
3
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
4
4
  export { default as BrokenLineFilled } from './BrokenLineFilled';
5
5
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
6
+ export { default as BusinessCardFilled } from './BusinessCardFilled';
7
+ export { default as BusinessCardOutlined } from './BusinessCardOutlined';
6
8
  export { default as CameraFilled } from './CameraFilled';
7
9
  export { default as CameraOutlined } from './CameraOutlined';
8
10
  export { default as CardFilled } from './CardFilled';
@@ -10,6 +12,7 @@ export { default as CardOutlined } from './CardOutlined';
10
12
  export { default as CategoryFilled } from './CategoryFilled';
11
13
  export { default as CategoryOutlined } from './CategoryOutlined';
12
14
  export { default as ChevronUpFilled } from './ChevronUpFilled';
15
+ export { default as CirclePlusFilled } from './CirclePlusFilled';
13
16
  export { default as ClockCircleFilled } from './ClockCircleFilled';
14
17
  export { default as ClockCircleOutline } from './ClockCircleOutline';
15
18
  export { default as CloseCircleFilled } from './CloseCircleFilled';
package/lib/index.js CHANGED
@@ -49,6 +49,24 @@ Object.defineProperty(exports, "BrokenLineOutlined", {
49
49
  }
50
50
  });
51
51
 
52
+ var BusinessCardFilled_1 = require("./BusinessCardFilled");
53
+
54
+ Object.defineProperty(exports, "BusinessCardFilled", {
55
+ enumerable: true,
56
+ get: function get() {
57
+ return BusinessCardFilled_1["default"];
58
+ }
59
+ });
60
+
61
+ var BusinessCardOutlined_1 = require("./BusinessCardOutlined");
62
+
63
+ Object.defineProperty(exports, "BusinessCardOutlined", {
64
+ enumerable: true,
65
+ get: function get() {
66
+ return BusinessCardOutlined_1["default"];
67
+ }
68
+ });
69
+
52
70
  var CameraFilled_1 = require("./CameraFilled");
53
71
 
54
72
  Object.defineProperty(exports, "CameraFilled", {
@@ -112,6 +130,15 @@ Object.defineProperty(exports, "ChevronUpFilled", {
112
130
  }
113
131
  });
114
132
 
133
+ var CirclePlusFilled_1 = require("./CirclePlusFilled");
134
+
135
+ Object.defineProperty(exports, "CirclePlusFilled", {
136
+ enumerable: true,
137
+ get: function get() {
138
+ return CirclePlusFilled_1["default"];
139
+ }
140
+ });
141
+
115
142
  var ClockCircleFilled_1 = require("./ClockCircleFilled");
116
143
 
117
144
  Object.defineProperty(exports, "ClockCircleFilled", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.0.27",
3
+ "version": "1.0.31",
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": "903da597775fbdf1005a56cbfe684e74102356fb"
25
+ "gitHead": "064dc8946e3bee5ab8660fdb10487fe2870a3421"
26
26
  }
@@ -3,11 +3,12 @@ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
3
 
4
4
  function ArticleBoardFilled(componentProps: IconProps) {
5
5
  const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
- <svg viewBox="0 0 15 19" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
6
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
7
  <path
8
8
  fillRule="evenodd"
9
9
  clipRule="evenodd"
10
- d="M11.074 1.527v-.154C11.074.615 10.46 0 9.701 0H5.599C4.84 0 4.225.615 4.225 1.373V1.5A3.804 3.804 0 00.738 5.313v9.614A3.813 3.813 0 004.56 18.74h6.19a3.813 3.813 0 003.821-3.813V5.313a3.813 3.813 0 00-3.497-3.786zm-5.476-.154h4.12V2.45h-4.12V1.373zm2.099 5.078h-2.82a.678.678 0 000 1.356h2.82a.678.678 0 100-1.356zm1.978 6.822H4.877a.678.678 0 010-1.355h4.798a.678.678 0 010 1.355zm-4.798-2.647h5.548a.678.678 0 100-1.355H4.877a.678.678 0 100 1.355z"
10
+ d="M15.074 4.527v-.154c0-.758-.614-1.373-1.373-1.373H9.599c-.759 0-1.374.615-1.374 1.373V4.5a3.804 3.804 0 00-3.487 3.813v9.614A3.813 3.813 0 008.56 21.74h6.19a3.813 3.813 0 003.821-3.813V8.313a3.813 3.813 0 00-3.497-3.786zm-5.476-.154h4.12V5.45h-4.12V4.373zm2.098 5.078H8.878a.678.678 0 000 1.356h2.82a.678.678 0 100-1.356zm1.98 6.822H8.876a.678.678 0 010-1.355h4.798a.678.678 0 010 1.355zm-4.799-2.647h5.548a.678.678 0 100-1.355H8.877a.678.678 0 000 1.355z"
11
+ fill="currentColor"
11
12
  />
12
13
  </svg>
13
14
  );
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function BusinessCardFilled(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="M2 3a2 2 0 00-2 2v14a2 2 0 002 2h20a2 2 0 002-2V5a2 2 0 00-2-2H2zm5.004 3.8H6.46c-1.177.021-2.12.981-2.12 2.158v.659a2.435 2.435 0 104.87 0v-.659A2.167 2.167 0 007.004 6.8zm.736 2.817a1.002 1.002 0 11-2.005 0v-.659c0-.4.325-.725.725-.725h.544c.403 0 .73.323.736.725v.659zm2.596 4.535a1.986 1.986 0 00-1.909-1.604h-3.38a1.976 1.976 0 00-1.91 1.604l-.095.44a2.062 2.062 0 00.43 1.727c.362.453.91.716 1.49.716h3.541a1.91 1.91 0 001.5-.716 2.09 2.09 0 00.42-1.728l-.087-.44zm-1.441 1.26a.544.544 0 01-.392.191H4.961a.496.496 0 01-.382-.19.601.601 0 01-.124-.536l.086-.439a.544.544 0 01.506-.458h3.37a.554.554 0 01.516.458l.086.44a.668.668 0 01-.124.534zM12.8 9a.7.7 0 01.7-.7h7a.7.7 0 110 1.4h-7a.7.7 0 01-.7-.7zm.7 2.3a.7.7 0 100 1.4h7a.7.7 0 100-1.4h-7zm-.7 3.7a.7.7 0 01.7-.7h7a.7.7 0 110 1.4h-7a.7.7 0 01-.7-.7z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ );
15
+
16
+ return <Icon {...componentProps} component={IconNode} />;
17
+ }
18
+
19
+ BusinessCardFilled.displayName = 'BusinessCardFilled';
20
+ export default BusinessCardFilled;
@@ -0,0 +1,35 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function BusinessCardOutlined(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
+ <rect
8
+ x={0.7}
9
+ y={3.7}
10
+ width={22.6}
11
+ height={16.6}
12
+ rx={1.3}
13
+ stroke="currentColor"
14
+ strokeWidth={1.4}
15
+ />
16
+ <path
17
+ fillRule="evenodd"
18
+ clipRule="evenodd"
19
+ d="M6.46 6.8h.544A2.167 2.167 0 019.21 8.958v.659a2.435 2.435 0 11-4.87 0v-.659c0-1.177.943-2.137 2.12-2.158zm.277 3.82c.554 0 1.003-.45 1.003-1.003v-.659a.735.735 0 00-.736-.725H6.46c-.4 0-.725.324-.725.725v.659c0 .554.448 1.002 1.002 1.002zM8.427 12.548c.935.018 1.73.687 1.91 1.604l.085.44a2.09 2.09 0 01-.42 1.727 1.91 1.91 0 01-1.499.716H4.961a1.91 1.91 0 01-1.49-.716 2.062 2.062 0 01-.429-1.728l.096-.44a1.976 1.976 0 011.91-1.603h3.379zm.076 3.055a.544.544 0 00.392-.19.668.668 0 00.124-.536l-.086-.439a.554.554 0 00-.516-.458h-3.37a.544.544 0 00-.506.458l-.086.44a.601.601 0 00.124.534.496.496 0 00.382.191h3.542z"
20
+ fill="currentColor"
21
+ />
22
+ <path
23
+ d="M13.5 9h7M13.5 12h7M13.5 15h7"
24
+ stroke="currentColor"
25
+ strokeWidth={1.4}
26
+ strokeLinecap="round"
27
+ />
28
+ </svg>
29
+ );
30
+
31
+ return <Icon {...componentProps} component={IconNode} />;
32
+ }
33
+
34
+ BusinessCardOutlined.displayName = 'BusinessCardOutlined';
35
+ export default BusinessCardOutlined;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function CirclePlusFilled(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
+ d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-11H7v2h4v4h2v-4h4v-2h-4V7h-2v4z"
9
+ fill="currentColor"
10
+ />
11
+ </svg>
12
+ );
13
+
14
+ return <Icon {...componentProps} component={IconNode} />;
15
+ }
16
+
17
+ CirclePlusFilled.displayName = 'CirclePlusFilled';
18
+ export default CirclePlusFilled;
@@ -6,9 +6,7 @@ function EditSimpleOutlined(componentProps: IconProps) {
6
6
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
7
  <path
8
8
  d="M13.706 5H7a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-5.52M12 12l7-7"
9
- stroke="currentColor"
10
- strokeWidth={1.4}
11
- strokeLinecap="round"
9
+ fill="currentColor"
12
10
  />
13
11
  </svg>
14
12
  );
package/src/index.tsx CHANGED
@@ -3,6 +3,8 @@ export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
3
3
  export { default as ArticleBoardFilled } from './ArticleBoardFilled';
4
4
  export { default as BrokenLineFilled } from './BrokenLineFilled';
5
5
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
6
+ export { default as BusinessCardFilled } from './BusinessCardFilled';
7
+ export { default as BusinessCardOutlined } from './BusinessCardOutlined';
6
8
  export { default as CameraFilled } from './CameraFilled';
7
9
  export { default as CameraOutlined } from './CameraOutlined';
8
10
  export { default as CardFilled } from './CardFilled';
@@ -10,6 +12,7 @@ export { default as CardOutlined } from './CardOutlined';
10
12
  export { default as CategoryFilled } from './CategoryFilled';
11
13
  export { default as CategoryOutlined } from './CategoryOutlined';
12
14
  export { default as ChevronUpFilled } from './ChevronUpFilled';
15
+ export { default as CirclePlusFilled } from './CirclePlusFilled';
13
16
  export { default as ClockCircleFilled } from './ClockCircleFilled';
14
17
  export { default as ClockCircleOutline } from './ClockCircleOutline';
15
18
  export { default as CloseCircleFilled } from './CloseCircleFilled';
@@ -1,4 +1,3 @@
1
- <svg viewBox="0 0 15 19" fill="currentColor"
2
- xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M11.0744 1.52703V1.37342C11.0744 0.614902 10.4595 0 9.70101 0H5.59881C4.84029 0 4.22539 0.614902 4.22539 1.37342V1.49992C2.24541 1.66507 0.72602 3.32616 0.737615 5.31298V14.9269C0.737612 15.9398 1.14058 16.911 1.85763 17.6264C2.57467 18.3417 3.54686 18.7424 4.55971 18.74H10.7491C11.762 18.7424 12.7342 18.3417 13.4512 17.6264C14.1683 16.911 14.5712 15.9398 14.5712 14.9269V5.31298C14.564 3.33506 13.0455 1.69106 11.0744 1.52703ZM5.59779 1.37342H9.71806V2.44867H5.59779V1.37342ZM7.69655 6.45148H4.87742C4.50315 6.45148 4.19974 6.75489 4.19974 7.12916C4.19974 7.50343 4.50315 7.80683 4.87742 7.80683H7.69655C8.07082 7.80683 8.37422 7.50343 8.37422 7.12916C8.37422 6.75489 8.07082 6.45148 7.69655 6.45148ZM9.67536 13.2734H4.87742C4.50315 13.2734 4.19974 12.97 4.19974 12.5957C4.19974 12.2215 4.50315 11.918 4.87742 11.918H9.67536C10.0496 11.918 10.353 12.2215 10.353 12.5957C10.353 12.97 10.0496 13.2734 9.67536 13.2734ZM4.87742 10.626H10.4253C10.7996 10.626 11.103 10.3226 11.103 9.9483C11.103 9.57403 10.7996 9.27063 10.4253 9.27063H4.87742C4.50315 9.27063 4.19974 9.57403 4.19974 9.9483C4.19974 10.3226 4.50315 10.626 4.87742 10.626Z" fill="currentColor"/>
4
- </svg>
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15.0744 4.52703V4.37342C15.0744 3.6149 14.4595 3 13.701 3H9.59881C8.84029 3 8.22539 3.6149 8.22539 4.37342V4.49992C6.24541 4.66507 4.72602 6.32616 4.73761 8.31298V17.9269C4.73761 18.9398 5.14058 19.911 5.85763 20.6264C6.57467 21.3417 7.54686 21.7424 8.55971 21.74H14.7491C15.762 21.7424 16.7342 21.3417 17.4512 20.6264C18.1683 19.911 18.5712 18.9398 18.5712 17.9269V8.31298C18.564 6.33506 17.0455 4.69106 15.0744 4.52703ZM9.59779 4.37342H13.7181V5.44867H9.59779V4.37342ZM11.6965 9.45148H8.87742C8.50315 9.45148 8.19974 9.75489 8.19974 10.1292C8.19974 10.5034 8.50315 10.8068 8.87742 10.8068H11.6965C12.0708 10.8068 12.3742 10.5034 12.3742 10.1292C12.3742 9.75489 12.0708 9.45148 11.6965 9.45148ZM13.6754 16.2734H8.87742C8.50315 16.2734 8.19974 15.97 8.19974 15.5957C8.19974 15.2215 8.50315 14.918 8.87742 14.918H13.6754C14.0496 14.918 14.353 15.2215 14.353 15.5957C14.353 15.97 14.0496 16.2734 13.6754 16.2734ZM8.87742 13.626H14.4253C14.7996 13.626 15.103 13.3226 15.103 12.9483C15.103 12.574 14.7996 12.2706 14.4253 12.2706H8.87742C8.50315 12.2706 8.19974 12.574 8.19974 12.9483C8.19974 13.3226 8.50315 13.626 8.87742 13.626Z" fill="currentColor" />
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 3C0.895431 3 0 3.89543 0 5V19C0 20.1046 0.89543 21 2 21H22C23.1046 21 24 20.1046 24 19V5C24 3.89543 23.1046 3 22 3H2ZM7.00443 6.80039H6.46022C5.28349 6.82122 4.34051 7.78118 4.3407 8.9581V9.61687C4.3407 10.9615 5.4307 12.0515 6.77529 12.0515C8.11988 12.0515 9.20988 10.9615 9.20988 9.61687V8.9581C9.20742 8.37829 8.97272 7.82364 8.55827 7.41815C8.14381 7.01267 7.58416 6.79016 7.00443 6.80039ZM7.73962 9.61693C7.73962 10.1706 7.2908 10.6194 6.73715 10.6194C6.18349 10.6194 5.73467 10.1706 5.73467 9.61693V8.95816C5.73467 8.55742 6.05953 8.23255 6.46027 8.23255H7.00447C7.40679 8.23252 7.7344 8.55588 7.73962 8.95816V9.61693ZM10.3365 14.1519C10.1569 13.2345 9.36169 12.5665 8.427 12.548H5.04721C4.11116 12.5629 3.31399 13.2325 3.13773 14.1519L3.04226 14.5911C2.91658 15.2025 3.07455 15.8379 3.47189 16.3192C3.83401 16.7715 4.3819 17.0349 4.96129 17.0353H8.50338C9.08611 17.0378 9.63811 16.7741 10.0023 16.3192C10.3926 15.8344 10.5465 15.201 10.4224 14.5911L10.3365 14.1519ZM8.89482 15.4121C8.79661 15.5275 8.65475 15.5967 8.50338 15.6031H4.96129C4.81172 15.6002 4.67142 15.5301 4.57939 15.4121C4.45438 15.2643 4.40818 15.0653 4.45528 14.8775L4.5412 14.4383C4.58117 14.1856 4.79179 13.9948 5.04722 13.98H8.41745C8.67509 13.994 8.88891 14.1841 8.93301 14.4383L9.01894 14.8775C9.05604 15.0652 9.01085 15.2599 8.89482 15.4121ZM12.8 9C12.8 8.6134 13.1134 8.3 13.5 8.3H20.5C20.8866 8.3 21.2 8.6134 21.2 9C21.2 9.3866 20.8866 9.7 20.5 9.7H13.5C13.1134 9.7 12.8 9.3866 12.8 9ZM13.5 11.3C13.1134 11.3 12.8 11.6134 12.8 12C12.8 12.3866 13.1134 12.7 13.5 12.7H20.5C20.8866 12.7 21.2 12.3866 21.2 12C21.2 11.6134 20.8866 11.3 20.5 11.3H13.5ZM12.8 15C12.8 14.6134 13.1134 14.3 13.5 14.3H20.5C20.8866 14.3 21.2 14.6134 21.2 15C21.2 15.3866 20.8866 15.7 20.5 15.7H13.5C13.1134 15.7 12.8 15.3866 12.8 15Z" fill="currentColor" />
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM11 11H7V13H11V17H13V13H17V11H13V7H11V11Z" fill="currentColor" />
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.7" y="3.7" width="22.6" height="16.6" rx="1.3" stroke="currentColor" stroke-width="1.4" />
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.46022 6.80039H7.00443C7.58416 6.79016 8.14381 7.01267 8.55827 7.41815C8.97272 7.82364 9.20742 8.37829 9.20988 8.9581V9.61687C9.20988 10.9615 8.11988 12.0515 6.77529 12.0515C5.4307 12.0515 4.3407 10.9615 4.3407 9.61687V8.9581C4.34051 7.78118 5.28349 6.82122 6.46022 6.80039ZM6.73715 10.6194C7.2908 10.6194 7.73962 10.1706 7.73962 9.61693V8.95816C7.7344 8.55588 7.40679 8.23252 7.00447 8.23255H6.46027C6.05953 8.23255 5.73467 8.55742 5.73467 8.95816V9.61693C5.73467 10.1706 6.18349 10.6194 6.73715 10.6194Z" fill="currentColor" />
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.427 12.548C9.36169 12.5665 10.1569 13.2345 10.3365 14.1519L10.4224 14.5911C10.5465 15.201 10.3926 15.8344 10.0023 16.3192C9.63811 16.7741 9.08611 17.0378 8.50338 17.0353H4.96129C4.3819 17.0349 3.83401 16.7715 3.47189 16.3192C3.07455 15.8379 2.91658 15.2025 3.04226 14.5911L3.13773 14.1519C3.31399 13.2325 4.11116 12.5629 5.04721 12.548H8.427ZM8.50338 15.6031C8.65475 15.5967 8.79661 15.5275 8.89483 15.4121C9.01085 15.2599 9.05604 15.0652 9.01894 14.8775L8.93301 14.4383C8.88891 14.1841 8.67509 13.994 8.41745 13.98H5.04722C4.79179 13.9948 4.58117 14.1856 4.5412 14.4383L4.45528 14.8775C4.40818 15.0653 4.45438 15.2643 4.57939 15.4121C4.67142 15.5301 4.81172 15.6002 4.96129 15.6031H8.50338Z" fill="currentColor" />
5
+ <path d="M13.5 9H20.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
6
+ <path d="M13.5 12H20.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
7
+ <path d="M13.5 15H20.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
8
+ </svg>
@@ -1,4 +1,4 @@
1
1
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M13.7059 5H7C5.89543 5 5 5.89543 5 7V17C5 18.1046 5.89543 19 7 19H17C18.1046 19 19 18.1046 19 17V11.48" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
3
- <path d="M12 12L19 5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
2
+ <path d="M13.7059 5H7C5.89543 5 5 5.89543 5 7V17C5 18.1046 5.89543 19 7 19H17C18.1046 19 19 18.1046 19 17V11.48" fill="currentColor" stroke-width="1.4" stroke-linecap="round" />
3
+ <path d="M12 12L19 5" fill="currentColor" stroke-width="1.4" stroke-linecap="round" />
4
4
  </svg>
@@ -1,4 +1,3 @@
1
- <svg viewBox="0 0 15 19" fill="currentColor"
2
- xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M11.0744 1.52703V1.37342C11.0744 0.614902 10.4595 0 9.70101 0H5.59881C4.84029 0 4.22539 0.614902 4.22539 1.37342V1.49992C2.24541 1.66507 0.72602 3.32616 0.737615 5.31298V14.9269C0.737612 15.9398 1.14058 16.911 1.85763 17.6264C2.57467 18.3417 3.54686 18.7424 4.55971 18.74H10.7491C11.762 18.7424 12.7342 18.3417 13.4512 17.6264C14.1683 16.911 14.5712 15.9398 14.5712 14.9269V5.31298C14.564 3.33506 13.0455 1.69106 11.0744 1.52703ZM5.59779 1.37342H9.71806V2.44867H5.59779V1.37342ZM7.69655 6.45148H4.87742C4.50315 6.45148 4.19974 6.75489 4.19974 7.12916C4.19974 7.50343 4.50315 7.80683 4.87742 7.80683H7.69655C8.07082 7.80683 8.37422 7.50343 8.37422 7.12916C8.37422 6.75489 8.07082 6.45148 7.69655 6.45148ZM9.67536 13.2734H4.87742C4.50315 13.2734 4.19974 12.97 4.19974 12.5957C4.19974 12.2215 4.50315 11.918 4.87742 11.918H9.67536C10.0496 11.918 10.353 12.2215 10.353 12.5957C10.353 12.97 10.0496 13.2734 9.67536 13.2734ZM4.87742 10.626H10.4253C10.7996 10.626 11.103 10.3226 11.103 9.9483C11.103 9.57403 10.7996 9.27063 10.4253 9.27063H4.87742C4.50315 9.27063 4.19974 9.57403 4.19974 9.9483C4.19974 10.3226 4.50315 10.626 4.87742 10.626Z" fill="currentColor"/>
4
- </svg>
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15.0744 4.52703V4.37342C15.0744 3.6149 14.4595 3 13.701 3H9.59881C8.84029 3 8.22539 3.6149 8.22539 4.37342V4.49992C6.24541 4.66507 4.72602 6.32616 4.73761 8.31298V17.9269C4.73761 18.9398 5.14058 19.911 5.85763 20.6264C6.57467 21.3417 7.54686 21.7424 8.55971 21.74H14.7491C15.762 21.7424 16.7342 21.3417 17.4512 20.6264C18.1683 19.911 18.5712 18.9398 18.5712 17.9269V8.31298C18.564 6.33506 17.0455 4.69106 15.0744 4.52703ZM9.59779 4.37342H13.7181V5.44867H9.59779V4.37342ZM11.6965 9.45148H8.87742C8.50315 9.45148 8.19974 9.75489 8.19974 10.1292C8.19974 10.5034 8.50315 10.8068 8.87742 10.8068H11.6965C12.0708 10.8068 12.3742 10.5034 12.3742 10.1292C12.3742 9.75489 12.0708 9.45148 11.6965 9.45148ZM13.6754 16.2734H8.87742C8.50315 16.2734 8.19974 15.97 8.19974 15.5957C8.19974 15.2215 8.50315 14.918 8.87742 14.918H13.6754C14.0496 14.918 14.353 15.2215 14.353 15.5957C14.353 15.97 14.0496 16.2734 13.6754 16.2734ZM8.87742 13.626H14.4253C14.7996 13.626 15.103 13.3226 15.103 12.9483C15.103 12.574 14.7996 12.2706 14.4253 12.2706H8.87742C8.50315 12.2706 8.19974 12.574 8.19974 12.9483C8.19974 13.3226 8.50315 13.626 8.87742 13.626Z" fill="currentColor" />
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 3C0.895431 3 0 3.89543 0 5V19C0 20.1046 0.89543 21 2 21H22C23.1046 21 24 20.1046 24 19V5C24 3.89543 23.1046 3 22 3H2ZM7.00443 6.80039H6.46022C5.28349 6.82122 4.34051 7.78118 4.3407 8.9581V9.61687C4.3407 10.9615 5.4307 12.0515 6.77529 12.0515C8.11988 12.0515 9.20988 10.9615 9.20988 9.61687V8.9581C9.20742 8.37829 8.97272 7.82364 8.55827 7.41815C8.14381 7.01267 7.58416 6.79016 7.00443 6.80039ZM7.73962 9.61693C7.73962 10.1706 7.2908 10.6194 6.73715 10.6194C6.18349 10.6194 5.73467 10.1706 5.73467 9.61693V8.95816C5.73467 8.55742 6.05953 8.23255 6.46027 8.23255H7.00447C7.40679 8.23252 7.7344 8.55588 7.73962 8.95816V9.61693ZM10.3365 14.1519C10.1569 13.2345 9.36169 12.5665 8.427 12.548H5.04721C4.11116 12.5629 3.31399 13.2325 3.13773 14.1519L3.04226 14.5911C2.91658 15.2025 3.07455 15.8379 3.47189 16.3192C3.83401 16.7715 4.3819 17.0349 4.96129 17.0353H8.50338C9.08611 17.0378 9.63811 16.7741 10.0023 16.3192C10.3926 15.8344 10.5465 15.201 10.4224 14.5911L10.3365 14.1519ZM8.89482 15.4121C8.79661 15.5275 8.65475 15.5967 8.50338 15.6031H4.96129C4.81172 15.6002 4.67142 15.5301 4.57939 15.4121C4.45438 15.2643 4.40818 15.0653 4.45528 14.8775L4.5412 14.4383C4.58117 14.1856 4.79179 13.9948 5.04722 13.98H8.41745C8.67509 13.994 8.88891 14.1841 8.93301 14.4383L9.01894 14.8775C9.05604 15.0652 9.01085 15.2599 8.89482 15.4121ZM12.8 9C12.8 8.6134 13.1134 8.3 13.5 8.3H20.5C20.8866 8.3 21.2 8.6134 21.2 9C21.2 9.3866 20.8866 9.7 20.5 9.7H13.5C13.1134 9.7 12.8 9.3866 12.8 9ZM13.5 11.3C13.1134 11.3 12.8 11.6134 12.8 12C12.8 12.3866 13.1134 12.7 13.5 12.7H20.5C20.8866 12.7 21.2 12.3866 21.2 12C21.2 11.6134 20.8866 11.3 20.5 11.3H13.5ZM12.8 15C12.8 14.6134 13.1134 14.3 13.5 14.3H20.5C20.8866 14.3 21.2 14.6134 21.2 15C21.2 15.3866 20.8866 15.7 20.5 15.7H13.5C13.1134 15.7 12.8 15.3866 12.8 15Z" fill="currentColor" />
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.7" y="3.7" width="22.6" height="16.6" rx="1.3" stroke="currentColor" stroke-width="1.4" />
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.46022 6.80039H7.00443C7.58416 6.79016 8.14381 7.01267 8.55827 7.41815C8.97272 7.82364 9.20742 8.37829 9.20988 8.9581V9.61687C9.20988 10.9615 8.11988 12.0515 6.77529 12.0515C5.4307 12.0515 4.3407 10.9615 4.3407 9.61687V8.9581C4.34051 7.78118 5.28349 6.82122 6.46022 6.80039ZM6.73715 10.6194C7.2908 10.6194 7.73962 10.1706 7.73962 9.61693V8.95816C7.7344 8.55588 7.40679 8.23252 7.00447 8.23255H6.46027C6.05953 8.23255 5.73467 8.55742 5.73467 8.95816V9.61693C5.73467 10.1706 6.18349 10.6194 6.73715 10.6194Z" fill="currentColor" />
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.427 12.548C9.36169 12.5665 10.1569 13.2345 10.3365 14.1519L10.4224 14.5911C10.5465 15.201 10.3926 15.8344 10.0023 16.3192C9.63811 16.7741 9.08611 17.0378 8.50338 17.0353H4.96129C4.3819 17.0349 3.83401 16.7715 3.47189 16.3192C3.07455 15.8379 2.91658 15.2025 3.04226 14.5911L3.13773 14.1519C3.31399 13.2325 4.11116 12.5629 5.04721 12.548H8.427ZM8.50338 15.6031C8.65475 15.5967 8.79661 15.5275 8.89483 15.4121C9.01085 15.2599 9.05604 15.0652 9.01894 14.8775L8.93301 14.4383C8.88891 14.1841 8.67509 13.994 8.41745 13.98H5.04722C4.79179 13.9948 4.58117 14.1856 4.5412 14.4383L4.45528 14.8775C4.40818 15.0653 4.45438 15.2643 4.57939 15.4121C4.67142 15.5301 4.81172 15.6002 4.96129 15.6031H8.50338Z" fill="currentColor" />
5
+ <path d="M13.5 9H20.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
6
+ <path d="M13.5 12H20.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
7
+ <path d="M13.5 15H20.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM11 11H7V13H11V17H13V13H17V11H13V7H11V11Z" fill="currentColor" />
3
+ </svg>
@@ -1,4 +1,4 @@
1
1
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M13.7059 5H7C5.89543 5 5 5.89543 5 7V17C5 18.1046 5.89543 19 7 19H17C18.1046 19 19 18.1046 19 17V11.48" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
3
- <path d="M12 12L19 5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
2
+ <path d="M13.7059 5H7C5.89543 5 5 5.89543 5 7V17C5 18.1046 5.89543 19 7 19H17C18.1046 19 19 18.1046 19 17V11.48" fill="currentColor" stroke-width="1.4" stroke-linecap="round" />
3
+ <path d="M12 12L19 5" fill="currentColor" stroke-width="1.4" stroke-linecap="round" />
4
4
  </svg>