@arcblock/icons 2.9.13 → 2.9.15

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.
Files changed (61) hide show
  1. package/lib/ABTNode.js +5 -6
  2. package/lib/Account.js +5 -6
  3. package/lib/Add.js +5 -6
  4. package/lib/AllowLoginIcon.js +5 -6
  5. package/lib/Approve.js +5 -6
  6. package/lib/Blocklets.js +5 -6
  7. package/lib/Bridge.js +5 -6
  8. package/lib/BridgeMoveIn.js +5 -6
  9. package/lib/BridgeMoveOut.js +5 -6
  10. package/lib/Circles.js +5 -6
  11. package/lib/CodeFolder.js +5 -6
  12. package/lib/Computer.js +5 -6
  13. package/lib/Connect.js +5 -6
  14. package/lib/ConnectLogo.js +5 -6
  15. package/lib/Copy.js +5 -6
  16. package/lib/Dapp.js +5 -6
  17. package/lib/Dashboard.js +5 -6
  18. package/lib/DeleteIcon.js +5 -6
  19. package/lib/DidLogo.js +5 -6
  20. package/lib/DidWallet.js +5 -6
  21. package/lib/DidWalletLogo.js +5 -6
  22. package/lib/Disconnect.js +5 -6
  23. package/lib/EditIcon.js +5 -6
  24. package/lib/EmptyIcon.js +5 -6
  25. package/lib/ExternalIssuerIcon.js +5 -6
  26. package/lib/ForbidLoginIcon.js +5 -6
  27. package/lib/Globe.js +5 -6
  28. package/lib/Key.js +5 -6
  29. package/lib/Label.js +5 -6
  30. package/lib/LauncherLogo.js +5 -6
  31. package/lib/LauncherLogoBg.js +5 -6
  32. package/lib/LauncherLogoNotext.js +5 -6
  33. package/lib/LockIcon.js +5 -6
  34. package/lib/Log.js +5 -6
  35. package/lib/Mobile.js +5 -6
  36. package/lib/NFT.js +5 -6
  37. package/lib/Notification.js +5 -6
  38. package/lib/OpenIn.js +5 -6
  39. package/lib/PassportIcon.js +5 -6
  40. package/lib/Pending.js +5 -6
  41. package/lib/PersonIcon.js +5 -6
  42. package/lib/Plan.js +5 -6
  43. package/lib/QuestionMarkCircle.js +5 -6
  44. package/lib/RevokeIcon.js +5 -6
  45. package/lib/Rollup.js +5 -6
  46. package/lib/Server.js +5 -6
  47. package/lib/ServerLogo.js +5 -6
  48. package/lib/ServerLogoBg.js +5 -6
  49. package/lib/ServerLogoNotext.js +5 -6
  50. package/lib/Setting.js +5 -6
  51. package/lib/Store.js +5 -6
  52. package/lib/StoreLogo.js +5 -6
  53. package/lib/StoreLogoBg.js +5 -6
  54. package/lib/StoreLogoNotext.js +5 -6
  55. package/lib/Switch.js +5 -6
  56. package/lib/Team.js +5 -6
  57. package/lib/Token.js +5 -6
  58. package/lib/Tx.js +5 -6
  59. package/lib/WalletTextLogo.js +5 -6
  60. package/lib/index.js +63 -122
  61. package/package.json +2 -2
package/lib/index.js CHANGED
@@ -7,19 +7,18 @@ exports.WalletTextLogo = exports.Tx = exports.Token = exports.Team = exports.Swi
7
7
  var _react = _interopRequireDefault(require("react"));
8
8
  var _jsxRuntime = require("react/jsx-runtime");
9
9
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
11
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
10
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
11
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
12
12
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
13
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
14
- function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
15
- var Computer = function Computer(props) {
13
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : String(i); }
14
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
15
+ var Computer = exports.Computer = function Computer(props) {
16
16
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
17
17
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
18
18
  d: "M5.472.371H60.94c3.061 0 5.565 2.412 5.565 5.473v35.431c0 3.061-2.504 5.658-5.565 5.658H39.328v9.183h15.768c2.319 0 2.504 7.606 2.782 7.884H8.626s0-7.884 2.783-7.884h15.768v-9.183H5.472C2.412 46.933 0 44.336 0 41.275V5.844C0 2.783 2.412.37 5.472.37zm0 40.904H60.94V5.844H5.472v35.431z"
19
19
  })
20
20
  }));
21
21
  };
22
- exports.Computer = Computer;
23
22
  Computer.defaultProps = {
24
23
  width: "67",
25
24
  height: "64",
@@ -27,7 +26,7 @@ Computer.defaultProps = {
27
26
  fill: "currentColor",
28
27
  xmlns: "http://www.w3.org/2000/svg"
29
28
  };
30
- var ConnectLogo = function ConnectLogo(props) {
29
+ var ConnectLogo = exports.ConnectLogo = function ConnectLogo(props) {
31
30
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
32
31
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
33
32
  d: "M24.604 2.263L28.524 0H42.79v41.862H28.79a1 1 0 0 1-.5-.134l-15.103-8.72V8.854l1.817-1.05 3.2 1.848-1.817 1.05V31.16l12.993 7.502H39.59V3.2H29.38l-1.576.91-3.2-1.847z"
@@ -44,7 +43,6 @@ var ConnectLogo = function ConnectLogo(props) {
44
43
  })]
45
44
  }));
46
45
  };
47
- exports.ConnectLogo = ConnectLogo;
48
46
  ConnectLogo.defaultProps = {
49
47
  width: "239",
50
48
  height: "42",
@@ -52,21 +50,20 @@ ConnectLogo.defaultProps = {
52
50
  fill: "currentColor",
53
51
  xmlns: "http://www.w3.org/2000/svg"
54
52
  };
55
- var Copy = function Copy(props) {
53
+ var Copy = exports.Copy = function Copy(props) {
56
54
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
57
55
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
58
56
  d: "M12.342.063h-9.75A1.63 1.63 0 0 0 .967 1.688v11.374h1.625V1.688h9.75V.063zm2.437 3.25H5.842a1.63 1.63 0 0 0-1.625 1.624v11.375a1.63 1.63 0 0 0 1.625 1.625h8.937a1.63 1.63 0 0 0 1.625-1.625V4.938a1.63 1.63 0 0 0-1.625-1.625zm0 13H5.842V4.938h8.937v11.375z"
59
57
  })
60
58
  }));
61
59
  };
62
- exports.Copy = Copy;
63
60
  Copy.defaultProps = {
64
61
  width: "17",
65
62
  height: "18",
66
63
  viewBox: "0 0 17 18",
67
64
  xmlns: "http://www.w3.org/2000/svg"
68
65
  };
