a-icons 1.2.71 → 1.2.73
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/PersonThreeLineOutlined.d.ts +6 -0
- package/es/PersonThreeLineOutlined.js +31 -0
- package/es/TwoWayFilled.d.ts +6 -0
- package/es/TwoWayFilled.js +38 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/lib/PersonThreeLineOutlined.d.ts +6 -0
- package/lib/PersonThreeLineOutlined.js +74 -0
- package/lib/TwoWayFilled.d.ts +6 -0
- package/lib/TwoWayFilled.js +81 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +17 -3
- package/package.json +2 -2
- package/src/PersonThreeLineOutlined.tsx +18 -0
- package/src/TwoWayFilled.tsx +19 -0
- package/src/index.tsx +2 -0
- package/svgs/filled/two-way-filled.svg +6 -0
- package/svgs/outlined/person-three-line-outlined.svg +7 -0
- package/tmpAllSvgs/person-three-line-outlined.svg +7 -0
- package/tmpAllSvgs/two-way-filled.svg +6 -0
- package/LICENSE +0 -21
|
@@ -0,0 +1,31 @@
|
|
|
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 PersonThreeLineOutlined(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("path", {
|
|
22
|
+
d: "M19 7h5v2h-5V7zm-2 5h7v2h-7v-2zm3 5h4v2h-4v-2zM2 22a8 8 0 1116 0h-2a6 6 0 00-12 0H2zm8-9c-3.315 0-6-2.685-6-6s2.685-6 6-6 6 2.685 6 6-2.685 6-6 6zm0-2c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}));
|
|
25
|
+
};
|
|
26
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
27
|
+
component: IconNode
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
PersonThreeLineOutlined.displayName = 'PersonThreeLineOutlined';
|
|
31
|
+
export default PersonThreeLineOutlined;
|
|
@@ -0,0 +1,38 @@
|
|
|
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 TwoWayFilled(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("rect", {
|
|
22
|
+
x: 1,
|
|
23
|
+
y: 1,
|
|
24
|
+
width: 22,
|
|
25
|
+
height: 22,
|
|
26
|
+
rx: 3.667,
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M15.976 5.372v2.651h-5.302v2.651h5.302v2.652l4.64-3.977-4.64-3.977zM8.023 18.629v-2.652h5.302v-2.651H8.023v-2.652l-4.64 3.978 4.64 3.977z",
|
|
30
|
+
fill: "#fff"
|
|
31
|
+
}));
|
|
32
|
+
};
|
|
33
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
34
|
+
component: IconNode
|
|
35
|
+
}));
|
|
36
|
+
}
|
|
37
|
+
TwoWayFilled.displayName = 'TwoWayFilled';
|
|
38
|
+
export default TwoWayFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -261,6 +261,7 @@ export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
|
261
261
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
262
262
|
export { default as PeopleTieOutlined } from './PeopleTieOutlined';
|
|
263
263
|
export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
|
|
264
|
+
export { default as PersonThreeLineOutlined } from './PersonThreeLineOutlined';
|
|
264
265
|
export { default as PersonTransferFilled } from './PersonTransferFilled';
|
|
265
266
|
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
266
267
|
export { default as PhoneCallFilled } from './PhoneCallFilled';
|
|
@@ -350,6 +351,7 @@ export { default as TreeOutlined } from './TreeOutlined';
|
|
|
350
351
|
export { default as TwoPeopleRectOutlined } from './TwoPeopleRectOutlined';
|
|
351
352
|
export { default as TwoPersonConfirm } from './TwoPersonConfirm';
|
|
352
353
|
export { default as TwoSwitchOutlined } from './TwoSwitchOutlined';
|
|
354
|
+
export { default as TwoWayFilled } from './TwoWayFilled';
|
|
353
355
|
export { default as UnbindChainOutlined } from './UnbindChainOutlined';
|
|
354
356
|
export { default as UnionOutlined } from './UnionOutlined';
|
|
355
357
|
export { default as UnlockFilled } from './UnlockFilled';
|
package/es/index.js
CHANGED
|
@@ -261,6 +261,7 @@ export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
|
261
261
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
262
262
|
export { default as PeopleTieOutlined } from './PeopleTieOutlined';
|
|
263
263
|
export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
|
|
264
|
+
export { default as PersonThreeLineOutlined } from './PersonThreeLineOutlined';
|
|
264
265
|
export { default as PersonTransferFilled } from './PersonTransferFilled';
|
|
265
266
|
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
266
267
|
export { default as PhoneCallFilled } from './PhoneCallFilled';
|
|
@@ -350,6 +351,7 @@ export { default as TreeOutlined } from './TreeOutlined';
|
|
|
350
351
|
export { default as TwoPeopleRectOutlined } from './TwoPeopleRectOutlined';
|
|
351
352
|
export { default as TwoPersonConfirm } from './TwoPersonConfirm';
|
|
352
353
|
export { default as TwoSwitchOutlined } from './TwoSwitchOutlined';
|
|
354
|
+
export { default as TwoWayFilled } from './TwoWayFilled';
|
|
353
355
|
export { default as UnbindChainOutlined } from './UnbindChainOutlined';
|
|
354
356
|
export { default as UnionOutlined } from './UnionOutlined';
|
|
355
357
|
export { default as UnlockFilled } from './UnlockFilled';
|
|
@@ -0,0 +1,74 @@
|
|
|
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 PersonThreeLineOutlined(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("path", {
|
|
65
|
+
d: "M19 7h5v2h-5V7zm-2 5h7v2h-7v-2zm3 5h4v2h-4v-2zM2 22a8 8 0 1116 0h-2a6 6 0 00-12 0H2zm8-9c-3.315 0-6-2.685-6-6s2.685-6 6-6 6 2.685 6 6-2.685 6-6 6zm0-2c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z",
|
|
66
|
+
fill: "currentColor"
|
|
67
|
+
}));
|
|
68
|
+
};
|
|
69
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
70
|
+
component: IconNode
|
|
71
|
+
}));
|
|
72
|
+
}
|
|
73
|
+
PersonThreeLineOutlined.displayName = 'PersonThreeLineOutlined';
|
|
74
|
+
exports["default"] = PersonThreeLineOutlined;
|
|
@@ -0,0 +1,81 @@
|
|
|
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 TwoWayFilled(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("rect", {
|
|
65
|
+
x: 1,
|
|
66
|
+
y: 1,
|
|
67
|
+
width: 22,
|
|
68
|
+
height: 22,
|
|
69
|
+
rx: 3.667,
|
|
70
|
+
fill: "currentColor"
|
|
71
|
+
}), React.createElement("path", {
|
|
72
|
+
d: "M15.976 5.372v2.651h-5.302v2.651h5.302v2.652l4.64-3.977-4.64-3.977zM8.023 18.629v-2.652h5.302v-2.651H8.023v-2.652l-4.64 3.978 4.64 3.977z",
|
|
73
|
+
fill: "#fff"
|
|
74
|
+
}));
|
|
75
|
+
};
|
|
76
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
77
|
+
component: IconNode
|
|
78
|
+
}));
|
|
79
|
+
}
|
|
80
|
+
TwoWayFilled.displayName = 'TwoWayFilled';
|
|
81
|
+
exports["default"] = TwoWayFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -261,6 +261,7 @@ export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
|
261
261
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
262
262
|
export { default as PeopleTieOutlined } from './PeopleTieOutlined';
|
|
263
263
|
export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
|
|
264
|
+
export { default as PersonThreeLineOutlined } from './PersonThreeLineOutlined';
|
|
264
265
|
export { default as PersonTransferFilled } from './PersonTransferFilled';
|
|
265
266
|
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
266
267
|
export { default as PhoneCallFilled } from './PhoneCallFilled';
|
|
@@ -350,6 +351,7 @@ export { default as TreeOutlined } from './TreeOutlined';
|
|
|
350
351
|
export { default as TwoPeopleRectOutlined } from './TwoPeopleRectOutlined';
|
|
351
352
|
export { default as TwoPersonConfirm } from './TwoPersonConfirm';
|
|
352
353
|
export { default as TwoSwitchOutlined } from './TwoSwitchOutlined';
|
|
354
|
+
export { default as TwoWayFilled } from './TwoWayFilled';
|
|
353
355
|
export { default as UnbindChainOutlined } from './UnbindChainOutlined';
|
|
354
356
|
export { default as UnionOutlined } from './UnionOutlined';
|
|
355
357
|
export { default as UnlockFilled } from './UnlockFilled';
|
package/lib/index.js
CHANGED
|
@@ -13,9 +13,9 @@ exports.DataPanelOutlined = exports.DataLogOutlined = exports.DashboardOutlined
|
|
|
13
13
|
exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ExchangeArrowOutlined = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditOutlined = exports.EditFilled = exports.Edit2Filled = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DraftLineOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownloadLineOutlined = exports.DownloadFilled = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotsOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentVoteFilled = exports.DocumentTextFilled = exports.DocumentPassFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentErrorFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = void 0;
|
|
14
14
|
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 = exports.FilletFileListOutlined = exports.FileTextOutlined = exports.FileShieldOutlined = void 0;
|
|
15
15
|
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 = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = void 0;
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
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.UploadOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnionOutlined = exports.UnbindChainOutlined = exports.TwoSwitchOutlined = exports.TwoPersonConfirm = void 0;
|
|
16
|
+
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.PersonThreeLineOutlined = exports.PersonLeftArrowFilled = exports.PeopleTieOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = void 0;
|
|
17
|
+
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 = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = 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.UploadOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnionOutlined = exports.UnbindChainOutlined = exports.TwoWayFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirm = exports.TwoPeopleRectOutlined = void 0;
|
|
19
19
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
20
20
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -1857,6 +1857,13 @@ Object.defineProperty(exports, "PersonLeftArrowFilled", {
|
|
|
1857
1857
|
return __importDefault(PersonLeftArrowFilled_1)["default"];
|
|
1858
1858
|
}
|
|
1859
1859
|
});
|
|
1860
|
+
var PersonThreeLineOutlined_1 = require("./PersonThreeLineOutlined");
|
|
1861
|
+
Object.defineProperty(exports, "PersonThreeLineOutlined", {
|
|
1862
|
+
enumerable: true,
|
|
1863
|
+
get: function get() {
|
|
1864
|
+
return __importDefault(PersonThreeLineOutlined_1)["default"];
|
|
1865
|
+
}
|
|
1866
|
+
});
|
|
1860
1867
|
var PersonTransferFilled_1 = require("./PersonTransferFilled");
|
|
1861
1868
|
Object.defineProperty(exports, "PersonTransferFilled", {
|
|
1862
1869
|
enumerable: true,
|
|
@@ -2480,6 +2487,13 @@ Object.defineProperty(exports, "TwoSwitchOutlined", {
|
|
|
2480
2487
|
return __importDefault(TwoSwitchOutlined_1)["default"];
|
|
2481
2488
|
}
|
|
2482
2489
|
});
|
|
2490
|
+
var TwoWayFilled_1 = require("./TwoWayFilled");
|
|
2491
|
+
Object.defineProperty(exports, "TwoWayFilled", {
|
|
2492
|
+
enumerable: true,
|
|
2493
|
+
get: function get() {
|
|
2494
|
+
return __importDefault(TwoWayFilled_1)["default"];
|
|
2495
|
+
}
|
|
2496
|
+
});
|
|
2483
2497
|
var UnbindChainOutlined_1 = require("./UnbindChainOutlined");
|
|
2484
2498
|
Object.defineProperty(exports, "UnbindChainOutlined", {
|
|
2485
2499
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.73",
|
|
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": "^3.2.49"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "a30555e4d7ba3adb18c435e248cfbeb689338ff1"
|
|
26
26
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function PersonThreeLineOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M19 7h5v2h-5V7zm-2 5h7v2h-7v-2zm3 5h4v2h-4v-2zM2 22a8 8 0 1116 0h-2a6 6 0 00-12 0H2zm8-9c-3.315 0-6-2.685-6-6s2.685-6 6-6 6 2.685 6 6-2.685 6-6 6zm0-2c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
PersonThreeLineOutlined.displayName = 'PersonThreeLineOutlined';
|
|
18
|
+
export default PersonThreeLineOutlined;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function TwoWayFilled(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 x={1} y={1} width={22} height={22} rx={3.667} fill="currentColor" />
|
|
8
|
+
<path
|
|
9
|
+
d="M15.976 5.372v2.651h-5.302v2.651h5.302v2.652l4.64-3.977-4.64-3.977zM8.023 18.629v-2.652h5.302v-2.651H8.023v-2.652l-4.64 3.978 4.64 3.977z"
|
|
10
|
+
fill="#fff"
|
|
11
|
+
/>
|
|
12
|
+
</svg>
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
TwoWayFilled.displayName = 'TwoWayFilled';
|
|
19
|
+
export default TwoWayFilled;
|
package/src/index.tsx
CHANGED
|
@@ -261,6 +261,7 @@ export { default as PeopleTeamFilled } from './PeopleTeamFilled'
|
|
|
261
261
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined'
|
|
262
262
|
export { default as PeopleTieOutlined } from './PeopleTieOutlined'
|
|
263
263
|
export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled'
|
|
264
|
+
export { default as PersonThreeLineOutlined } from './PersonThreeLineOutlined'
|
|
264
265
|
export { default as PersonTransferFilled } from './PersonTransferFilled'
|
|
265
266
|
export { default as PersonWarningFilled } from './PersonWarningFilled'
|
|
266
267
|
export { default as PhoneCallFilled } from './PhoneCallFilled'
|
|
@@ -350,6 +351,7 @@ export { default as TreeOutlined } from './TreeOutlined'
|
|
|
350
351
|
export { default as TwoPeopleRectOutlined } from './TwoPeopleRectOutlined'
|
|
351
352
|
export { default as TwoPersonConfirm } from './TwoPersonConfirm'
|
|
352
353
|
export { default as TwoSwitchOutlined } from './TwoSwitchOutlined'
|
|
354
|
+
export { default as TwoWayFilled } from './TwoWayFilled'
|
|
353
355
|
export { default as UnbindChainOutlined } from './UnbindChainOutlined'
|
|
354
356
|
export { default as UnionOutlined } from './UnionOutlined'
|
|
355
357
|
export { default as UnlockFilled } from './UnlockFilled'
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="1" y="1" width="22" height="22" rx="3.66667" fill="currentColor" />
|
|
3
|
+
<path
|
|
4
|
+
d="M15.9762 5.37158V8.02303H10.6742V10.6744H15.9762V13.3259L20.6156 9.34869L15.9762 5.37158ZM8.02311 18.6288V15.9773H13.3252V13.3259H8.02311V10.6744L3.38379 14.6516L8.02311 18.6288Z"
|
|
5
|
+
fill="white" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g>
|
|
3
|
+
<path
|
|
4
|
+
d="M19 7H24V9H19V7ZM17 12H24V14H17V12ZM20 17H24V19H20V17ZM2 22C2 17.5817 5.58172 14 10 14C14.4183 14 18 17.5817 18 22H16C16 18.6863 13.3137 16 10 16C6.68629 16 4 18.6863 4 22H2ZM10 13C6.685 13 4 10.315 4 7C4 3.685 6.685 1 10 1C13.315 1 16 3.685 16 7C16 10.315 13.315 13 10 13ZM10 11C12.21 11 14 9.21 14 7C14 4.79 12.21 3 10 3C7.79 3 6 4.79 6 7C6 9.21 7.79 11 10 11Z"
|
|
5
|
+
fill="currentColor" />
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g>
|
|
3
|
+
<path
|
|
4
|
+
d="M19 7H24V9H19V7ZM17 12H24V14H17V12ZM20 17H24V19H20V17ZM2 22C2 17.5817 5.58172 14 10 14C14.4183 14 18 17.5817 18 22H16C16 18.6863 13.3137 16 10 16C6.68629 16 4 18.6863 4 22H2ZM10 13C6.685 13 4 10.315 4 7C4 3.685 6.685 1 10 1C13.315 1 16 3.685 16 7C16 10.315 13.315 13 10 13ZM10 11C12.21 11 14 9.21 14 7C14 4.79 12.21 3 10 3C7.79 3 6 4.79 6 7C6 9.21 7.79 11 10 11Z"
|
|
5
|
+
fill="currentColor" />
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="1" y="1" width="22" height="22" rx="3.66667" fill="currentColor" />
|
|
3
|
+
<path
|
|
4
|
+
d="M15.9762 5.37158V8.02303H10.6742V10.6744H15.9762V13.3259L20.6156 9.34869L15.9762 5.37158ZM8.02311 18.6288V15.9773H13.3252V13.3259H8.02311V10.6744L3.38379 14.6516L8.02311 18.6288Z"
|
|
5
|
+
fill="white" />
|
|
6
|
+
</svg>
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2020 assui
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|