a-icons 1.0.23 → 1.0.27

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 (39) hide show
  1. package/es/ArticleBoardFilled.d.ts +6 -0
  2. package/es/ArticleBoardFilled.js +39 -0
  3. package/es/ChevronUpFilled.js +1 -2
  4. package/es/EditSimpleOutlined.d.ts +6 -0
  5. package/es/EditSimpleOutlined.js +40 -0
  6. package/es/OngoingFilled.d.ts +6 -0
  7. package/es/OngoingFilled.js +54 -0
  8. package/es/StampFilled.d.ts +6 -0
  9. package/es/StampFilled.js +53 -0
  10. package/es/index.d.ts +4 -0
  11. package/es/index.js +4 -0
  12. package/lib/ArticleBoardFilled.d.ts +6 -0
  13. package/lib/ArticleBoardFilled.js +86 -0
  14. package/lib/ChevronUpFilled.js +1 -2
  15. package/lib/EditSimpleOutlined.d.ts +6 -0
  16. package/lib/EditSimpleOutlined.js +87 -0
  17. package/lib/OngoingFilled.d.ts +6 -0
  18. package/lib/OngoingFilled.js +101 -0
  19. package/lib/StampFilled.d.ts +6 -0
  20. package/lib/StampFilled.js +100 -0
  21. package/lib/index.d.ts +4 -0
  22. package/lib/index.js +36 -0
  23. package/package.json +2 -2
  24. package/src/ArticleBoardFilled.tsx +19 -0
  25. package/src/ChevronUpFilled.tsx +1 -1
  26. package/src/EditSimpleOutlined.tsx +20 -0
  27. package/src/OngoingFilled.tsx +18 -0
  28. package/src/StampFilled.tsx +18 -0
  29. package/src/index.tsx +4 -0
  30. package/svgs/filled/article-board-filled.svg +4 -0
  31. package/svgs/filled/chevron-up-filled.svg +1 -1
  32. package/svgs/filled/ongoing-filled.svg +6 -0
  33. package/svgs/filled/stamp-filled.svg +6 -0
  34. package/svgs/outlined/edit-simple-outlined.svg +4 -0
  35. package/tmpAllSvgs/article-board-filled.svg +4 -0
  36. package/tmpAllSvgs/chevron-up-filled.svg +1 -1
  37. package/tmpAllSvgs/edit-simple-outlined.svg +4 -0
  38. package/tmpAllSvgs/ongoing-filled.svg +6 -0
  39. package/tmpAllSvgs/stamp-filled.svg +6 -0
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ArticleBoardFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ArticleBoardFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ArticleBoardFilled;
@@ -0,0 +1,39 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+
6
+ for (var p in s) {
7
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
8
+ }
9
+ }
10
+
11
+ return t;
12
+ };
13
+
14
+ return __assign.apply(this, arguments);
15
+ };
16
+
17
+ import * as React from 'react';
18
+ import Icon from 'a-base-icon/lib/Icon';
19
+
20
+ function ArticleBoardFilled(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 15 19",
24
+ fill: "currentColor",
25
+ xmlns: "http://www.w3.org/2000/svg"
26
+ }, props), /*#__PURE__*/React.createElement("path", {
27
+ fillRule: "evenodd",
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"
30
+ }));
31
+ };
32
+
33
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
34
+ component: IconNode
35
+ }));
36
+ }
37
+
38
+ ArticleBoardFilled.displayName = 'ArticleBoardFilled';
39
+ export default ArticleBoardFilled;
@@ -20,8 +20,7 @@ import Icon from 'a-base-icon/lib/Icon';
20
20
  function ChevronUpFilled(componentProps) {
21
21
  var IconNode = function IconNode(props) {
22
22
  return /*#__PURE__*/React.createElement("svg", __assign({
23
- width: 24,
24
- height: 24,
23
+ viewBox: "0 0 24 24",
25
24
  fill: "none",
26
25
  xmlns: "http://www.w3.org/2000/svg"
27
26
  }, props), /*#__PURE__*/React.createElement("rect", {
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function EditSimpleOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace EditSimpleOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default EditSimpleOutlined;
@@ -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 EditSimpleOutlined(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 24 24",
24
+ fill: "none",
25
+ xmlns: "http://www.w3.org/2000/svg"
26
+ }, props), /*#__PURE__*/React.createElement("path", {
27
+ d: "M13.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"
31
+ }));
32
+ };
33
+
34
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
35
+ component: IconNode
36
+ }));
37
+ }
38
+
39
+ EditSimpleOutlined.displayName = 'EditSimpleOutlined';
40
+ export default EditSimpleOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function OngoingFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace OngoingFilled {
4
+ var displayName: string;
5
+ }
6
+ export default OngoingFilled;
@@ -0,0 +1,54 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+
6
+ for (var p in s) {
7
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
8
+ }
9
+ }
10
+
11
+ return t;
12
+ };
13
+
14
+ return __assign.apply(this, arguments);
15
+ };
16
+
17
+ import * as React from 'react';
18
+ import Icon from 'a-base-icon/lib/Icon';
19
+
20
+ function OngoingFilled(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 24 24",
24
+ xmlns: "http://www.w3.org/2000/svg"
25
+ }, props), /*#__PURE__*/React.createElement("circle", {
26
+ cx: 12,
27
+ cy: 12,
28
+ r: 9,
29
+ fill: "currentColor"
30
+ }), /*#__PURE__*/React.createElement("circle", {
31
+ cx: 8,
32
+ cy: 12.1,
33
+ r: 1.1,
34
+ fill: "inherit"
35
+ }), /*#__PURE__*/React.createElement("circle", {
36
+ cx: 12,
37
+ cy: 12.1,
38
+ r: 1.1,
39
+ fill: "inherit"
40
+ }), /*#__PURE__*/React.createElement("circle", {
41
+ cx: 16,
42
+ cy: 12.1,
43
+ r: 1.1,
44
+ fill: "inherit"
45
+ }));
46
+ };
47
+
48
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
49
+ component: IconNode
50
+ }));
51
+ }
52
+
53
+ OngoingFilled.displayName = 'OngoingFilled';
54
+ export default OngoingFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function StampFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace StampFilled {
4
+ var displayName: string;
5
+ }
6
+ export default StampFilled;
@@ -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 StampFilled(componentProps) {
21
+ var IconNode = function IconNode(props) {
22
+ return /*#__PURE__*/React.createElement("svg", __assign({
23
+ viewBox: "0 0 24 24",
24
+ fill: "currentColor",
25
+ xmlns: "http://www.w3.org/2000/svg"
26
+ }, props), /*#__PURE__*/React.createElement("rect", {
27
+ x: 4,
28
+ y: 13,
29
+ width: 16,
30
+ height: 5,
31
+ rx: 2
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ d: "M10 10h4v4h-4z"
34
+ }), /*#__PURE__*/React.createElement("circle", {
35
+ cx: 12,
36
+ cy: 7,
37
+ r: 4
38
+ }), /*#__PURE__*/React.createElement("rect", {
39
+ x: 5,
40
+ y: 19,
41
+ width: 14,
42
+ height: 2,
43
+ rx: 1
44
+ }));
45
+ };
46
+
47
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
48
+ component: IconNode
49
+ }));
50
+ }
51
+
52
+ StampFilled.displayName = 'StampFilled';
53
+ export default StampFilled;
package/es/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export { default as AlertTriangleFilled } from './AlertTriangleFilled';
2
2
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
3
+ export { default as ArticleBoardFilled } from './ArticleBoardFilled';
3
4
  export { default as BrokenLineFilled } from './BrokenLineFilled';