69
- var DidLogo = function DidLogo(props) {
66
+ var DidLogo = exports.DidLogo = function DidLogo(props) {
70
67
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
71
68
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
72
69
  d: "M24.604 2.263L28.524 0H42.79v41.862H28.79a1 1 0 0 1-.5-.134l-15.103-8.72V8.854l1.817-1.05 3.2 1.848-1.817 1.05V31.16l12.993 7.502H39.59V3.2H29.38l-1.576.91-3.2-1.847z"
@@ -77,7 +74,6 @@ var DidLogo = function DidLogo(props) {
77
74
  })]
78
75
  }));
79
76
  };
80
- exports.DidLogo = DidLogo;
81
77
  DidLogo.defaultProps = {
82
78
  width: "43",
83
79
  height: "42",
@@ -85,7 +81,7 @@ DidLogo.defaultProps = {
85
81
  fill: "currentColor",
86
82
  xmlns: "http://www.w3.org/2000/svg"
87
83
  };
88
- var DidWallet = function DidWallet(props) {
84
+ var DidWallet = exports.DidWallet = function DidWallet(props) {
89
85
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
90
86
  children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("g", {
91
87
  clipPath: "url(#clip0)",
@@ -257,7 +253,6 @@ var DidWallet = function DidWallet(props) {
257
253
  })]
258
254
  }));
259
255
  };
260
- exports.DidWallet = DidWallet;
261
256
  DidWallet.defaultProps = {
262
257
  width: "32",
263
258
  height: "32",
@@ -265,7 +260,7 @@ DidWallet.defaultProps = {
265
260
  fill: "none",
266
261
  xmlns: "http://www.w3.org/2000/svg"
267
262
  };
268
- var Disconnect = function Disconnect(props) {
263
+ var Disconnect = exports.Disconnect = function Disconnect(props) {
269
264
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
270
265
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
271
266
  d: "M21.78 3.28a.75.75 0 0 0-1.06-1.06l-2.012 2.012a4.25 4.25 0 0 0-5.463.462l-1.068 1.069a1.75 1.75 0 0 0 0 2.474l3.585 3.586a1.75 1.75 0 0 0 2.475 0l1.068-1.068a4.251 4.251 0 0 0 .463-5.463L21.78 3.28zm-3.585 2.475l.022.023.003.002.002.003.023.022a2.75 2.75 0 0 1 0 3.89l-1.068 1.067a.25.25 0 0 1-.354 0l-3.586-3.585a.251.251 0 0 1 0-.354l1.068-1.068a2.75 2.75 0 0 1 3.89 0zM10.78 11.28a.75.75 0 1 0-1.06-1.06L8 11.94l-.47-.47a.75.75 0 0 0-1.06 0l-1.775 1.775a4.251 4.251 0 0 0-.463 5.463L2.22 20.72a.75.75 0 1 0 1.06 1.06l2.012-2.012a4.251 4.251 0 0 0 5.463-.463l1.775-1.775a.75.75 0 0 0 0-1.06l-.47-.47 1.72-1.72a.75.75 0 1 0-1.06-1.06L11 14.94 9.06 13l1.72-1.72zm-3.314 2.247l.004.003.003.004 2.993 2.993.004.003.003.004.466.466-1.244 1.245a2.75 2.75 0 0 1-3.89 0l-.05-.05a2.75 2.75 0 0 1 0-3.89L7 13.062l.466.466v-.001z",
@@ -273,19 +268,17 @@ var Disconnect = function Disconnect(props) {
273
268
  })
274
269
  }));
275
270
  };
276
- exports.Disconnect = Disconnect;
277
271
  Disconnect.defaultProps = {
278
272
  viewBox: "0 0 24 24",
279
273
  fill: "none"
280
274
  };
281
- var Mobile = function Mobile(props) {
275
+ var Mobile = exports.Mobile = function Mobile(props) {
282
276
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
283
277
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
284
278
  d: "M3.833.833h13.334A3.333 3.333 0 0 1 20.5 4.167v26.666a3.333 3.333 0 0 1-3.333 3.334H3.833A3.333 3.333 0 0 1 .5 30.833V4.168A3.333 3.333 0 0 1 3.833.833zm0 3.334v25h13.334v-25H3.833z"
285
279
  })
286
280
  }));
287
281
  };
288
- exports.Mobile = Mobile;
289
282
  Mobile.defaultProps = {
290
283
  width: "21",
291
284
  height: "35",
@@ -293,7 +286,7 @@ Mobile.defaultProps = {
293
286
  fill: "currentColor",
294
287
  xmlns: "http://www.w3.org/2000/svg"
295
288
  };
296
- var OpenIn = function OpenIn(props) {
289
+ var OpenIn = exports.OpenIn = function OpenIn(props) {
297
290
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
298
291
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
299
292
  fillRule: "evenodd",
@@ -303,12 +296,11 @@ var OpenIn = function OpenIn(props) {
303
296
  })
304
297
  }));
305
298
  };
306
- exports.OpenIn = OpenIn;
307
299
  OpenIn.defaultProps = {
308
300
  viewBox: "0 0 24 24",
309
301
  fill: "none"
310
302
  };
311
- var Switch = function Switch(props) {
303
+ var Switch = exports.Switch = function Switch(props) {
312
304
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
313
305
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
314
306
  d: "M4 17l4-4m0-6h12H8zm12 0l-4-4 4 4zm0 0l-4 4 4-4zm-4 10H4h12zM4 17l4 4-4-4z",
@@ -319,40 +311,37 @@ var Switch = function Switch(props) {
319
311
  })
320
312
  }));
321
313
  };
322
- exports.Switch = Switch;
323
314
  Switch.defaultProps = {
324
315
  viewBox: "0 0 24 24",
325
316
  fill: "none"
326
317
  };
327
- var EditIcon = function EditIcon(props) {
318
+ var EditIcon = exports.EditIcon = function EditIcon(props) {
328
319
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
329
320
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
330
321
  d: "M6.04 17.625a.953.953 0 0 0 .14-.012l3.943-.691a.23.23 0 0 0 .124-.066l9.935-9.935a.233.233 0 0 0 0-.33l-3.895-3.898a.232.232 0 0 0-.167-.068.232.232 0 0 0-.166.068l-9.935 9.935a.238.238 0 0 0-.066.124l-.691 3.943a.785.785 0 0 0 .22.698c.155.15.35.232.558.232zm1.58-4.088l8.5-8.498 1.718 1.718-8.5 8.498-2.084.368.366-2.085zm13.005 6.057H3.375a.75.75 0 0 0-.75.75v.843c0 .104.084.188.188.188h18.375a.188.188 0 0 0 .187-.188v-.843a.75.75 0 0 0-.75-.75z"
331
322
  })
332
323
  }));
333
324
  };
334
- exports.EditIcon = EditIcon;
335
325
  EditIcon.defaultProps = {
336
326
  width: "24",
337
327
  height: "24",
338
328
  viewBox: "0 0 24 24",
339
329
  xmlns: "http://www.w3.org/2000/svg"
340
330
  };
