a-icons 1.2.54 → 1.2.55
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/TransferMoneyFilled.d.ts +6 -0
- package/es/TransferMoneyFilled.js +36 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/TransferMoneyFilled.d.ts +6 -0
- package/lib/TransferMoneyFilled.js +79 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +9 -2
- package/package.json +1 -1
- package/src/TransferMoneyFilled.tsx +24 -0
- package/src/index.tsx +1 -0
- package/svgs/filled/transfer-money-filled.svg +8 -0
- package/tmpAllSvgs/transfer-money-filled.svg +8 -0
|
@@ -0,0 +1,36 @@
|
|
|
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 TransferMoneyFilled(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
|
+
fillRule: "evenodd",
|
|
23
|
+
clipRule: "evenodd",
|
|
24
|
+
d: "M17 1a4 4 0 014 4v7.875A5.5 5.5 0 0016.705 23H7a4 4 0 01-4-4V5a4 4 0 014-4h10zm-5 5.121L9.879 4 8.465 5.414l2.12 2.121H8v2h3v1H8v2h3v2h2v-2h3v-2h-3v-1h3v-2h-2.586l2.121-2.12L14.121 4 12 6.121z",
|
|
25
|
+
fill: "currentColor"
|
|
26
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M22.707 17.293a1 1 0 010 1.414L19 22.414 17.586 21l2-2H15v-2h4.586l-2-2L19 13.586l3.707 3.707z",
|
|
28
|
+
fill: "currentColor"
|
|
29
|
+
}));
|
|
30
|
+
};
|
|
31
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
32
|
+
component: IconNode
|
|
33
|
+
}));
|
|
34
|
+
}
|
|
35
|
+
TransferMoneyFilled.displayName = 'TransferMoneyFilled';
|
|
36
|
+
export default TransferMoneyFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -331,6 +331,7 @@ export { default as TagFilled } from './TagFilled';
|
|
|
331
331
|
export { default as TagOutlined } from './TagOutlined';
|
|
332
332
|
export { default as TagRecharged } from './TagRecharged';
|
|
333
333
|
export { default as TransferFileFilled } from './TransferFileFilled';
|
|
334
|
+
export { default as TransferMoneyFilled } from './TransferMoneyFilled';
|
|
334
335
|
export { default as TrashCanFilled } from './TrashCanFilled';
|
|
335
336
|
export { default as TreeAreaOutlined } from './TreeAreaOutlined';
|
|
336
337
|
export { default as TreeFilled } from './TreeFilled';
|
package/es/index.js
CHANGED
|
@@ -331,6 +331,7 @@ export { default as TagFilled } from './TagFilled';
|
|
|
331
331
|
export { default as TagOutlined } from './TagOutlined';
|
|
332
332
|
export { default as TagRecharged } from './TagRecharged';
|
|
333
333
|
export { default as TransferFileFilled } from './TransferFileFilled';
|
|
334
|
+
export { default as TransferMoneyFilled } from './TransferMoneyFilled';
|
|
334
335
|
export { default as TrashCanFilled } from './TrashCanFilled';
|
|
335
336
|
export { default as TreeAreaOutlined } from './TreeAreaOutlined';
|
|
336
337
|
export { default as TreeFilled } from './TreeFilled';
|
|
@@ -0,0 +1,79 @@
|
|
|
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 TransferMoneyFilled(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
|
+
fillRule: "evenodd",
|
|
66
|
+
clipRule: "evenodd",
|
|
67
|
+
d: "M17 1a4 4 0 014 4v7.875A5.5 5.5 0 0016.705 23H7a4 4 0 01-4-4V5a4 4 0 014-4h10zm-5 5.121L9.879 4 8.465 5.414l2.12 2.121H8v2h3v1H8v2h3v2h2v-2h3v-2h-3v-1h3v-2h-2.586l2.121-2.12L14.121 4 12 6.121z",
|
|
68
|
+
fill: "currentColor"
|
|
69
|
+
}), React.createElement("path", {
|
|
70
|
+
d: "M22.707 17.293a1 1 0 010 1.414L19 22.414 17.586 21l2-2H15v-2h4.586l-2-2L19 13.586l3.707 3.707z",
|
|
71
|
+
fill: "currentColor"
|
|
72
|
+
}));
|
|
73
|
+
};
|
|
74
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
75
|
+
component: IconNode
|
|
76
|
+
}));
|
|
77
|
+
}
|
|
78
|
+
TransferMoneyFilled.displayName = 'TransferMoneyFilled';
|
|
79
|
+
exports["default"] = TransferMoneyFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -331,6 +331,7 @@ export { default as TagFilled } from './TagFilled';
|
|
|
331
331
|
export { default as TagOutlined } from './TagOutlined';
|
|
332
332
|
export { default as TagRecharged } from './TagRecharged';
|
|
333
333
|
export { default as TransferFileFilled } from './TransferFileFilled';
|
|
334
|
+
export { default as TransferMoneyFilled } from './TransferMoneyFilled';
|
|
334
335
|
export { default as TrashCanFilled } from './TrashCanFilled';
|
|
335
336
|
export { default as TreeAreaOutlined } from './TreeAreaOutlined';
|
|
336
337
|
export { default as TreeFilled } from './TreeFilled';
|
package/lib/index.js
CHANGED
|
@@ -14,8 +14,8 @@ exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = expo
|
|
|
14
14
|
exports.LocationOutlined = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.LinkOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LightbulbOutlined = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InternalResourceOutlined = exports.InformationOutlined = exports.InformationFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IdCardFilled = exports.HouseOutlined = 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 = void 0;
|
|
15
15
|
exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = 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.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LogoTmd = exports.LogoEc = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = void 0;
|
|
16
16
|
exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = 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 = 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 = void 0;
|
|
17
|
+
exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UnlockFilled = 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.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.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = void 0;
|
|
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 = void 0;
|
|
19
19
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
20
20
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -2347,6 +2347,13 @@ Object.defineProperty(exports, "TransferFileFilled", {
|
|
|
2347
2347
|
return __importDefault(TransferFileFilled_1)["default"];
|
|
2348
2348
|
}
|
|
2349
2349
|
});
|
|
2350
|
+
var TransferMoneyFilled_1 = require("./TransferMoneyFilled");
|
|
2351
|
+
Object.defineProperty(exports, "TransferMoneyFilled", {
|
|
2352
|
+
enumerable: true,
|
|
2353
|
+
get: function get() {
|
|
2354
|
+
return __importDefault(TransferMoneyFilled_1)["default"];
|
|
2355
|
+
}
|
|
2356
|
+
});
|
|
2350
2357
|
var TrashCanFilled_1 = require("./TrashCanFilled");
|
|
2351
2358
|
Object.defineProperty(exports, "TrashCanFilled", {
|
|
2352
2359
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function TransferMoneyFilled(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
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
d="M17 1a4 4 0 014 4v7.875A5.5 5.5 0 0016.705 23H7a4 4 0 01-4-4V5a4 4 0 014-4h10zm-5 5.121L9.879 4 8.465 5.414l2.12 2.121H8v2h3v1H8v2h3v2h2v-2h3v-2h-3v-1h3v-2h-2.586l2.121-2.12L14.121 4 12 6.121z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
d="M22.707 17.293a1 1 0 010 1.414L19 22.414 17.586 21l2-2H15v-2h4.586l-2-2L19 13.586l3.707 3.707z"
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
TransferMoneyFilled.displayName = 'TransferMoneyFilled';
|
|
24
|
+
export default TransferMoneyFilled;
|
package/src/index.tsx
CHANGED
|
@@ -331,6 +331,7 @@ export { default as TagFilled } from './TagFilled'
|
|
|
331
331
|
export { default as TagOutlined } from './TagOutlined'
|
|
332
332
|
export { default as TagRecharged } from './TagRecharged'
|
|
333
333
|
export { default as TransferFileFilled } from './TransferFileFilled'
|
|
334
|
+
export { default as TransferMoneyFilled } from './TransferMoneyFilled'
|
|
334
335
|
export { default as TrashCanFilled } from './TrashCanFilled'
|
|
335
336
|
export { default as TreeAreaOutlined } from './TreeAreaOutlined'
|
|
336
337
|
export { default as TreeFilled } from './TreeFilled'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M17 1C19.2091 1 21 2.79086 21 5V12.875C20.3801 12.6329 19.7056 12.5 19 12.5C15.9624 12.5 13.5 14.9624 13.5 18C13.5 20.2185 14.8134 22.1303 16.7051 23H7C4.79086 23 3 21.2091 3 19V5C3 2.79086 4.79086 1 7 1H17ZM12 6.12109L9.87891 4L8.46484 5.41406L10.5859 7.53516H8V9.53516H11V10.5352H8V12.5352H11V14.5352H13V12.5352H16V10.5352H13V9.53516H16V7.53516H13.4141L15.5352 5.41406L14.1211 4L12 6.12109Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M22.707 17.293C23.0975 17.6835 23.0975 18.3165 22.707 18.707L19 22.4141L17.5859 21L19.5859 19H15V17H19.5859L17.5859 15L19 13.5859L22.707 17.293Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M17 1C19.2091 1 21 2.79086 21 5V12.875C20.3801 12.6329 19.7056 12.5 19 12.5C15.9624 12.5 13.5 14.9624 13.5 18C13.5 20.2185 14.8134 22.1303 16.7051 23H7C4.79086 23 3 21.2091 3 19V5C3 2.79086 4.79086 1 7 1H17ZM12 6.12109L9.87891 4L8.46484 5.41406L10.5859 7.53516H8V9.53516H11V10.5352H8V12.5352H11V14.5352H13V12.5352H16V10.5352H13V9.53516H16V7.53516H13.4141L15.5352 5.41406L14.1211 4L12 6.12109Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M22.707 17.293C23.0975 17.6835 23.0975 18.3165 22.707 18.707L19 22.4141L17.5859 21L19.5859 19H15V17H19.5859L17.5859 15L19 13.5859L22.707 17.293Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|