a-icons 1.2.70 → 1.2.71

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 UploadOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace UploadOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default UploadOutlined;
@@ -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 UploadOutlined(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: "M11.293 2.293a1 1 0 011.414 0L17.414 7 16 8.414l-3-3V16h-2V5.414l-3 3L6.586 7l4.707-4.707zM4 11v5.2c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 00.874.874c.156.08.38.145.819.18C6.361 20 6.943 20 7.8 20h8.4c.857 0 1.439 0 1.889-.038.438-.035.663-.1.819-.18a2 2 0 00.874-.874c.08-.156.145-.38.18-.819.037-.45.038-1.032.038-1.889V11h2v5.241c0 .805 0 1.47-.044 2.01-.046.563-.145 1.08-.392 1.565a4 4 0 01-1.748 1.748c-.485.247-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H7.758c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 01-1.748-1.748c-.247-.485-.346-1.002-.392-1.564C2 17.71 2 17.046 2 16.242V11h2z",
25
+ fill: "currentColor"
26
+ }));
27
+ };
28
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
29
+ component: IconNode
30
+ }));
31
+ }
32
+ UploadOutlined.displayName = 'UploadOutlined';
33
+ export default UploadOutlined;
package/es/index.d.ts CHANGED
@@ -354,6 +354,7 @@ export { default as UnbindChainOutlined } from './UnbindChainOutlined';
354
354
  export { default as UnionOutlined } from './UnionOutlined';
355
355
  export { default as UnlockFilled } from './UnlockFilled';
356
356
  export { default as UpgradeFilled } from './UpgradeFilled';
357
+ export { default as UploadOutlined } from './UploadOutlined';
357
358
  export { default as UploadSendOutlined } from './UploadSendOutlined';
358
359
  export { default as UserCheckOutlined } from './UserCheckOutlined';
359
360
  export { default as UserInfoAuth } from './UserInfoAuth';
package/es/index.js CHANGED
@@ -354,6 +354,7 @@ export { default as UnbindChainOutlined } from './UnbindChainOutlined';
354
354
  export { default as UnionOutlined } from './UnionOutlined';
355
355
  export { default as UnlockFilled } from './UnlockFilled';
356
356
  export { default as UpgradeFilled } from './UpgradeFilled';
357
+ export { default as UploadOutlined } from './UploadOutlined';
357
358
  export { default as UploadSendOutlined } from './UploadSendOutlined';
358
359
  export { default as UserCheckOutlined } from './UserCheckOutlined';
359
360
  export { default as UserInfoAuth } from './UserInfoAuth';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function UploadOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace UploadOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default UploadOutlined;
@@ -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 UploadOutlined(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: "M11.293 2.293a1 1 0 011.414 0L17.414 7 16 8.414l-3-3V16h-2V5.414l-3 3L6.586 7l4.707-4.707zM4 11v5.2c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 00.874.874c.156.08.38.145.819.18C6.361 20 6.943 20 7.8 20h8.4c.857 0 1.439 0 1.889-.038.438-.035.663-.1.819-.18a2 2 0 00.874-.874c.08-.156.145-.38.18-.819.037-.45.038-1.032.038-1.889V11h2v5.241c0 .805 0 1.47-.044 2.01-.046.563-.145 1.08-.392 1.565a4 4 0 01-1.748 1.748c-.485.247-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H7.758c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 01-1.748-1.748c-.247-.485-.346-1.002-.392-1.564C2 17.71 2 17.046 2 16.242V11h2z",
68
+ fill: "currentColor"
69
+ }));
70
+ };
71
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
72
+ component: IconNode
73
+ }));
74
+ }
75
+ UploadOutlined.displayName = 'UploadOutlined';
76
+ exports["default"] = UploadOutlined;
package/lib/index.d.ts CHANGED
@@ -354,6 +354,7 @@ export { default as UnbindChainOutlined } from './UnbindChainOutlined';
354
354
  export { default as UnionOutlined } from './UnionOutlined';
355
355
  export { default as UnlockFilled } from './UnlockFilled';
356
356
  export { default as UpgradeFilled } from './UpgradeFilled';
357
+ export { default as UploadOutlined } from './UploadOutlined';
357
358
  export { default as UploadSendOutlined } from './UploadSendOutlined';
358
359
  export { default as UserCheckOutlined } from './UserCheckOutlined';
359
360
  export { default as UserInfoAuth } from './UserInfoAuth';