341
- var DeleteIcon = function DeleteIcon(props) {
331
+ var DeleteIcon = exports.DeleteIcon = function DeleteIcon(props) {
342
332
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
343
333
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
344
334
  d: "M8.438 4.313H8.25a.188.188 0 0 0 .188-.188v.188h7.124v-.188c0 .103.085.188.188.188h-.188V6h1.688V4.125c0-.827-.673-1.5-1.5-1.5h-7.5c-.827 0-1.5.673-1.5 1.5V6h1.688V4.312zM20.25 6H3.75a.75.75 0 0 0-.75.75v.75c0 .103.084.188.188.188h1.415l.579 12.257c.038.8.698 1.43 1.498 1.43h10.64c.802 0 1.46-.628 1.498-1.43l.579-12.258h1.416A.188.188 0 0 0 21 7.5v-.75a.75.75 0 0 0-.75-.75zm-3.11 13.688H6.86l-.567-12h11.414l-.567 12z"
345
335
  })
346
336
  }));
347
337
  };
348
- exports.DeleteIcon = DeleteIcon;
349
338
  DeleteIcon.defaultProps = {
350
339
  width: "24",
351
340
  height: "24",
352
341
  viewBox: "0 0 24 24",
353
342
  xmlns: "http://www.w3.org/2000/svg"
354
343
  };
355
- var PassportIcon = function PassportIcon(props) {
344
+ var PassportIcon = exports.PassportIcon = function PassportIcon(props) {
356
345
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
357
346
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
358
347
  fillRule: "evenodd",
@@ -365,14 +354,13 @@ var PassportIcon = function PassportIcon(props) {
365
354
  })]
366
355
  }));
367
356
  };
368
- exports.PassportIcon = PassportIcon;
369
357
  PassportIcon.defaultProps = {
370
358
  width: "20",
371
359
  height: "20",
372
360
  viewBox: "0 0 20 20",
373
361
  xmlns: "http://www.w3.org/2000/svg"
374
362
  };
375
- var ExternalIssuerIcon = function ExternalIssuerIcon(props) {
363
+ var ExternalIssuerIcon = exports.ExternalIssuerIcon = function ExternalIssuerIcon(props) {
376
364
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
377
365
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
378
366
  d: "M1.25 2.709c0-.46.373-.834.834-.834h12.255c.46 0 .834.373.834.834v6.607a.834.834 0 1 1-1.668 0V3.542H2.917v13.214h6.407a.834.834 0 1 1 0 1.668h-7.24a.834.834 0 0 1-.834-.834V2.71z"
@@ -383,14 +371,13 @@ var ExternalIssuerIcon = function ExternalIssuerIcon(props) {
383
371
  })]
384
372
  }));
385
373
  };
386
- exports.ExternalIssuerIcon = ExternalIssuerIcon;
387
374
  ExternalIssuerIcon.defaultProps = {
388
375
  width: "20",
389
376
  height: "20",
390
377
  viewBox: "0 0 20 20",
391
378
  xmlns: "http://www.w3.org/2000/svg"
392
379
  };
393
- var AllowLoginIcon = function AllowLoginIcon(props) {
380
+ var AllowLoginIcon = exports.AllowLoginIcon = function AllowLoginIcon(props) {
394
381
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
395
382
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
396
383
  fillRule: "evenodd",
@@ -412,14 +399,13 @@ var AllowLoginIcon = function AllowLoginIcon(props) {
412
399
  })]
413
400
  }));
414
401
  };
415
- exports.AllowLoginIcon = AllowLoginIcon;
416
402
  AllowLoginIcon.defaultProps = {
417
403
  width: "20",
418
404
  height: "20",
419
405
  viewBox: "0 0 20 20",
420
406
  xmlns: "http://www.w3.org/2000/svg"
421
407
  };
422
- var ForbidLoginIcon = function ForbidLoginIcon(props) {
408
+ var ForbidLoginIcon = exports.ForbidLoginIcon = function ForbidLoginIcon(props) {
423
409
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
424
410
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
425
411
  fillRule: "evenodd",
@@ -434,28 +420,26 @@ var ForbidLoginIcon = function ForbidLoginIcon(props) {
434
420
  })]
435
421
  }));
436
422
  };
437
- exports.ForbidLoginIcon = ForbidLoginIcon;
438
423
  ForbidLoginIcon.defaultProps = {
439
424
  width: "20",
440
425
  height: "20",
441
426
  viewBox: "0 0 20 20",
442
427
  xmlns: "http://www.w3.org/2000/svg"
443
428
  };
444
- var LockIcon = function LockIcon(props) {
429
+ var LockIcon = exports.LockIcon = function LockIcon(props) {
445
430
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
446
431
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
447
432
  d: "M11.78 2.25c-2.767 0-5.019 2.271-5.019 5.063v3.037H5.758a2.018 2.018 0 0 0-2.008 2.025v8.1c0 1.117.9 2.025 2.008 2.025h12.045a2.018 2.018 0 0 0 2.007-2.025v-8.1c0-1.117-.9-2.025-2.007-2.025h-1.004V7.313c0-2.792-2.251-5.063-5.019-5.063zm6.023 10.125l.002 8.1H5.758v-8.1h12.045zM8.769 10.35V7.313c0-1.675 1.35-3.038 3.011-3.038 1.66 0 3.011 1.363 3.011 3.037v3.038H8.77z"
448
433
  })
449
434
  }));
450
435
  };
451
- exports.LockIcon = LockIcon;
452
436
  LockIcon.defaultProps = {
453
437
  width: "24",
454
438
  height: "24",
455
439
  viewBox: "0 0 24 24",
456
440
  xmlns: "http://www.w3.org/2000/svg"
457
441
  };
458
- var PersonIcon = function PersonIcon(props) {
442
+ var PersonIcon = exports.PersonIcon = function PersonIcon(props) {
459
443
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
460
444
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("g", {
461
445
  clipPath: "url(#clip0)",
@@ -475,14 +459,13 @@ var PersonIcon = function PersonIcon(props) {
475
459
  })]
476
460
  }));
477
461
  };
478
- exports.PersonIcon = PersonIcon;
479
462
  PersonIcon.defaultProps = {
480
463
  width: "18",
481
464
  height: "19",
482
465
  viewBox: "0 0 18 19",
483
466
  xmlns: "http://www.w3.org/2000/svg"
484
467
  };
485
- var RevokeIcon = function RevokeIcon(props) {
468
+ var RevokeIcon = exports.RevokeIcon = function RevokeIcon(props) {
486
469
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
487
470
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
488
471
  fillRule: "evenodd",
@@ -491,14 +474,13 @@ var RevokeIcon = function RevokeIcon(props) {
491
474
  })
492
475
  }));
493
476
  };
494
- exports.RevokeIcon = RevokeIcon;
495
477
  RevokeIcon.defaultProps = {
496
478
  width: "20",
497
479
  height: "20",
498
480
  viewBox: "0 0 20 20",
499
481
  xmlns: "http://www.w3.org/2000/svg"
500
482
  };