4
5
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
5
6
  export { default as CameraFilled } from './CameraFilled';
@@ -24,6 +25,7 @@ export { default as CreditCardOutlined } from './CreditCardOutlined';
24
25
  export { default as DoubleTextFilled } from './DoubleTextFilled';
25
26
  export { default as DoubleTextOutlined } from './DoubleTextOutlined';
26
27
  export { default as EditFilled } from './EditFilled';
28
+ export { default as EditSimpleOutlined } from './EditSimpleOutlined';
27
29
  export { default as FileFilled } from './FileFilled';
28
30
  export { default as FileOutlined } from './FileOutlined';
29
31
  export { default as FormFilled } from './FormFilled';
@@ -47,6 +49,7 @@ export { default as MailOutlined } from './MailOutlined';
47
49
  export { default as MoneySymbolFilled } from './MoneySymbolFilled';
48
50
  export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
49
51
  export { default as MoveOutlined } from './MoveOutlined';
52
+ export { default as OngoingFilled } from './OngoingFilled';
50
53
  export { default as OpenMailFilled } from './OpenMailFilled';
51
54
  export { default as OpenMailOutlined } from './OpenMailOutlined';
52
55
  export { default as PeopleAddFilled } from './PeopleAddFilled';
@@ -69,6 +72,7 @@ export { default as SettingFilled } from './SettingFilled';
69
72
  export { default as SettingOutlined } from './SettingOutlined';
