a-icons 1.2.63 → 1.2.65
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/ShieldCheckedOutlined.d.ts +6 -0
- package/es/ShieldCheckedOutlined.js +30 -0
- package/es/UserAccount.d.ts +6 -0
- package/es/UserAccount.js +63 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/lib/ShieldCheckedOutlined.d.ts +6 -0
- package/lib/ShieldCheckedOutlined.js +73 -0
- package/lib/UserAccount.d.ts +6 -0
- package/lib/UserAccount.js +106 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +16 -2
- package/package.json +1 -1
- package/src/ShieldCheckedOutlined.tsx +18 -0
- package/src/UserAccount.tsx +45 -0
- package/src/index.tsx +2 -0
- package/svgs/business/userAccount.svg +22 -0
- package/svgs/outlined/shield-checked-outlined.svg +5 -0
- package/tmpAllSvgs/shield-checked-outlined.svg +5 -0
- package/tmpAllSvgs/userAccount.svg +22 -0
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
for (var p in s) {
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
import * as React from 'react';
|
|
14
|
+
import Icon from 'a-base-icon/lib/icon';
|
|
15
|
+
function ShieldCheckedOutlined(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
d: "M19 7.218c0-.881-.016-1.057-.066-1.188a1.001 1.001 0 00-.273-.394c-.105-.092-.264-.168-1.089-.478l-5.361-2.01c-.112-.042-.168-.063-.208-.076L12 3.07h-.003c-.041.014-.097.035-.208.077l-5.361 2.01c-.825.31-.985.386-1.09.478a1.002 1.002 0 00-.273.394C5.015 6.16 5 6.337 5 7.218V12c0 2.082 1.14 3.966 2.641 5.53 1.491 1.554 3.229 2.676 4.164 3.222a9.949 9.949 0 00.195.11l.06-.033.134-.077c.936-.546 2.673-1.668 4.164-3.221C17.86 15.966 19 14.082 19 12V7.217zM16.914 9l-5.207 5.207a1 1 0 01-1.414 0L7.586 11.5 9 10.086l2 2 4.5-4.5L16.914 9zM21 12c0 2.827-1.538 5.184-3.2 6.915-1.672 1.743-3.586 2.973-4.598 3.564-.19.11-.442.268-.783.341-.26.056-.579.056-.838 0-.341-.073-.593-.23-.783-.341-1.013-.59-2.926-1.821-4.599-3.564-1.662-1.731-3.2-4.088-3.2-6.915V7.218c0-.718-.015-1.342.197-1.898a3 3 0 01.82-1.184c.447-.394 1.037-.599 1.71-.85l5.36-2.011c.168-.063.389-.151.628-.186.142-.02.286-.026.43-.016l.142.016.175.035c.17.043.326.103.452.15l5.361 2.011c.672.252 1.262.457 1.71.851a3 3 0 01.82 1.184c.211.556.196 1.18.196 1.898V12z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}));
|
|
24
|
+
};
|
|
25
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
26
|
+
component: IconNode
|
|
27
|
+
}));
|
|
28
|
+
}
|
|
29
|
+
ShieldCheckedOutlined.displayName = 'ShieldCheckedOutlined';
|
|
30
|
+
export default ShieldCheckedOutlined;
|
|
@@ -0,0 +1,63 @@
|
|
|
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
|
+
for (var p in s) {
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
import * as React from 'react';
|
|
14
|
+
import Icon from 'a-base-icon/lib/icon';
|
|
15
|
+
function UserAccount(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
22
|
+
clipPath: "url(#userAccount_svg__clip0_4046_27238)"
|
|
23
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
24
|
+
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",
|
|
25
|
+
fill: "currentColor"
|
|
26
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
27
|
+
cx: 11.561,
|
|
28
|
+
cy: 6.001,
|
|
29
|
+
transform: "rotate(6 11.56 6)",
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
r: 3.969
|
|
32
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
33
|
+
cx: 16.287,
|
|
34
|
+
cy: 17.313,
|
|
35
|
+
fill: "#DC4946",
|
|
36
|
+
r: 5.313
|
|
37
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
38
|
+
clipPath: "url(#userAccount_svg__clip1_4046_27238)"
|
|
39
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M15.738 17.587a1.374 1.374 0 002.072.149l.824-.825a1.374 1.374 0 00-1.943-1.942l-.472.47m.618 1.599a1.373 1.373 0 00-2.072-.149l-.824.825a1.373 1.373 0 001.942 1.943l.47-.47",
|
|
41
|
+
stroke: "#fff",
|
|
42
|
+
strokeWidth: 0.7,
|
|
43
|
+
strokeLinecap: "square",
|
|
44
|
+
strokeLinejoin: "round"
|
|
45
|
+
}))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
46
|
+
id: "userAccount_svg__clip0_4046_27238"
|
|
47
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
fill: "#fff",
|
|
49
|
+
d: "M0 0h24v24H0z"
|
|
50
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
51
|
+
id: "userAccount_svg__clip1_4046_27238"
|
|
52
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
53
|
+
fill: "#fff",
|
|
54
|
+
transform: "translate(12.99 14.016)",
|
|
55
|
+
d: "M0 0h6.595v6.595H0z"
|
|
56
|
+
}))));
|
|
57
|
+
};
|
|
58
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
59
|
+
component: IconNode
|
|
60
|
+
}));
|
|
61
|
+
}
|
|
62
|
+
UserAccount.displayName = 'UserAccount';
|
|
63
|
+
export default UserAccount;
|
package/es/index.d.ts
CHANGED
|
@@ -307,6 +307,7 @@ export { default as ShapeFilled } from './ShapeFilled';
|
|
|
307
307
|
export { default as ShapeOutlined } from './ShapeOutlined';
|
|
308
308
|
export { default as ShareFilled } from './ShareFilled';
|
|
309
309
|
export { default as ShareOutlined } from './ShareOutlined';
|
|
310
|
+
export { default as ShieldCheckedOutlined } from './ShieldCheckedOutlined';
|
|
310
311
|
export { default as ShieldFilled } from './ShieldFilled';
|
|
311
312
|
export { default as ShieldOutlined } from './ShieldOutlined';
|
|
312
313
|
export { default as ShopKeeperFilled } from './ShopKeeperFilled';
|
|
@@ -362,6 +363,7 @@ export { default as UserInfoRealname } from './UserInfoRealname';
|
|
|
362
363
|
export { default as UserInfoTimeZone } from './UserInfoTimeZone';
|
|
363
364
|
export { default as UserInfoTime } from './UserInfoTime';
|
|
364
365
|
export { default as UserOutlined } from './UserOutlined';
|
|
366
|
+
export { default as UserAccount } from './UserAccount';
|
|
365
367
|
export { default as VoidFilled } from './VoidFilled';
|
|
366
368
|
export { default as WalletFilled } from './WalletFilled';
|
|
367
369
|
export { default as WalletOutlined } from './WalletOutlined';
|
package/es/index.js
CHANGED
|
@@ -307,6 +307,7 @@ export { default as ShapeFilled } from './ShapeFilled';
|
|
|
307
307
|
export { default as ShapeOutlined } from './ShapeOutlined';
|
|
308
308
|
export { default as ShareFilled } from './ShareFilled';
|
|
309
309
|
export { default as ShareOutlined } from './ShareOutlined';
|
|
310
|
+
export { default as ShieldCheckedOutlined } from './ShieldCheckedOutlined';
|
|
310
311
|
export { default as ShieldFilled } from './ShieldFilled';
|
|
311
312
|
export { default as ShieldOutlined } from './ShieldOutlined';
|
|
312
313
|
export { default as ShopKeeperFilled } from './ShopKeeperFilled';
|
|
@@ -362,6 +363,7 @@ export { default as UserInfoRealname } from './UserInfoRealname';
|
|
|
362
363
|
export { default as UserInfoTimeZone } from './UserInfoTimeZone';
|
|
363
364
|
export { default as UserInfoTime } from './UserInfoTime';
|
|
364
365
|
export { default as UserOutlined } from './UserOutlined';
|
|
366
|
+
export { default as UserAccount } from './UserAccount';
|
|
365
367
|
export { default as VoidFilled } from './VoidFilled';
|
|
366
368
|
export { default as WalletFilled } from './WalletFilled';
|
|
367
369
|
export { default as WalletOutlined } from './WalletOutlined';
|
|
@@ -0,0 +1,73 @@
|
|
|
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
|
+
for (var p in s) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
return __assign.apply(this, arguments);
|
|
14
|
+
};
|
|
15
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function get() {
|
|
22
|
+
return m[k];
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
Object.defineProperty(o, k2, desc);
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
32
|
+
Object.defineProperty(o, "default", {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
value: v
|
|
35
|
+
});
|
|
36
|
+
} : function (o, v) {
|
|
37
|
+
o["default"] = v;
|
|
38
|
+
});
|
|
39
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
40
|
+
if (mod && mod.__esModule) return mod;
|
|
41
|
+
var result = {};
|
|
42
|
+
if (mod != null) for (var k in mod) {
|
|
43
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
44
|
+
}
|
|
45
|
+
__setModuleDefault(result, mod);
|
|
46
|
+
return result;
|
|
47
|
+
};
|
|
48
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
49
|
+
return mod && mod.__esModule ? mod : {
|
|
50
|
+
"default": mod
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
Object.defineProperty(exports, "__esModule", {
|
|
54
|
+
value: true
|
|
55
|
+
});
|
|
56
|
+
var React = __importStar(require("react"));
|
|
57
|
+
var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
58
|
+
function ShieldCheckedOutlined(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
63
|
+
}, props), React.createElement("path", {
|
|
64
|
+
d: "M19 7.218c0-.881-.016-1.057-.066-1.188a1.001 1.001 0 00-.273-.394c-.105-.092-.264-.168-1.089-.478l-5.361-2.01c-.112-.042-.168-.063-.208-.076L12 3.07h-.003c-.041.014-.097.035-.208.077l-5.361 2.01c-.825.31-.985.386-1.09.478a1.002 1.002 0 00-.273.394C5.015 6.16 5 6.337 5 7.218V12c0 2.082 1.14 3.966 2.641 5.53 1.491 1.554 3.229 2.676 4.164 3.222a9.949 9.949 0 00.195.11l.06-.033.134-.077c.936-.546 2.673-1.668 4.164-3.221C17.86 15.966 19 14.082 19 12V7.217zM16.914 9l-5.207 5.207a1 1 0 01-1.414 0L7.586 11.5 9 10.086l2 2 4.5-4.5L16.914 9zM21 12c0 2.827-1.538 5.184-3.2 6.915-1.672 1.743-3.586 2.973-4.598 3.564-.19.11-.442.268-.783.341-.26.056-.579.056-.838 0-.341-.073-.593-.23-.783-.341-1.013-.59-2.926-1.821-4.599-3.564-1.662-1.731-3.2-4.088-3.2-6.915V7.218c0-.718-.015-1.342.197-1.898a3 3 0 01.82-1.184c.447-.394 1.037-.599 1.71-.85l5.36-2.011c.168-.063.389-.151.628-.186.142-.02.286-.026.43-.016l.142.016.175.035c.17.043.326.103.452.15l5.361 2.011c.672.252 1.262.457 1.71.851a3 3 0 01.82 1.184c.211.556.196 1.18.196 1.898V12z",
|
|
65
|
+
fill: "currentColor"
|
|
66
|
+
}));
|
|
67
|
+
};
|
|
68
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
69
|
+
component: IconNode
|
|
70
|
+
}));
|
|
71
|
+
}
|
|
72
|
+
ShieldCheckedOutlined.displayName = 'ShieldCheckedOutlined';
|
|
73
|
+
exports["default"] = ShieldCheckedOutlined;
|
|
@@ -0,0 +1,106 @@
|
|
|
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
|
+
for (var p in s) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
return __assign.apply(this, arguments);
|
|
14
|
+
};
|
|
15
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function get() {
|
|
22
|
+
return m[k];
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
Object.defineProperty(o, k2, desc);
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
32
|
+
Object.defineProperty(o, "default", {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
value: v
|
|
35
|
+
});
|
|
36
|
+
} : function (o, v) {
|
|
37
|
+
o["default"] = v;
|
|
38
|
+
});
|
|
39
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
40
|
+
if (mod && mod.__esModule) return mod;
|
|
41
|
+
var result = {};
|
|
42
|
+
if (mod != null) for (var k in mod) {
|
|
43
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
44
|
+
}
|
|
45
|
+
__setModuleDefault(result, mod);
|
|
46
|
+
return result;
|
|
47
|
+
};
|
|
48
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
49
|
+
return mod && mod.__esModule ? mod : {
|
|
50
|
+
"default": mod
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
Object.defineProperty(exports, "__esModule", {
|
|
54
|
+
value: true
|
|
55
|
+
});
|
|
56
|
+
var React = __importStar(require("react"));
|
|
57
|
+
var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
58
|
+
function UserAccount(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("g", {
|
|
65
|
+
clipPath: "url(#userAccount_svg__clip0_4046_27238)"
|
|
66
|
+
}, React.createElement("path", {
|
|
67
|
+
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",
|
|
68
|
+
fill: "currentColor"
|
|
69
|
+
}), React.createElement("circle", {
|
|
70
|
+
cx: 11.561,
|
|
71
|
+
cy: 6.001,
|
|
72
|
+
transform: "rotate(6 11.56 6)",
|
|
73
|
+
fill: "currentColor",
|
|
74
|
+
r: 3.969
|
|
75
|
+
}), React.createElement("circle", {
|
|
76
|
+
cx: 16.287,
|
|
77
|
+
cy: 17.313,
|
|
78
|
+
fill: "#DC4946",
|
|
79
|
+
r: 5.313
|
|
80
|
+
}), React.createElement("g", {
|
|
81
|
+
clipPath: "url(#userAccount_svg__clip1_4046_27238)"
|
|
82
|
+
}, React.createElement("path", {
|
|
83
|
+
d: "M15.738 17.587a1.374 1.374 0 002.072.149l.824-.825a1.374 1.374 0 00-1.943-1.942l-.472.47m.618 1.599a1.373 1.373 0 00-2.072-.149l-.824.825a1.373 1.373 0 001.942 1.943l.47-.47",
|
|
84
|
+
stroke: "#fff",
|
|
85
|
+
strokeWidth: 0.7,
|
|
86
|
+
strokeLinecap: "square",
|
|
87
|
+
strokeLinejoin: "round"
|
|
88
|
+
}))), React.createElement("defs", null, React.createElement("clipPath", {
|
|
89
|
+
id: "userAccount_svg__clip0_4046_27238"
|
|
90
|
+
}, React.createElement("path", {
|
|
91
|
+
fill: "#fff",
|
|
92
|
+
d: "M0 0h24v24H0z"
|
|
93
|
+
})), React.createElement("clipPath", {
|
|
94
|
+
id: "userAccount_svg__clip1_4046_27238"
|
|
95
|
+
}, React.createElement("path", {
|
|
96
|
+
fill: "#fff",
|
|
97
|
+
transform: "translate(12.99 14.016)",
|
|
98
|
+
d: "M0 0h6.595v6.595H0z"
|
|
99
|
+
}))));
|
|
100
|
+
};
|
|
101
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
102
|
+
component: IconNode
|
|
103
|
+
}));
|
|
104
|
+
}
|
|
105
|
+
UserAccount.displayName = 'UserAccount';
|
|
106
|
+
exports["default"] = UserAccount;
|
package/lib/index.d.ts
CHANGED
|
@@ -307,6 +307,7 @@ export { default as ShapeFilled } from './ShapeFilled';
|
|
|
307
307
|
export { default as ShapeOutlined } from './ShapeOutlined';
|
|
308
308
|
export { default as ShareFilled } from './ShareFilled';
|
|
309
309
|
export { default as ShareOutlined } from './ShareOutlined';
|
|
310
|
+
export { default as ShieldCheckedOutlined } from './ShieldCheckedOutlined';
|
|
310
311
|
export { default as ShieldFilled } from './ShieldFilled';
|
|
311
312
|
export { default as ShieldOutlined } from './ShieldOutlined';
|
|
312
313
|
export { default as ShopKeeperFilled } from './ShopKeeperFilled';
|
|
@@ -362,6 +363,7 @@ export { default as UserInfoRealname } from './UserInfoRealname';
|
|
|
362
363
|
export { default as UserInfoTimeZone } from './UserInfoTimeZone';
|
|
363
364
|
export { default as UserInfoTime } from './UserInfoTime';
|
|
364
365
|
export { default as UserOutlined } from './UserOutlined';
|
|
366
|
+
export { default as UserAccount } from './UserAccount';
|
|
365
367
|
export { default as VoidFilled } from './VoidFilled';
|
|
366
368
|
export { default as WalletFilled } from './WalletFilled';
|
|
367
369
|
export { default as WalletOutlined } from './WalletOutlined';
|
package/lib/index.js
CHANGED
|
@@ -14,8 +14,8 @@ exports.FilletFileListOutlined = exports.FileTextOutlined = exports.FileShieldOu
|
|
|
14
14
|
exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LightbulbOutlined = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InternalTransfer = exports.InternalResourceOutlined = exports.InformationOutlined = exports.InformationFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IdCardFilled = exports.HouseOutlined = exports.Hours24 = exports.HourGlassOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandleOutlined = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.ForbidFireOutlined = exports.ForbidFireFilled = exports.FolderBracketOutlined = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FlagOutlined = exports.FireOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = void 0;
|
|
15
15
|
exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.Pdf = exports.PauseInvestFilled = exports.PauseCircleFilled = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NoteBoardOutlined = exports.NoteBoardFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MinusSquareOutlined = exports.MessageTipOutlined = exports.MessageSquareOutlined = exports.MessageSmileOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MappingAddOutlined = exports.MailSettingFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LogoTmd = exports.LogoEc = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LocationOutlined = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.LinkOutlined = void 0;
|
|
16
16
|
exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.RoleSubAccount = exports.RoleSignalResource = exports.RoleSale = exports.RoleOtcMerchant = exports.RoleManage = exports.RoleIb = exports.RoleFollower = exports.RoleDirect = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RetryFilled = exports.ResourceOutlined = exports.RelationInternal = exports.RelationCircle = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeOutlined = exports.QrCodeFilled = exports.PlusOutlined = exports.PlaySolidFilled = exports.PlayOutlined = exports.PlayFilled = exports.PhoneOutlined = exports.PhoneCallFilled = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonLeftArrowFilled = exports.PeopleTieOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = void 0;
|
|
17
|
-
exports.
|
|
18
|
-
exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VoidFilled = exports.UserOutlined = exports.UserInfoTime = exports.UserInfoTimeZone = exports.UserInfoRealname = exports.UserInfoPassword = exports.UserInfoGift = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UnlockFilled = void 0;
|
|
17
|
+
exports.UnbindChainOutlined = exports.TwoSwitchOutlined = exports.TwoPersonConfirm = exports.TwoPeopleRectOutlined = exports.TreeOutlined = exports.TreeFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferMoneyFilled = exports.TransferFileFilled = exports.TagRecharged = exports.TagOutlined = exports.TagFilled = exports.TagBrokenHeart = exports.SubtractFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SocialMediaYoutube = exports.SocialMediaTwitter = exports.SocialMediaIns = exports.SocialMediaIn = exports.SocialMediaFacebook = exports.SimpleEarthOutlined = exports.SignalStopReviewOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalDiffusionOutlined = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShieldCheckedOutlined = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = void 0;
|
|
18
|
+
exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VoidFilled = exports.UserAccount = exports.UserOutlined = exports.UserInfoTime = exports.UserInfoTimeZone = exports.UserInfoRealname = exports.UserInfoPassword = exports.UserInfoGift = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnionOutlined = void 0;
|
|
19
19
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
20
20
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -2179,6 +2179,13 @@ Object.defineProperty(exports, "ShareOutlined", {
|
|
|
2179
2179
|
return __importDefault(ShareOutlined_1)["default"];
|
|
2180
2180
|
}
|
|
2181
2181
|
});
|
|
2182
|
+
var ShieldCheckedOutlined_1 = require("./ShieldCheckedOutlined");
|
|
2183
|
+
Object.defineProperty(exports, "ShieldCheckedOutlined", {
|
|
2184
|
+
enumerable: true,
|
|
2185
|
+
get: function get() {
|
|
2186
|
+
return __importDefault(ShieldCheckedOutlined_1)["default"];
|
|
2187
|
+
}
|
|
2188
|
+
});
|
|
2182
2189
|
var ShieldFilled_1 = require("./ShieldFilled");
|
|
2183
2190
|
Object.defineProperty(exports, "ShieldFilled", {
|
|
2184
2191
|
enumerable: true,
|
|
@@ -2564,6 +2571,13 @@ Object.defineProperty(exports, "UserOutlined", {
|
|
|
2564
2571
|
return __importDefault(UserOutlined_1)["default"];
|
|
2565
2572
|
}
|
|
2566
2573
|
});
|
|
2574
|
+
var UserAccount_1 = require("./UserAccount");
|
|
2575
|
+
Object.defineProperty(exports, "UserAccount", {
|
|
2576
|
+
enumerable: true,
|
|
2577
|
+
get: function get() {
|
|
2578
|
+
return __importDefault(UserAccount_1)["default"];
|
|
2579
|
+
}
|
|
2580
|
+
});
|
|
2567
2581
|
var VoidFilled_1 = require("./VoidFilled");
|
|
2568
2582
|
Object.defineProperty(exports, "VoidFilled", {
|
|
2569
2583
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function ShieldCheckedOutlined(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
|
+
<path
|
|
8
|
+
d="M19 7.218c0-.881-.016-1.057-.066-1.188a1.001 1.001 0 00-.273-.394c-.105-.092-.264-.168-1.089-.478l-5.361-2.01c-.112-.042-.168-.063-.208-.076L12 3.07h-.003c-.041.014-.097.035-.208.077l-5.361 2.01c-.825.31-.985.386-1.09.478a1.002 1.002 0 00-.273.394C5.015 6.16 5 6.337 5 7.218V12c0 2.082 1.14 3.966 2.641 5.53 1.491 1.554 3.229 2.676 4.164 3.222a9.949 9.949 0 00.195.11l.06-.033.134-.077c.936-.546 2.673-1.668 4.164-3.221C17.86 15.966 19 14.082 19 12V7.217zM16.914 9l-5.207 5.207a1 1 0 01-1.414 0L7.586 11.5 9 10.086l2 2 4.5-4.5L16.914 9zM21 12c0 2.827-1.538 5.184-3.2 6.915-1.672 1.743-3.586 2.973-4.598 3.564-.19.11-.442.268-.783.341-.26.056-.579.056-.838 0-.341-.073-.593-.23-.783-.341-1.013-.59-2.926-1.821-4.599-3.564-1.662-1.731-3.2-4.088-3.2-6.915V7.218c0-.718-.015-1.342.197-1.898a3 3 0 01.82-1.184c.447-.394 1.037-.599 1.71-.85l5.36-2.011c.168-.063.389-.151.628-.186.142-.02.286-.026.43-.016l.142.016.175.035c.17.043.326.103.452.15l5.361 2.011c.672.252 1.262.457 1.71.851a3 3 0 01.82 1.184c.211.556.196 1.18.196 1.898V12z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
ShieldCheckedOutlined.displayName = 'ShieldCheckedOutlined';
|
|
18
|
+
export default ShieldCheckedOutlined;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function UserAccount(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
|
+
<g clipPath="url(#userAccount_svg__clip0_4046_27238)">
|
|
8
|
+
<path
|
|
9
|
+
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"
|
|
10
|
+
fill="currentColor"
|
|
11
|
+
/>
|
|
12
|
+
<circle
|
|
13
|
+
cx={11.561}
|
|
14
|
+
cy={6.001}
|
|
15
|
+
transform="rotate(6 11.56 6)"
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
r={3.969}
|
|
18
|
+
/>
|
|
19
|
+
<circle cx={16.287} cy={17.313} fill="#DC4946" r={5.313} />
|
|
20
|
+
<g clipPath="url(#userAccount_svg__clip1_4046_27238)">
|
|
21
|
+
<path
|
|
22
|
+
d="M15.738 17.587a1.374 1.374 0 002.072.149l.824-.825a1.374 1.374 0 00-1.943-1.942l-.472.47m.618 1.599a1.373 1.373 0 00-2.072-.149l-.824.825a1.373 1.373 0 001.942 1.943l.47-.47"
|
|
23
|
+
stroke="#fff"
|
|
24
|
+
strokeWidth={0.7}
|
|
25
|
+
strokeLinecap="square"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
/>
|
|
28
|
+
</g>
|
|
29
|
+
</g>
|
|
30
|
+
<defs>
|
|
31
|
+
<clipPath id="userAccount_svg__clip0_4046_27238">
|
|
32
|
+
<path fill="#fff" d="M0 0h24v24H0z" />
|
|
33
|
+
</clipPath>
|
|
34
|
+
<clipPath id="userAccount_svg__clip1_4046_27238">
|
|
35
|
+
<path fill="#fff" transform="translate(12.99 14.016)" d="M0 0h6.595v6.595H0z" />
|
|
36
|
+
</clipPath>
|
|
37
|
+
</defs>
|
|
38
|
+
</svg>
|
|
39
|
+
);
|
|
40
|
+
|
|
41
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
UserAccount.displayName = 'UserAccount';
|
|
45
|
+
export default UserAccount;
|
package/src/index.tsx
CHANGED
|
@@ -307,6 +307,7 @@ export { default as ShapeFilled } from './ShapeFilled'
|
|
|
307
307
|
export { default as ShapeOutlined } from './ShapeOutlined'
|
|
308
308
|
export { default as ShareFilled } from './ShareFilled'
|
|
309
309
|
export { default as ShareOutlined } from './ShareOutlined'
|
|
310
|
+
export { default as ShieldCheckedOutlined } from './ShieldCheckedOutlined'
|
|
310
311
|
export { default as ShieldFilled } from './ShieldFilled'
|
|
311
312
|
export { default as ShieldOutlined } from './ShieldOutlined'
|
|
312
313
|
export { default as ShopKeeperFilled } from './ShopKeeperFilled'
|
|
@@ -362,6 +363,7 @@ export { default as UserInfoRealname } from './UserInfoRealname'
|
|
|
362
363
|
export { default as UserInfoTimeZone } from './UserInfoTimeZone'
|
|
363
364
|
export { default as UserInfoTime } from './UserInfoTime'
|
|
364
365
|
export { default as UserOutlined } from './UserOutlined'
|
|
366
|
+
export { default as UserAccount } from './UserAccount'
|
|
365
367
|
export { default as VoidFilled } from './VoidFilled'
|
|
366
368
|
export { default as WalletFilled } from './WalletFilled'
|
|
367
369
|
export { default as WalletOutlined } from './WalletOutlined'
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_4046_27238)">
|
|
3
|
+
<path
|
|
4
|
+
d="M2.96659 14.4199C2.05416 15.6962 3.11168 17.2542 4.67193 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.49756 10.6749 4.64272 12.0755 2.96659 14.4199Z"
|
|
5
|
+
fill="currentColor" />
|
|
6
|
+
<ellipse cx="11.5608" cy="6.0008" rx="3.969" ry="3.969" transform="rotate(6 11.5608 6.0008)" fill="currentColor" />
|
|
7
|
+
<ellipse cx="16.2873" cy="17.3126" rx="5.31265" ry="5.31265" fill="#DC4946" />
|
|
8
|
+
<g clip-path="url(#clip1_4046_27238)">
|
|
9
|
+
<path
|
|
10
|
+
d="M15.7377 17.5874C15.8557 17.7452 16.0063 17.8757 16.1792 17.9702C16.352 18.0646 16.5432 18.1208 16.7397 18.1349C16.9363 18.1489 17.1335 18.1206 17.3181 18.0517C17.5027 17.9829 17.6703 17.8751 17.8096 17.7358L18.6339 16.9114C18.8842 16.6523 19.0227 16.3052 19.0196 15.945C19.0164 15.5848 18.8719 15.2402 18.6172 14.9854C18.3625 14.7307 18.0179 14.5862 17.6576 14.5831C17.2974 14.5799 16.9503 14.7184 16.6912 14.9687L16.2186 15.4386M16.8368 17.0378C16.7188 16.8801 16.5683 16.7495 16.3954 16.6551C16.2225 16.5606 16.0313 16.5044 15.8348 16.4904C15.6383 16.4763 15.441 16.5046 15.2564 16.5735C15.0719 16.6424 14.9042 16.7501 14.765 16.8894L13.9406 17.7138C13.6903 17.9729 13.5518 18.32 13.555 18.6802C13.5581 19.0405 13.7026 19.3851 13.9573 19.6398C14.2121 19.8945 14.5567 20.039 14.9169 20.0422C15.2771 20.0453 15.6242 19.9068 15.8833 19.6565L16.3532 19.1867"
|
|
11
|
+
stroke="white" stroke-width="0.7" stroke-linecap="square" stroke-linejoin="round" />
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
<defs>
|
|
15
|
+
<clipPath id="clip0_4046_27238">
|
|
16
|
+
<rect width="24" height="24" fill="white" />
|
|
17
|
+
</clipPath>
|
|
18
|
+
<clipPath id="clip1_4046_27238">
|
|
19
|
+
<rect width="6.59486" height="6.59486" fill="white" transform="translate(12.9899 14.0156)" />
|
|
20
|
+
</clipPath>
|
|
21
|
+
</defs>
|
|
22
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M18.9998 7.21799C18.9998 6.3368 18.9839 6.16085 18.9343 6.03049C18.8766 5.87887 18.7826 5.74324 18.6609 5.63596C18.5563 5.54382 18.3967 5.46768 17.572 5.15842L12.2107 3.14768C12.0993 3.1059 12.0435 3.0849 12.0027 3.07151C12.0017 3.07117 12.0007 3.07083 11.9998 3.07053C11.9988 3.07083 11.9979 3.07117 11.9968 3.07151C11.956 3.0849 11.9002 3.1059 11.7888 3.14768L6.4275 5.15842C5.60282 5.46768 5.44329 5.54382 5.33864 5.63596C5.21691 5.74324 5.12297 5.87887 5.0652 6.03049C5.0156 6.16085 4.99977 6.3368 4.99977 7.21799V12.0002C4.99977 14.082 6.13915 15.9655 7.64137 17.5305C9.13244 19.0838 10.8695 20.2062 11.8054 20.7522C11.8626 20.7855 11.9043 20.8091 11.9402 20.8293C11.9682 20.8451 11.9869 20.855 11.9998 20.8615C12.0126 20.855 12.0313 20.8451 12.0593 20.8293C12.0952 20.8091 12.1369 20.7855 12.1941 20.7522C13.13 20.2062 14.8671 19.0838 16.3582 17.5305C17.8604 15.9655 18.9998 14.082 18.9998 12.0002V7.21799ZM16.9138 9.00022L11.7068 14.2072C11.3163 14.5978 10.6833 14.5978 10.2927 14.2072L7.58571 11.5002L8.99977 10.0862L10.9998 12.0862L15.4998 7.58615L16.9138 9.00022ZM20.9998 12.0002C20.9998 14.8268 19.4623 17.184 17.8006 18.9153C16.1279 20.6577 14.2141 21.8882 13.2019 22.4787C13.0121 22.5895 12.7598 22.7474 12.4187 22.8205C12.1595 22.8761 11.8401 22.8761 11.5808 22.8205C11.2397 22.7474 10.9875 22.5895 10.7976 22.4787C9.78546 21.8882 7.87162 20.6577 6.19899 18.9153C4.53722 17.184 2.99977 14.8268 2.99977 12.0002V7.21799C2.99977 6.5004 2.98416 5.8764 3.19606 5.31955C3.36933 4.86426 3.65089 4.45805 4.01637 4.13596C4.4634 3.74201 5.05339 3.53736 5.72536 3.28537L11.0867 1.27463C11.2544 1.21175 11.475 1.12358 11.7136 1.08908C11.856 1.06851 12.0001 1.06316 12.1433 1.07346L12.2859 1.08908L12.4607 1.12424C12.6313 1.1666 12.7871 1.22746 12.9129 1.27463L18.2742 3.28537C18.9461 3.53736 19.5361 3.74201 19.9832 4.13596C20.3486 4.45805 20.6302 4.86426 20.8035 5.31955C21.0154 5.8764 20.9998 6.5004 20.9998 7.21799V12.0002Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M18.9998 7.21799C18.9998 6.3368 18.9839 6.16085 18.9343 6.03049C18.8766 5.87887 18.7826 5.74324 18.6609 5.63596C18.5563 5.54382 18.3967 5.46768 17.572 5.15842L12.2107 3.14768C12.0993 3.1059 12.0435 3.0849 12.0027 3.07151C12.0017 3.07117 12.0007 3.07083 11.9998 3.07053C11.9988 3.07083 11.9979 3.07117 11.9968 3.07151C11.956 3.0849 11.9002 3.1059 11.7888 3.14768L6.4275 5.15842C5.60282 5.46768 5.44329 5.54382 5.33864 5.63596C5.21691 5.74324 5.12297 5.87887 5.0652 6.03049C5.0156 6.16085 4.99977 6.3368 4.99977 7.21799V12.0002C4.99977 14.082 6.13915 15.9655 7.64137 17.5305C9.13244 19.0838 10.8695 20.2062 11.8054 20.7522C11.8626 20.7855 11.9043 20.8091 11.9402 20.8293C11.9682 20.8451 11.9869 20.855 11.9998 20.8615C12.0126 20.855 12.0313 20.8451 12.0593 20.8293C12.0952 20.8091 12.1369 20.7855 12.1941 20.7522C13.13 20.2062 14.8671 19.0838 16.3582 17.5305C17.8604 15.9655 18.9998 14.082 18.9998 12.0002V7.21799ZM16.9138 9.00022L11.7068 14.2072C11.3163 14.5978 10.6833 14.5978 10.2927 14.2072L7.58571 11.5002L8.99977 10.0862L10.9998 12.0862L15.4998 7.58615L16.9138 9.00022ZM20.9998 12.0002C20.9998 14.8268 19.4623 17.184 17.8006 18.9153C16.1279 20.6577 14.2141 21.8882 13.2019 22.4787C13.0121 22.5895 12.7598 22.7474 12.4187 22.8205C12.1595 22.8761 11.8401 22.8761 11.5808 22.8205C11.2397 22.7474 10.9875 22.5895 10.7976 22.4787C9.78546 21.8882 7.87162 20.6577 6.19899 18.9153C4.53722 17.184 2.99977 14.8268 2.99977 12.0002V7.21799C2.99977 6.5004 2.98416 5.8764 3.19606 5.31955C3.36933 4.86426 3.65089 4.45805 4.01637 4.13596C4.4634 3.74201 5.05339 3.53736 5.72536 3.28537L11.0867 1.27463C11.2544 1.21175 11.475 1.12358 11.7136 1.08908C11.856 1.06851 12.0001 1.06316 12.1433 1.07346L12.2859 1.08908L12.4607 1.12424C12.6313 1.1666 12.7871 1.22746 12.9129 1.27463L18.2742 3.28537C18.9461 3.53736 19.5361 3.74201 19.9832 4.13596C20.3486 4.45805 20.6302 4.86426 20.8035 5.31955C21.0154 5.8764 20.9998 6.5004 20.9998 7.21799V12.0002Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_4046_27238)">
|
|
3
|
+
<path
|
|
4
|
+
d="M2.96659 14.4199C2.05416 15.6962 3.11168 17.2542 4.67193 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.49756 10.6749 4.64272 12.0755 2.96659 14.4199Z"
|
|
5
|
+
fill="currentColor" />
|
|
6
|
+
<ellipse cx="11.5608" cy="6.0008" rx="3.969" ry="3.969" transform="rotate(6 11.5608 6.0008)" fill="currentColor" />
|
|
7
|
+
<ellipse cx="16.2873" cy="17.3126" rx="5.31265" ry="5.31265" fill="#DC4946" />
|
|
8
|
+
<g clip-path="url(#clip1_4046_27238)">
|
|
9
|
+
<path
|
|
10
|
+
d="M15.7377 17.5874C15.8557 17.7452 16.0063 17.8757 16.1792 17.9702C16.352 18.0646 16.5432 18.1208 16.7397 18.1349C16.9363 18.1489 17.1335 18.1206 17.3181 18.0517C17.5027 17.9829 17.6703 17.8751 17.8096 17.7358L18.6339 16.9114C18.8842 16.6523 19.0227 16.3052 19.0196 15.945C19.0164 15.5848 18.8719 15.2402 18.6172 14.9854C18.3625 14.7307 18.0179 14.5862 17.6576 14.5831C17.2974 14.5799 16.9503 14.7184 16.6912 14.9687L16.2186 15.4386M16.8368 17.0378C16.7188 16.8801 16.5683 16.7495 16.3954 16.6551C16.2225 16.5606 16.0313 16.5044 15.8348 16.4904C15.6383 16.4763 15.441 16.5046 15.2564 16.5735C15.0719 16.6424 14.9042 16.7501 14.765 16.8894L13.9406 17.7138C13.6903 17.9729 13.5518 18.32 13.555 18.6802C13.5581 19.0405 13.7026 19.3851 13.9573 19.6398C14.2121 19.8945 14.5567 20.039 14.9169 20.0422C15.2771 20.0453 15.6242 19.9068 15.8833 19.6565L16.3532 19.1867"
|
|
11
|
+
stroke="white" stroke-width="0.7" stroke-linecap="square" stroke-linejoin="round" />
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
<defs>
|
|
15
|
+
<clipPath id="clip0_4046_27238">
|
|
16
|
+
<rect width="24" height="24" fill="white" />
|
|
17
|
+
</clipPath>
|
|
18
|
+
<clipPath id="clip1_4046_27238">
|
|
19
|
+
<rect width="6.59486" height="6.59486" fill="white" transform="translate(12.9899 14.0156)" />
|
|
20
|
+
</clipPath>
|
|
21
|
+
</defs>
|
|
22
|
+
</svg>
|