501
- var Dapp = function Dapp(props) {
483
+ var Dapp = exports.Dapp = function Dapp(props) {
502
484
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
503
485
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
504
486
  d: "M6.404 28a2.404 2.404 0 0 1-2.393-2.173L4 25.596V7.966a2.404 2.404 0 0 1 2.173-2.394l.231-.011h7.213a2.404 2.404 0 0 1 2.393 2.172l.01.232v.407l3.51-3.637a2.404 2.404 0 0 1 3.216-.22l.186.161 4.42 4.368a2.404 2.404 0 0 1 .177 3.223l-.165.186-3.704 3.526h.375a2.404 2.404 0 0 1 2.393 2.172l.011.232v7.213a2.404 2.404 0 0 1-2.172 2.393l-.232.011H6.405zm8.014-10.418H5.603v8.014a.801.801 0 0 0 .522.752l.135.036.144.013h8.014v-8.815zm9.617 0H16.02v8.815h8.014a.802.802 0 0 0 .788-.657l.013-.144v-7.213a.802.802 0 0 0-.657-.788l-.144-.013zM16.02 13.11v2.87h2.869l-2.87-2.87zm-2.404-5.946H6.404a.801.801 0 0 0-.788.657l-.013.144v8.014h8.815V7.965a.801.801 0 0 0-.522-.752l-.135-.036-.144-.013zm8.21-1.326a.806.806 0 0 0-1.035-.085l-.109.096-4.192 4.349a.801.801 0 0 0-.092.998l.101.125 4.193 4.192a.801.801 0 0 0 .994.112l.125-.098 4.42-4.21a.802.802 0 0 0 .087-1.023l-.095-.11-4.398-4.346z",
@@ -506,14 +488,13 @@ var Dapp = function Dapp(props) {
506
488
  })
507
489
  }));
508
490
  };
509
- exports.Dapp = Dapp;
510
491
  Dapp.defaultProps = {
511
492
  width: "32",
512
493
  height: "32",
513
494
  viewBox: "0 0 32 32",
514
495
  xmlns: "http://www.w3.org/2000/svg"
515
496
  };
516
- var Add = function Add(props) {
497
+ var Add = exports.Add = function Add(props) {
517
498
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
518
499
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
519
500
  fillRule: "evenodd",
@@ -523,14 +504,13 @@ var Add = function Add(props) {
523
504
  })
524
505
  }));
525
506
  };
526
- exports.Add = Add;
527
507
  Add.defaultProps = {
528
508
  width: "32",
529
509
  height: "32",
530
510
  viewBox: "0 0 32 32",
531
511
  xmlns: "http://www.w3.org/2000/svg"
532
512
  };
533
- var NFT = function NFT(props) {
513
+ var NFT = exports.NFT = function NFT(props) {
534
514
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
535
515
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
536
516
  fillRule: "evenodd",
@@ -545,14 +525,13 @@ var NFT = function NFT(props) {
545
525
  })]
546
526
  }));
547
527
  };
548
- exports.NFT = NFT;
549
528
  NFT.defaultProps = {
550
529
  width: "32",
551
530
  height: "32",
552
531
  viewBox: "0 0 32 32",
553
532
  xmlns: "http://www.w3.org/2000/svg"
554
533
  };
555
- var Rollup = function Rollup(props) {
534
+ var Rollup = exports.Rollup = function Rollup(props) {
556
535
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
557
536
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
558
537
  d: "M18 21.5H6.5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a3 3 0 0 0 3-3v-14m0 0H26a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-.5a2 2 0 0 0-2 2v3.5z",
@@ -574,7 +553,6 @@ var Rollup = function Rollup(props) {
574
553
  })]
575
554
  }));
576
555
  };
577
- exports.Rollup = Rollup;
578
556
  Rollup.defaultProps = {
579
557
  width: "32",
580
558
  height: "32",
@@ -582,7 +560,7 @@ Rollup.defaultProps = {
582
560
  fill: "none",
583
561
  xmlns: "http://www.w3.org/2000/svg"
584
562
  };
585
- var Token = function Token(props) {
563
+ var Token = exports.Token = function Token(props) {
586
564
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
587
565
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
588
566
  fillRule: "evenodd",
@@ -592,14 +570,13 @@ var Token = function Token(props) {
592
570
  })
593
571
  }));
594
572
  };
595
- exports.Token = Token;
596
573
  Token.defaultProps = {
597
574
  width: "32",
598
575
  height: "32",
599
576
  viewBox: "0 0 32 32",
600
577
  xmlns: "http://www.w3.org/2000/svg"
601
578
  };
602
- var Tx = function Tx(props) {
579
+ var Tx = exports.Tx = function Tx(props) {
603
580
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
604
581
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
605
582
  fillRule: "evenodd",
@@ -609,14 +586,13 @@ var Tx = function Tx(props) {
609
586
  })
610
587
  }));
611
588
  };
612
- exports.Tx = Tx;
613
589
  Tx.defaultProps = {
614
590
  width: "32",
615
591
  height: "33",
616
592
  viewBox: "0 0 32 33",
617
593
  xmlns: "http://www.w3.org/2000/svg"
618
594
  };
619
- var Connect = function Connect(props) {
595
+ var Connect = exports.Connect = function Connect(props) {
620
596
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
621
597
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
622
598
  cx: "24",
@@ -635,7 +611,6 @@ var Connect = function Connect(props) {
635
611
  })]
636
612
  }));
637
613
  };
638
- exports.Connect = Connect;
639
614
  Connect.defaultProps = {
640
615
  width: "48",
641
616
  height: "48",
@@ -643,7 +618,7 @@ Connect.defaultProps = {
643
618
  fill: "none",
644
619
  xmlns: "http://www.w3.org/2000/svg"
645
620
  };
646
- var WalletTextLogo = function WalletTextLogo(props) {
621
+ var WalletTextLogo = exports.WalletTextLogo = function WalletTextLogo(props) {
647
622
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
648
623
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
649
624
  fillRule: "evenodd",
@@ -656,7 +631,6 @@ var WalletTextLogo = function WalletTextLogo(props) {
656
631
  })]
657
632
  }));
658
633
  };
659
- exports.WalletTextLogo = WalletTextLogo;
660
634
  WalletTextLogo.defaultProps = {
661
635
  width: "89",
662
636
  height: "20",
@@ -664,7 +638,7 @@ WalletTextLogo.defaultProps = {
664
638
  fill: "none",
665
639
  xmlns: "http://www.w3.org/2000/svg"
666
640
  };
667
- var Pending = function Pending(props) {
641
+ var Pending = exports.Pending = function Pending(props) {
668
642
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
669
643
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
670
644
  opacity: ".2",
@@ -678,7 +652,6 @@ var Pending = function Pending(props) {
678
652
  })]
679
653
  }));
680
654
  };
681
- exports.Pending = Pending;
682
655
  Pending.defaultProps = {
683
656
  width: "24",
684
657
  height: "24",
@@ -686,7 +659,7 @@ Pending.defaultProps = {
686
659
  fill: "currentColor",
687
660
  xmlns: "http://www.w3.org/2000/svg"
688
661
  };
689
- var ABTNode = function ABTNode(props) {
662
+ var ABTNode = exports.ABTNode = function ABTNode(props) {
690
663
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
691
664
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
692
665
  fillRule: "evenodd",
@@ -711,7 +684,6 @@ var ABTNode = function ABTNode(props) {
711
684
  })]
712
685
  }));
