a-icons 1.0.55 → 1.0.56
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/CoinOverlapLockFilled.d.ts +6 -0
- package/es/CoinOverlapLockFilled.js +44 -0
- package/es/PeopleLockFilled.d.ts +6 -0
- package/es/PeopleLockFilled.js +52 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/lib/CoinOverlapLockFilled.d.ts +6 -0
- package/lib/CoinOverlapLockFilled.js +91 -0
- package/lib/PeopleLockFilled.d.ts +6 -0
- package/lib/PeopleLockFilled.js +99 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +18 -0
- package/package.json +2 -2
- package/src/CoinOverlapLockFilled.tsx +23 -0
- package/src/PeopleLockFilled.tsx +24 -0
- package/src/index.tsx +2 -0
- package/svgs/filled/coin-overlap-lock-filled.svg +7 -0
- package/svgs/filled/people-lock-filled.svg +6 -0
- package/tmpAllSvgs/coin-overlap-lock-filled.svg +7 -0
- package/tmpAllSvgs/people-lock-filled.svg +6 -0
|
@@ -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 CoinOverlapLockFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "fill",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M11.674 3.277c-1.759-.225-3.428-.127-4.713.244-.641.185-1.224.448-1.674.804-.455.36-.812.846-.89 1.458l-.072.562c.445.438.956.82 1.547 1.126 1.272.66 3.066 1.193 5.08 1.451 2.012.258 3.883.194 5.28-.123a6.405 6.405 0 001.78-.7l.073-.562c.078-.612-.145-1.173-.494-1.635-.346-.458-.843-.86-1.417-1.2-1.15-.683-2.74-1.199-4.5-1.425zM3.795 10.48l.3-2.334c.328.244.683.468 1.068.668 1.471.762 3.45 1.337 5.595 1.612 2.146.274 4.205.218 5.821-.15a7.854 7.854 0 001.203-.376l-.3 2.334a6.405 6.405 0 01-1.78.7c-1.397.317-3.268.38-5.28.123-2.014-.258-3.808-.792-5.08-1.451a6.405 6.405 0 01-1.547-1.126zM3.564 12.28l-.13 1.02c-.079.613.144 1.174.493 1.636.346.458.843.86 1.417 1.2 1.15.683 2.74 1.2 4.5 1.425 1.76.225 3.428.127 4.713-.244.642-.185 1.224-.448 1.674-.804.455-.36.812-.846.89-1.458l.131-1.02c-.38.153-.78.28-1.203.376-1.616.367-3.675.424-5.82.15-2.146-.276-4.124-.85-5.596-1.613-.385-.2-.74-.424-1.069-.668z",
|
|
28
|
+
fill: "currentColor"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M21.644 17.313a5.313 5.313 0 11-10.626 0 5.313 5.313 0 0110.626 0z",
|
|
31
|
+
fill: "inherit"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
d: "M18.046 15.968l-.33.084-.171-.665a1.538 1.538 0 00-1.88-1.116 1.539 1.539 0 00-1.11 1.882l.17.665-.331.085a.343.343 0 00-.246.415l.682 2.664a.343.343 0 00.415.246l3.652-.935a.344.344 0 00.25-.416l-.682-2.665a.344.344 0 00-.42-.244zm-.83.212l-1.992.51-.17-.665a1.032 1.032 0 01.74-1.254 1.032 1.032 0 011.251.744l.17.665z",
|
|
34
|
+
fill: "currentColor"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
39
|
+
component: IconNode
|
|
40
|
+
}));
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
CoinOverlapLockFilled.displayName = 'CoinOverlapLockFilled';
|
|
44
|
+
export default CoinOverlapLockFilled;
|
|
@@ -0,0 +1,52 @@
|
|
|
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 PeopleLockFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "fill",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M2.967 14.42c-.913 1.276.145 2.834 1.705 2.998l10.33 1.086c1.56.164 2.918-1.14 2.29-2.578a8.272 8.272 0 00-6.724-4.928 8.272 8.272 0 00-7.601 3.422z",
|
|
28
|
+
fill: "currentColor"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
30
|
+
cx: 11.561,
|
|
31
|
+
cy: 6.001,
|
|
32
|
+
transform: "rotate(6 11.56 6)",
|
|
33
|
+
fill: "currentColor",
|
|
34
|
+
r: 3.969
|
|
35
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
36
|
+
cx: 16.287,
|
|
37
|
+
cy: 17.313,
|
|
38
|
+
fill: "inherit",
|
|
39
|
+
r: 5.313
|
|
40
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41
|
+
d: "M18.002 15.966l-.33.084-.171-.665a1.538 1.538 0 00-1.88-1.116 1.539 1.539 0 00-1.11 1.882l.17.665-.33.085a.343.343 0 00-.247.415l.683 2.664a.343.343 0 00.415.246l3.651-.935a.344.344 0 00.25-.417l-.682-2.663a.344.344 0 00-.42-.245zm-.83.212l-1.991.51-.17-.665a1.032 1.032 0 01.739-1.254 1.032 1.032 0 011.251.744l.17.665z",
|
|
42
|
+
fill: "currentColor"
|
|
43
|
+
}));
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
47
|
+
component: IconNode
|
|
48
|
+
}));
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
PeopleLockFilled.displayName = 'PeopleLockFilled';
|
|
52
|
+
export default PeopleLockFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export { default as CloseOutlined } from './CloseOutlined';
|
|
|
40
40
|
export { default as CloseSquareFilled } from './CloseSquareFilled';
|
|
41
41
|
export { default as CloseSquareOutlined } from './CloseSquareOutlined';
|
|
42
42
|
export { default as CoinOverlapFilled } from './CoinOverlapFilled';
|
|
43
|
+
export { default as CoinOverlapLockFilled } from './CoinOverlapLockFilled';
|
|
43
44
|
export { default as CoinsFilled } from './CoinsFilled';
|
|
44
45
|
export { default as CoinsOutlined } from './CoinsOutlined';
|
|
45
46
|
export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
|
|
@@ -109,6 +110,7 @@ export { default as PeopleEllipsisFilled } from './PeopleEllipsisFilled';
|
|
|
109
110
|
export { default as PeopleFilled } from './PeopleFilled';
|
|
110
111
|
export { default as PeopleGroupFilled } from './PeopleGroupFilled';
|
|
111
112
|
export { default as PeopleGroupOutlined } from './PeopleGroupOutlined';
|
|
113
|
+
export { default as PeopleLockFilled } from './PeopleLockFilled';
|
|
112
114
|
export { default as PeopleOutlined } from './PeopleOutlined';
|
|
113
115
|
export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
|
|
114
116
|
export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
package/es/index.js
CHANGED
|
@@ -40,6 +40,7 @@ export { default as CloseOutlined } from './CloseOutlined';
|
|
|
40
40
|
export { default as CloseSquareFilled } from './CloseSquareFilled';
|
|
41
41
|
export { default as CloseSquareOutlined } from './CloseSquareOutlined';
|
|
42
42
|
export { default as CoinOverlapFilled } from './CoinOverlapFilled';
|
|
43
|
+
export { default as CoinOverlapLockFilled } from './CoinOverlapLockFilled';
|
|
43
44
|
export { default as CoinsFilled } from './CoinsFilled';
|
|
44
45
|
export { default as CoinsOutlined } from './CoinsOutlined';
|
|
45
46
|
export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
|
|
@@ -109,6 +110,7 @@ export { default as PeopleEllipsisFilled } from './PeopleEllipsisFilled';
|
|
|
109
110
|
export { default as PeopleFilled } from './PeopleFilled';
|
|
110
111
|
export { default as PeopleGroupFilled } from './PeopleGroupFilled';
|
|
111
112
|
export { default as PeopleGroupOutlined } from './PeopleGroupOutlined';
|
|
113
|
+
export { default as PeopleLockFilled } from './PeopleLockFilled';
|
|
112
114
|
export { default as PeopleOutlined } from './PeopleOutlined';
|
|
113
115
|
export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
|
|
114
116
|
export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
@@ -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 CoinOverlapLockFilled(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
fill: "fill",
|
|
72
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
73
|
+
}, props), React.createElement("path", {
|
|
74
|
+
d: "M11.674 3.277c-1.759-.225-3.428-.127-4.713.244-.641.185-1.224.448-1.674.804-.455.36-.812.846-.89 1.458l-.072.562c.445.438.956.82 1.547 1.126 1.272.66 3.066 1.193 5.08 1.451 2.012.258 3.883.194 5.28-.123a6.405 6.405 0 001.78-.7l.073-.562c.078-.612-.145-1.173-.494-1.635-.346-.458-.843-.86-1.417-1.2-1.15-.683-2.74-1.199-4.5-1.425zM3.795 10.48l.3-2.334c.328.244.683.468 1.068.668 1.471.762 3.45 1.337 5.595 1.612 2.146.274 4.205.218 5.821-.15a7.854 7.854 0 001.203-.376l-.3 2.334a6.405 6.405 0 01-1.78.7c-1.397.317-3.268.38-5.28.123-2.014-.258-3.808-.792-5.08-1.451a6.405 6.405 0 01-1.547-1.126zM3.564 12.28l-.13 1.02c-.079.613.144 1.174.493 1.636.346.458.843.86 1.417 1.2 1.15.683 2.74 1.2 4.5 1.425 1.76.225 3.428.127 4.713-.244.642-.185 1.224-.448 1.674-.804.455-.36.812-.846.89-1.458l.131-1.02c-.38.153-.78.28-1.203.376-1.616.367-3.675.424-5.82.15-2.146-.276-4.124-.85-5.596-1.613-.385-.2-.74-.424-1.069-.668z",
|
|
75
|
+
fill: "currentColor"
|
|
76
|
+
}), React.createElement("path", {
|
|
77
|
+
d: "M21.644 17.313a5.313 5.313 0 11-10.626 0 5.313 5.313 0 0110.626 0z",
|
|
78
|
+
fill: "inherit"
|
|
79
|
+
}), React.createElement("path", {
|
|
80
|
+
d: "M18.046 15.968l-.33.084-.171-.665a1.538 1.538 0 00-1.88-1.116 1.539 1.539 0 00-1.11 1.882l.17.665-.331.085a.343.343 0 00-.246.415l.682 2.664a.343.343 0 00.415.246l3.652-.935a.344.344 0 00.25-.416l-.682-2.665a.344.344 0 00-.42-.244zm-.83.212l-1.992.51-.17-.665a1.032 1.032 0 01.74-1.254 1.032 1.032 0 011.251.744l.17.665z",
|
|
81
|
+
fill: "currentColor"
|
|
82
|
+
}));
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
86
|
+
component: IconNode
|
|
87
|
+
}));
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
CoinOverlapLockFilled.displayName = 'CoinOverlapLockFilled';
|
|
91
|
+
exports["default"] = CoinOverlapLockFilled;
|
|
@@ -0,0 +1,99 @@
|
|
|
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 PeopleLockFilled(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
fill: "fill",
|
|
72
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
73
|
+
}, props), React.createElement("path", {
|
|
74
|
+
d: "M2.967 14.42c-.913 1.276.145 2.834 1.705 2.998l10.33 1.086c1.56.164 2.918-1.14 2.29-2.578a8.272 8.272 0 00-6.724-4.928 8.272 8.272 0 00-7.601 3.422z",
|
|
75
|
+
fill: "currentColor"
|
|
76
|
+
}), React.createElement("circle", {
|
|
77
|
+
cx: 11.561,
|
|
78
|
+
cy: 6.001,
|
|
79
|
+
transform: "rotate(6 11.56 6)",
|
|
80
|
+
fill: "currentColor",
|
|
81
|
+
r: 3.969
|
|
82
|
+
}), React.createElement("circle", {
|
|
83
|
+
cx: 16.287,
|
|
84
|
+
cy: 17.313,
|
|
85
|
+
fill: "inherit",
|
|
86
|
+
r: 5.313
|
|
87
|
+
}), React.createElement("path", {
|
|
88
|
+
d: "M18.002 15.966l-.33.084-.171-.665a1.538 1.538 0 00-1.88-1.116 1.539 1.539 0 00-1.11 1.882l.17.665-.33.085a.343.343 0 00-.247.415l.683 2.664a.343.343 0 00.415.246l3.651-.935a.344.344 0 00.25-.417l-.682-2.663a.344.344 0 00-.42-.245zm-.83.212l-1.991.51-.17-.665a1.032 1.032 0 01.739-1.254 1.032 1.032 0 011.251.744l.17.665z",
|
|
89
|
+
fill: "currentColor"
|
|
90
|
+
}));
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
94
|
+
component: IconNode
|
|
95
|
+
}));
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
PeopleLockFilled.displayName = 'PeopleLockFilled';
|
|
99
|
+
exports["default"] = PeopleLockFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export { default as CloseOutlined } from './CloseOutlined';
|
|
|
40
40
|
export { default as CloseSquareFilled } from './CloseSquareFilled';
|
|
41
41
|
export { default as CloseSquareOutlined } from './CloseSquareOutlined';
|
|
42
42
|
export { default as CoinOverlapFilled } from './CoinOverlapFilled';
|
|
43
|
+
export { default as CoinOverlapLockFilled } from './CoinOverlapLockFilled';
|
|
43
44
|
export { default as CoinsFilled } from './CoinsFilled';
|
|
44
45
|
export { default as CoinsOutlined } from './CoinsOutlined';
|
|
45
46
|
export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
|
|
@@ -109,6 +110,7 @@ export { default as PeopleEllipsisFilled } from './PeopleEllipsisFilled';
|
|
|
109
110
|
export { default as PeopleFilled } from './PeopleFilled';
|
|
110
111
|
export { default as PeopleGroupFilled } from './PeopleGroupFilled';
|
|
111
112
|
export { default as PeopleGroupOutlined } from './PeopleGroupOutlined';
|
|
113
|
+
export { default as PeopleLockFilled } from './PeopleLockFilled';
|
|
112
114
|
export { default as PeopleOutlined } from './PeopleOutlined';
|
|
113
115
|
export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
|
|
114
116
|
export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
package/lib/index.js
CHANGED
|
@@ -382,6 +382,15 @@ Object.defineProperty(exports, "CoinOverlapFilled", {
|
|
|
382
382
|
}
|
|
383
383
|
});
|
|
384
384
|
|
|
385
|
+
var CoinOverlapLockFilled_1 = require("./CoinOverlapLockFilled");
|
|
386
|
+
|
|
387
|
+
Object.defineProperty(exports, "CoinOverlapLockFilled", {
|
|
388
|
+
enumerable: true,
|
|
389
|
+
get: function get() {
|
|
390
|
+
return CoinOverlapLockFilled_1["default"];
|
|
391
|
+
}
|
|
392
|
+
});
|
|
393
|
+
|
|
385
394
|
var CoinsFilled_1 = require("./CoinsFilled");
|
|
386
395
|
|
|
387
396
|
Object.defineProperty(exports, "CoinsFilled", {
|
|
@@ -1003,6 +1012,15 @@ Object.defineProperty(exports, "PeopleGroupOutlined", {
|
|
|
1003
1012
|
}
|
|
1004
1013
|
});
|
|
1005
1014
|
|
|
1015
|
+
var PeopleLockFilled_1 = require("./PeopleLockFilled");
|
|
1016
|
+
|
|
1017
|
+
Object.defineProperty(exports, "PeopleLockFilled", {
|
|
1018
|
+
enumerable: true,
|
|
1019
|
+
get: function get() {
|
|
1020
|
+
return PeopleLockFilled_1["default"];
|
|
1021
|
+
}
|
|
1022
|
+
});
|
|
1023
|
+
|
|
1006
1024
|
var PeopleOutlined_1 = require("./PeopleOutlined");
|
|
1007
1025
|
|
|
1008
1026
|
Object.defineProperty(exports, "PeopleOutlined", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.56",
|
|
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": "883293320877628f5a4bcfa10c353493f3d7e7d3"
|
|
26
26
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function CoinOverlapLockFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" fill="fill" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M11.674 3.277c-1.759-.225-3.428-.127-4.713.244-.641.185-1.224.448-1.674.804-.455.36-.812.846-.89 1.458l-.072.562c.445.438.956.82 1.547 1.126 1.272.66 3.066 1.193 5.08 1.451 2.012.258 3.883.194 5.28-.123a6.405 6.405 0 001.78-.7l.073-.562c.078-.612-.145-1.173-.494-1.635-.346-.458-.843-.86-1.417-1.2-1.15-.683-2.74-1.199-4.5-1.425zM3.795 10.48l.3-2.334c.328.244.683.468 1.068.668 1.471.762 3.45 1.337 5.595 1.612 2.146.274 4.205.218 5.821-.15a7.854 7.854 0 001.203-.376l-.3 2.334a6.405 6.405 0 01-1.78.7c-1.397.317-3.268.38-5.28.123-2.014-.258-3.808-.792-5.08-1.451a6.405 6.405 0 01-1.547-1.126zM3.564 12.28l-.13 1.02c-.079.613.144 1.174.493 1.636.346.458.843.86 1.417 1.2 1.15.683 2.74 1.2 4.5 1.425 1.76.225 3.428.127 4.713-.244.642-.185 1.224-.448 1.674-.804.455-.36.812-.846.89-1.458l.131-1.02c-.38.153-.78.28-1.203.376-1.616.367-3.675.424-5.82.15-2.146-.276-4.124-.85-5.596-1.613-.385-.2-.74-.424-1.069-.668z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
<path d="M21.644 17.313a5.313 5.313 0 11-10.626 0 5.313 5.313 0 0110.626 0z" fill="inherit" />
|
|
12
|
+
<path
|
|
13
|
+
d="M18.046 15.968l-.33.084-.171-.665a1.538 1.538 0 00-1.88-1.116 1.539 1.539 0 00-1.11 1.882l.17.665-.331.085a.343.343 0 00-.246.415l.682 2.664a.343.343 0 00.415.246l3.652-.935a.344.344 0 00.25-.416l-.682-2.665a.344.344 0 00-.42-.244zm-.83.212l-1.992.51-.17-.665a1.032 1.032 0 01.74-1.254 1.032 1.032 0 011.251.744l.17.665z"
|
|
14
|
+
fill="currentColor"
|
|
15
|
+
/>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
CoinOverlapLockFilled.displayName = 'CoinOverlapLockFilled';
|
|
23
|
+
export default CoinOverlapLockFilled;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function PeopleLockFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" fill="fill" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M2.967 14.42c-.913 1.276.145 2.834 1.705 2.998l10.33 1.086c1.56.164 2.918-1.14 2.29-2.578a8.272 8.272 0 00-6.724-4.928 8.272 8.272 0 00-7.601 3.422z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
<circle cx={11.561} cy={6.001} transform="rotate(6 11.56 6)" fill="currentColor" r={3.969} />
|
|
12
|
+
<circle cx={16.287} cy={17.313} fill="inherit" r={5.313} />
|
|
13
|
+
<path
|
|
14
|
+
d="M18.002 15.966l-.33.084-.171-.665a1.538 1.538 0 00-1.88-1.116 1.539 1.539 0 00-1.11 1.882l.17.665-.33.085a.343.343 0 00-.247.415l.683 2.664a.343.343 0 00.415.246l3.651-.935a.344.344 0 00.25-.417l-.682-2.663a.344.344 0 00-.42-.245zm-.83.212l-1.991.51-.17-.665a1.032 1.032 0 01.739-1.254 1.032 1.032 0 011.251.744l.17.665z"
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
PeopleLockFilled.displayName = 'PeopleLockFilled';
|
|
24
|
+
export default PeopleLockFilled;
|
package/src/index.tsx
CHANGED
|
@@ -40,6 +40,7 @@ export { default as CloseOutlined } from './CloseOutlined';
|
|
|
40
40
|
export { default as CloseSquareFilled } from './CloseSquareFilled';
|
|
41
41
|
export { default as CloseSquareOutlined } from './CloseSquareOutlined';
|
|
42
42
|
export { default as CoinOverlapFilled } from './CoinOverlapFilled';
|
|
43
|
+
export { default as CoinOverlapLockFilled } from './CoinOverlapLockFilled';
|
|
43
44
|
export { default as CoinsFilled } from './CoinsFilled';
|
|
44
45
|
export { default as CoinsOutlined } from './CoinsOutlined';
|
|
45
46
|
export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
|
|
@@ -109,6 +110,7 @@ export { default as PeopleEllipsisFilled } from './PeopleEllipsisFilled';
|
|
|
109
110
|
export { default as PeopleFilled } from './PeopleFilled';
|
|
110
111
|
export { default as PeopleGroupFilled } from './PeopleGroupFilled';
|
|
111
112
|
export { default as PeopleGroupOutlined } from './PeopleGroupOutlined';
|
|
113
|
+
export { default as PeopleLockFilled } from './PeopleLockFilled';
|
|
112
114
|
export { default as PeopleOutlined } from './PeopleOutlined';
|
|
113
115
|
export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
|
|
114
116
|
export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="fill" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.6744 3.27749C9.91498 3.05201 8.24641 3.15016 6.96108 3.52079C6.3196 3.70577 5.7374 3.96902 5.28693 4.32523C4.83246 4.68461 4.47535 5.17122 4.39692 5.78322L4.3249 6.34521C4.77042 6.78263 5.28069 7.16486 5.87189 7.47135C7.14412 8.13091 8.93784 8.6641 10.9511 8.92211C12.9643 9.18012 14.8345 9.11649 16.232 8.79907C16.8813 8.65158 17.4714 8.41041 18.0128 8.09951L18.0848 7.53743C18.1633 6.92542 17.9404 6.36449 17.5913 5.90212C17.2452 5.44383 16.7482 5.04226 16.1741 4.70151C15.0237 4.01873 13.4338 3.50298 11.6744 3.27749Z" fill="currentColor" />
|
|
3
|
+
<path d="M3.79502 10.4798L4.09413 8.14587C4.42264 8.38975 4.778 8.61396 5.16319 8.81365C6.63447 9.57641 8.61298 10.1506 10.7584 10.4256C12.9038 10.7005 14.9632 10.6438 16.5793 10.2767C17.0023 10.1806 17.4027 10.0533 17.782 9.90015L17.4829 12.2341C16.9415 12.545 16.3514 12.7861 15.7021 12.9336C14.3047 13.2511 12.4344 13.3147 10.4212 13.0567C8.40797 12.7987 6.61424 12.2655 5.34201 11.6059C4.75082 11.2994 4.24055 10.9172 3.79502 10.4798Z" fill="currentColor" />
|
|
4
|
+
<path d="M3.56425 12.2804L3.43351 13.3006C3.35508 13.9126 3.57793 14.4736 3.92709 14.9359C4.27318 15.3942 4.77018 15.7958 5.34428 16.1365C6.49461 16.8193 8.08451 17.3351 9.84394 17.5605C11.6034 17.786 13.2719 17.6879 14.5573 17.3172C15.1988 17.1323 15.781 16.869 16.2314 16.5128C16.6859 16.1534 17.043 15.6668 17.1214 15.0548L17.2522 14.0347C16.8728 14.1879 16.4725 14.3152 16.0494 14.4113C14.4333 14.7784 12.3739 14.8351 10.2285 14.5602C8.08311 14.2852 6.1046 13.711 4.63331 12.9482C4.24812 12.7485 3.89277 12.5243 3.56425 12.2804Z" fill="currentColor" />
|
|
5
|
+
<path d="M21.644 17.313C21.644 20.2473 19.2653 22.626 16.331 22.626C13.3967 22.626 11.018 20.2473 11.018 17.313C11.018 14.3787 13.3967 12 16.331 12C19.2653 12 21.644 14.3787 21.644 17.313Z" fill="inherit" />
|
|
6
|
+
<path d="M18.0456 15.9676L17.7151 16.0523L17.5447 15.3872C17.3311 14.553 16.4961 14.0582 15.6654 14.271C14.8351 14.4836 14.3404 15.319 14.5541 16.1532L14.7244 16.8182L14.3938 16.9029C14.2128 16.9492 14.1016 17.1371 14.148 17.3181L14.8303 19.9821C14.8766 20.1632 15.0644 20.2744 15.2455 20.228L18.8972 19.2928C19.0822 19.2454 19.1934 19.0576 19.147 18.8766L18.4647 16.2125C18.4184 16.0315 18.2306 15.9202 18.0456 15.9676ZM17.2153 16.1803L15.2241 16.6902L15.0538 16.0252C14.9127 15.4743 15.2464 14.9108 15.7934 14.7707C16.0581 14.704 16.3384 14.7449 16.573 14.8845C16.8075 15.024 16.9773 15.2508 17.045 15.5152L17.2153 16.1803Z" fill="currentColor" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="fill" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2.9666 14.4199C2.05418 15.6962 3.1117 17.2542 4.67195 17.4182L15.0013 18.5038C16.5615 18.6678 17.9199 17.3637 17.2927 15.9257C16.1407 13.284 13.6394 11.3204 10.5685 10.9977C7.49757 10.6749 4.64273 12.0755 2.9666 14.4199Z" fill="currentColor" />
|
|
3
|
+
<ellipse cx="11.5609" cy="6.0008" rx="3.969" ry="3.969" transform="rotate(6 11.5609 6.0008)" fill="currentColor" />
|
|
4
|
+
<ellipse cx="16.2873" cy="17.3126" rx="5.31265" ry="5.31265" fill="inherit" />
|
|
5
|
+
<path d="M18.0019 15.9656L17.6713 16.0502L17.501 15.3853C17.2874 14.5511 16.4525 14.0563 15.6218 14.269C14.7916 14.4817 14.2969 15.317 14.5105 16.1512L14.6809 16.8161L14.3503 16.9008C14.1693 16.9472 14.0581 17.135 14.1045 17.316L14.7867 19.9799C14.8331 20.1609 15.0209 20.2721 15.2019 20.2257L18.8534 19.2905C19.0384 19.2432 19.1496 19.0553 19.1032 18.8743L18.421 16.2105C18.3746 16.0295 18.1868 15.9182 18.0019 15.9656ZM17.1716 16.1782L15.1806 16.6882L15.0103 16.0232C14.8692 15.4723 15.2029 14.9088 15.7498 14.7688C16.0145 14.7021 16.2948 14.743 16.5293 14.8825C16.7639 15.0221 16.9336 15.2488 17.0013 15.5132L17.1716 16.1782Z" fill="currentColor" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="fill" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.6744 3.27749C9.91498 3.05201 8.24641 3.15016 6.96108 3.52079C6.3196 3.70577 5.7374 3.96902 5.28693 4.32523C4.83246 4.68461 4.47535 5.17122 4.39692 5.78322L4.3249 6.34521C4.77042 6.78263 5.28069 7.16486 5.87189 7.47135C7.14412 8.13091 8.93784 8.6641 10.9511 8.92211C12.9643 9.18012 14.8345 9.11649 16.232 8.79907C16.8813 8.65158 17.4714 8.41041 18.0128 8.09951L18.0848 7.53743C18.1633 6.92542 17.9404 6.36449 17.5913 5.90212C17.2452 5.44383 16.7482 5.04226 16.1741 4.70151C15.0237 4.01873 13.4338 3.50298 11.6744 3.27749Z" fill="currentColor" />
|
|
3
|
+
<path d="M3.79502 10.4798L4.09413 8.14587C4.42264 8.38975 4.778 8.61396 5.16319 8.81365C6.63447 9.57641 8.61298 10.1506 10.7584 10.4256C12.9038 10.7005 14.9632 10.6438 16.5793 10.2767C17.0023 10.1806 17.4027 10.0533 17.782 9.90015L17.4829 12.2341C16.9415 12.545 16.3514 12.7861 15.7021 12.9336C14.3047 13.2511 12.4344 13.3147 10.4212 13.0567C8.40797 12.7987 6.61424 12.2655 5.34201 11.6059C4.75082 11.2994 4.24055 10.9172 3.79502 10.4798Z" fill="currentColor" />
|
|
4
|
+
<path d="M3.56425 12.2804L3.43351 13.3006C3.35508 13.9126 3.57793 14.4736 3.92709 14.9359C4.27318 15.3942 4.77018 15.7958 5.34428 16.1365C6.49461 16.8193 8.08451 17.3351 9.84394 17.5605C11.6034 17.786 13.2719 17.6879 14.5573 17.3172C15.1988 17.1323 15.781 16.869 16.2314 16.5128C16.6859 16.1534 17.043 15.6668 17.1214 15.0548L17.2522 14.0347C16.8728 14.1879 16.4725 14.3152 16.0494 14.4113C14.4333 14.7784 12.3739 14.8351 10.2285 14.5602C8.08311 14.2852 6.1046 13.711 4.63331 12.9482C4.24812 12.7485 3.89277 12.5243 3.56425 12.2804Z" fill="currentColor" />
|
|
5
|
+
<path d="M21.644 17.313C21.644 20.2473 19.2653 22.626 16.331 22.626C13.3967 22.626 11.018 20.2473 11.018 17.313C11.018 14.3787 13.3967 12 16.331 12C19.2653 12 21.644 14.3787 21.644 17.313Z" fill="inherit" />
|
|
6
|
+
<path d="M18.0456 15.9676L17.7151 16.0523L17.5447 15.3872C17.3311 14.553 16.4961 14.0582 15.6654 14.271C14.8351 14.4836 14.3404 15.319 14.5541 16.1532L14.7244 16.8182L14.3938 16.9029C14.2128 16.9492 14.1016 17.1371 14.148 17.3181L14.8303 19.9821C14.8766 20.1632 15.0644 20.2744 15.2455 20.228L18.8972 19.2928C19.0822 19.2454 19.1934 19.0576 19.147 18.8766L18.4647 16.2125C18.4184 16.0315 18.2306 15.9202 18.0456 15.9676ZM17.2153 16.1803L15.2241 16.6902L15.0538 16.0252C14.9127 15.4743 15.2464 14.9108 15.7934 14.7707C16.0581 14.704 16.3384 14.7449 16.573 14.8845C16.8075 15.024 16.9773 15.2508 17.045 15.5152L17.2153 16.1803Z" fill="currentColor" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="fill" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2.9666 14.4199C2.05418 15.6962 3.1117 17.2542 4.67195 17.4182L15.0013 18.5038C16.5615 18.6678 17.9199 17.3637 17.2927 15.9257C16.1407 13.284 13.6394 11.3204 10.5685 10.9977C7.49757 10.6749 4.64273 12.0755 2.9666 14.4199Z" fill="currentColor" />
|
|
3
|
+
<ellipse cx="11.5609" cy="6.0008" rx="3.969" ry="3.969" transform="rotate(6 11.5609 6.0008)" fill="currentColor" />
|
|
4
|
+
<ellipse cx="16.2873" cy="17.3126" rx="5.31265" ry="5.31265" fill="inherit" />
|
|
5
|
+
<path d="M18.0019 15.9656L17.6713 16.0502L17.501 15.3853C17.2874 14.5511 16.4525 14.0563 15.6218 14.269C14.7916 14.4817 14.2969 15.317 14.5105 16.1512L14.6809 16.8161L14.3503 16.9008C14.1693 16.9472 14.0581 17.135 14.1045 17.316L14.7867 19.9799C14.8331 20.1609 15.0209 20.2721 15.2019 20.2257L18.8534 19.2905C19.0384 19.2432 19.1496 19.0553 19.1032 18.8743L18.421 16.2105C18.3746 16.0295 18.1868 15.9182 18.0019 15.9656ZM17.1716 16.1782L15.1806 16.6882L15.0103 16.0232C14.8692 15.4723 15.2029 14.9088 15.7498 14.7688C16.0145 14.7021 16.2948 14.743 16.5293 14.8825C16.7639 15.0221 16.9336 15.2488 17.0013 15.5132L17.1716 16.1782Z" fill="currentColor" />
|
|
6
|
+
</svg>
|