70
73
  export { default as SettingSquareFilled } from './SettingSquareFilled';
71
74
  export { default as SettingSquareOutlined } from './SettingSquareOutlined';
75
+ export { default as StampFilled } from './StampFilled';
72
76
  export { default as StarFilled } from './StarFilled';
73
77
  export { default as StarOutlined } from './StarOutlined';
74
78
  export { default as StopFilled } from './StopFilled';
package/es/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  export { default as AlertTriangleFilled } from './AlertTriangleFilled';
2
2
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
3
+ export { default as ArticleBoardFilled } from './ArticleBoardFilled';
3
4
  export { default as BrokenLineFilled } from './BrokenLineFilled';
4
5
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
5
6
  export { default as CameraFilled } from './CameraFilled';
@@ -24,6 +25,7 @@ export { default as CreditCardOutlined } from './CreditCardOutlined';
24
25
  export { default as DoubleTextFilled } from './DoubleTextFilled';
25
26
  export { default as DoubleTextOutlined } from './DoubleTextOutlined';
26
27
  export { default as EditFilled } from './EditFilled';
28
+ export { default as EditSimpleOutlined } from './EditSimpleOutlined';
27
29
  export { default as FileFilled } from './FileFilled';
28
30
  export { default as FileOutlined } from './FileOutlined';
29
31
  export { default as FormFilled } from './FormFilled';
@@ -47,6 +49,7 @@ export { default as MailOutlined } from './MailOutlined';
47
49
  export { default as MoneySymbolFilled } from './MoneySymbolFilled';
48
50
  export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
49
51
  export { default as MoveOutlined } from './MoveOutlined';
52
+ export { default as OngoingFilled } from './OngoingFilled';
50
53
  export { default as OpenMailFilled } from './OpenMailFilled';
51
54
  export { default as OpenMailOutlined } from './OpenMailOutlined';
52
55
  export { default as PeopleAddFilled } from './PeopleAddFilled';
@@ -69,6 +72,7 @@ export { default as SettingFilled } from './SettingFilled';
69
72
  export { default as SettingOutlined } from './SettingOutlined';
70
73
  export { default as SettingSquareFilled } from './SettingSquareFilled';
71
74
  export { default as SettingSquareOutlined } from './SettingSquareOutlined';
75
+ export { default as StampFilled } from './StampFilled';
72
76
  export { default as StarFilled } from './StarFilled';
73
77
  export { default as StarOutlined } from './StarOutlined';
74
78
  export { default as StopFilled } from './StopFilled';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ArticleBoardFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ArticleBoardFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ArticleBoardFilled;
