a-icons 1.2.62 → 1.2.63

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.
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function UnionOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace UnionOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default UnionOutlined;
@@ -0,0 +1,33 @@
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 UnionOutlined(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: "M19 8a3 3 0 013 3v8a3 3 0 01-3 3h-8a3 3 0 01-3-3v-2h2v2a1 1 0 001 1h8a1 1 0 001-1v-8a1 1 0 00-1-1h-8a1 1 0 00-1 1v2H8v-2a3 3 0 013-3h8z",
22
+ fill: "currentColor"
23
+ }), /*#__PURE__*/React.createElement("path", {
24
+ d: "M13 2a3 3 0 013 3v2h-2V5a1 1 0 00-1-1H5a1 1 0 00-1 1v8a1 1 0 001 1h8a1 1 0 001-1v-2h2v2a3 3 0 01-3 3H5a3 3 0 01-3-3V5a3 3 0 013-3h8z",
25
+ fill: "currentColor"
26
+ }));
27
+ };
28
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
29
+ component: IconNode
30
+ }));
31
+ }
32
+ UnionOutlined.displayName = 'UnionOutlined';
33
+ export default UnionOutlined;
package/es/index.d.ts CHANGED
@@ -347,6 +347,7 @@ export { default as TwoPeopleRectOutlined } from './TwoPeopleRectOutlined';
347
347
  export { default as TwoPersonConfirm } from './TwoPersonConfirm';
348
348
  export { default as TwoSwitchOutlined } from './TwoSwitchOutlined';
349
349
  export { default as UnbindChainOutlined } from './UnbindChainOutlined';
350
+ export { default as UnionOutlined } from './UnionOutlined';
350
351
  export { default as UnlockFilled } from './UnlockFilled';
351
352
  export { default as UpgradeFilled } from './UpgradeFilled';
352
353
  export { default as UploadSendOutlined } from './UploadSendOutlined';
package/es/index.js CHANGED
@@ -347,6 +347,7 @@ export { default as TwoPeopleRectOutlined } from './TwoPeopleRectOutlined';
347
347
  export { default as TwoPersonConfirm } from './TwoPersonConfirm';
348
348
  export { default as TwoSwitchOutlined } from './TwoSwitchOutlined';
349
349
  export { default as UnbindChainOutlined } from './UnbindChainOutlined';
350
+ export { default as UnionOutlined } from './UnionOutlined';
350
351
  export { default as UnlockFilled } from './UnlockFilled';
351
352
  export { default as UpgradeFilled } from './UpgradeFilled';
352
353
  export { default as UploadSendOutlined } from './UploadSendOutlined';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function UnionOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace UnionOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default UnionOutlined;
@@ -0,0 +1,76 @@
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 UnionOutlined(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: "M19 8a3 3 0 013 3v8a3 3 0 01-3 3h-8a3 3 0 01-3-3v-2h2v2a1 1 0 001 1h8a1 1 0 001-1v-8a1 1 0 00-1-1h-8a1 1 0 00-1 1v2H8v-2a3 3 0 013-3h8z",
65
+ fill: "currentColor"
66
+ }), React.createElement("path", {
67
+ d: "M13 2a3 3 0 013 3v2h-2V5a1 1 0 00-1-1H5a1 1 0 00-1 1v8a1 1 0 001 1h8a1 1 0 001-1v-2h2v2a3 3 0 01-3 3H5a3 3 0 01-3-3V5a3 3 0 013-3h8z",
68
+ fill: "currentColor"
69
+ }));
70
+ };
71
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
72
+ component: IconNode
73
+ }));
74
+ }
75
+ UnionOutlined.displayName = 'UnionOutlined';
76
+ exports["default"] = UnionOutlined;
package/lib/index.d.ts CHANGED
@@ -347,6 +347,7 @@ export { default as TwoPeopleRectOutlined } from './TwoPeopleRectOutlined';
347
347
  export { default as TwoPersonConfirm } from './TwoPersonConfirm';
348
348
  export { default as TwoSwitchOutlined } from './TwoSwitchOutlined';
349
349
  export { default as UnbindChainOutlined } from './UnbindChainOutlined';
350
+ export { default as UnionOutlined } from './UnionOutlined';
350
351
  export { default as UnlockFilled } from './UnlockFilled';
351
352
  export { default as UpgradeFilled } from './UpgradeFilled';
352
353
  export { default as UploadSendOutlined } from './UploadSendOutlined';
package/lib/index.js CHANGED
@@ -14,8 +14,8 @@ exports.FilletFileListOutlined = exports.FileTextOutlined = exports.FileShieldOu
14
14
  exports.LineUpOutlined = 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 = void 0;
15
15
  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.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 = void 0;
16
16
  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 = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = void 0;
