a-icons 1.0.21 → 1.0.25

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.
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ChevronUpFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ChevronUpFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ChevronUpFilled;
@@ -0,0 +1,44 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+
6
+ for (var p in s) {
7
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
8
+ }
9
+ }
10
+
11
+ return t;
12
+ };
13
+
14
+ return __assign.apply(this, arguments);
15
+ };
16
+
17
+ import * as React from 'react';
18
+ import Icon from 'a-base-icon/lib/Icon';
19
+
20
+ function ChevronUpFilled(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
+ fill: "currentColor",
28
+ width: 19.12,
29
+ height: 19.12,
30
+ rx: 2,
31
+ transform: "matrix(0 -1 -1 0 21.52 21.6)"
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ d: "M7.19 8.9a.75.75 0 00-.53.22.74.74 0 000 1.06l4.77 4.78a.75.75 0 001.06 0l4.77-4.78a.74.74 0 000-1.06.75.75 0 00-1.06 0l-4.24 4.25-4.24-4.25a.79.79 0 00-.53-.22z",
34
+ fill: "#fff"
35
+ }));
36
+ };
37
+
38
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
39
+ component: IconNode
40
+ }));
41
+ }
42
+
43
+ ChevronUpFilled.displayName = 'ChevronUpFilled';
44
+ export default ChevronUpFilled;
@@ -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;
package/es/index.d.ts CHANGED
@@ -8,6 +8,7 @@ export { default as CardFilled } from './CardFilled';
8
8
  export { default as CardOutlined } from './CardOutlined';
9
9
  export { default as CategoryFilled } from './CategoryFilled';
10
10
  export { default as CategoryOutlined } from './CategoryOutlined';
11
+ export { default as ChevronUpFilled } from './ChevronUpFilled';
11
12
  export { default as ClockCircleFilled } from './ClockCircleFilled';
12
13
  export { default as ClockCircleOutline } from './ClockCircleOutline';
13
14
  export { default as CloseCircleFilled } from './CloseCircleFilled';
@@ -46,6 +47,7 @@ export { default as MailOutlined } from './MailOutlined';
46
47
  export { default as MoneySymbolFilled } from './MoneySymbolFilled';
47
48
  export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
48
49
  export { default as MoveOutlined } from './MoveOutlined';
50
+ export { default as OngoingFilled } from './OngoingFilled';
49
51
  export { default as OpenMailFilled } from './OpenMailFilled';
50
52
  export { default as OpenMailOutlined } from './OpenMailOutlined';
51
53
  export { default as PeopleAddFilled } from './PeopleAddFilled';
package/es/index.js CHANGED
@@ -8,6 +8,7 @@ export { default as CardFilled } from './CardFilled';
8
8
  export { default as CardOutlined } from './CardOutlined';
9
9
  export { default as CategoryFilled } from './CategoryFilled';
10
10
  export { default as CategoryOutlined } from './CategoryOutlined';
11
+ export { default as ChevronUpFilled } from './ChevronUpFilled';
11
12
  export { default as ClockCircleFilled } from './ClockCircleFilled';
12
13
  export { default as ClockCircleOutline } from './ClockCircleOutline';
13
14
  export { default as CloseCircleFilled } from './CloseCircleFilled';
@@ -46,6 +47,7 @@ export { default as MailOutlined } from './MailOutlined';
46
47
  export { default as MoneySymbolFilled } from './MoneySymbolFilled';
47
48
  export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
48
49
  export { default as MoveOutlined } from './MoveOutlined';
50
+ export { default as OngoingFilled } from './OngoingFilled';
49
51
  export { default as OpenMailFilled } from './OpenMailFilled';
50
52
  export { default as OpenMailOutlined } from './OpenMailOutlined';
51
53
  export { default as PeopleAddFilled } from './PeopleAddFilled';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/Icon';
2
+ declare function ChevronUpFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace ChevronUpFilled {
4
+ var displayName: string;
5
+ }
6
+ export default ChevronUpFilled;
@@ -0,0 +1,91 @@
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 ChevronUpFilled(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
+ fill: "currentColor",
75
+ width: 19.12,
76
+ height: 19.12,
77
+ rx: 2,
78
+ transform: "matrix(0 -1 -1 0 21.52 21.6)"
79
+ }), React.createElement("path", {
80
+ d: "M7.19 8.9a.75.75 0 00-.53.22.74.74 0 000 1.06l4.77 4.78a.75.75 0 001.06 0l4.77-4.78a.74.74 0 000-1.06.75.75 0 00-1.06 0l-4.24 4.25-4.24-4.25a.79.79 0 00-.53-.22z",
81
+ fill: "#fff"
82
+ }));
83
+ };
84
+
85
+ return React.createElement(Icon_1["default"], __assign({}, componentProps, {
86
+ component: IconNode
87
+ }));
88
+ }
89
+
90
+ ChevronUpFilled.displayName = 'ChevronUpFilled';
91
+ exports["default"] = ChevronUpFilled;
@@ -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;
package/lib/index.d.ts CHANGED
@@ -8,6 +8,7 @@ export { default as CardFilled } from './CardFilled';
8
8
  export { default as CardOutlined } from './CardOutlined';