@@ -0,0 +1,86 @@
1
+ "use strict";
2
+
3
+ var __assign = this && this.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+
8
+ for (var p in s) {
9
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
10
+ }
11
+ }
12
+
13
+ return t;
14
+ };
15
+
16
+ return __assign.apply(this, arguments);
17
+ };
18
+
19
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
20
+ if (k2 === undefined) k2 = k;
21
+ Object.defineProperty(o, k2, {
22
+ enumerable: true,
23
+ get: function get() {
24
+ return m[k];
25
+ }
26
+ });
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+
32
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
33
+ Object.defineProperty(o, "default", {
34
+ enumerable: true,
35
+ value: v
36
+ });
37
+ } : function (o, v) {
38
+ o["default"] = v;
39
+ });
40
+
41
+ var __importStar = this && this.__importStar || function (mod) {
42
+ if (mod && mod.__esModule) return mod;
43
+ var result = {};
44
+ if (mod != null) for (var k in mod) {
45
+ if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
46
+ }
47
+
48
+ __setModuleDefault(result, mod);
49
+
50
+ return result;
51
+ };
52
+
53
+ var __importDefault = this && this.__importDefault || function (mod) {
54
+ return mod && mod.__esModule ? mod : {
55
+ "default": mod
56
+ };
57
+ };
58
+
59
+ Object.defineProperty(exports, "__esModule", {
60
+ value: true
61
+ });
62
+
63
+ var React = __importStar(require("react"));
64
+
65
+ var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
66
+
67
+ function ArticleBoardFilled(componentProps) {
68
+ var IconNode = function IconNode(props) {
69
+ return React.createElement("svg", __assign({
70
+ viewBox: "0 0 15 19",
71
+ fill: "currentColor",
72
+ xmlns: "http://www.w3.org/2000/svg"
73
+ }, props), React.createElement("path", {
74
+ fillRule: "evenodd",
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"
77
+ }));
78
+ };
79
+
80
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
81
+ component: IconNode
82
+ }));
83
+ }
84
+
85
+ ArticleBoardFilled.displayName = 'ArticleBoardFilled';
86
+ exports["default"] = ArticleBoardFilled;
@@ -67,8 +67,7 @@ var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
67
67
  function ChevronUpFilled(componentProps) {
68
68
  var IconNode = function IconNode(props) {
69
69
  return React.createElement("svg", __assign({
70
- width: 24,
71
- height: 24,
70
+ viewBox: "0 0 24 24",
72
71
  fill: "none",
73
72
  xmlns: "http://www.w3.org/2000/svg"
74
73
  }, props), React.createElement("rect", {
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function EditSimpleOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace EditSimpleOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default EditSimpleOutlined;
@@ -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 EditSimpleOutlined(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: "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"
78
+ }));
79
+ };
80
+
81
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
82
+ component: IconNode
83
+ }));
84
+ }
85
+
86
+ EditSimpleOutlined.displayName = 'EditSimpleOutlined';
87
+ exports["default"] = EditSimpleOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function OngoingFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace OngoingFilled {
4
+ var displayName: string;
5
+ }
6
+ export default OngoingFilled;
@@ -0,0 +1,101 @@
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 OngoingFilled(componentProps) {
68
+ var IconNode = function IconNode(props) {
69
+ return React.createElement("svg", __assign({
70
+ viewBox: "0 0 24 24",
71
+ xmlns: "http://www.w3.org/2000/svg"
72
+ }, props), React.createElement("circle", {
73
+ cx: 12,
74
+ cy: 12,
75
+ r: 9,
76
+ fill: "currentColor"
77
+ }), React.createElement("circle", {
78
+ cx: 8,
79
+ cy: 12.1,
80
+ r: 1.1,
81
+ fill: "inherit"
82
+ }), React.createElement("circle", {
83
+ cx: 12,
84
+ cy: 12.1,
85
+ r: 1.1,
86
+ fill: "inherit"
87
+ }), React.createElement("circle", {
88
+ cx: 16,
89
+ cy: 12.1,
90
+ r: 1.1,
91
+ fill: "inherit"
92
+ }));
93
+ };
94
+
95
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
96
+ component: IconNode
97
+ }));
98
+ }
99
+
100
+ OngoingFilled.displayName = 'OngoingFilled';
101
+ exports["default"] = OngoingFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function StampFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace StampFilled {
4
+ var displayName: string;
5
+ }
6
+ export default StampFilled;
@@ -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 StampFilled(componentProps) {
68
+ var IconNode = function IconNode(props) {
69
+ return React.createElement("svg", __assign({
70
+ viewBox: "0 0 24 24",
71
+ fill: "currentColor",
72
+ xmlns: "http://www.w3.org/2000/svg"
73
+ }, props), React.createElement("rect", {
74
+ x: 4,
75
+ y: 13,
76
+ width: 16,
77
+ height: 5,
78
+ rx: 2
79
+ }), React.createElement("path", {
80
+ d: "M10 10h4v4h-4z"
81
+ }), React.createElement("circle", {
82
+ cx: 12,
83
+ cy: 7,
84
+ r: 4
85
+ }), React.createElement("rect", {
86
+ x: 5,
87
+ y: 19,
88
+ width: 14,
89
+ height: 2,
90
+ rx: 1
91
+ }));
92
+ };
93
+
94
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
95
+ component: IconNode
96
+ }));
97
+ }
98
+
99
+ StampFilled.displayName = 'StampFilled';
100
+ exports["default"] = StampFilled;
package/lib/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export { default as AlertTriangleFilled } from './AlertTriangleFilled';
2
2
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
3
+ export { default as ArticleBoardFilled } from './ArticleBoardFilled';
3
4
  export { default as BrokenLineFilled } from './BrokenLineFilled';
