a-icons 1.2.29 → 1.2.30
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/AddMoneyFilled.d.ts +6 -0
- package/es/AddMoneyFilled.js +35 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/AddMoneyFilled.d.ts +6 -0
- package/lib/AddMoneyFilled.js +78 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +15 -8
- package/package.json +2 -2
- package/src/AddMoneyFilled.tsx +24 -0
- package/src/index.tsx +1 -0
- package/svgs/filled/add-money-filled.svg +14 -0
- package/tmpAllSvgs/add-money-filled.svg +14 -0
|
@@ -0,0 +1,35 @@
|
|
|
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 AddMoneyFilled(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
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M18 12.5a5.5 5.5 0 110 11 5.5 5.5 0 010-11zm-.75 4.75h-2v1.5h2v2h1.5v-2h2v-1.5h-2v-2h-1.5v2z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M1.048 14.948c.496.325 1.04.593 1.593.814 1.804.721 4.145 1.119 6.62 1.119.448 0 .892-.015 1.328-.04A7.56 7.56 0 0010.5 18a7.47 7.47 0 00.76 3.293c.045.136.092.27.144.403a20.05 20.05 0 01-2.142.114c-4.537 0-8.214-1.472-8.214-3.287v-3.575zM17.477 10.52a7.5 7.5 0 00-6.155 4.065 20.1 20.1 0 01-2.06.105c-4.537 0-8.214-1.471-8.214-3.286V7.83a9.05 9.05 0 001.593.814c1.804.721 4.145 1.119 6.62 1.119 2.476 0 4.819-.398 6.623-1.12a9.053 9.053 0 001.593-.813v2.69zM9.262 1c3.402 0 6.322.828 7.57 2.007.415.393.645.826.645 1.28C17.476 6.1 13.798 7.57 9.262 7.57s-8.214-1.47-8.214-3.285C1.048 2.472 4.725 1 9.262 1z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}));
|
|
29
|
+
};
|
|
30
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
31
|
+
component: IconNode
|
|
32
|
+
}));
|
|
33
|
+
}
|
|
34
|
+
AddMoneyFilled.displayName = 'AddMoneyFilled';
|
|
35
|
+
export default AddMoneyFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { default as DailyFinanceFilled } from './DailyFinanceFilled';
|
|
|
2
2
|
export { default as ImpassabilityFilled } from './ImpassabilityFilled';
|
|
3
3
|
export { default as AdFilled } from './AdFilled';
|
|
4
4
|
export { default as AddFilled } from './AddFilled';
|
|
5
|
+
export { default as AddMoneyFilled } from './AddMoneyFilled';
|
|
5
6
|
export { default as AddOutlined } from './AddOutlined';
|
|
6
7
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
7
8
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
|
package/es/index.js
CHANGED
|
@@ -2,6 +2,7 @@ export { default as DailyFinanceFilled } from './DailyFinanceFilled';
|
|
|
2
2
|
export { default as ImpassabilityFilled } from './ImpassabilityFilled';
|
|
3
3
|
export { default as AdFilled } from './AdFilled';
|
|
4
4
|
export { default as AddFilled } from './AddFilled';
|
|
5
|
+
export { default as AddMoneyFilled } from './AddMoneyFilled';
|
|
5
6
|
export { default as AddOutlined } from './AddOutlined';
|
|
6
7
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
7
8
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
|
|
@@ -0,0 +1,78 @@
|
|
|
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 AddMoneyFilled(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
|
+
fillRule: "evenodd",
|
|
65
|
+
clipRule: "evenodd",
|
|
66
|
+
d: "M18 12.5a5.5 5.5 0 110 11 5.5 5.5 0 010-11zm-.75 4.75h-2v1.5h2v2h1.5v-2h2v-1.5h-2v-2h-1.5v2z",
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
}), React.createElement("path", {
|
|
69
|
+
d: "M1.048 14.948c.496.325 1.04.593 1.593.814 1.804.721 4.145 1.119 6.62 1.119.448 0 .892-.015 1.328-.04A7.56 7.56 0 0010.5 18a7.47 7.47 0 00.76 3.293c.045.136.092.27.144.403a20.05 20.05 0 01-2.142.114c-4.537 0-8.214-1.472-8.214-3.287v-3.575zM17.477 10.52a7.5 7.5 0 00-6.155 4.065 20.1 20.1 0 01-2.06.105c-4.537 0-8.214-1.471-8.214-3.286V7.83a9.05 9.05 0 001.593.814c1.804.721 4.145 1.119 6.62 1.119 2.476 0 4.819-.398 6.623-1.12a9.053 9.053 0 001.593-.813v2.69zM9.262 1c3.402 0 6.322.828 7.57 2.007.415.393.645.826.645 1.28C17.476 6.1 13.798 7.57 9.262 7.57s-8.214-1.47-8.214-3.285C1.048 2.472 4.725 1 9.262 1z",
|
|
70
|
+
fill: "currentColor"
|
|
71
|
+
}));
|
|
72
|
+
};
|
|
73
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
74
|
+
component: IconNode
|
|
75
|
+
}));
|
|
76
|
+
}
|
|
77
|
+
AddMoneyFilled.displayName = 'AddMoneyFilled';
|
|
78
|
+
exports["default"] = AddMoneyFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { default as DailyFinanceFilled } from './DailyFinanceFilled';
|
|
|
2
2
|
export { default as ImpassabilityFilled } from './ImpassabilityFilled';
|
|
3
3
|
export { default as AdFilled } from './AdFilled';
|
|
4
4
|
export { default as AddFilled } from './AddFilled';
|
|
5
|
+
export { default as AddMoneyFilled } from './AddMoneyFilled';
|
|
5
6
|
export { default as AddOutlined } from './AddOutlined';
|
|
6
7
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
7
8
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
|
package/lib/index.js
CHANGED
|
@@ -8,14 +8,14 @@ var __importDefault = this && this.__importDefault || function (mod) {
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", {
|
|
9
9
|
value: true
|
|
10
10
|
});
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UserCheckOutlined = exports.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = void 0;
|
|
11
|
+
exports.CallFilled = exports.CallFailOutlined = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BrokenHeartFilled = 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.BindChainFilled = exports.BigArticleBoardFilled = exports.BellOutlined = exports.BarsOutlined = exports.BarChartFilled = exports.BankCardFilled = exports.AtOutlined = exports.AscOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowTopRightOutlined = exports.ArrowSwapHorizontal = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.ArrowCircleOutlined = exports.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddMoneyFilled = exports.AddFilled = exports.AdFilled = exports.ImpassabilityFilled = exports.DailyFinanceFilled = void 0;
|
|
12
|
+
exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = exports.ConfirmCircleSolidFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloudUploadOutlined = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockFastForwardOutlined = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CirculationFilled = exports.CircleStopFilled = exports.CircleRLetterOutlined = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.CircleCLetterOutlined = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckboxMultipleBlankFilled = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CellPhoneCallFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CallRecordOutlined = exports.CallOutlined = void 0;
|
|
13
|
+
exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EmailWithTextFilled = exports.EditSimpleOutlined = exports.EditOutlined = exports.EditFilled = exports.Edit2Filled = exports.EcLogo = 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.DocumentOutlined = exports.DocumentFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = exports.DataPanelOutlined = exports.DataLogOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CyclePlusFilled = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = void 0;
|
|
14
|
+
exports.InsFilled = exports.InformationOutlined = exports.InformationFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IbFilled = exports.HouseOutlined = exports.HourGlassOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandleOutlined = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftWithClipFilled = 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.FoldSearchFileFilled = exports.FlagOutlined = exports.FireOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FilletFileListFilled = exports.FileShieldOutlined = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = void 0;
|
|
15
|
+
exports.OppositeArrowsOutlined = exports.OppositeArrowsFilled = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = 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.MessageSquareOutlined = exports.MessageSmileOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MailOutlined = exports.MailHollowFilled = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LoadingFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InternalResourceOutlined = void 0;
|
|
16
|
+
exports.RetryRefreshFilled = exports.ResourceOutlined = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlusBoldSquareFilled = exports.PlaySolidFilled = exports.PlaySharpFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PhoneCallFilled = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonLeftArrowFilled = exports.PersonGroupFilled = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFolderFilled = exports.PeopleFilled = exports.PeopleErrorFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.PauseCircleFilled = exports.OtcMerchant = exports.OtcMerchantLine = void 0;
|
|
17
|
+
exports.TrashCanFilled = exports.TransferFileFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SimpleEarthOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalFilled = exports.SignalDiffusionOutlined = exports.SignalDiffusionFilled = exports.SignBankCardFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldTickAsteriskFilled = exports.ShieldOutlined = exports.ShieldFilled = 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 = exports.SearchFilled = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = void 0;
|
|
18
|
+
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UserCheckOutlined = exports.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TreeAreaOutlined = void 0;
|
|
19
19
|
var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
|
|
20
20
|
Object.defineProperty(exports, "DailyFinanceFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -44,6 +44,13 @@ Object.defineProperty(exports, "AddFilled", {
|
|
|
44
44
|
return __importDefault(AddFilled_1)["default"];
|
|
45
45
|
}
|
|
46
46
|
});
|
|
47
|
+
var AddMoneyFilled_1 = require("./AddMoneyFilled");
|
|
48
|
+
Object.defineProperty(exports, "AddMoneyFilled", {
|
|
49
|
+
enumerable: true,
|
|
50
|
+
get: function get() {
|
|
51
|
+
return __importDefault(AddMoneyFilled_1)["default"];
|
|
52
|
+
}
|
|
53
|
+
});
|
|
47
54
|
var AddOutlined_1 = require("./AddOutlined");
|
|
48
55
|
Object.defineProperty(exports, "AddOutlined", {
|
|
49
56
|
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.30",
|
|
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": "^2.0.2"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "9dfcbd56cdd72cf10ea97a3baea0926d286c9701"
|
|
26
26
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
function AddMoneyFilled(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
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
d="M18 12.5a5.5 5.5 0 110 11 5.5 5.5 0 010-11zm-.75 4.75h-2v1.5h2v2h1.5v-2h2v-1.5h-2v-2h-1.5v2z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
d="M1.048 14.948c.496.325 1.04.593 1.593.814 1.804.721 4.145 1.119 6.62 1.119.448 0 .892-.015 1.328-.04A7.56 7.56 0 0010.5 18a7.47 7.47 0 00.76 3.293c.045.136.092.27.144.403a20.05 20.05 0 01-2.142.114c-4.537 0-8.214-1.472-8.214-3.287v-3.575zM17.477 10.52a7.5 7.5 0 00-6.155 4.065 20.1 20.1 0 01-2.06.105c-4.537 0-8.214-1.471-8.214-3.286V7.83a9.05 9.05 0 001.593.814c1.804.721 4.145 1.119 6.62 1.119 2.476 0 4.819-.398 6.623-1.12a9.053 9.053 0 001.593-.813v2.69zM9.262 1c3.402 0 6.322.828 7.57 2.007.415.393.645.826.645 1.28C17.476 6.1 13.798 7.57 9.262 7.57s-8.214-1.47-8.214-3.285C1.048 2.472 4.725 1 9.262 1z"
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
AddMoneyFilled.displayName = 'AddMoneyFilled';
|
|
24
|
+
export default AddMoneyFilled;
|
package/src/index.tsx
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as AddFilled } from './AddFilled';
|
|
2
|
+
export { default as AddMoneyFilled } from './AddMoneyFilled';
|
|
2
3
|
export { default as AddOutlined } from './AddOutlined';
|
|
3
4
|
export { default as AdFilled } from './AdFilled';
|
|
4
5
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M18 12.5C21.0376 12.5 23.5 14.9624 23.5 18C23.5 21.0376 21.0376 23.5 18 23.5C14.9624 23.5 12.5 21.0376 12.5 18C12.5 14.9624 14.9624 12.5 18 12.5ZM17.25 17.25H15.25V18.75H17.25V20.75H18.75V18.75H20.75V17.25H18.75V15.25H17.25V17.25Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M1.04785 14.9482C1.54382 15.2729 2.0879 15.5406 2.64062 15.7617C4.4446 16.4833 6.78635 16.8808 9.26172 16.8809C9.70915 16.8809 10.1525 16.8663 10.5889 16.8408C10.5303 17.2186 10.5 17.6058 10.5 18C10.5 19.1814 10.7732 20.2989 11.2598 21.293C11.3045 21.4291 11.3518 21.5639 11.4043 21.6963C10.7213 21.7699 10.0028 21.8096 9.26172 21.8096C4.72529 21.8095 1.04785 20.338 1.04785 18.5234V14.9482Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path
|
|
9
|
+
d="M17.4766 10.5195C14.7877 10.7049 12.4897 12.3067 11.3223 14.585C10.6639 14.653 9.97323 14.6904 9.26172 14.6904C4.72529 14.6903 1.04785 13.2189 1.04785 11.4043V7.8291C1.54383 8.15382 2.08788 8.42148 2.64062 8.64258C4.4446 9.36412 6.78633 9.76167 9.26172 9.76172C11.7373 9.76172 14.0797 9.36419 15.8838 8.64258C16.4365 8.42148 16.9806 8.15382 17.4766 7.8291V10.5195Z"
|
|
10
|
+
fill="currentColor" />
|
|
11
|
+
<path
|
|
12
|
+
d="M9.26172 1C12.6642 1 15.5841 1.82754 16.8311 3.00684C17.2466 3.3999 17.4766 3.83251 17.4766 4.28613C17.476 6.10059 13.798 7.57129 9.26172 7.57129C4.72563 7.5712 1.04842 6.10053 1.04785 4.28613C1.04785 2.47154 4.72529 1.00009 9.26172 1Z"
|
|
13
|
+
fill="currentColor" />
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M18 12.5C21.0376 12.5 23.5 14.9624 23.5 18C23.5 21.0376 21.0376 23.5 18 23.5C14.9624 23.5 12.5 21.0376 12.5 18C12.5 14.9624 14.9624 12.5 18 12.5ZM17.25 17.25H15.25V18.75H17.25V20.75H18.75V18.75H20.75V17.25H18.75V15.25H17.25V17.25Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M1.04785 14.9482C1.54382 15.2729 2.0879 15.5406 2.64062 15.7617C4.4446 16.4833 6.78635 16.8808 9.26172 16.8809C9.70915 16.8809 10.1525 16.8663 10.5889 16.8408C10.5303 17.2186 10.5 17.6058 10.5 18C10.5 19.1814 10.7732 20.2989 11.2598 21.293C11.3045 21.4291 11.3518 21.5639 11.4043 21.6963C10.7213 21.7699 10.0028 21.8096 9.26172 21.8096C4.72529 21.8095 1.04785 20.338 1.04785 18.5234V14.9482Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path
|
|
9
|
+
d="M17.4766 10.5195C14.7877 10.7049 12.4897 12.3067 11.3223 14.585C10.6639 14.653 9.97323 14.6904 9.26172 14.6904C4.72529 14.6903 1.04785 13.2189 1.04785 11.4043V7.8291C1.54383 8.15382 2.08788 8.42148 2.64062 8.64258C4.4446 9.36412 6.78633 9.76167 9.26172 9.76172C11.7373 9.76172 14.0797 9.36419 15.8838 8.64258C16.4365 8.42148 16.9806 8.15382 17.4766 7.8291V10.5195Z"
|
|
10
|
+
fill="currentColor" />
|
|
11
|
+
<path
|
|
12
|
+
d="M9.26172 1C12.6642 1 15.5841 1.82754 16.8311 3.00684C17.2466 3.3999 17.4766 3.83251 17.4766 4.28613C17.476 6.10059 13.798 7.57129 9.26172 7.57129C4.72563 7.5712 1.04842 6.10053 1.04785 4.28613C1.04785 2.47154 4.72529 1.00009 9.26172 1Z"
|
|
13
|
+
fill="currentColor" />
|
|
14
|
+
</svg>
|