a-icons 1.2.65 → 1.2.66
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/ExchangeArrowOutlined.d.ts +6 -0
- package/es/ExchangeArrowOutlined.js +30 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/ExchangeArrowOutlined.d.ts +6 -0
- package/lib/ExchangeArrowOutlined.js +73 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +13 -6
- package/package.json +1 -1
- package/src/ExchangeArrowOutlined.tsx +18 -0
- package/src/index.tsx +1 -0
- package/svgs/outlined/exchange-arrow-outlined.svg +5 -0
- package/tmpAllSvgs/exchange-arrow-outlined.svg +5 -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 ExchangeArrowOutlined(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: "M14.414 17l-1 1H18.8c.576 0 .949-.001 1.232-.024.272-.023.373-.06.422-.085a.999.999 0 00.437-.437c.025-.05.062-.15.085-.422.023-.283.024-.656.024-1.232V11H3v4.8c0 .576.001.949.024 1.232.023.272.06.373.085.422.096.188.249.34.437.437.05.025.15.062.422.085.283.023.656.024 1.232.024H8v2H5.2c-.543 0-1.012.001-1.395-.03-.396-.033-.789-.104-1.167-.297a3 3 0 01-1.31-1.31c-.194-.379-.265-.772-.298-1.168C1 16.812 1 16.343 1 15.8V8.2c0-.543-.001-1.012.03-1.395.033-.396.104-.789.297-1.167a3 3 0 011.31-1.31c.379-.194.772-.265 1.168-.298C4.188 4 4.657 4 5.2 4h5.386l-1-1L11 1.586l2.707 2.707a1 1 0 010 1.414L11 8.414 9.586 7l1-1H5.2c-.576 0-.949.001-1.232.024-.272.023-.373.06-.422.085a1 1 0 00-.437.437c-.025.05-.062.15-.085.422C3.001 7.25 3 7.624 3 8.2V9h18v-.8c0-.576-.001-.949-.024-1.232-.023-.272-.06-.373-.085-.422a.999.999 0 00-.437-.437c-.05-.025-.15-.062-.422-.085A16.943 16.943 0 0018.8 6H16V4h2.8c.543 0 1.012-.001 1.395.03.396.033.789.104 1.167.297a3 3 0 011.31 1.31c.194.379.265.772.298 1.168.031.383.03.852.03 1.395v7.6c0 .543.001 1.012-.03 1.395-.033.396-.104.789-.297 1.167a3 3 0 01-1.31 1.31c-.379.194-.772.265-1.168.298-.383.031-.852.03-1.395.03h-5.386l1 1L13 22.414l-2.707-2.707a1 1 0 010-1.414L13 15.586 14.414 17z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}));
|
|
24
|
+
};
|
|
25
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
26
|
+
component: IconNode
|
|
27
|
+
}));
|
|
28
|
+
}
|
|
29
|
+
ExchangeArrowOutlined.displayName = 'ExchangeArrowOutlined';
|
|
30
|
+
export default ExchangeArrowOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -135,6 +135,7 @@ export { default as EditOutlined } from './EditOutlined';
|
|
|
135
135
|
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
136
136
|
export { default as ErrorWarningFilled } from './ErrorWarningFilled';
|
|
137
137
|
export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
|
|
138
|
+
export { default as ExchangeArrowOutlined } from './ExchangeArrowOutlined';
|
|
138
139
|
export { default as ExternalLinkFilled } from './ExternalLinkFilled';
|
|
139
140
|
export { default as EyeFilled } from './EyeFilled';
|
|
140
141
|
export { default as EyeOutlined } from './EyeOutlined';
|
package/es/index.js
CHANGED
|
@@ -135,6 +135,7 @@ export { default as EditOutlined } from './EditOutlined';
|
|
|
135
135
|
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
136
136
|
export { default as ErrorWarningFilled } from './ErrorWarningFilled';
|
|
137
137
|
export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
|
|
138
|
+
export { default as ExchangeArrowOutlined } from './ExchangeArrowOutlined';
|
|
138
139
|
export { default as ExternalLinkFilled } from './ExternalLinkFilled';
|
|
139
140
|
export { default as EyeFilled } from './EyeFilled';
|
|
140
141
|
export { default as EyeOutlined } from './EyeOutlined';
|
|
@@ -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 ExchangeArrowOutlined(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: "M14.414 17l-1 1H18.8c.576 0 .949-.001 1.232-.024.272-.023.373-.06.422-.085a.999.999 0 00.437-.437c.025-.05.062-.15.085-.422.023-.283.024-.656.024-1.232V11H3v4.8c0 .576.001.949.024 1.232.023.272.06.373.085.422.096.188.249.34.437.437.05.025.15.062.422.085.283.023.656.024 1.232.024H8v2H5.2c-.543 0-1.012.001-1.395-.03-.396-.033-.789-.104-1.167-.297a3 3 0 01-1.31-1.31c-.194-.379-.265-.772-.298-1.168C1 16.812 1 16.343 1 15.8V8.2c0-.543-.001-1.012.03-1.395.033-.396.104-.789.297-1.167a3 3 0 011.31-1.31c.379-.194.772-.265 1.168-.298C4.188 4 4.657 4 5.2 4h5.386l-1-1L11 1.586l2.707 2.707a1 1 0 010 1.414L11 8.414 9.586 7l1-1H5.2c-.576 0-.949.001-1.232.024-.272.023-.373.06-.422.085a1 1 0 00-.437.437c-.025.05-.062.15-.085.422C3.001 7.25 3 7.624 3 8.2V9h18v-.8c0-.576-.001-.949-.024-1.232-.023-.272-.06-.373-.085-.422a.999.999 0 00-.437-.437c-.05-.025-.15-.062-.422-.085A16.943 16.943 0 0018.8 6H16V4h2.8c.543 0 1.012-.001 1.395.03.396.033.789.104 1.167.297a3 3 0 011.31 1.31c.194.379.265.772.298 1.168.031.383.03.852.03 1.395v7.6c0 .543.001 1.012-.03 1.395-.033.396-.104.789-.297 1.167a3 3 0 01-1.31 1.31c-.379.194-.772.265-1.168.298-.383.031-.852.03-1.395.03h-5.386l1 1L13 22.414l-2.707-2.707a1 1 0 010-1.414L13 15.586 14.414 17z",
|
|
65
|
+
fill: "currentColor"
|
|
66
|
+
}));
|
|
67
|
+
};
|
|
68
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
69
|
+
component: IconNode
|
|
70
|
+
}));
|
|
71
|
+
}
|
|
72
|
+
ExchangeArrowOutlined.displayName = 'ExchangeArrowOutlined';
|
|
73
|
+
exports["default"] = ExchangeArrowOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -135,6 +135,7 @@ export { default as EditOutlined } from './EditOutlined';
|
|
|
135
135
|
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
136
136
|
export { default as ErrorWarningFilled } from './ErrorWarningFilled';
|
|
137
137
|
export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
|
|
138
|
+
export { default as ExchangeArrowOutlined } from './ExchangeArrowOutlined';
|
|
138
139
|
export { default as ExternalLinkFilled } from './ExternalLinkFilled';
|
|
139
140
|
export { default as EyeFilled } from './EyeFilled';
|
|
140
141
|
export { default as EyeOutlined } from './EyeOutlined';
|
package/lib/index.js
CHANGED
|
@@ -10,12 +10,12 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.Call = exports.CallRecordOutlined = exports.CallOutlined = exports.CallFailOutlined = exports.CalendarOutlined = exports.CalendarFilled = exports.BusinessCardOutlined = exports.BrokenLineOutlined = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BoardOutlined = exports.BoardFilled = exports.BlockChainOutlined = exports.BlockChainFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BindChainOutlined = exports.BellOutlined = exports.BarsOutlined = exports.BarLineOutlined = exports.BarChartFilled = exports.BankAddFilled = exports.AtOutlined = exports.AscOutlined = exports.ArrowsRightLeftOutlined = exports.ArrowsChevronOutlined = exports.ArrowTopRightOutlined = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownOutlined = exports.ArrowCircleOutlined = exports.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddMoneyFilled = exports.AddFilled = exports.AddChildOutlined = exports.AdFilled = exports.ImpassabilityFilled = void 0;
|
|
12
12
|
exports.DiamondFileFilled = exports.DescOutlined = exports.DataPanelOutlined = exports.DataLogOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = exports.ContinueInvestFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.ColumnarAnalyzeOutlined = exports.CloudUploadOutlined = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockFastForwardOutlined = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CircleThreeRectFilled = exports.CircleThreeLinesOutlined = exports.CircleStopFilled = exports.CircleRLetterOutlined = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.CircleCLetterOutlined = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.CheckCircleFilled = exports.ChainOutlined = exports.ChainFilled = exports.CategoryOutlined = exports.CategoryFilled = void 0;
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
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.UpgradeFilled = exports.UnlockFilled = exports.UnionOutlined = void 0;
|
|
13
|
+
exports.FileTextOutlined = exports.FileShieldOutlined = 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 = void 0;
|
|
14
|
+
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 = exports.FilletFileListOutlined = void 0;
|
|
15
|
+
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 = exports.LineUpOutlined = void 0;
|
|
16
|
+
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 = exports.PeopleFilled = void 0;
|
|
17
|
+
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 = exports.SettingFilled = 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 = exports.UnbindChainOutlined = void 0;
|
|
19
19
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
20
20
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -975,6 +975,13 @@ Object.defineProperty(exports, "ErrorWarningOutlined", {
|
|
|
975
975
|
return __importDefault(ErrorWarningOutlined_1)["default"];
|
|
976
976
|
}
|
|
977
977
|
});
|
|
978
|
+
var ExchangeArrowOutlined_1 = require("./ExchangeArrowOutlined");
|
|
979
|
+
Object.defineProperty(exports, "ExchangeArrowOutlined", {
|
|
980
|
+
enumerable: true,
|
|
981
|
+
get: function get() {
|
|
982
|
+
return __importDefault(ExchangeArrowOutlined_1)["default"];
|
|
983
|
+
}
|
|
984
|
+
});
|
|
978
985
|
var ExternalLinkFilled_1 = require("./ExternalLinkFilled");
|
|
979
986
|
Object.defineProperty(exports, "ExternalLinkFilled", {
|
|
980
987
|
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 ExchangeArrowOutlined(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="M14.414 17l-1 1H18.8c.576 0 .949-.001 1.232-.024.272-.023.373-.06.422-.085a.999.999 0 00.437-.437c.025-.05.062-.15.085-.422.023-.283.024-.656.024-1.232V11H3v4.8c0 .576.001.949.024 1.232.023.272.06.373.085.422.096.188.249.34.437.437.05.025.15.062.422.085.283.023.656.024 1.232.024H8v2H5.2c-.543 0-1.012.001-1.395-.03-.396-.033-.789-.104-1.167-.297a3 3 0 01-1.31-1.31c-.194-.379-.265-.772-.298-1.168C1 16.812 1 16.343 1 15.8V8.2c0-.543-.001-1.012.03-1.395.033-.396.104-.789.297-1.167a3 3 0 011.31-1.31c.379-.194.772-.265 1.168-.298C4.188 4 4.657 4 5.2 4h5.386l-1-1L11 1.586l2.707 2.707a1 1 0 010 1.414L11 8.414 9.586 7l1-1H5.2c-.576 0-.949.001-1.232.024-.272.023-.373.06-.422.085a1 1 0 00-.437.437c-.025.05-.062.15-.085.422C3.001 7.25 3 7.624 3 8.2V9h18v-.8c0-.576-.001-.949-.024-1.232-.023-.272-.06-.373-.085-.422a.999.999 0 00-.437-.437c-.05-.025-.15-.062-.422-.085A16.943 16.943 0 0018.8 6H16V4h2.8c.543 0 1.012-.001 1.395.03.396.033.789.104 1.167.297a3 3 0 011.31 1.31c.194.379.265.772.298 1.168.031.383.03.852.03 1.395v7.6c0 .543.001 1.012-.03 1.395-.033.396-.104.789-.297 1.167a3 3 0 01-1.31 1.31c-.379.194-.772.265-1.168.298-.383.031-.852.03-1.395.03h-5.386l1 1L13 22.414l-2.707-2.707a1 1 0 010-1.414L13 15.586 14.414 17z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
ExchangeArrowOutlined.displayName = 'ExchangeArrowOutlined';
|
|
18
|
+
export default ExchangeArrowOutlined;
|
package/src/index.tsx
CHANGED
|
@@ -135,6 +135,7 @@ export { default as EditOutlined } from './EditOutlined'
|
|
|
135
135
|
export { default as EditSimpleOutlined } from './EditSimpleOutlined'
|
|
136
136
|
export { default as ErrorWarningFilled } from './ErrorWarningFilled'
|
|
137
137
|
export { default as ErrorWarningOutlined } from './ErrorWarningOutlined'
|
|
138
|
+
export { default as ExchangeArrowOutlined } from './ExchangeArrowOutlined'
|
|
138
139
|
export { default as ExternalLinkFilled } from './ExternalLinkFilled'
|
|
139
140
|
export { default as EyeFilled } from './EyeFilled'
|
|
140
141
|
export { default as EyeOutlined } from './EyeOutlined'
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M14.4141 17L13.4141 18H18.7998C19.3764 18 19.7489 17.9987 20.0322 17.9756C20.3038 17.9534 20.4047 17.9158 20.4541 17.8906C20.6421 17.7948 20.7948 17.6421 20.8906 17.4541C20.9158 17.4047 20.9534 17.3038 20.9756 17.0322C20.9987 16.7489 21 16.3764 21 15.7998V11H3V15.7998C3 16.3764 3.00127 16.7489 3.02442 17.0322C3.04662 17.3038 3.08419 17.4047 3.10938 17.4541C3.20522 17.6421 3.35793 17.7948 3.5459 17.8906C3.59534 17.9158 3.69619 17.9534 3.96778 17.9756C4.25112 17.9987 4.62365 18 5.2002 18H8V20H5.2002C4.65665 20 4.18836 20.0011 3.80469 19.9697C3.40943 19.9374 3.016 19.8656 2.6377 19.6729C2.07348 19.3853 1.61473 18.9265 1.32715 18.3623C1.1344 17.984 1.06259 17.5906 1.03028 17.1953C0.998931 16.8116 1 16.3434 1 15.7998V8.2002C1 7.65664 0.998931 7.18836 1.03028 6.80469C1.06259 6.40943 1.1344 6.01599 1.32715 5.6377C1.61473 5.07347 2.07348 4.61472 2.6377 4.32715C3.016 4.1344 3.40943 4.06258 3.80469 4.03027C4.18836 3.99893 4.65665 4 5.2002 4H10.5859L9.58594 3L11 1.58594L13.707 4.29297C14.0976 4.68349 14.0976 5.31651 13.707 5.70703L11 8.41406L9.58594 7L10.5859 6H5.2002C4.62365 6 4.25112 6.00126 3.96778 6.02441C3.69619 6.04661 3.59534 6.08419 3.5459 6.10938C3.35793 6.20521 3.20522 6.35793 3.10938 6.5459C3.08419 6.59534 3.04662 6.69619 3.02442 6.96777C3.00127 7.25111 3 7.62364 3 8.2002V9H21V8.2002C21 7.62364 20.9987 7.25111 20.9756 6.96777C20.9534 6.69619 20.9158 6.59534 20.8906 6.5459C20.7948 6.35793 20.6421 6.20522 20.4541 6.10938C20.4047 6.08419 20.3038 6.04661 20.0322 6.02441C19.7489 6.00126 19.3764 6 18.7998 6H16V4H18.7998C19.3434 4 19.8116 3.99893 20.1953 4.03027C20.5906 4.06258 20.984 4.13439 21.3623 4.32715C21.9265 4.61472 22.3853 5.07347 22.6729 5.6377C22.8656 6.01599 22.9374 6.40943 22.9697 6.80469C23.0011 7.18836 23 7.65664 23 8.2002V15.7998C23 16.3434 23.0011 16.8116 22.9697 17.1953C22.9374 17.5906 22.8656 17.984 22.6729 18.3623C22.3853 18.9265 21.9265 19.3853 21.3623 19.6729C20.984 19.8656 20.5906 19.9374 20.1953 19.9697C19.8116 20.0011 19.3434 20 18.7998 20H13.4141L14.4141 21L13 22.4141L10.293 19.707C10.1054 19.5195 10 19.2652 10 19C10 18.7348 10.1054 18.4805 10.293 18.293L13 15.5859L14.4141 17Z"
|
|
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="M14.4141 17L13.4141 18H18.7998C19.3764 18 19.7489 17.9987 20.0322 17.9756C20.3038 17.9534 20.4047 17.9158 20.4541 17.8906C20.6421 17.7948 20.7948 17.6421 20.8906 17.4541C20.9158 17.4047 20.9534 17.3038 20.9756 17.0322C20.9987 16.7489 21 16.3764 21 15.7998V11H3V15.7998C3 16.3764 3.00127 16.7489 3.02442 17.0322C3.04662 17.3038 3.08419 17.4047 3.10938 17.4541C3.20522 17.6421 3.35793 17.7948 3.5459 17.8906C3.59534 17.9158 3.69619 17.9534 3.96778 17.9756C4.25112 17.9987 4.62365 18 5.2002 18H8V20H5.2002C4.65665 20 4.18836 20.0011 3.80469 19.9697C3.40943 19.9374 3.016 19.8656 2.6377 19.6729C2.07348 19.3853 1.61473 18.9265 1.32715 18.3623C1.1344 17.984 1.06259 17.5906 1.03028 17.1953C0.998931 16.8116 1 16.3434 1 15.7998V8.2002C1 7.65664 0.998931 7.18836 1.03028 6.80469C1.06259 6.40943 1.1344 6.01599 1.32715 5.6377C1.61473 5.07347 2.07348 4.61472 2.6377 4.32715C3.016 4.1344 3.40943 4.06258 3.80469 4.03027C4.18836 3.99893 4.65665 4 5.2002 4H10.5859L9.58594 3L11 1.58594L13.707 4.29297C14.0976 4.68349 14.0976 5.31651 13.707 5.70703L11 8.41406L9.58594 7L10.5859 6H5.2002C4.62365 6 4.25112 6.00126 3.96778 6.02441C3.69619 6.04661 3.59534 6.08419 3.5459 6.10938C3.35793 6.20521 3.20522 6.35793 3.10938 6.5459C3.08419 6.59534 3.04662 6.69619 3.02442 6.96777C3.00127 7.25111 3 7.62364 3 8.2002V9H21V8.2002C21 7.62364 20.9987 7.25111 20.9756 6.96777C20.9534 6.69619 20.9158 6.59534 20.8906 6.5459C20.7948 6.35793 20.6421 6.20522 20.4541 6.10938C20.4047 6.08419 20.3038 6.04661 20.0322 6.02441C19.7489 6.00126 19.3764 6 18.7998 6H16V4H18.7998C19.3434 4 19.8116 3.99893 20.1953 4.03027C20.5906 4.06258 20.984 4.13439 21.3623 4.32715C21.9265 4.61472 22.3853 5.07347 22.6729 5.6377C22.8656 6.01599 22.9374 6.40943 22.9697 6.80469C23.0011 7.18836 23 7.65664 23 8.2002V15.7998C23 16.3434 23.0011 16.8116 22.9697 17.1953C22.9374 17.5906 22.8656 17.984 22.6729 18.3623C22.3853 18.9265 21.9265 19.3853 21.3623 19.6729C20.984 19.8656 20.5906 19.9374 20.1953 19.9697C19.8116 20.0011 19.3434 20 18.7998 20H13.4141L14.4141 21L13 22.4141L10.293 19.707C10.1054 19.5195 10 19.2652 10 19C10 18.7348 10.1054 18.4805 10.293 18.293L13 15.5859L14.4141 17Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|