713
686
  };
714
- exports.ABTNode = ABTNode;
715
687
  ABTNode.defaultProps = {
716
688
  width: "64",
717
689
  height: "64",
@@ -719,7 +691,7 @@ ABTNode.defaultProps = {
719
691
  fill: "currentColor",
720
692
  xmlns: "http://www.w3.org/2000/svg"
721
693
  };
722
- var Bridge = function Bridge(props) {
694
+ var Bridge = exports.Bridge = function Bridge(props) {
723
695
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
724
696
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
725
697
  fillRule: "evenodd",
@@ -729,7 +701,6 @@ var Bridge = function Bridge(props) {
729
701
  })
730
702
  }));
731
703
  };
732
- exports.Bridge = Bridge;
733
704
  Bridge.defaultProps = {
734
705
  width: "33",
735
706
  height: "32",
@@ -737,7 +708,7 @@ Bridge.defaultProps = {
737
708
  fill: "none",
738
709
  xmlns: "http://www.w3.org/2000/svg"
739
710
  };
740
- var BridgeMoveIn = function BridgeMoveIn(props) {
711
+ var BridgeMoveIn = exports.BridgeMoveIn = function BridgeMoveIn(props) {
741
712
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
742
713
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
743
714
  fillRule: "evenodd",
@@ -747,7 +718,6 @@ var BridgeMoveIn = function BridgeMoveIn(props) {
747
718
  })
748
719
  }));
749
720
  };
750
- exports.BridgeMoveIn = BridgeMoveIn;
751
721
  BridgeMoveIn.defaultProps = {
752
722
  width: "33",
753
723
  height: "32",
@@ -755,7 +725,7 @@ BridgeMoveIn.defaultProps = {
755
725
  fill: "none",
756
726
  xmlns: "http://www.w3.org/2000/svg"
757
727
  };
758
- var BridgeMoveOut = function BridgeMoveOut(props) {
728
+ var BridgeMoveOut = exports.BridgeMoveOut = function BridgeMoveOut(props) {
759
729
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
760
730
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
761
731
  fillRule: "evenodd",
@@ -765,7 +735,6 @@ var BridgeMoveOut = function BridgeMoveOut(props) {
765
735
  })
766
736
  }));
767
737
  };
768
- exports.BridgeMoveOut = BridgeMoveOut;
769
738
  BridgeMoveOut.defaultProps = {
770
739
  width: "33",
771
740
  height: "32",
@@ -773,7 +742,7 @@ BridgeMoveOut.defaultProps = {
773
742
  fill: "none",
774
743
  xmlns: "http://www.w3.org/2000/svg"
775
744
  };
776
- var DidWalletLogo = function DidWalletLogo(props) {
745
+ var DidWalletLogo = exports.DidWalletLogo = function DidWalletLogo(props) {
777
746
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
778
747
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
779
748
  d: "M24.604 2.263L28.524 0H42.79v41.862H28.791a1 1 0 0 1-.5-.134l-15.103-8.72V8.854l1.817-1.05 3.2 1.848-1.817 1.05V31.16l12.993 7.502H39.59V3.2H29.38l-1.576.91-3.2-1.847z",
@@ -794,13 +763,12 @@ var DidWalletLogo = function DidWalletLogo(props) {
794
763
  })]
795
764
  }));
796
765
  };
797
- exports.DidWalletLogo = DidWalletLogo;
798
766
  DidWalletLogo.defaultProps = {
799
767
  viewBox: "0 0 210 42",
800
768
  fill: "none",
801
769
  xmlns: "http://www.w3.org/2000/svg"
802
770
  };
803
- var ServerLogo = function ServerLogo(props) {
771
+ var ServerLogo = exports.ServerLogo = function ServerLogo(props) {
804
772
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
805
773
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
806
774
  fillRule: "evenodd",
@@ -857,7 +825,6 @@ var ServerLogo = function ServerLogo(props) {
857
825
  })]
858
826
  }));
859
827
  };
860
- exports.ServerLogo = ServerLogo;
861
828
  ServerLogo.defaultProps = {
862
829
  width: "170",
863
830
  height: "64",
@@ -865,7 +832,7 @@ ServerLogo.defaultProps = {
865
832
  fill: "none",
866
833
  xmlns: "http://www.w3.org/2000/svg"
867
834
  };
868
- var ServerLogoNotext = function ServerLogoNotext(props) {
835
+ var ServerLogoNotext = exports.ServerLogoNotext = function ServerLogoNotext(props) {
869
836
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
870
837
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
871
838
  fillRule: "evenodd",
@@ -914,7 +881,6 @@ var ServerLogoNotext = function ServerLogoNotext(props) {
914
881
  })]
915
882
  }));
916
883
  };
917
- exports.ServerLogoNotext = ServerLogoNotext;
918
884
  ServerLogoNotext.defaultProps = {
919
885
  width: "64",
920
886
  height: "64",
@@ -922,7 +888,7 @@ ServerLogoNotext.defaultProps = {
922
888
  fill: "none",
923
889
  xmlns: "http://www.w3.org/2000/svg"
924
890
  };
925
- var ServerLogoBg = function ServerLogoBg(props) {
891
+ var ServerLogoBg = exports.ServerLogoBg = function ServerLogoBg(props) {
926
892
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
927
893
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
928
894
  fill: "#fff",
@@ -999,7 +965,6 @@ var ServerLogoBg = function ServerLogoBg(props) {
999
965
  })]
1000
966
  }));
1001
967
  };
1002
- exports.ServerLogoBg = ServerLogoBg;
1003
968
  ServerLogoBg.defaultProps = {
1004
969
  width: "120",
1005
970
  height: "120",
@@ -1007,7 +972,7 @@ ServerLogoBg.defaultProps = {
1007
972
  fill: "none",
1008
973
  xmlns: "http://www.w3.org/2000/svg"
1009
974
  };
1010
- var LauncherLogo = function LauncherLogo(props) {
975
+ var LauncherLogo = exports.LauncherLogo = function LauncherLogo(props) {
1011
976
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
1012
977
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1013
978
  fillRule: "evenodd",
@@ -1064,7 +1029,6 @@ var LauncherLogo = function LauncherLogo(props) {
1064
1029
  })]
1065
1030
  }));
1066
1031
  };
1067
- exports.LauncherLogo = LauncherLogo;
1068
1032
  LauncherLogo.defaultProps = {
1069
1033
  width: "193",
1070
1034
  height: "64",
@@ -1072,7 +1036,7 @@ LauncherLogo.defaultProps = {
1072
1036
  fill: "none",
1073
1037
  xmlns: "http://www.w3.org/2000/svg"
1074
1038
  };
1075
- var LauncherLogoNotext = function LauncherLogoNotext(props) {
1039
+ var LauncherLogoNotext = exports.LauncherLogoNotext = function LauncherLogoNotext(props) {
1076
1040
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
1077
1041
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1078
1042
  fillRule: "evenodd",
@@ -1121,7 +1085,6 @@ var LauncherLogoNotext = function LauncherLogoNotext(props) {
1121
1085
  })]
1122
1086
  }));