package/lib/index.js CHANGED
@@ -15,7 +15,7 @@ exports.LimitlessFilled = exports.LightbulbOutlined = exports.LeftOutlined = exp
15
15
  exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.Pdf = exports.PauseInvestFilled = exports.PauseCircleFilled = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NoteBoardOutlined = exports.NoteBoardFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MinusSquareOutlined = exports.MessageTipOutlined = exports.MessageSquareOutlined = exports.MessageSmileOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MappingAddOutlined = exports.MailSettingFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LogoTmd = exports.LogoEc = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LocationOutlined = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.LinkOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = void 0;
16
16
  exports.SearchOutlined = exports.SearchFilled = exports.RoleSubAccount = exports.RoleSignalResource = exports.RoleSale = exports.RoleOtcMerchant = exports.RoleManage = exports.RoleIb = exports.RoleFollower = exports.RoleDirect = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RetryFilled = exports.ResourceOutlined = exports.RelationInternal = exports.RelationCircle = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeOutlined = exports.QrCodeFilled = exports.PlusOutlined = exports.PlaySolidFilled = exports.PlayOutlined = exports.PlayFilled = exports.PhoneOutlined = exports.PhoneCallFilled = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonLeftArrowFilled = exports.PeopleTieOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = void 0;
17
17
  exports.TwoPeopleRectOutlined = exports.TreeOutlined = exports.TreeFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferMoneyFilled = exports.TransferFileFilled = exports.TagRecharged = exports.TagOutlined = exports.TagFilled = exports.TagBrokenHeart = exports.SubtractFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SocialMediaYoutube = exports.SocialMediaTwitter = exports.SocialMediaIns = exports.SocialMediaIn = exports.SocialMediaFacebook = exports.SimpleEarthOutlined = exports.SignalStopReviewOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalDiffusionOutlined = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShieldCheckedOutlined = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = void 0;
18
- exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VoidFilled = exports.UserAccount = exports.UserOutlined = exports.UserInfoTime = exports.UserInfoTimeZone = exports.UserInfoRealname = exports.UserInfoPassword = exports.UserInfoGift = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnionOutlined = exports.UnbindChainOutlined = exports.TwoSwitchOutlined = exports.TwoPersonConfirm = void 0;
18
+ exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VoidFilled = exports.UserAccount = exports.UserOutlined = exports.UserInfoTime = exports.UserInfoTimeZone = exports.UserInfoRealname = exports.UserInfoPassword = exports.UserInfoGift = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UploadOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnionOutlined = exports.UnbindChainOutlined = exports.TwoSwitchOutlined = exports.TwoPersonConfirm = void 0;
19
19
  var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