17
- 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.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.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = 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 = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = void 0;
17
+ exports.UnionOutlined = 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.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.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = 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 = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UnlockFilled = void 0;
19
19
  var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
20
20
  Object.defineProperty(exports, "ImpassabilityFilled", {
21
21
  enumerable: true,
@@ -2459,6 +2459,13 @@ Object.defineProperty(exports, "UnbindChainOutlined", {
2459
2459
  return __importDefault(UnbindChainOutlined_1)["default"];
2460
2460
  }
2461
2461
  });
2462
+ var UnionOutlined_1 = require("./UnionOutlined");
2463
+ Object.defineProperty(exports, "UnionOutlined", {
2464
+ enumerable: true,
2465
+ get: function get() {
2466
+ return __importDefault(UnionOutlined_1)["default"];
2467
+ }
2468
+ });
2462
2469
  var UnlockFilled_1 = require("./UnlockFilled");
2463
2470
  Object.defineProperty(exports, "UnlockFilled", {
2464
2471
  enumerable: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.2.62",
3
+ "version": "1.2.63",
4
4
  "repository": "git@github.com:SPOTEC-LTD/assui.git",
5
5
  "author": "jason <usochen@gmail.com>",
6
6
  "main": "./lib/index.js",
@@ -0,0 +1,22 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function UnionOutlined(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="M19 8a3 3 0 013 3v8a3 3 0 01-3 3h-8a3 3 0 01-3-3v-2h2v2a1 1 0 001 1h8a1 1 0 001-1v-8a1 1 0 00-1-1h-8a1 1 0 00-1 1v2H8v-2a3 3 0 013-3h8z"
9
+ fill="currentColor"
10
+ />
11
+ <path
12
+ d="M13 2a3 3 0 013 3v2h-2V5a1 1 0 00-1-1H5a1 1 0 00-1 1v8a1 1 0 001 1h8a1 1 0 001-1v-2h2v2a3 3 0 01-3 3H5a3 3 0 01-3-3V5a3 3 0 013-3h8z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ );
17
+
18
+ return <Icon {...componentProps} component={IconNode} />;
19
+ }
20
+
21
+ UnionOutlined.displayName = 'UnionOutlined';
22
+ export default UnionOutlined;
package/src/index.tsx CHANGED
@@ -347,6 +347,7 @@ export { default as TwoPeopleRectOutlined } from './TwoPeopleRectOutlined'
347
347
  export { default as TwoPersonConfirm } from './TwoPersonConfirm'
348
348
  export { default as TwoSwitchOutlined } from './TwoSwitchOutlined'
349
349
  export { default as UnbindChainOutlined } from './UnbindChainOutlined'
350
+ export { default as UnionOutlined } from './UnionOutlined'
350
351
  export { default as UnlockFilled } from './UnlockFilled'
351
352
  export { default as UpgradeFilled } from './UpgradeFilled'
352
353
  export { default as UploadSendOutlined } from './UploadSendOutlined'
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M19 8C20.6569 8 22 9.34315 22 11V19C22 20.6569 20.6569 22 19 22H11C9.34315 22 8 20.6569 8 19V17H10V19C10 19.5523 10.4477 20 11 20H19C19.5523 20 20 19.5523 20 19V11C20 10.4477 19.5523 10 19 10H11C10.4477 10 10 10.4477 10 11V13H8V11C8 9.34315 9.34315 8 11 8H19Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M13 2C14.6569 2 16 3.34315 16 5V7H14V5C14 4.44772 13.5523 4 13 4H5C4.44772 4 4 4.44772 4 5V13C4 13.5523 4.44772 14 5 14H13C13.5523 14 14 13.5523 14 13V11H16V13C16 14.6569 14.6569 16 13 16H5C3.34315 16 2 14.6569 2 13V5C2 3.34315 3.34315 2 5 2H13Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M19 8C20.6569 8 22 9.34315 22 11V19C22 20.6569 20.6569 22 19 22H11C9.34315 22 8 20.6569 8 19V17H10V19C10 19.5523 10.4477 20 11 20H19C19.5523 20 20 19.5523 20 19V11C20 10.4477 19.5523 10 19 10H11C10.4477 10 10 10.4477 10 11V13H8V11C8 9.34315 9.34315 8 11 8H19Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M13 2C14.6569 2 16 3.34315 16 5V7H14V5C14 4.44772 13.5523 4 13 4H5C4.44772 4 4 4.44772 4 5V13C4 13.5523 4.44772 14 5 14H13C13.5523 14 14 13.5523 14 13V11H16V13C16 14.6569 14.6569 16 13 16H5C3.34315 16 2 14.6569 2 13V5C2 3.34315 3.34315 2 5 2H13Z"
7
+ fill="currentColor" />
8
+ </svg>