a-icons 1.2.25 → 1.2.26
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/FileShieldOutlined.d.ts +6 -0
- package/es/FileShieldOutlined.js +31 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/FileShieldOutlined.d.ts +6 -0
- package/lib/FileShieldOutlined.js +74 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +12 -5
- package/package.json +2 -2
- package/src/FileShieldOutlined.tsx +18 -0
- package/src/index.tsx +1 -0
- package/svgs/outlined/file-shield-outlined.svg +5 -0
- package/tmpAllSvgs/file-shield-outlined.svg +5 -0
|
@@ -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 FileShieldOutlined(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: "M20 15.627l-1.524-.544a1.412 1.412 0 00-.835-.036l-.118.036-1.523.544v1.798c0 .606.444 1.243 1.14 1.824.306.254.616.46.86.607.244-.147.554-.353.86-.607.696-.581 1.14-1.218 1.14-1.824v-1.798zM11 14v2H7v-2h4zm4-4v2H7v-2h8zm4-3.2c0-.857 0-1.439-.037-1.889-.036-.438-.101-.663-.18-.82a2 2 0 00-.875-.873c-.156-.08-.38-.145-.82-.18C16.639 3 16.058 3 15.2 3H8.8c-.857 0-1.439 0-1.889.037-.438.036-.663.101-.82.18a2 2 0 00-.873.875c-.08.156-.145.38-.18.82C5 5.361 5 5.942 5 6.8v10.4c0 .857 0 1.439.037 1.889.036.438.101.663.18.82a2 2 0 00.875.873c.156.08.38.145.82.18C7.361 21 7.942 21 8.8 21h4.7v2H8.8c-.824 0-1.502.001-2.052-.044-.562-.046-1.08-.144-1.564-.392a4.001 4.001 0 01-1.748-1.748c-.248-.485-.346-1.002-.392-1.564C2.999 18.702 3 18.024 3 17.2V6.8c0-.824-.001-1.502.044-2.052.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C7.298.999 7.976 1 8.8 1h6.4c.824 0 1.502-.001 2.052.044.562.046 1.08.144 1.564.392a4.001 4.001 0 011.748 1.748c.248.485.346 1.002.392 1.564.045.55.044 1.228.044 2.052V11h-2V6.8zM17 6v2H7V6h10zm-.15 7.2a3.412 3.412 0 012.297 0h.001l2.189.781a1 1 0 01.663.942v2.502c0 1.539-1.056 2.69-1.86 3.36a9.124 9.124 0 01-1.544 1.033l-.115.06-.034.017-.01.004-.004.002-.001.001h-.001c-.238.114-.51.128-.757.043l-.105-.043h-.002l-.003-.003c-.003 0-.007-.002-.011-.005l-.034-.016-.115-.06a9.124 9.124 0 01-1.545-1.033c-.803-.67-1.859-1.821-1.859-3.36v-2.502a1 1 0 01.663-.942l2.187-.782z",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}));
|
|
25
|
+
};
|
|
26
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
27
|
+
component: IconNode
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
FileShieldOutlined.displayName = 'FileShieldOutlined';
|
|
31
|
+
export default FileShieldOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -153,6 +153,7 @@ export { default as FileFinishFilled } from './FileFinishFilled';
|
|
|
153
153
|
export { default as FileListFilled } from './FileListFilled';
|
|
154
154
|
export { default as FileOutlined } from './FileOutlined';
|
|
155
155
|
export { default as FileSearchFilled } from './FileSearchFilled';
|
|
156
|
+
export { default as FileShieldOutlined } from './FileShieldOutlined';
|
|
156
157
|
export { default as FilletFileListFilled } from './FilletFileListFilled';
|
|
157
158
|
export { default as FilletFileListOutlined } from './FilletFileListOutlined';
|
|
158
159
|
export { default as FilterCupOutlined } from './FilterCupOutlined';
|
package/es/index.js
CHANGED
|
@@ -153,6 +153,7 @@ export { default as FileFinishFilled } from './FileFinishFilled';
|
|
|
153
153
|
export { default as FileListFilled } from './FileListFilled';
|
|
154
154
|
export { default as FileOutlined } from './FileOutlined';
|
|
155
155
|
export { default as FileSearchFilled } from './FileSearchFilled';
|
|
156
|
+
export { default as FileShieldOutlined } from './FileShieldOutlined';
|
|
156
157
|
export { default as FilletFileListFilled } from './FilletFileListFilled';
|
|
157
158
|
export { default as FilletFileListOutlined } from './FilletFileListOutlined';
|
|
158
159
|
export { default as FilterCupOutlined } from './FilterCupOutlined';
|
|
@@ -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 FileShieldOutlined(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: "M20 15.627l-1.524-.544a1.412 1.412 0 00-.835-.036l-.118.036-1.523.544v1.798c0 .606.444 1.243 1.14 1.824.306.254.616.46.86.607.244-.147.554-.353.86-.607.696-.581 1.14-1.218 1.14-1.824v-1.798zM11 14v2H7v-2h4zm4-4v2H7v-2h8zm4-3.2c0-.857 0-1.439-.037-1.889-.036-.438-.101-.663-.18-.82a2 2 0 00-.875-.873c-.156-.08-.38-.145-.82-.18C16.639 3 16.058 3 15.2 3H8.8c-.857 0-1.439 0-1.889.037-.438.036-.663.101-.82.18a2 2 0 00-.873.875c-.08.156-.145.38-.18.82C5 5.361 5 5.942 5 6.8v10.4c0 .857 0 1.439.037 1.889.036.438.101.663.18.82a2 2 0 00.875.873c.156.08.38.145.82.18C7.361 21 7.942 21 8.8 21h4.7v2H8.8c-.824 0-1.502.001-2.052-.044-.562-.046-1.08-.144-1.564-.392a4.001 4.001 0 01-1.748-1.748c-.248-.485-.346-1.002-.392-1.564C2.999 18.702 3 18.024 3 17.2V6.8c0-.824-.001-1.502.044-2.052.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C7.298.999 7.976 1 8.8 1h6.4c.824 0 1.502-.001 2.052.044.562.046 1.08.144 1.564.392a4.001 4.001 0 011.748 1.748c.248.485.346 1.002.392 1.564.045.55.044 1.228.044 2.052V11h-2V6.8zM17 6v2H7V6h10zm-.15 7.2a3.412 3.412 0 012.297 0h.001l2.189.781a1 1 0 01.663.942v2.502c0 1.539-1.056 2.69-1.86 3.36a9.124 9.124 0 01-1.544 1.033l-.115.06-.034.017-.01.004-.004.002-.001.001h-.001c-.238.114-.51.128-.757.043l-.105-.043h-.002l-.003-.003c-.003 0-.007-.002-.011-.005l-.034-.016-.115-.06a9.124 9.124 0 01-1.545-1.033c-.803-.67-1.859-1.821-1.859-3.36v-2.502a1 1 0 01.663-.942l2.187-.782z",
|
|
66
|
+
fill: "currentColor"
|
|
67
|
+
}));
|
|
68
|
+
};
|
|
69
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
70
|
+
component: IconNode
|
|
71
|
+
}));
|
|
72
|
+
}
|
|
73
|
+
FileShieldOutlined.displayName = 'FileShieldOutlined';
|
|
74
|
+
exports["default"] = FileShieldOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -153,6 +153,7 @@ export { default as FileFinishFilled } from './FileFinishFilled';
|
|
|
153
153
|
export { default as FileListFilled } from './FileListFilled';
|
|
154
154
|
export { default as FileOutlined } from './FileOutlined';
|
|
155
155
|
export { default as FileSearchFilled } from './FileSearchFilled';
|
|
156
|
+
export { default as FileShieldOutlined } from './FileShieldOutlined';
|
|
156
157
|
export { default as FilletFileListFilled } from './FilletFileListFilled';
|
|
157
158
|
export { default as FilletFileListOutlined } from './FilletFileListOutlined';
|
|
158
159
|
export { default as FilterCupOutlined } from './FilterCupOutlined';
|
package/lib/index.js
CHANGED
|
@@ -11,11 +11,11 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
11
11
|
exports.CallRecordOutlined = exports.CallOutlined = exports.CallFilled = 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.AddFilled = exports.AdFilled = exports.ImpassabilityFilled = exports.DailyFinanceFilled = void 0;
|
|
12
12
|
exports.CreditCardOutlined = exports.CreditCardFilled = 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 = void 0;
|
|
13
13
|
exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = 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.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 = void 0;
|
|
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.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = void 0;
|
|
14
|
+
exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = 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.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FoldSearchFileFilled = 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 = void 0;
|
|
15
|
+
exports.PeopleCircleOutlined = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.PauseCircleFilled = exports.OtcMerchant = exports.OtcMerchantLine = 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.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 = void 0;
|
|
16
|
+
exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = 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.PeopleFilled = exports.PeopleErrorFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = void 0;
|
|
17
|
+
exports.TwoSwitchOutlined = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TreeAreaOutlined = 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 = void 0;
|
|
18
|
+
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = void 0;
|
|
19
19
|
var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
|
|
20
20
|
Object.defineProperty(exports, "DailyFinanceFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -1101,6 +1101,13 @@ Object.defineProperty(exports, "FileSearchFilled", {
|
|
|
1101
1101
|
return __importDefault(FileSearchFilled_1)["default"];
|
|
1102
1102
|
}
|
|
1103
1103
|
});
|
|
1104
|
+
var FileShieldOutlined_1 = require("./FileShieldOutlined");
|
|
1105
|
+
Object.defineProperty(exports, "FileShieldOutlined", {
|
|
1106
|
+
enumerable: true,
|
|
1107
|
+
get: function get() {
|
|
1108
|
+
return __importDefault(FileShieldOutlined_1)["default"];
|
|
1109
|
+
}
|
|
1110
|
+
});
|
|
1104
1111
|
var FilletFileListFilled_1 = require("./FilletFileListFilled");
|
|
1105
1112
|
Object.defineProperty(exports, "FilletFileListFilled", {
|
|
1106
1113
|
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.26",
|
|
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": "2d224e62ab03650903f0903d4e3d88bfeac5ab90"
|
|
26
26
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
function FileShieldOutlined(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="M20 15.627l-1.524-.544a1.412 1.412 0 00-.835-.036l-.118.036-1.523.544v1.798c0 .606.444 1.243 1.14 1.824.306.254.616.46.86.607.244-.147.554-.353.86-.607.696-.581 1.14-1.218 1.14-1.824v-1.798zM11 14v2H7v-2h4zm4-4v2H7v-2h8zm4-3.2c0-.857 0-1.439-.037-1.889-.036-.438-.101-.663-.18-.82a2 2 0 00-.875-.873c-.156-.08-.38-.145-.82-.18C16.639 3 16.058 3 15.2 3H8.8c-.857 0-1.439 0-1.889.037-.438.036-.663.101-.82.18a2 2 0 00-.873.875c-.08.156-.145.38-.18.82C5 5.361 5 5.942 5 6.8v10.4c0 .857 0 1.439.037 1.889.036.438.101.663.18.82a2 2 0 00.875.873c.156.08.38.145.82.18C7.361 21 7.942 21 8.8 21h4.7v2H8.8c-.824 0-1.502.001-2.052-.044-.562-.046-1.08-.144-1.564-.392a4.001 4.001 0 01-1.748-1.748c-.248-.485-.346-1.002-.392-1.564C2.999 18.702 3 18.024 3 17.2V6.8c0-.824-.001-1.502.044-2.052.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C7.298.999 7.976 1 8.8 1h6.4c.824 0 1.502-.001 2.052.044.562.046 1.08.144 1.564.392a4.001 4.001 0 011.748 1.748c.248.485.346 1.002.392 1.564.045.55.044 1.228.044 2.052V11h-2V6.8zM17 6v2H7V6h10zm-.15 7.2a3.412 3.412 0 012.297 0h.001l2.189.781a1 1 0 01.663.942v2.502c0 1.539-1.056 2.69-1.86 3.36a9.124 9.124 0 01-1.544 1.033l-.115.06-.034.017-.01.004-.004.002-.001.001h-.001c-.238.114-.51.128-.757.043l-.105-.043h-.002l-.003-.003c-.003 0-.007-.002-.011-.005l-.034-.016-.115-.06a9.124 9.124 0 01-1.545-1.033c-.803-.67-1.859-1.821-1.859-3.36v-2.502a1 1 0 01.663-.942l2.187-.782z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
FileShieldOutlined.displayName = 'FileShieldOutlined';
|
|
18
|
+
export default FileShieldOutlined;
|
package/src/index.tsx
CHANGED
|
@@ -152,6 +152,7 @@ export { default as FileFinishFilled } from './FileFinishFilled';
|
|
|
152
152
|
export { default as FileListFilled } from './FileListFilled';
|
|
153
153
|
export { default as FileOutlined } from './FileOutlined';
|
|
154
154
|
export { default as FileSearchFilled } from './FileSearchFilled';
|
|
155
|
+
export { default as FileShieldOutlined } from './FileShieldOutlined';
|
|
155
156
|
export { default as FilletFileListFilled } from './FilletFileListFilled';
|
|
156
157
|
export { default as FilletFileListOutlined } from './FilletFileListOutlined';
|
|
157
158
|
export { default as FilterCupOutlined } from './FilterCupOutlined';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M20 15.627L18.4756 15.083C18.2066 14.9866 17.9152 14.9747 17.6406 15.0469L17.5234 15.083L16 15.627V17.4248C16 18.0306 16.4436 18.6677 17.1406 19.249C17.4456 19.5034 17.7559 19.7087 18 19.8564C18.2441 19.7087 18.5544 19.5034 18.8594 19.249C19.5564 18.6677 20 18.0306 20 17.4248V15.627ZM11 14V16H7V14H11ZM15 10V12H7V10H15ZM19 6.79981C19 5.94342 18.9997 5.36117 18.9629 4.91113C18.9271 4.47272 18.8619 4.2482 18.7822 4.0918C18.5905 3.71555 18.2845 3.40951 17.9082 3.21778C17.7518 3.13809 17.5273 3.07293 17.0889 3.03711C16.6388 3.00035 16.0566 3 15.2002 3H8.79981C7.94342 3 7.36117 3.00035 6.91113 3.03711C6.47272 3.07293 6.2482 3.13809 6.0918 3.21778C5.71555 3.40951 5.40951 3.71555 5.21778 4.0918C5.13809 4.2482 5.07293 4.47272 5.03711 4.91113C5.00035 5.36117 5 5.94342 5 6.79981V17.2002C5 18.0566 5.00035 18.6388 5.03711 19.0889C5.07293 19.5273 5.13809 19.7518 5.21778 19.9082C5.40951 20.2845 5.71554 20.5905 6.0918 20.7822C6.2482 20.8619 6.47272 20.9271 6.91113 20.9629C7.36117 20.9997 7.94342 21 8.79981 21H13.5V23H8.79981C7.97632 23 7.29843 23.001 6.74805 22.9561C6.18599 22.9101 5.6689 22.8117 5.1836 22.5645C4.43109 22.181 3.81902 21.5689 3.43555 20.8164C3.18827 20.3311 3.08988 19.814 3.04395 19.252C2.99898 18.7016 3 18.0237 3 17.2002V6.79981C3 5.97632 2.99898 5.29843 3.04395 4.74805C3.08988 4.18599 3.18827 3.6689 3.43555 3.1836C3.81902 2.43109 4.43109 1.81902 5.1836 1.43555C5.6689 1.18827 6.18599 1.08988 6.74805 1.04395C7.29843 0.998979 7.97632 1 8.79981 1H15.2002C16.0237 1 16.7016 0.998979 17.252 1.04395C17.814 1.08988 18.3311 1.18827 18.8164 1.43555C19.5689 1.81902 20.181 2.43109 20.5645 3.1836C20.8117 3.6689 20.9101 4.18599 20.9561 4.74805C21.001 5.29843 21 5.97632 21 6.79981V11H19V6.79981ZM17 6V8H7V6H17ZM16.8496 13.1992C17.5924 12.9333 18.4046 12.9337 19.1475 13.1992H19.1484L21.3369 13.9814C21.7346 14.1238 22 14.5005 22 14.9229V17.4248C22 18.9638 20.9436 20.1154 20.1406 20.7852C19.7143 21.1408 19.2927 21.4165 18.9805 21.6025C18.8235 21.6961 18.691 21.7681 18.5957 21.8184C18.548 21.8435 18.5095 21.8639 18.4814 21.8779C18.4674 21.8849 18.4558 21.8904 18.4473 21.8945C18.443 21.8966 18.4394 21.8981 18.4365 21.8994C18.4351 21.9001 18.4337 21.9009 18.4326 21.9014L18.4316 21.9023H18.4307C18.1926 22.0158 17.9204 22.0304 17.6738 21.9453L17.5693 21.9023H17.5684L17.5674 21.9014C17.5663 21.9009 17.5649 21.9001 17.5635 21.8994C17.5606 21.8981 17.557 21.8966 17.5527 21.8945C17.5442 21.8904 17.5326 21.8849 17.5186 21.8779C17.4905 21.8639 17.452 21.8435 17.4043 21.8184C17.309 21.7681 17.1765 21.6961 17.0195 21.6025C16.7073 21.4165 16.2857 21.1408 15.8594 20.7852C15.0564 20.1154 14 18.9638 14 17.4248V14.9229C14 14.5005 14.2654 14.1238 14.6631 13.9814L16.8496 13.1992Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M20 15.627L18.4756 15.083C18.2066 14.9866 17.9152 14.9747 17.6406 15.0469L17.5234 15.083L16 15.627V17.4248C16 18.0306 16.4436 18.6677 17.1406 19.249C17.4456 19.5034 17.7559 19.7087 18 19.8564C18.2441 19.7087 18.5544 19.5034 18.8594 19.249C19.5564 18.6677 20 18.0306 20 17.4248V15.627ZM11 14V16H7V14H11ZM15 10V12H7V10H15ZM19 6.79981C19 5.94342 18.9997 5.36117 18.9629 4.91113C18.9271 4.47272 18.8619 4.2482 18.7822 4.0918C18.5905 3.71555 18.2845 3.40951 17.9082 3.21778C17.7518 3.13809 17.5273 3.07293 17.0889 3.03711C16.6388 3.00035 16.0566 3 15.2002 3H8.79981C7.94342 3 7.36117 3.00035 6.91113 3.03711C6.47272 3.07293 6.2482 3.13809 6.0918 3.21778C5.71555 3.40951 5.40951 3.71555 5.21778 4.0918C5.13809 4.2482 5.07293 4.47272 5.03711 4.91113C5.00035 5.36117 5 5.94342 5 6.79981V17.2002C5 18.0566 5.00035 18.6388 5.03711 19.0889C5.07293 19.5273 5.13809 19.7518 5.21778 19.9082C5.40951 20.2845 5.71554 20.5905 6.0918 20.7822C6.2482 20.8619 6.47272 20.9271 6.91113 20.9629C7.36117 20.9997 7.94342 21 8.79981 21H13.5V23H8.79981C7.97632 23 7.29843 23.001 6.74805 22.9561C6.18599 22.9101 5.6689 22.8117 5.1836 22.5645C4.43109 22.181 3.81902 21.5689 3.43555 20.8164C3.18827 20.3311 3.08988 19.814 3.04395 19.252C2.99898 18.7016 3 18.0237 3 17.2002V6.79981C3 5.97632 2.99898 5.29843 3.04395 4.74805C3.08988 4.18599 3.18827 3.6689 3.43555 3.1836C3.81902 2.43109 4.43109 1.81902 5.1836 1.43555C5.6689 1.18827 6.18599 1.08988 6.74805 1.04395C7.29843 0.998979 7.97632 1 8.79981 1H15.2002C16.0237 1 16.7016 0.998979 17.252 1.04395C17.814 1.08988 18.3311 1.18827 18.8164 1.43555C19.5689 1.81902 20.181 2.43109 20.5645 3.1836C20.8117 3.6689 20.9101 4.18599 20.9561 4.74805C21.001 5.29843 21 5.97632 21 6.79981V11H19V6.79981ZM17 6V8H7V6H17ZM16.8496 13.1992C17.5924 12.9333 18.4046 12.9337 19.1475 13.1992H19.1484L21.3369 13.9814C21.7346 14.1238 22 14.5005 22 14.9229V17.4248C22 18.9638 20.9436 20.1154 20.1406 20.7852C19.7143 21.1408 19.2927 21.4165 18.9805 21.6025C18.8235 21.6961 18.691 21.7681 18.5957 21.8184C18.548 21.8435 18.5095 21.8639 18.4814 21.8779C18.4674 21.8849 18.4558 21.8904 18.4473 21.8945C18.443 21.8966 18.4394 21.8981 18.4365 21.8994C18.4351 21.9001 18.4337 21.9009 18.4326 21.9014L18.4316 21.9023H18.4307C18.1926 22.0158 17.9204 22.0304 17.6738 21.9453L17.5693 21.9023H17.5684L17.5674 21.9014C17.5663 21.9009 17.5649 21.9001 17.5635 21.8994C17.5606 21.8981 17.557 21.8966 17.5527 21.8945C17.5442 21.8904 17.5326 21.8849 17.5186 21.8779C17.4905 21.8639 17.452 21.8435 17.4043 21.8184C17.309 21.7681 17.1765 21.6961 17.0195 21.6025C16.7073 21.4165 16.2857 21.1408 15.8594 20.7852C15.0564 20.1154 14 18.9638 14 17.4248V14.9229C14 14.5005 14.2654 14.1238 14.6631 13.9814L16.8496 13.1992Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|