1123
1087
  };
1124
- exports.LauncherLogoNotext = LauncherLogoNotext;
1125
1088
  LauncherLogoNotext.defaultProps = {
1126
1089
  width: "64",
1127
1090
  height: "64",
@@ -1129,7 +1092,7 @@ LauncherLogoNotext.defaultProps = {
1129
1092
  fill: "none",
1130
1093
  xmlns: "http://www.w3.org/2000/svg"
1131
1094
  };
1132
- var LauncherLogoBg = function LauncherLogoBg(props) {
1095
+ var LauncherLogoBg = exports.LauncherLogoBg = function LauncherLogoBg(props) {
1133
1096
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
1134
1097
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1135
1098
  fill: "#fff",
@@ -1204,7 +1167,6 @@ var LauncherLogoBg = function LauncherLogoBg(props) {
1204
1167
  })]
1205
1168
  }));
1206
1169
  };
1207
- exports.LauncherLogoBg = LauncherLogoBg;
1208
1170
  LauncherLogoBg.defaultProps = {
1209
1171
  width: "120",
1210
1172
  height: "120",
@@ -1212,7 +1174,7 @@ LauncherLogoBg.defaultProps = {
1212
1174
  fill: "none",
1213
1175
  xmlns: "http://www.w3.org/2000/svg"
1214
1176
  };
1215
- var StoreLogo = function StoreLogo(props) {
1177
+ var StoreLogo = exports.StoreLogo = function StoreLogo(props) {
1216
1178
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
1217
1179
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1218
1180
  fillRule: "evenodd",
@@ -1269,7 +1231,6 @@ var StoreLogo = function StoreLogo(props) {
1269
1231
  })]
1270
1232
  }));
1271
1233
  };
1272
- exports.StoreLogo = StoreLogo;
1273
1234
  StoreLogo.defaultProps = {
1274
1235
  width: "170",
1275
1236
  height: "64",
@@ -1277,7 +1238,7 @@ StoreLogo.defaultProps = {
1277
1238
  fill: "none",
1278
1239
  xmlns: "http://www.w3.org/2000/svg"
1279
1240
  };
1280
- var StoreLogoNotext = function StoreLogoNotext(props) {
1241
+ var StoreLogoNotext = exports.StoreLogoNotext = function StoreLogoNotext(props) {
1281
1242
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
1282
1243
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1283
1244
  fillRule: "evenodd",
@@ -1326,7 +1287,6 @@ var StoreLogoNotext = function StoreLogoNotext(props) {
1326
1287
  })]
1327
1288
  }));
1328
1289
  };
1329
- exports.StoreLogoNotext = StoreLogoNotext;
1330
1290
  StoreLogoNotext.defaultProps = {
1331
1291
  width: "64",
1332
1292
  height: "64",
@@ -1334,7 +1294,7 @@ StoreLogoNotext.defaultProps = {
1334
1294
  fill: "none",
1335
1295
  xmlns: "http://www.w3.org/2000/svg"
1336
1296
  };
1337
- var StoreLogoBg = function StoreLogoBg(props) {
1297
+ var StoreLogoBg = exports.StoreLogoBg = function StoreLogoBg(props) {
1338
1298
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
1339
1299
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1340
1300
  fill: "#fff",
@@ -1406,7 +1366,6 @@ var StoreLogoBg = function StoreLogoBg(props) {
1406
1366
  })]
1407
1367
  }));
1408
1368
  };
1409
- exports.StoreLogoBg = StoreLogoBg;
1410
1369
  StoreLogoBg.defaultProps = {
1411
1370
  width: "120",
1412
1371
  height: "120",
@@ -1414,7 +1373,7 @@ StoreLogoBg.defaultProps = {
1414
1373
  fill: "none",
1415
1374
  xmlns: "http://www.w3.org/2000/svg"
1416
1375
  };
1417
- var Blocklets = function Blocklets(props) {
1376
+ var Blocklets = exports.Blocklets = function Blocklets(props) {
1418
1377
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
1419
1378
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1420
1379
  d: "M4.005 31a3.005 3.005 0 0 1-2.99-2.717L1 27.995V5.956a3.005 3.005 0 0 1 2.717-2.99l.288-.015h9.016a3.005 3.005 0 0 1 2.992 2.715l.014.29v.51l4.385-4.547a3.005 3.005 0 0 1 4.022-.276l.232.202 5.524 5.46a3.005 3.005 0 0 1 .222 4.029l-.206.232-4.63 4.408h.468a3.005 3.005 0 0 1 2.992 2.715l.014.29v9.016a3.006 3.006 0 0 1-2.715 2.991l-.29.014H4.004zm10.018-13.023H3.003v10.018a1.002 1.002 0 0 0 .654.94l.168.046.18.015h10.018V17.977zm12.021 0H16.027v11.02h10.017a1.002 1.002 0 0 0 .986-.822l.016-.18v-9.016a1.002 1.002 0 0 0-.821-.986l-.18-.016zm-10.017-5.59v3.587h3.586l-3.586-3.586zM13.02 4.956H4.005a1.002 1.002 0 0 0-.985.821l-.016.18v10.018h11.02V5.956a1.001 1.001 0 0 0-.654-.94l-.168-.045-.18-.016zm10.262-1.657a1.008 1.008 0 0 0-1.292-.106l-.136.12-5.241 5.435a1.001 1.001 0 0 0-.114 1.248l.126.157 5.241 5.239a1.002 1.002 0 0 0 1.242.14l.156-.122 5.526-5.263a1.002 1.002 0 0 0 .108-1.279l-.118-.138-5.497-5.431z",
@@ -1422,7 +1381,6 @@ var Blocklets = function Blocklets(props) {
1422
1381
  })
1423
1382
  }));
1424
1383
  };
1425
- exports.Blocklets = Blocklets;
1426
1384
  Blocklets.defaultProps = {
1427
1385
  width: "32",
1428
1386
  height: "32",
@@ -1430,7 +1388,7 @@ Blocklets.defaultProps = {
1430
1388
  fill: "none",
1431
1389
  xmlns: "http://www.w3.org/2000/svg"
1432
1390
  };
1433
- var CodeFolder = function CodeFolder(props) {
1391
+ var CodeFolder = exports.CodeFolder = function CodeFolder(props) {
1434
1392
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
1435
1393
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1436
1394
  fillRule: "evenodd",
@@ -1445,7 +1403,6 @@ var CodeFolder = function CodeFolder(props) {
1445
1403
  })]
1446
1404
  }));
1447
1405
  };