4
5
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
5
6
  export { default as CameraFilled } from './CameraFilled';
@@ -24,6 +25,7 @@ export { default as CreditCardOutlined } from './CreditCardOutlined';
24
25
  export { default as DoubleTextFilled } from './DoubleTextFilled';
25
26
  export { default as DoubleTextOutlined } from './DoubleTextOutlined';
26
27
  export { default as EditFilled } from './EditFilled';
28
+ export { default as EditSimpleOutlined } from './EditSimpleOutlined';
27
29
  export { default as FileFilled } from './FileFilled';
28
30
  export { default as FileOutlined } from './FileOutlined';
29
31
  export { default as FormFilled } from './FormFilled';
@@ -47,6 +49,7 @@ export { default as MailOutlined } from './MailOutlined';
47
49
  export { default as MoneySymbolFilled } from './MoneySymbolFilled';
48
50
  export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
49
51
  export { default as MoveOutlined } from './MoveOutlined';
52
+ export { default as OngoingFilled } from './OngoingFilled';
50
53
  export { default as OpenMailFilled } from './OpenMailFilled';
51
54
  export { default as OpenMailOutlined } from './OpenMailOutlined';
52
55
  export { default as PeopleAddFilled } from './PeopleAddFilled';
@@ -69,6 +72,7 @@ export { default as SettingFilled } from './SettingFilled';
69
72
  export { default as SettingOutlined } from './SettingOutlined';
70
73
  export { default as SettingSquareFilled } from './SettingSquareFilled';
71
74
  export { default as SettingSquareOutlined } from './SettingSquareOutlined';
75
+ export { default as StampFilled } from './StampFilled';
72
76
  export { default as StarFilled } from './StarFilled';
73
77
  export { default as StarOutlined } from './StarOutlined';
74
78
  export { default as StopFilled } from './StopFilled';
package/lib/index.js CHANGED
@@ -22,6 +22,15 @@ Object.defineProperty(exports, "AlertTriangleOutlined", {
22
22
  }
23
23
  });
24
24
 
25
+ var ArticleBoardFilled_1 = require("./ArticleBoardFilled");
26
+
27
+ Object.defineProperty(exports, "ArticleBoardFilled", {
28
+ enumerable: true,
29
+ get: function get() {
30
+ return ArticleBoardFilled_1["default"];
31
+ }
32
+ });
33
+
25
34
  var BrokenLineFilled_1 = require("./BrokenLineFilled");
26
35
 