20
20
  Object.defineProperty(exports, "ImpassabilityFilled", {
21
21
  enumerable: true,
@@ -2508,6 +2508,13 @@ Object.defineProperty(exports, "UpgradeFilled", {
2508
2508
  return __importDefault(UpgradeFilled_1)["default"];
2509
2509
  }
2510
2510
  });
2511
+ var UploadOutlined_1 = require("./UploadOutlined");
2512
+ Object.defineProperty(exports, "UploadOutlined", {
2513
+ enumerable: true,
2514
+ get: function get() {
2515
+ return __importDefault(UploadOutlined_1)["default"];
2516
+ }
2517
+ });
2511
2518
  var UploadSendOutlined_1 = require("./UploadSendOutlined");
2512
2519
  Object.defineProperty(exports, "UploadSendOutlined", {
2513
2520
  enumerable: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.2.70",
3
+ "version": "1.2.71",
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": "^3.2.49"
24
24
  },
25
- "gitHead": "b4eb475157bdf95eb917698d04942e6b4e203144"
25
+ "gitHead": "c26757adcc8e1f41aa281bd3f49fb5ca01082341"
26
26
  }
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function UploadOutlined(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="M11.293 2.293a1 1 0 011.414 0L17.414 7 16 8.414l-3-3V16h-2V5.414l-3 3L6.586 7l4.707-4.707zM4 11v5.2c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 00.874.874c.156.08.38.145.819.18C6.361 20 6.943 20 7.8 20h8.4c.857 0 1.439 0 1.889-.038.438-.035.663-.1.819-.18a2 2 0 00.874-.874c.08-.156.145-.38.18-.819.037-.45.038-1.032.038-1.889V11h2v5.241c0 .805 0 1.47-.044 2.01-.046.563-.145 1.08-.392 1.565a4 4 0 01-1.748 1.748c-.485.247-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H7.758c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 01-1.748-1.748c-.247-.485-.346-1.002-.392-1.564C2 17.71 2 17.046 2 16.242V11h2z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ );
15
+
16
+ return <Icon {...componentProps} component={IconNode} />;
17
+ }
18
+
19
+ UploadOutlined.displayName = 'UploadOutlined';
20
+ export default UploadOutlined;
package/src/index.tsx CHANGED
@@ -354,6 +354,7 @@ export { default as UnbindChainOutlined } from './UnbindChainOutlined'
354
354
  export { default as UnionOutlined } from './UnionOutlined'
355
355
  export { default as UnlockFilled } from './UnlockFilled'
356
356
  export { default as UpgradeFilled } from './UpgradeFilled'
357
+ export { default as UploadOutlined } from './UploadOutlined'
357
358
  export { default as UploadSendOutlined } from './UploadSendOutlined'
358
359
  export { default as UserCheckOutlined } from './UserCheckOutlined'
359
360
  export { default as UserInfoAuth } from './UserInfoAuth'
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.2929 2.29289C11.6834 1.90237 12.3166 1.90237 12.7071 2.29289L17.4142 7L16 8.41421L13 5.41421V16H11V5.41421L8 8.41421L6.58579 7L11.2929 2.29289ZM4 11V16.2C4 17.0566 4.00078 17.6389 4.03755 18.089C4.07337 18.5274 4.1383 18.7516 4.21799 18.908C4.40973 19.2843 4.7157 19.5903 5.09202 19.782C5.24842 19.8617 5.47262 19.9266 5.91104 19.9624C6.36113 19.9992 6.94342 20 7.8 20H16.2C17.0566 20 17.6389 19.9992 18.089 19.9624C18.5274 19.9266 18.7516 19.8617 18.908 19.782C19.2843 19.5903 19.5903 19.2843 19.782 18.908C19.8617 18.7516 19.9266 18.5274 19.9624 18.089C19.9992 17.6389 20 17.0566 20 16.2V11H22V16.2413C22 17.0463 22 17.7106 21.9558 18.2518C21.9099 18.8139 21.8113 19.3306 21.564 19.816C21.1805 20.5686 20.5686 21.1805 19.816 21.564C19.3306 21.8113 18.8139 21.9099 18.2518 21.9558C17.7106 22 17.0463 22 16.2413 22H7.75868C6.95372 22 6.28936 22 5.74817 21.9558C5.18608 21.9099 4.66937 21.8113 4.18404 21.564C3.43139 21.1805 2.81947 20.5686 2.43597 19.816C2.18868 19.3306 2.09012 18.8139 2.04419 18.2518C1.99998 17.7106 1.99999 17.0463 2 16.2413L2 11H4Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.2929 2.29289C11.6834 1.90237 12.3166 1.90237 12.7071 2.29289L17.4142 7L16 8.41421L13 5.41421V16H11V5.41421L8 8.41421L6.58579 7L11.2929 2.29289ZM4 11V16.2C4 17.0566 4.00078 17.6389 4.03755 18.089C4.07337 18.5274 4.1383 18.7516 4.21799 18.908C4.40973 19.2843 4.7157 19.5903 5.09202 19.782C5.24842 19.8617 5.47262 19.9266 5.91104 19.9624C6.36113 19.9992 6.94342 20 7.8 20H16.2C17.0566 20 17.6389 19.9992 18.089 19.9624C18.5274 19.9266 18.7516 19.8617 18.908 19.782C19.2843 19.5903 19.5903 19.2843 19.782 18.908C19.8617 18.7516 19.9266 18.5274 19.9624 18.089C19.9992 17.6389 20 17.0566 20 16.2V11H22V16.2413C22 17.0463 22 17.7106 21.9558 18.2518C21.9099 18.8139 21.8113 19.3306 21.564 19.816C21.1805 20.5686 20.5686 21.1805 19.816 21.564C19.3306 21.8113 18.8139 21.9099 18.2518 21.9558C17.7106 22 17.0463 22 16.2413 22H7.75868C6.95372 22 6.28936 22 5.74817 21.9558C5.18608 21.9099 4.66937 21.8113 4.18404 21.564C3.43139 21.1805 2.81947 20.5686 2.43597 19.816C2.18868 19.3306 2.09012 18.8139 2.04419 18.2518C1.99998 17.7106 1.99999 17.0463 2 16.2413L2 11H4Z" fill="currentColor"/>
3
+ </svg>