1448
- exports.CodeFolder = CodeFolder;
1449
1406
  CodeFolder.defaultProps = {
1450
1407
  width: "32",
1451
1408
  height: "32",
@@ -1453,7 +1410,7 @@ CodeFolder.defaultProps = {
1453
1410
  fill: "none",
1454
1411
  xmlns: "http://www.w3.org/2000/svg"
1455
1412
  };
1456
- var Dashboard = function Dashboard(props) {
1413
+ var Dashboard = exports.Dashboard = function Dashboard(props) {
1457
1414
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
1458
1415
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1459
1416
  fillRule: "evenodd",
@@ -1463,7 +1420,6 @@ var Dashboard = function Dashboard(props) {
1463
1420
  })
1464
1421
  }));
1465
1422
  };
1466
- exports.Dashboard = Dashboard;
1467
1423
  Dashboard.defaultProps = {
1468
1424
  width: "32",
1469
1425
  height: "32",
@@ -1471,7 +1427,7 @@ Dashboard.defaultProps = {
1471
1427
  fill: "none",
1472
1428
  xmlns: "http://www.w3.org/2000/svg"
1473
1429
  };
1474
- var Log = function Log(props) {
1430
+ var Log = exports.Log = function Log(props) {
1475
1431
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
1476
1432
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1477
1433
  fillRule: "evenodd",
@@ -1481,7 +1437,6 @@ var Log = function Log(props) {
1481
1437
  })
1482
1438
  }));
1483
1439
  };
1484
- exports.Log = Log;
1485
1440
  Log.defaultProps = {
1486
1441
  width: "32",
1487
1442
  height: "32",
@@ -1489,7 +1444,7 @@ Log.defaultProps = {
1489
1444
  fill: "none",
1490
1445
  xmlns: "http://www.w3.org/2000/svg"
1491
1446
  };
1492
- var Setting = function Setting(props) {
1447
+ var Setting = exports.Setting = function Setting(props) {
1493
1448
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
1494
1449
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1495
1450
  fillRule: "evenodd",
@@ -1499,7 +1454,6 @@ var Setting = function Setting(props) {
1499
1454
  })
1500
1455
  }));
1501
1456
  };
1502
- exports.Setting = Setting;
1503
1457
  Setting.defaultProps = {
1504
1458
  width: "32",
1505
1459
  height: "32",
@@ -1507,7 +1461,7 @@ Setting.defaultProps = {
1507
1461
  fill: "none",
1508
1462
  xmlns: "http://www.w3.org/2000/svg"
1509
1463
  };
1510
- var Store = function Store(props) {
1464
+ var Store = exports.Store = function Store(props) {
1511
1465
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
1512
1466
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1513
1467
  d: "M30.4 12.034v-.056a.582.582 0 0 1-.014-.069v-.041c-.014-.028-.014-.056-.027-.083v-.028l-1.98-6.95A2.243 2.243 0 0 0 26.245 3.2H5.754a2.243 2.243 0 0 0-2.132 1.606l-1.98 6.95v.029c-.014.027-.014.055-.028.083v.041a.594.594 0 0 1-.014.07v2.298a5.538 5.538 0 0 0 2.215 4.43v8.862a2.216 2.216 0 0 0 2.216 2.216h19.938a2.215 2.215 0 0 0 2.216-2.216v-8.861a5.537 5.537 0 0 0 2.215-4.431v-2.243zM5.754 5.415h20.492l1.579 5.539H4.175l1.579-5.539zm6.923 7.754h6.646v1.108a3.323 3.323 0 1 1-6.646 0v-1.108zm-2.216 0v1.108a3.323 3.323 0 0 1-4.86 2.95 1.201 1.201 0 0 0-.249-.153 3.31 3.31 0 0 1-1.537-2.797v-1.108h6.646zm15.508 14.4H6.031v-7.864a5.539 5.539 0 0 0 5.538-2.105 5.538 5.538 0 0 0 8.862 0 5.537 5.537 0 0 0 5.538 2.105v7.864zm.679-10.495a1.2 1.2 0 0 0-.25.152 3.323 3.323 0 0 1-4.86-2.95V13.17h6.647v1.108a3.31 3.31 0 0 1-1.537 2.797z",
@@ -1515,7 +1469,6 @@ var Store = function Store(props) {
1515
1469
  })
1516
1470
  }));
1517
1471
  };
1518
- exports.Store = Store;
1519
1472
  Store.defaultProps = {
1520
1473
  width: "32",
1521
1474
  height: "32",
@@ -1523,7 +1476,7 @@ Store.defaultProps = {
1523
1476
  fill: "none",
1524
1477
  xmlns: "http://www.w3.org/2000/svg"
1525
1478
  };
1526
- var Team = function Team(props) {
1479
+ var Team = exports.Team = function Team(props) {
1527
1480
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
1528
1481
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1529
1482
  fillRule: "evenodd",
@@ -1533,7 +1486,6 @@ var Team = function Team(props) {
1533
1486
  })
1534
1487
  }));
1535
1488
  };
1536
- exports.Team = Team;
1537
1489
  Team.defaultProps = {
1538
1490
  width: "32",
1539
1491
  height: "32",
@@ -1541,7 +1493,7 @@ Team.defaultProps = {
1541
1493
  fill: "none",
1542
1494
  xmlns: "http://www.w3.org/2000/svg"
1543
1495
  };
1544
- var Approve = function Approve(props) {
1496
+ var Approve = exports.Approve = function Approve(props) {
1545
1497
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
1546
1498
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1547
1499
  fillRule: "evenodd",
@@ -1554,14 +1506,13 @@ var Approve = function Approve(props) {
1554
1506
  })]
1555
1507
  }));
1556
1508
  };
1557
- exports.Approve = Approve;
1558
1509
  Approve.defaultProps = {
1559
1510
  width: "32",
1560
1511
  height: "32",
1561
1512
  viewBox: "0 0 32 32",
1562
1513
  xmlns: "http://www.w3.org/2000/svg"
1563
1514
  };
1564
- var Circles = function Circles(props) {
1515
+ var Circles = exports.Circles = function Circles(props) {
1565
1516
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
1566
1517
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1567
1518
  fillRule: "evenodd",
@@ -1571,14 +1522,13 @@ var Circles = function Circles(props) {
1571
1522
  })
1572
1523
  }));
1573
1524
  };
1574
- exports.Circles = Circles;
1575
1525
  Circles.defaultProps = {
1576
1526
  width: "33",
1577
1527
  height: "33",
1578
1528
  viewBox: "0 0 33 33",
1579
1529
  xmlns: "http://www.w3.org/2000/svg"
1580
1530
  };
1581
- var Key = function Key(props) {
1531
+ var Key = exports.Key = function Key(props) {
1582
1532
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
1583
1533
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1584
1534
  fillRule: "evenodd",
@@ -1593,14 +1543,13 @@ var Key = function Key(props) {
1593
1543
  })]
1594
1544
  }));
1595
1545
  };