27
36
  Object.defineProperty(exports, "BrokenLineFilled", {
@@ -238,6 +247,15 @@ Object.defineProperty(exports, "EditFilled", {
238
247
  }
239
248
  });
240
249
 
250
+ var EditSimpleOutlined_1 = require("./EditSimpleOutlined");
251
+
252
+ Object.defineProperty(exports, "EditSimpleOutlined", {
253
+ enumerable: true,
254
+ get: function get() {
255
+ return EditSimpleOutlined_1["default"];
256
+ }
257
+ });
258
+
241
259
  var FileFilled_1 = require("./FileFilled");
242
260
 
243
261
  Object.defineProperty(exports, "FileFilled", {
@@ -445,6 +463,15 @@ Object.defineProperty(exports, "MoveOutlined", {
445
463
  }
446
464
  });
447
465
 
466
+ var OngoingFilled_1 = require("./OngoingFilled");
467
+
468
+ Object.defineProperty(exports, "OngoingFilled", {
469
+ enumerable: true,
470
+ get: function get() {
471
+ return OngoingFilled_1["default"];
472
+ }
473
+ });
474
+
448
475
  var OpenMailFilled_1 = require("./OpenMailFilled");
449
476
 
450
477
  Object.defineProperty(exports, "OpenMailFilled", {
@@ -643,6 +670,15 @@ Object.defineProperty(exports, "SettingSquareOutlined", {
643
670
  }
644
671
  });
645
672
 
673
+ var StampFilled_1 = require("./StampFilled");
674
+
675
+ Object.defineProperty(exports, "StampFilled", {
676
+ enumerable: true,
677
+ get: function get() {
678
+ return StampFilled_1["default"];
679
+ }
680
+ });
681
+
646
682
  var StarFilled_1 = require("./StarFilled");
647
683
 
648
684
  Object.defineProperty(exports, "StarFilled", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.0.23",
3
+ "version": "1.0.27",
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": "395622ee048bfbfdc123e6524a578e050e7f5d9d"
25
+ "gitHead": "903da597775fbdf1005a56cbfe684e74102356fb"
26
26
  }
@@ -0,0 +1,19 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function ArticleBoardFilled(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 15 19" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <path
8
+ fillRule="evenodd"
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"
11
+ />
12
+ </svg>
13
+ );
14
+
15
+ return <Icon {...componentProps} component={IconNode} />;
16
+ }
17
+
18
+ ArticleBoardFilled.displayName = 'ArticleBoardFilled';
19
+ export default ArticleBoardFilled;
@@ -3,7 +3,7 @@ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
3
 
4
4
  function ChevronUpFilled(componentProps: IconProps) {
5
5
  const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
- <svg width={24} height={24} fill="none" 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
  <rect
8
8
  fill="currentColor"
9
9
  width={19.12}
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function EditSimpleOutlined(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="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"
12
+ />
13
+ </svg>
14
+ );
15
+
16
+ return <Icon {...componentProps} component={IconNode} />;
17
+ }
18
+
19
+ EditSimpleOutlined.displayName = 'EditSimpleOutlined';
20
+ export default EditSimpleOutlined;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function OngoingFilled(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <circle cx={12} cy={12} r={9} fill="currentColor" />
8
+ <circle cx={8} cy={12.1} r={1.1} fill="inherit" />
9
+ <circle cx={12} cy={12.1} r={1.1} fill="inherit" />
10
+ <circle cx={16} cy={12.1} r={1.1} fill="inherit" />
11
+ </svg>
12
+ );
13
+
14
+ return <Icon {...componentProps} component={IconNode} />;
15
+ }
16
+
17
+ OngoingFilled.displayName = 'OngoingFilled';
18
+ export default OngoingFilled;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function StampFilled(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <rect x={4} y={13} width={16} height={5} rx={2} />
8
+ <path d="M10 10h4v4h-4z" />
9
+ <circle cx={12} cy={7} r={4} />
10
+ <rect x={5} y={19} width={14} height={2} rx={1} />
11
+ </svg>
12
+ );
13
+
14
+ return <Icon {...componentProps} component={IconNode} />;
15
+ }
16
+
17
+ StampFilled.displayName = 'StampFilled';
18
+ export default StampFilled;
package/src/index.tsx CHANGED
@@ -1,5 +1,6 @@
1
1
  export { default as AlertTriangleFilled } from './AlertTriangleFilled';
2
2
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
3
+ export { default as ArticleBoardFilled } from './ArticleBoardFilled';
3
4
  export { default as BrokenLineFilled } from './BrokenLineFilled';
4
5
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
5
6
  export { default as CameraFilled } from './CameraFilled';
@@ -24,6 +25,7 @@ export { default as CreditCardOutlined } from './CreditCardOutlined';
24
25
  export { default as DoubleTextFilled } from './DoubleTextFilled';
25
26
  export { default as DoubleTextOutlined } from './DoubleTextOutlined';
26
27
  export { default as EditFilled } from './EditFilled';
28
+ export { default as EditSimpleOutlined } from './EditSimpleOutlined';
27
29
  export { default as FileFilled } from './FileFilled';
28
30
  export { default as FileOutlined } from './FileOutlined';
29
31
  export { default as FormFilled } from './FormFilled';
@@ -47,6 +49,7 @@ export { default as MailOutlined } from './MailOutlined';
47
49
  export { default as MoneySymbolFilled } from './MoneySymbolFilled';
48
50
  export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
49
51
  export { default as MoveOutlined } from './MoveOutlined';
52
+ export { default as OngoingFilled } from './OngoingFilled';
50
53
  export { default as OpenMailFilled } from './OpenMailFilled';