9
9
  export { default as CategoryFilled } from './CategoryFilled';
10
10
  export { default as CategoryOutlined } from './CategoryOutlined';
11
+ export { default as ChevronUpFilled } from './ChevronUpFilled';
11
12
  export { default as ClockCircleFilled } from './ClockCircleFilled';
12
13
  export { default as ClockCircleOutline } from './ClockCircleOutline';
13
14
  export { default as CloseCircleFilled } from './CloseCircleFilled';
@@ -46,6 +47,7 @@ export { default as MailOutlined } from './MailOutlined';
46
47
  export { default as MoneySymbolFilled } from './MoneySymbolFilled';
47
48
  export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
48
49
  export { default as MoveOutlined } from './MoveOutlined';
50
+ export { default as OngoingFilled } from './OngoingFilled';
49
51
  export { default as OpenMailFilled } from './OpenMailFilled';
50
52
  export { default as OpenMailOutlined } from './OpenMailOutlined';
51
53
  export { default as PeopleAddFilled } from './PeopleAddFilled';
package/lib/index.js CHANGED
@@ -94,6 +94,15 @@ Object.defineProperty(exports, "CategoryOutlined", {
94
94
  }
95
95
  });
96
96
 
97
+ var ChevronUpFilled_1 = require("./ChevronUpFilled");
98
+
99
+ Object.defineProperty(exports, "ChevronUpFilled", {
100
+ enumerable: true,
101
+ get: function get() {
102
+ return ChevronUpFilled_1["default"];
103
+ }
104
+ });
105
+
97
106
  var ClockCircleFilled_1 = require("./ClockCircleFilled");
98
107
 
99
108
  Object.defineProperty(exports, "ClockCircleFilled", {
@@ -436,6 +445,15 @@ Object.defineProperty(exports, "MoveOutlined", {
436
445
  }
437
446
  });
438
447
 
448
+ var OngoingFilled_1 = require("./OngoingFilled");
449
+
450
+ Object.defineProperty(exports, "OngoingFilled", {
451
+ enumerable: true,
452
+ get: function get() {
453
+ return OngoingFilled_1["default"];
454
+ }
455
+ });
456
+
439
457
  var OpenMailFilled_1 = require("./OpenMailFilled");
440
458
 
441
459
  Object.defineProperty(exports, "OpenMailFilled", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.0.21",
3
+ "version": "1.0.25",
4
4
  "repository": "git@github.com:SPOTEC-LTD/assui.git",
5
5
  "author": "jason <usochen@gmail.com>",
6
6
  "main": "./lib/index.js",
@@ -17,10 +17,10 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "@svgr/webpack": "^5.5.0",
20
- "a-base-icon": "^1.0.2"
20
+ "a-base-icon": "^1.0.3"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "assui": "^2.0.2"
24
24
  },
25
- "gitHead": "6eb441eccabca51e9bd9c3c04cae5a3c5e30d8e2"
25
+ "gitHead": "935fb8c042ab1de74a15cd3b4206208157e31ffc"
26
26
  }
@@ -16,7 +16,14 @@ function CameraOutlined(componentProps: IconProps) {
16
16
  d="M7.716 12.19a4.21 4.21 0 118.42 0 4.21 4.21 0 01-8.42 0zm1.579 0a2.632 2.632 0 105.263 0 2.632 2.632 0 00-5.263 0z"
17
17
  fill="currentColor"
18
18
  />
19
- <rect x={16.137} y={6.916} width={2.105} height={2.116} rx={0.5} fill="currentColor" />
19
+ <rect
20
+ x={16.137}
21
+ y={6.916}
22
+ width={2.105}
23
+ height={2.116}
24
+ rx={0.5}
25
+ fill="currentColor"
26
+ />
20
27
  </svg>
21
28
  );
22
29
 
@@ -7,7 +7,14 @@ function CategoryFilled(componentProps: IconProps) {
7
7
  <rect x={2.33} y={2} width={8.67} height={6.67} rx={2.25} fill="currentColor" />
8
8
  <rect x={13.67} y={2} width={8} height={11.33} rx={2.25} fill="currentColor" />
9
9
  <rect x={13.67} y={16} width={8} height={6} rx={2.25} fill="currentColor" />
10
- <rect x={2.33} y={11.33} width={8.67} height={10.67} rx={2.25} fill="currentColor" />
10
+ <rect
11
+ x={2.33}
12
+ y={11.33}
13
+ width={8.67}
14
+ height={10.67}
15
+ rx={2.25}
16
+ fill="currentColor"
17
+ />
11
18
  </svg>
12
19
  );