1596
- exports.Key = Key;
1597
1546
  Key.defaultProps = {
1598
1547
  width: "32",
1599
1548
  height: "32",
1600
1549
  viewBox: "0 0 32 32",
1601
1550
  xmlns: "http://www.w3.org/2000/svg"
1602
1551
  };
1603
- var Label = function Label(props) {
1552
+ var Label = exports.Label = function Label(props) {
1604
1553
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
1605
1554
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("g", {
1606
1555
  clipPath: "url(#clip0_802_356)",
@@ -1622,14 +1571,13 @@ var Label = function Label(props) {
1622
1571
  })]
1623
1572
  }));
1624
1573
  };
1625
- exports.Label = Label;
1626
1574
  Label.defaultProps = {
1627
1575
  width: "33",
1628
1576
  height: "32",
1629
1577
  viewBox: "0 0 33 32",
1630
1578
  xmlns: "http://www.w3.org/2000/svg"
1631
1579
  };
1632
- var Plan = function Plan(props) {
1580
+ var Plan = exports.Plan = function Plan(props) {
1633
1581
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
1634
1582
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1635
1583
  fillRule: "evenodd",
@@ -1639,14 +1587,13 @@ var Plan = function Plan(props) {
1639
1587
  })
1640
1588
  }));
1641
1589
  };
1642
- exports.Plan = Plan;
1643
1590
  Plan.defaultProps = {
1644
1591
  width: "32",
1645
1592
  height: "32",
1646
1593
  viewBox: "0 0 32 32",
1647
1594
  xmlns: "http://www.w3.org/2000/svg"
1648
1595
  };
1649
- var Server = function Server(props) {
1596
+ var Server = exports.Server = function Server(props) {
1650
1597
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
1651
1598
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1652
1599
  fillRule: "evenodd",
@@ -1659,14 +1606,13 @@ var Server = function Server(props) {
1659
1606
  })]
1660
1607
  }));
1661
1608
  };
1662
- exports.Server = Server;
1663
1609
  Server.defaultProps = {
1664
1610
  width: "32",
1665
1611
  height: "32",
1666
1612
  viewBox: "0 0 32 32",
1667
1613
  xmlns: "http://www.w3.org/2000/svg"
1668
1614
  };
1669
- var Globe = function Globe(props) {
1615
+ var Globe = exports.Globe = function Globe(props) {
1670
1616
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
1671
1617
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1672
1618
  fillRule: "evenodd",
@@ -1676,14 +1622,13 @@ var Globe = function Globe(props) {
1676
1622
  })
1677
1623
  }));
1678
1624
  };
1679
- exports.Globe = Globe;
1680
1625
  Globe.defaultProps = {
1681
1626
  width: "21",
1682
1627
  height: "20",
1683
1628
  viewBox: "0 0 21 20",
1684
1629
  xmlns: "http://www.w3.org/2000/svg"
1685
1630
  };
1686
- var Notification = function Notification(props) {
1631
+ var Notification = exports.Notification = function Notification(props) {
1687
1632
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
1688
1633
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1689
1634
  fillRule: "evenodd",
@@ -1693,14 +1638,13 @@ var Notification = function Notification(props) {
1693
1638
  })
1694
1639
  }));
1695
1640
  };
1696
- exports.Notification = Notification;
1697
1641
  Notification.defaultProps = {
1698
1642
  width: "20",
1699
1643
  height: "20",
1700
1644
  viewBox: "0 0 20 20",
1701
1645
  xmlns: "http://www.w3.org/2000/svg"
1702
1646
  };
1703
- var QuestionMarkCircle = function QuestionMarkCircle(props) {
1647
+ var QuestionMarkCircle = exports.QuestionMarkCircle = function QuestionMarkCircle(props) {
1704
1648
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
1705
1649
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1706
1650
  d: "M9.928 13.133a.981.981 0 0 0-.678.252.79.79 0 0 0-.281.61c0 .27.094.482.283.636.19.154.41.231.663.231.257 0 .48-.076.673-.228.19-.153.287-.365.287-.639a.796.796 0 0 0-.275-.61.958.958 0 0 0-.672-.252zM12.633 7.2a2.526 2.526 0 0 0-1.035-.88c-.441-.212-.955-.32-1.528-.32-.617 0-1.166.129-1.63.383-.467.255-.826.582-1.07.972-.245.392-.37.786-.37 1.172 0 .205.086.397.254.57.169.174.38.262.625.262.419 0 .705-.246.85-.729.132-.399.296-.703.485-.905.177-.19.465-.286.856-.286.336 0 .602.095.813.29.208.191.309.42.309.698a.78.78 0 0 1-.1.387c-.07.125-.156.24-.258.342-.108.109-.287.27-.53.484a9.184 9.184 0 0 0-.679.647 2.268 2.268 0 0 0-.42.656 2.27 2.27 0 0 0-.159.884c0 .288.08.511.24.663.156.15.352.227.58.227.439 0 .714-.24.796-.687.041-.186.073-.316.094-.39.019-.067.046-.136.081-.205.034-.068.089-.144.162-.227.076-.088.179-.19.305-.306.472-.422.805-.727.99-.908.19-.186.356-.41.493-.665A1.9 1.9 0 0 0 13 8.416a2.18 2.18 0 0 0-.367-1.217",
@@ -1713,14 +1657,13 @@ var QuestionMarkCircle = function QuestionMarkCircle(props) {
1713
1657
  })]
1714
1658
  }));
1715
1659
  };
1716
- exports.QuestionMarkCircle = QuestionMarkCircle;
1717
1660
  QuestionMarkCircle.defaultProps = {
1718
1661
  width: "20",
1719
1662
  height: "20",
1720
1663
  viewBox: "0 0 20 20",
1721
1664
  xmlns: "http://www.w3.org/2000/svg"
1722
1665
  };
1723
- var Account = function Account(props) {
1666
+ var Account = exports.Account = function Account(props) {
1724
1667
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
1725
1668
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1726
1669
  fillRule: "evenodd",
@@ -1730,7 +1673,6 @@ var Account = function Account(props) {
1730
1673
  })
1731
1674
  }));
1732
1675
  };
1733
- exports.Account = Account;
1734
1676
  Account.defaultProps = {
1735
1677
  width: "14",
1736
1678
  height: "14",
@@ -1738,7 +1680,7 @@ Account.defaultProps = {
1738
1680
  fill: "none",
1739
1681
  xmlns: "http://www.w3.org/2000/svg"
1740
1682
  };
1741
- var EmptyIcon = function EmptyIcon(props) {
1683
+ var EmptyIcon = exports.EmptyIcon = function EmptyIcon(props) {
1742
1684
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
1743
1685
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
1744
1686
  fillRule: "evenodd",
@@ -1748,7 +1690,6 @@ var EmptyIcon = function EmptyIcon(props) {
1748
1690
  })
1749
1691
  }));
1750
1692
  };
1751
- exports.EmptyIcon = EmptyIcon;
1752
1693
  EmptyIcon.defaultProps = {
1753
1694
  width: "32",
1754
1695
  height: "32",