51
54
  export { default as OpenMailOutlined } from './OpenMailOutlined';
52
55
  export { default as PeopleAddFilled } from './PeopleAddFilled';
@@ -69,6 +72,7 @@ export { default as SettingFilled } from './SettingFilled';
69
72
  export { default as SettingOutlined } from './SettingOutlined';
70
73
  export { default as SettingSquareFilled } from './SettingSquareFilled';
71
74
  export { default as SettingSquareOutlined } from './SettingSquareOutlined';
75
+ export { default as StampFilled } from './StampFilled';
72
76
  export { default as StarFilled } from './StarFilled';
73
77
  export { default as StarOutlined } from './StarOutlined';
74
78
  export { default as StopFilled } from './StopFilled';
@@ -0,0 +1,4 @@
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,4 +1,4 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
2
  <rect fill="currentColor" width="19.12" height="19.12" rx="2" transform="matrix(0 -1 -1 0 21.52 21.6)" />
3
3
  <path d="M7.18997 8.90001C6.99113 8.90018 6.80049 8.97931 6.65997 9.12001C6.51702 9.25929 6.4364 9.45042 6.4364 9.65001C6.4364 9.84959 6.51702 10.0407 6.65997 10.18L11.43 14.96C11.5705 15.1007 11.7611 15.1798 11.96 15.18C12.1588 15.1798 12.3495 15.1007 12.49 14.96L17.26 10.18C17.4029 10.0407 17.4835 9.84959 17.4835 9.65001C17.4835 9.45042 17.4029 9.25929 17.26 9.12001C16.9672 8.82755 16.4928 8.82755 16.2 9.12001L11.96 13.37L7.71997 9.12001C7.57713 8.98283 7.38797 8.90431 7.18997 8.90001Z" fill="white"/>
4
4
  </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="12" r="9" fill="currentColor" />
3
+ <circle cx="8.00002" cy="12.1" r="1.1" fill="inherit" />
4
+ <circle cx="12" cy="12.1" r="1.1" fill="inherit" />
5
+ <circle cx="16" cy="12.1" r="1.1" fill="inherit" />
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="4" y="13" width="16" height="5" rx="2" fill="currentColor" />
3
+ <rect x="10" y="10" width="4" height="4" fill="currentColor" />
4
+ <circle cx="12" cy="7" r="4" fill="currentColor" />
5
+ <rect x="5" y="19" width="14" height="2" rx="1" fill="currentColor" />
6
+ </svg>
@@ -0,0 +1,4 @@
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" />
4
+ </svg>
@@ -0,0 +1,4 @@
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,4 +1,4 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
2
  <rect fill="currentColor" width="19.12" height="19.12" rx="2" transform="matrix(0 -1 -1 0 21.52 21.6)" />
3
3
  <path d="M7.18997 8.90001C6.99113 8.90018 6.80049 8.97931 6.65997 9.12001C6.51702 9.25929 6.4364 9.45042 6.4364 9.65001C6.4364 9.84959 6.51702 10.0407 6.65997 10.18L11.43 14.96C11.5705 15.1007 11.7611 15.1798 11.96 15.18C12.1588 15.1798 12.3495 15.1007 12.49 14.96L17.26 10.18C17.4029 10.0407 17.4835 9.84959 17.4835 9.65001C17.4835 9.45042 17.4029 9.25929 17.26 9.12001C16.9672 8.82755 16.4928 8.82755 16.2 9.12001L11.96 13.37L7.71997 9.12001C7.57713 8.98283 7.38797 8.90431 7.18997 8.90001Z" fill="white"/>
4
4
  </svg>
@@ -0,0 +1,4 @@
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" />
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="12" r="9" fill="currentColor" />
3
+ <circle cx="8.00002" cy="12.1" r="1.1" fill="inherit" />
4
+ <circle cx="12" cy="12.1" r="1.1" fill="inherit" />
5
+ <circle cx="16" cy="12.1" r="1.1" fill="inherit" />
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="4" y="13" width="16" height="5" rx="2" fill="currentColor" />
3
+ <rect x="10" y="10" width="4" height="4" fill="currentColor" />
4
+ <circle cx="12" cy="7" r="4" fill="currentColor" />
5
+ <rect x="5" y="19" width="14" height="2" rx="1" fill="currentColor" />
6
+ </svg>