13
20
 
@@ -0,0 +1,25 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
3
+
4
+ function ChevronUpFilled(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
+ fill="currentColor"
9
+ width={19.12}
10
+ height={19.12}
11
+ rx={2}
12
+ transform="matrix(0 -1 -1 0 21.52 21.6)"
13
+ />
14
+ <path
15
+ d="M7.19 8.9a.75.75 0 00-.53.22.74.74 0 000 1.06l4.77 4.78a.75.75 0 001.06 0l4.77-4.78a.74.74 0 000-1.06.75.75 0 00-1.06 0l-4.24 4.25-4.24-4.25a.79.79 0 00-.53-.22z"
16
+ fill="#fff"
17
+ />
18
+ </svg>
19
+ );
20
+
21
+ return <Icon {...componentProps} component={IconNode} />;
22
+ }
23
+
24
+ ChevronUpFilled.displayName = 'ChevronUpFilled';
25
+ export default ChevronUpFilled;
@@ -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;
@@ -14,7 +14,10 @@ function SearchDocumentFilled(componentProps: IconProps) {
14
14
  d="M14.07 10.24h4.78a.5.5 0 01.5.5v6.92a4 4 0 01-4 4H8.46a4 4 0 01-4-4V6.5a4 4 0 014-4h2.67a.51.51 0 01.5.5v4.78a2.45 2.45 0 002.44 2.46zm-5.22 8.04a2.87 2.87 0 001.51.44l.04-.05a2.84 2.84 0 10-2.84-2.84c.002.461.119.915.34 1.32a.996.996 0 00-.13.09l-1.06 1.1a.75.75 0 00.54 1.27.7.7 0 00.54-.23l1.06-1.1z"
15
15
  fill="currentColor"
16
16
  />
17
- <path d="M10.36 14.53a1.35 1.35 0 10-.02 2.7 1.35 1.35 0 00.02-2.7z" fill="currentColor" />
17
+ <path
18
+ d="M10.36 14.53a1.35 1.35 0 10-.02 2.7 1.35 1.35 0 00.02-2.7z"
19
+ fill="currentColor"
20
+ />
18
21
  </svg>
19
22
  );
20
23
 
@@ -4,7 +4,10 @@ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
4
4
  function WalletFilled(componentProps: IconProps) {
5
5
  const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
6
  <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
7
- <path d="M18.314 11.22a.676.676 0 100 1.351H22V11.2h-.105l-3.58.02z" fill="currentColor" />
7
+ <path
8
+ d="M18.314 11.22a.676.676 0 100 1.351H22V11.2h-.105l-3.58.02z"
9
+ fill="currentColor"
10
+ />
8
11
  <path
9
12
  d="M21.895 14.381h-3.58a2.486 2.486 0 010-4.971H22v-1.6A3.81 3.81 0 0018.19 4H5.81A3.81 3.81 0 002 7.81v8.171a3.81 3.81 0 003.81 3.81h12.38A3.81 3.81 0 0022 15.98v-1.62l-.105.02z"
10
13
  fill="currentColor"
package/src/index.tsx CHANGED
@@ -8,6 +8,7 @@ export { default as CardFilled } from './CardFilled';
8
8
  export { default as CardOutlined } from './CardOutlined';
9
9
  export { default as CategoryFilled } from './CategoryFilled';
10
10
  export { default as CategoryOutlined } from './CategoryOutlined';
11
+ export { default as ChevronUpFilled } from './ChevronUpFilled';
11
12
  export { default as ClockCircleFilled } from './ClockCircleFilled';
12
13
  export { default as ClockCircleOutline } from './ClockCircleOutline';
13
14
  export { default as CloseCircleFilled } from './CloseCircleFilled';
@@ -46,6 +47,7 @@ export { default as MailOutlined } from './MailOutlined';
46
47
  export { default as MoneySymbolFilled } from './MoneySymbolFilled';
47
48
  export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
48
49
  export { default as MoveOutlined } from './MoveOutlined';
50
+ export { default as OngoingFilled } from './OngoingFilled';
49
51
  export { default as OpenMailFilled } from './OpenMailFilled';
50
52
  export { default as OpenMailOutlined } from './OpenMailOutlined';
51
53
  export { default as PeopleAddFilled } from './PeopleAddFilled';
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect fill="currentColor" width="19.12" height="19.12" rx="2" transform="matrix(0 -1 -1 0 21.52 21.6)" />
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
+ </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,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect fill="currentColor" width="19.12" height="19.12" rx="2" transform="matrix(0 -1 -1 0 21.52 21.6)" />
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
+ </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>