a-icons 1.2.71 → 1.2.72
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/TwoWayFilled.d.ts +6 -0
- package/es/TwoWayFilled.js +38 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/TwoWayFilled.d.ts +6 -0
- package/lib/TwoWayFilled.js +81 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +8 -1
- package/package.json +2 -2
- package/src/TwoWayFilled.tsx +19 -0
- package/src/index.tsx +1 -0
- package/svgs/filled/two-way-filled.svg +6 -0
- package/tmpAllSvgs/two-way-filled.svg +6 -0
|
@@ -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
|
@@ -350,6 +350,7 @@ export { default as TreeOutlined } from './TreeOutlined';
|
|
|
350
350
|
export { default as TwoPeopleRectOutlined } from './TwoPeopleRectOutlined';
|
|
351
351
|
export { default as TwoPersonConfirm } from './TwoPersonConfirm';
|
|
352
352
|
export { default as TwoSwitchOutlined } from './TwoSwitchOutlined';
|
|
353
|
+
export { default as TwoWayFilled } from './TwoWayFilled';
|
|
353
354
|
export { default as UnbindChainOutlined } from './UnbindChainOutlined';
|
|
354
355
|
export { default as UnionOutlined } from './UnionOutlined';
|
|
355
356
|
export { default as UnlockFilled } from './UnlockFilled';
|
package/es/index.js
CHANGED
|
@@ -350,6 +350,7 @@ export { default as TreeOutlined } from './TreeOutlined';
|
|
|
350
350
|
export { default as TwoPeopleRectOutlined } from './TwoPeopleRectOutlined';
|
|
351
351
|
export { default as TwoPersonConfirm } from './TwoPersonConfirm';
|
|
352
352
|
export { default as TwoSwitchOutlined } from './TwoSwitchOutlined';
|
|
353
|
+
export { default as TwoWayFilled } from './TwoWayFilled';
|
|
353
354
|
export { default as UnbindChainOutlined } from './UnbindChainOutlined';
|
|
354
355
|
export { default as UnionOutlined } from './UnionOutlined';
|
|
355
356
|
export { default as UnlockFilled } from './UnlockFilled';
|
|
@@ -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
|
@@ -350,6 +350,7 @@ export { default as TreeOutlined } from './TreeOutlined';
|
|
|
350
350
|
export { default as TwoPeopleRectOutlined } from './TwoPeopleRectOutlined';
|
|
351
351
|
export { default as TwoPersonConfirm } from './TwoPersonConfirm';
|
|
352
352
|
export { default as TwoSwitchOutlined } from './TwoSwitchOutlined';
|
|
353
|
+
export { default as TwoWayFilled } from './TwoWayFilled';
|
|
353
354
|
export { default as UnbindChainOutlined } from './UnbindChainOutlined';
|
|
354
355
|
export { default as UnionOutlined } from './UnionOutlined';
|
|
355
356
|
export { default as UnlockFilled } from './UnlockFilled';
|
package/lib/index.js
CHANGED
|
@@ -15,7 +15,7 @@ exports.LimitlessFilled = exports.LightbulbOutlined = exports.LeftOutlined = exp
|
|
|
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
16
|
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 = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = void 0;
|
|
17
17
|
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 = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = 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.TwoSwitchOutlined = exports.TwoPersonConfirm = 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 = void 0;
|
|
19
19
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
20
20
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -2480,6 +2480,13 @@ Object.defineProperty(exports, "TwoSwitchOutlined", {
|
|
|
2480
2480
|
return __importDefault(TwoSwitchOutlined_1)["default"];
|
|
2481
2481
|
}
|
|
2482
2482
|
});
|
|
2483
|
+
var TwoWayFilled_1 = require("./TwoWayFilled");
|
|
2484
|
+
Object.defineProperty(exports, "TwoWayFilled", {
|
|
2485
|
+
enumerable: true,
|
|
2486
|
+
get: function get() {
|
|
2487
|
+
return __importDefault(TwoWayFilled_1)["default"];
|
|
2488
|
+
}
|
|
2489
|
+
});
|
|
2483
2490
|
var UnbindChainOutlined_1 = require("./UnbindChainOutlined");
|
|
2484
2491
|
Object.defineProperty(exports, "UnbindChainOutlined", {
|
|
2485
2492
|
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.72",
|
|
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": "1c95f1cba19532ab76db567360e5bb99a76e0cf6"
|
|
26
26
|
}
|
|
@@ -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
|
@@ -350,6 +350,7 @@ export { default as TreeOutlined } from './TreeOutlined'
|
|
|
350
350
|
export { default as TwoPeopleRectOutlined } from './TwoPeopleRectOutlined'
|
|
351
351
|
export { default as TwoPersonConfirm } from './TwoPersonConfirm'
|
|
352
352
|
export { default as TwoSwitchOutlined } from './TwoSwitchOutlined'
|
|
353
|
+
export { default as TwoWayFilled } from './TwoWayFilled'
|
|
353
354
|
export { default as UnbindChainOutlined } from './UnbindChainOutlined'
|
|
354
355
|
export { default as UnionOutlined } from './UnionOutlined'
|
|
355
356
|
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,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>
|