a-icons 1.0.24 → 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.
- package/es/OngoingFilled.d.ts +6 -0
- package/es/OngoingFilled.js +54 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/OngoingFilled.d.ts +6 -0
- package/lib/OngoingFilled.js +101 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +9 -0
- package/package.json +2 -2
- package/src/CameraOutlined.tsx +8 -1
- package/src/CategoryFilled.tsx +8 -1
- package/src/OngoingFilled.tsx +18 -0
- package/src/SearchDocumentFilled.tsx +4 -1
- package/src/WalletFilled.tsx +4 -1
- package/src/index.tsx +1 -0
- package/svgs/filled/ongoing-filled.svg +6 -0
- package/tmpAllSvgs/ongoing-filled.svg +6 -0
|
@@ -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
|
@@ -47,6 +47,7 @@ export { default as MailOutlined } from './MailOutlined';
|
|
|
47
47
|
export { default as MoneySymbolFilled } from './MoneySymbolFilled';
|
|
48
48
|
export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
49
49
|
export { default as MoveOutlined } from './MoveOutlined';
|
|
50
|
+
export { default as OngoingFilled } from './OngoingFilled';
|
|
50
51
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
51
52
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
|
52
53
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
package/es/index.js
CHANGED
|
@@ -47,6 +47,7 @@ export { default as MailOutlined } from './MailOutlined';
|
|
|
47
47
|
export { default as MoneySymbolFilled } from './MoneySymbolFilled';
|
|
48
48
|
export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
49
49
|
export { default as MoveOutlined } from './MoveOutlined';
|
|
50
|
+
export { default as OngoingFilled } from './OngoingFilled';
|
|
50
51
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
51
52
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
|
52
53
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
|
@@ -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
|
@@ -47,6 +47,7 @@ export { default as MailOutlined } from './MailOutlined';
|
|
|
47
47
|
export { default as MoneySymbolFilled } from './MoneySymbolFilled';
|
|
48
48
|
export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
49
49
|
export { default as MoveOutlined } from './MoveOutlined';
|
|
50
|
+
export { default as OngoingFilled } from './OngoingFilled';
|
|
50
51
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
51
52
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
|
52
53
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
package/lib/index.js
CHANGED
|
@@ -445,6 +445,15 @@ Object.defineProperty(exports, "MoveOutlined", {
|
|
|
445
445
|
}
|
|
446
446
|
});
|
|
447
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
|
+
|
|
448
457
|
var OpenMailFilled_1 = require("./OpenMailFilled");
|
|
449
458
|
|
|
450
459
|
Object.defineProperty(exports, "OpenMailFilled", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.0.
|
|
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",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"assui": "^2.0.2"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "935fb8c042ab1de74a15cd3b4206208157e31ffc"
|
|
26
26
|
}
|
package/src/CameraOutlined.tsx
CHANGED
|
@@ -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
|
|
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
|
|
package/src/CategoryFilled.tsx
CHANGED
|
@@ -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
|
|
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,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
|
|
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
|
|
package/src/WalletFilled.tsx
CHANGED
|
@@ -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
|
|
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
|
@@ -47,6 +47,7 @@ export { default as MailOutlined } from './MailOutlined';
|
|
|
47
47
|
export { default as MoneySymbolFilled } from './MoneySymbolFilled';
|
|
48
48
|
export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
49
49
|
export { default as MoveOutlined } from './MoveOutlined';
|
|
50
|
+
export { default as OngoingFilled } from './OngoingFilled';
|
|
50
51
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
51
52
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
|
52
53
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
|
@@ -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" 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>
|