@onbeam/icons 1.0.0-21 → 1.0.0-23
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/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +189 -32
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +188 -33
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -21,12 +21,14 @@ var __spreadValues = (a, b) => {
|
|
|
21
21
|
};
|
|
22
22
|
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
23
23
|
var DiscordIcon = forwardRef(
|
|
24
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
24
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
25
25
|
"svg",
|
|
26
26
|
__spreadProps(__spreadValues({
|
|
27
27
|
xmlns: "http://www.w3.org/2000/svg",
|
|
28
28
|
fill: "none",
|
|
29
29
|
viewBox: "0 0 24 24",
|
|
30
|
+
height,
|
|
31
|
+
width,
|
|
30
32
|
ref: svgRef
|
|
31
33
|
}, props), {
|
|
32
34
|
children: [
|
|
@@ -102,12 +104,14 @@ var DiscordIcon = forwardRef(
|
|
|
102
104
|
);
|
|
103
105
|
var Discord_default = DiscordIcon;
|
|
104
106
|
var GoogleIcon = forwardRef(
|
|
105
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
107
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
106
108
|
"svg",
|
|
107
109
|
__spreadProps(__spreadValues({
|
|
108
110
|
xmlns: "http://www.w3.org/2000/svg",
|
|
109
111
|
fill: "none",
|
|
110
112
|
viewBox: "0 0 24 24",
|
|
113
|
+
height,
|
|
114
|
+
width,
|
|
111
115
|
ref: svgRef
|
|
112
116
|
}, props), {
|
|
113
117
|
children: [
|
|
@@ -166,12 +170,14 @@ var GoogleIcon = forwardRef(
|
|
|
166
170
|
);
|
|
167
171
|
var Google_default = GoogleIcon;
|
|
168
172
|
var TwitterIcon = forwardRef(
|
|
169
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
173
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
170
174
|
"svg",
|
|
171
175
|
__spreadProps(__spreadValues({
|
|
172
176
|
xmlns: "http://www.w3.org/2000/svg",
|
|
173
177
|
fill: "none",
|
|
174
178
|
viewBox: "0 0 24 24",
|
|
179
|
+
height,
|
|
180
|
+
width,
|
|
175
181
|
ref: svgRef
|
|
176
182
|
}, props), {
|
|
177
183
|
children: [
|
|
@@ -256,13 +262,36 @@ var TwitterIcon = forwardRef(
|
|
|
256
262
|
)
|
|
257
263
|
);
|
|
258
264
|
var Twitter_default = TwitterIcon;
|
|
265
|
+
var AppleIcon = forwardRef(
|
|
266
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsx(
|
|
267
|
+
"svg",
|
|
268
|
+
__spreadProps(__spreadValues({
|
|
269
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
270
|
+
viewBox: "0 0 814 1000",
|
|
271
|
+
height,
|
|
272
|
+
width,
|
|
273
|
+
ref: svgRef
|
|
274
|
+
}, props), {
|
|
275
|
+
children: /* @__PURE__ */ jsx(
|
|
276
|
+
"path",
|
|
277
|
+
{
|
|
278
|
+
fill: "currentColor",
|
|
279
|
+
d: "M788.1 340.9c-5.8 4.5-108.2 62.2-108.2 190.5 0 148.4 130.3 200.9 134.2 202.2-.6 3.2-20.7 71.9-68.7 141.9-42.8 61.6-87.5 123.1-155.5 123.1s-85.5-39.5-164-39.5c-76.5 0-103.7 40.8-165.9 40.8s-105.6-57-155.5-127C46.7 790.7 0 663 0 541.8c0-194.4 126.4-297.5 250.8-297.5 66.1 0 121.2 43.4 162.7 43.4 39.5 0 101.1-46 176.3-46 28.5 0 130.9 2.6 198.3 99.2zm-234-181.5c31.1-36.9 53.1-88.1 53.1-139.3 0-7.1-.6-14.3-1.9-20.1-50.6 1.9-110.8 33.7-147.1 75.8-28.5 32.4-55.1 83.6-55.1 135.5 0 7.8 1.3 15.6 1.9 18.1 3.2.6 8.4 1.3 13.6 1.3 45.4 0 102.5-30.4 135.5-71.3z"
|
|
280
|
+
}
|
|
281
|
+
)
|
|
282
|
+
})
|
|
283
|
+
)
|
|
284
|
+
);
|
|
285
|
+
var Apple_default = AppleIcon;
|
|
259
286
|
var BeamIcon = forwardRef(
|
|
260
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
287
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
261
288
|
"svg",
|
|
262
289
|
__spreadProps(__spreadValues({
|
|
263
290
|
xmlns: "http://www.w3.org/2000/svg",
|
|
264
291
|
fill: "none",
|
|
265
292
|
viewBox: "0 0 40 40",
|
|
293
|
+
height,
|
|
294
|
+
width,
|
|
266
295
|
ref: svgRef
|
|
267
296
|
}, props), {
|
|
268
297
|
children: [
|
|
@@ -383,13 +412,15 @@ var BeamIcon = forwardRef(
|
|
|
383
412
|
);
|
|
384
413
|
var Beam_default = BeamIcon;
|
|
385
414
|
var BeamNetworkIcon = forwardRef(
|
|
386
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
415
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
387
416
|
"svg",
|
|
388
417
|
__spreadProps(__spreadValues({
|
|
389
418
|
xmlns: "http://www.w3.org/2000/svg",
|
|
390
419
|
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
391
420
|
fill: "none",
|
|
392
421
|
viewBox: "0 0 40 40",
|
|
422
|
+
height,
|
|
423
|
+
width,
|
|
393
424
|
ref: svgRef
|
|
394
425
|
}, props), {
|
|
395
426
|
children: [
|
|
@@ -433,12 +464,14 @@ var BeamNetworkIcon = forwardRef(
|
|
|
433
464
|
);
|
|
434
465
|
var BeamNetwork_default = BeamNetworkIcon;
|
|
435
466
|
var EthIcon = forwardRef(
|
|
436
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
467
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
437
468
|
"svg",
|
|
438
469
|
__spreadProps(__spreadValues({
|
|
439
470
|
xmlns: "http://www.w3.org/2000/svg",
|
|
440
471
|
fill: "none",
|
|
441
472
|
viewBox: "0 0 40 40",
|
|
473
|
+
height,
|
|
474
|
+
width,
|
|
442
475
|
ref: svgRef
|
|
443
476
|
}, props), {
|
|
444
477
|
children: [
|
|
@@ -492,12 +525,14 @@ var EthIcon = forwardRef(
|
|
|
492
525
|
);
|
|
493
526
|
var Eth_default = EthIcon;
|
|
494
527
|
var ImmutableIcon = forwardRef(
|
|
495
|
-
(props, svgRef) => /* @__PURE__ */ jsx(
|
|
528
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsx(
|
|
496
529
|
"svg",
|
|
497
530
|
__spreadProps(__spreadValues({
|
|
498
531
|
xmlns: "http://www.w3.org/2000/svg",
|
|
499
532
|
fill: "none",
|
|
500
533
|
viewBox: "0 0 40 40",
|
|
534
|
+
height,
|
|
535
|
+
width,
|
|
501
536
|
ref: svgRef
|
|
502
537
|
}, props), {
|
|
503
538
|
children: /* @__PURE__ */ jsx(
|
|
@@ -512,12 +547,14 @@ var ImmutableIcon = forwardRef(
|
|
|
512
547
|
);
|
|
513
548
|
var Immutable_default = ImmutableIcon;
|
|
514
549
|
var MeritCircleIcon = forwardRef(
|
|
515
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
550
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
516
551
|
"svg",
|
|
517
552
|
__spreadProps(__spreadValues({
|
|
518
553
|
xmlns: "http://www.w3.org/2000/svg",
|
|
519
554
|
fill: "none",
|
|
520
555
|
viewBox: "0 0 40 40",
|
|
556
|
+
height,
|
|
557
|
+
width,
|
|
521
558
|
ref: svgRef
|
|
522
559
|
}, props), {
|
|
523
560
|
children: [
|
|
@@ -625,12 +662,14 @@ var MeritCircleIcon = forwardRef(
|
|
|
625
662
|
);
|
|
626
663
|
var MeritCircle_default = MeritCircleIcon;
|
|
627
664
|
var UsdcIcon = forwardRef(
|
|
628
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
665
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
629
666
|
"svg",
|
|
630
667
|
__spreadProps(__spreadValues({
|
|
631
668
|
xmlns: "http://www.w3.org/2000/svg",
|
|
632
669
|
fill: "none",
|
|
633
670
|
viewBox: "0 0 40 40",
|
|
671
|
+
height,
|
|
672
|
+
width,
|
|
634
673
|
ref: svgRef
|
|
635
674
|
}, props), {
|
|
636
675
|
children: [
|
|
@@ -664,12 +703,14 @@ var UsdcIcon = forwardRef(
|
|
|
664
703
|
);
|
|
665
704
|
var Usdc_default = UsdcIcon;
|
|
666
705
|
var BackIcon = forwardRef(
|
|
667
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
706
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
668
707
|
"svg",
|
|
669
708
|
__spreadProps(__spreadValues({
|
|
670
709
|
xmlns: "http://www.w3.org/2000/svg",
|
|
671
710
|
fill: "none",
|
|
672
711
|
viewBox: "0 0 24 24",
|
|
712
|
+
height,
|
|
713
|
+
width,
|
|
673
714
|
ref: svgRef
|
|
674
715
|
}, props), {
|
|
675
716
|
children: [
|
|
@@ -709,12 +750,14 @@ var BackIcon = forwardRef(
|
|
|
709
750
|
);
|
|
710
751
|
var Back_default = BackIcon;
|
|
711
752
|
var CloseIcon = forwardRef(
|
|
712
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
753
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
713
754
|
"svg",
|
|
714
755
|
__spreadProps(__spreadValues({
|
|
715
756
|
xmlns: "http://www.w3.org/2000/svg",
|
|
716
757
|
fill: "none",
|
|
717
758
|
viewBox: "0 0 24 24",
|
|
759
|
+
height,
|
|
760
|
+
width,
|
|
718
761
|
ref: svgRef
|
|
719
762
|
}, props), {
|
|
720
763
|
children: [
|
|
@@ -802,12 +845,14 @@ var CloseIcon = forwardRef(
|
|
|
802
845
|
);
|
|
803
846
|
var Close_default = CloseIcon;
|
|
804
847
|
var CursorIcon = forwardRef(
|
|
805
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
848
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
806
849
|
"svg",
|
|
807
850
|
__spreadProps(__spreadValues({
|
|
808
851
|
xmlns: "http://www.w3.org/2000/svg",
|
|
809
852
|
fill: "none",
|
|
810
853
|
viewBox: "0 0 24 24",
|
|
854
|
+
height,
|
|
855
|
+
width,
|
|
811
856
|
ref: svgRef
|
|
812
857
|
}, props), {
|
|
813
858
|
children: [
|
|
@@ -835,12 +880,14 @@ var CursorIcon = forwardRef(
|
|
|
835
880
|
);
|
|
836
881
|
var Cursor_default = CursorIcon;
|
|
837
882
|
var DashIcon = forwardRef(
|
|
838
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
883
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
839
884
|
"svg",
|
|
840
885
|
__spreadProps(__spreadValues({
|
|
841
886
|
xmlns: "http://www.w3.org/2000/svg",
|
|
842
887
|
fill: "none",
|
|
843
888
|
viewBox: "0 0 24 24",
|
|
889
|
+
height,
|
|
890
|
+
width,
|
|
844
891
|
ref: svgRef
|
|
845
892
|
}, props), {
|
|
846
893
|
children: [
|
|
@@ -917,12 +964,14 @@ var DashIcon = forwardRef(
|
|
|
917
964
|
);
|
|
918
965
|
var Dash_default = DashIcon;
|
|
919
966
|
var DownIcon = forwardRef(
|
|
920
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
967
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
921
968
|
"svg",
|
|
922
969
|
__spreadProps(__spreadValues({
|
|
923
970
|
xmlns: "http://www.w3.org/2000/svg",
|
|
924
971
|
fill: "none",
|
|
925
972
|
viewBox: "0 0 24 24",
|
|
973
|
+
height,
|
|
974
|
+
width,
|
|
926
975
|
ref: svgRef
|
|
927
976
|
}, props), {
|
|
928
977
|
children: [
|
|
@@ -962,12 +1011,14 @@ var DownIcon = forwardRef(
|
|
|
962
1011
|
);
|
|
963
1012
|
var Down_default = DownIcon;
|
|
964
1013
|
var ErrorIcon = forwardRef(
|
|
965
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1014
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
966
1015
|
"svg",
|
|
967
1016
|
__spreadProps(__spreadValues({
|
|
968
1017
|
xmlns: "http://www.w3.org/2000/svg",
|
|
969
1018
|
fill: "none",
|
|
970
1019
|
viewBox: "0 0 24 24",
|
|
1020
|
+
height,
|
|
1021
|
+
width,
|
|
971
1022
|
ref: svgRef
|
|
972
1023
|
}, props), {
|
|
973
1024
|
children: [
|
|
@@ -987,12 +1038,14 @@ var ErrorIcon = forwardRef(
|
|
|
987
1038
|
);
|
|
988
1039
|
var Error_default = ErrorIcon;
|
|
989
1040
|
var FriendsIcon = forwardRef(
|
|
990
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1041
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
991
1042
|
"svg",
|
|
992
1043
|
__spreadProps(__spreadValues({
|
|
993
1044
|
xmlns: "http://www.w3.org/2000/svg",
|
|
994
1045
|
fill: "none",
|
|
995
1046
|
viewBox: "0 0 28 26",
|
|
1047
|
+
height,
|
|
1048
|
+
width,
|
|
996
1049
|
ref: svgRef
|
|
997
1050
|
}, props), {
|
|
998
1051
|
children: [
|
|
@@ -1057,12 +1110,14 @@ var FriendsIcon = forwardRef(
|
|
|
1057
1110
|
);
|
|
1058
1111
|
var Friends_default = FriendsIcon;
|
|
1059
1112
|
var LedOffIcon = forwardRef(
|
|
1060
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1113
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1061
1114
|
"svg",
|
|
1062
1115
|
__spreadProps(__spreadValues({
|
|
1063
1116
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1064
1117
|
fill: "none",
|
|
1065
1118
|
viewBox: "0 0 16 16",
|
|
1119
|
+
height,
|
|
1120
|
+
width,
|
|
1066
1121
|
ref: svgRef
|
|
1067
1122
|
}, props), {
|
|
1068
1123
|
children: [
|
|
@@ -1134,12 +1189,14 @@ var LedOffIcon = forwardRef(
|
|
|
1134
1189
|
);
|
|
1135
1190
|
var LedOff_default = LedOffIcon;
|
|
1136
1191
|
var LedOnIcon = forwardRef(
|
|
1137
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1192
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1138
1193
|
"svg",
|
|
1139
1194
|
__spreadProps(__spreadValues({
|
|
1140
1195
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1141
1196
|
fill: "none",
|
|
1142
1197
|
viewBox: "0 0 16 16",
|
|
1198
|
+
height,
|
|
1199
|
+
width,
|
|
1143
1200
|
ref: svgRef
|
|
1144
1201
|
}, props), {
|
|
1145
1202
|
children: [
|
|
@@ -1211,13 +1268,15 @@ var LedOnIcon = forwardRef(
|
|
|
1211
1268
|
);
|
|
1212
1269
|
var LedOn_default = LedOnIcon;
|
|
1213
1270
|
var LoaderIcon = forwardRef(
|
|
1214
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1271
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1215
1272
|
"svg",
|
|
1216
1273
|
__spreadProps(__spreadValues({
|
|
1217
1274
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1218
1275
|
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
1219
1276
|
fill: "none",
|
|
1220
1277
|
viewBox: "0 0 24 24",
|
|
1278
|
+
height,
|
|
1279
|
+
width,
|
|
1221
1280
|
ref: svgRef
|
|
1222
1281
|
}, props), {
|
|
1223
1282
|
children: [
|
|
@@ -1255,12 +1314,14 @@ var LoaderIcon = forwardRef(
|
|
|
1255
1314
|
);
|
|
1256
1315
|
var Loader_default = LoaderIcon;
|
|
1257
1316
|
var MenuIcon = forwardRef(
|
|
1258
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1317
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1259
1318
|
"svg",
|
|
1260
1319
|
__spreadProps(__spreadValues({
|
|
1261
1320
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1262
1321
|
fill: "none",
|
|
1263
1322
|
viewBox: "0 0 24 24",
|
|
1323
|
+
height,
|
|
1324
|
+
width,
|
|
1264
1325
|
ref: svgRef
|
|
1265
1326
|
}, props), {
|
|
1266
1327
|
children: [
|
|
@@ -1334,12 +1395,14 @@ var MenuIcon = forwardRef(
|
|
|
1334
1395
|
);
|
|
1335
1396
|
var Menu_default = MenuIcon;
|
|
1336
1397
|
var PasswordHideIcon = forwardRef(
|
|
1337
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1398
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1338
1399
|
"svg",
|
|
1339
1400
|
__spreadProps(__spreadValues({
|
|
1340
1401
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1341
1402
|
fill: "none",
|
|
1342
1403
|
viewBox: "0 0 24 24",
|
|
1404
|
+
height,
|
|
1405
|
+
width,
|
|
1343
1406
|
ref: svgRef
|
|
1344
1407
|
}, props), {
|
|
1345
1408
|
children: [
|
|
@@ -1402,12 +1465,14 @@ var PasswordHideIcon = forwardRef(
|
|
|
1402
1465
|
);
|
|
1403
1466
|
var PasswordHide_default = PasswordHideIcon;
|
|
1404
1467
|
var PasswordShowIcon = forwardRef(
|
|
1405
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1468
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1406
1469
|
"svg",
|
|
1407
1470
|
__spreadProps(__spreadValues({
|
|
1408
1471
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1409
1472
|
fill: "none",
|
|
1410
1473
|
viewBox: "0 0 24 24",
|
|
1474
|
+
height,
|
|
1475
|
+
width,
|
|
1411
1476
|
ref: svgRef
|
|
1412
1477
|
}, props), {
|
|
1413
1478
|
children: [
|
|
@@ -1470,12 +1535,14 @@ var PasswordShowIcon = forwardRef(
|
|
|
1470
1535
|
);
|
|
1471
1536
|
var PasswordShow_default = PasswordShowIcon;
|
|
1472
1537
|
var PlusIcon = forwardRef(
|
|
1473
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1538
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1474
1539
|
"svg",
|
|
1475
1540
|
__spreadProps(__spreadValues({
|
|
1476
1541
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1477
1542
|
fill: "none",
|
|
1478
1543
|
viewBox: "0 0 24 24",
|
|
1544
|
+
height,
|
|
1545
|
+
width,
|
|
1479
1546
|
ref: svgRef
|
|
1480
1547
|
}, props), {
|
|
1481
1548
|
children: [
|
|
@@ -1552,12 +1619,14 @@ var PlusIcon = forwardRef(
|
|
|
1552
1619
|
);
|
|
1553
1620
|
var Plus_default = PlusIcon;
|
|
1554
1621
|
var QrCodeIcon = forwardRef(
|
|
1555
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1622
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1556
1623
|
"svg",
|
|
1557
1624
|
__spreadProps(__spreadValues({
|
|
1558
1625
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1559
1626
|
fill: "none",
|
|
1560
1627
|
viewBox: "0 0 24 24",
|
|
1628
|
+
height,
|
|
1629
|
+
width,
|
|
1561
1630
|
ref: svgRef
|
|
1562
1631
|
}, props), {
|
|
1563
1632
|
children: [
|
|
@@ -1619,12 +1688,14 @@ var QrCodeIcon = forwardRef(
|
|
|
1619
1688
|
);
|
|
1620
1689
|
var QrCode_default = QrCodeIcon;
|
|
1621
1690
|
var RefreshIcon = forwardRef(
|
|
1622
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1691
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1623
1692
|
"svg",
|
|
1624
1693
|
__spreadProps(__spreadValues({
|
|
1625
1694
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1626
1695
|
fill: "none",
|
|
1627
1696
|
viewBox: "0 0 24 24",
|
|
1697
|
+
height,
|
|
1698
|
+
width,
|
|
1628
1699
|
ref: svgRef
|
|
1629
1700
|
}, props), {
|
|
1630
1701
|
children: [
|
|
@@ -1687,12 +1758,14 @@ var RefreshIcon = forwardRef(
|
|
|
1687
1758
|
);
|
|
1688
1759
|
var Refresh_default = RefreshIcon;
|
|
1689
1760
|
var SettingsIcon = forwardRef(
|
|
1690
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1761
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1691
1762
|
"svg",
|
|
1692
1763
|
__spreadProps(__spreadValues({
|
|
1693
1764
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1694
1765
|
fill: "none",
|
|
1695
1766
|
viewBox: "0 0 24 24",
|
|
1767
|
+
height,
|
|
1768
|
+
width,
|
|
1696
1769
|
ref: svgRef
|
|
1697
1770
|
}, props), {
|
|
1698
1771
|
children: [
|
|
@@ -1760,12 +1833,14 @@ var SettingsIcon = forwardRef(
|
|
|
1760
1833
|
);
|
|
1761
1834
|
var Settings_default = SettingsIcon;
|
|
1762
1835
|
var SoundOffIcon = forwardRef(
|
|
1763
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1836
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1764
1837
|
"svg",
|
|
1765
1838
|
__spreadProps(__spreadValues({
|
|
1766
1839
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1767
1840
|
fill: "none",
|
|
1768
1841
|
viewBox: "0 0 24 24",
|
|
1842
|
+
height,
|
|
1843
|
+
width,
|
|
1769
1844
|
ref: svgRef
|
|
1770
1845
|
}, props), {
|
|
1771
1846
|
children: [
|
|
@@ -1848,12 +1923,14 @@ var SoundOffIcon = forwardRef(
|
|
|
1848
1923
|
);
|
|
1849
1924
|
var SoundOff_default = SoundOffIcon;
|
|
1850
1925
|
var SoundOnIcon = forwardRef(
|
|
1851
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
1926
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1852
1927
|
"svg",
|
|
1853
1928
|
__spreadProps(__spreadValues({
|
|
1854
1929
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1855
1930
|
fill: "none",
|
|
1856
1931
|
viewBox: "0 0 24 24",
|
|
1932
|
+
height,
|
|
1933
|
+
width,
|
|
1857
1934
|
ref: svgRef
|
|
1858
1935
|
}, props), {
|
|
1859
1936
|
children: [
|
|
@@ -1925,12 +2002,14 @@ var SoundOnIcon = forwardRef(
|
|
|
1925
2002
|
);
|
|
1926
2003
|
var SoundOn_default = SoundOnIcon;
|
|
1927
2004
|
var SuccessIcon = forwardRef(
|
|
1928
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
2005
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1929
2006
|
"svg",
|
|
1930
2007
|
__spreadProps(__spreadValues({
|
|
1931
2008
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1932
2009
|
fill: "none",
|
|
1933
2010
|
viewBox: "0 0 24 24",
|
|
2011
|
+
height,
|
|
2012
|
+
width,
|
|
1934
2013
|
ref: svgRef
|
|
1935
2014
|
}, props), {
|
|
1936
2015
|
children: [
|
|
@@ -1950,12 +2029,14 @@ var SuccessIcon = forwardRef(
|
|
|
1950
2029
|
);
|
|
1951
2030
|
var Success_default = SuccessIcon;
|
|
1952
2031
|
var SwapIcon = forwardRef(
|
|
1953
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
2032
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
1954
2033
|
"svg",
|
|
1955
2034
|
__spreadProps(__spreadValues({
|
|
1956
2035
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1957
2036
|
fill: "none",
|
|
1958
2037
|
viewBox: "0 0 24 24",
|
|
2038
|
+
height,
|
|
2039
|
+
width,
|
|
1959
2040
|
ref: svgRef
|
|
1960
2041
|
}, props), {
|
|
1961
2042
|
children: [
|
|
@@ -2027,12 +2108,14 @@ var SwapIcon = forwardRef(
|
|
|
2027
2108
|
);
|
|
2028
2109
|
var Swap_default = SwapIcon;
|
|
2029
2110
|
var TooltipIcon = forwardRef(
|
|
2030
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
2111
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
2031
2112
|
"svg",
|
|
2032
2113
|
__spreadProps(__spreadValues({
|
|
2033
2114
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2034
2115
|
fill: "none",
|
|
2035
2116
|
viewBox: "0 0 24 24",
|
|
2117
|
+
height,
|
|
2118
|
+
width,
|
|
2036
2119
|
ref: svgRef
|
|
2037
2120
|
}, props), {
|
|
2038
2121
|
children: [
|
|
@@ -2095,12 +2178,14 @@ var TooltipIcon = forwardRef(
|
|
|
2095
2178
|
);
|
|
2096
2179
|
var Tooltip_default = TooltipIcon;
|
|
2097
2180
|
var UploadIcon = forwardRef(
|
|
2098
|
-
(props, svgRef) => /* @__PURE__ */ jsxs(
|
|
2181
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
2099
2182
|
"svg",
|
|
2100
2183
|
__spreadProps(__spreadValues({
|
|
2101
2184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2102
2185
|
fill: "none",
|
|
2103
2186
|
viewBox: "0 0 24 24",
|
|
2187
|
+
height,
|
|
2188
|
+
width,
|
|
2104
2189
|
ref: svgRef
|
|
2105
2190
|
}, props), {
|
|
2106
2191
|
children: [
|
|
@@ -2131,7 +2216,77 @@ var UploadIcon = forwardRef(
|
|
|
2131
2216
|
)
|
|
2132
2217
|
);
|
|
2133
2218
|
var Upload_default = UploadIcon;
|
|
2219
|
+
var TooltipGreyIcon = forwardRef(
|
|
2220
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxs(
|
|
2221
|
+
"svg",
|
|
2222
|
+
__spreadProps(__spreadValues({
|
|
2223
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2224
|
+
fill: "none",
|
|
2225
|
+
viewBox: "0 0 16 16",
|
|
2226
|
+
height,
|
|
2227
|
+
width,
|
|
2228
|
+
ref: svgRef
|
|
2229
|
+
}, props), {
|
|
2230
|
+
children: [
|
|
2231
|
+
/* @__PURE__ */ jsxs("g", { filter: "url(#tooltipGrey_svg__tooltipGrey_svg__filter0_i_162_975)", children: [
|
|
2232
|
+
/* @__PURE__ */ jsx(
|
|
2233
|
+
"mask",
|
|
2234
|
+
{
|
|
2235
|
+
id: "tooltipGrey_svg__a",
|
|
2236
|
+
style: {
|
|
2237
|
+
maskType: "alpha"
|
|
2238
|
+
},
|
|
2239
|
+
width: 16,
|
|
2240
|
+
height: 16,
|
|
2241
|
+
x: 0,
|
|
2242
|
+
y: 0,
|
|
2243
|
+
maskUnits: "userSpaceOnUse",
|
|
2244
|
+
children: /* @__PURE__ */ jsx("path", { fill: "#D9D9D9", d: "M0 0h16v16H0z" })
|
|
2245
|
+
}
|
|
2246
|
+
),
|
|
2247
|
+
/* @__PURE__ */ jsx("g", { mask: "url(#tooltipGrey_svg__a)", children: /* @__PURE__ */ jsx(
|
|
2248
|
+
"path",
|
|
2249
|
+
{
|
|
2250
|
+
fill: "#6D6D6D",
|
|
2251
|
+
d: "M7.967 12c.233 0 .43-.08.592-.242a.805.805 0 00.241-.591c0-.234-.08-.43-.242-.592a.805.805 0 00-.591-.242c-.233 0-.43.08-.592.242a.805.805 0 00-.242.592c0 .233.081.43.242.591a.805.805 0 00.592.242zm-.6-2.567H8.6c0-.366.042-.655.125-.866.084-.211.32-.5.709-.867.288-.289.516-.564.683-.825.166-.261.25-.575.25-.942 0-.622-.228-1.1-.684-1.433-.455-.333-.994-.5-1.616-.5-.633 0-1.147.167-1.542.5-.394.333-.67.733-.825 1.2l1.1.433c.056-.2.18-.416.375-.65.195-.233.492-.35.892-.35.355 0 .622.098.8.292a.931.931 0 01.266.642c0 .222-.066.43-.2.625-.133.194-.3.375-.5.541-.488.434-.788.761-.9.984-.11.222-.166.627-.166 1.216zM8 14.667a6.492 6.492 0 01-2.6-.525 6.732 6.732 0 01-2.117-1.425A6.732 6.732 0 011.86 10.6 6.491 6.491 0 011.333 8c0-.922.175-1.789.526-2.6a6.732 6.732 0 011.425-2.117A6.73 6.73 0 015.4 1.858 6.492 6.492 0 018 1.333c.922 0 1.789.175 2.6.525.811.35 1.517.825 2.117 1.425.6.6 1.075 1.306 1.425 2.117.35.811.525 1.678.525 2.6 0 .922-.175 1.789-.525 2.6a6.732 6.732 0 01-1.425 2.117c-.6.6-1.306 1.075-2.117 1.425a6.492 6.492 0 01-2.6.525zm0-1.334c1.49 0 2.75-.516 3.784-1.55 1.033-1.033 1.55-2.294 1.55-3.783 0-1.489-.517-2.75-1.55-3.783C10.75 3.183 9.489 2.667 8 2.667c-1.489 0-2.75.516-3.783 1.55C3.184 5.25 2.667 6.51 2.667 8c0 1.489.517 2.75 1.55 3.783C5.25 12.817 6.51 13.333 8 13.333z"
|
|
2252
|
+
}
|
|
2253
|
+
) })
|
|
2254
|
+
] }),
|
|
2255
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
|
|
2256
|
+
"filter",
|
|
2257
|
+
{
|
|
2258
|
+
id: "tooltipGrey_svg__tooltipGrey_svg__filter0_i_162_975",
|
|
2259
|
+
width: 16,
|
|
2260
|
+
height: 16.33,
|
|
2261
|
+
x: 0,
|
|
2262
|
+
y: -0.33,
|
|
2263
|
+
colorInterpolationFilters: "sRGB",
|
|
2264
|
+
filterUnits: "userSpaceOnUse",
|
|
2265
|
+
children: [
|
|
2266
|
+
/* @__PURE__ */ jsx("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }),
|
|
2267
|
+
/* @__PURE__ */ jsx("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", result: "shape" }),
|
|
2268
|
+
/* @__PURE__ */ jsx(
|
|
2269
|
+
"feColorMatrix",
|
|
2270
|
+
{
|
|
2271
|
+
in: "SourceAlpha",
|
|
2272
|
+
result: "hardAlpha",
|
|
2273
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
2274
|
+
}
|
|
2275
|
+
),
|
|
2276
|
+
/* @__PURE__ */ jsx("feOffset", { dy: -0.67 }),
|
|
2277
|
+
/* @__PURE__ */ jsx("feGaussianBlur", { stdDeviation: 0.17 }),
|
|
2278
|
+
/* @__PURE__ */ jsx("feComposite", { in2: "hardAlpha", k2: -1, k3: 1, operator: "arithmetic" }),
|
|
2279
|
+
/* @__PURE__ */ jsx("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0" }),
|
|
2280
|
+
/* @__PURE__ */ jsx("feBlend", { in2: "shape", result: "effect1_innerShadow_162_975" })
|
|
2281
|
+
]
|
|
2282
|
+
}
|
|
2283
|
+
) })
|
|
2284
|
+
]
|
|
2285
|
+
})
|
|
2286
|
+
)
|
|
2287
|
+
);
|
|
2288
|
+
var TooltipGrey_default = TooltipGreyIcon;
|
|
2134
2289
|
|
|
2135
|
-
export { Back_default as BackIcon, Beam_default as BeamIcon, BeamNetwork_default as BeamNetworkIcon, Close_default as CloseIcon, Cursor_default as CursorIcon, Dash_default as DashIcon, Discord_default as DiscordIcon, Down_default as DownIcon, Error_default as ErrorIcon, Eth_default as EthIcon, Friends_default as FriendsIcon, Google_default as GoogleIcon, Immutable_default as ImmutableIcon, LedOff_default as LedOffIcon, LedOn_default as LedOnIcon, Loader_default as LoaderIcon, Menu_default as MenuIcon, MeritCircle_default as MeritCircleIcon, PasswordHide_default as PasswordHideIcon, PasswordShow_default as PasswordShowIcon, Plus_default as PlusIcon, QrCode_default as QrCodeIcon, Refresh_default as RefreshIcon, Settings_default as SettingsIcon, SoundOff_default as SoundOffIcon, SoundOn_default as SoundOnIcon, Success_default as SuccessIcon, Swap_default as SwapIcon, Tooltip_default as TooltipIcon, Twitter_default as TwitterIcon, Upload_default as UploadIcon, Usdc_default as UsdcIcon };
|
|
2290
|
+
export { Apple_default as AppleIcon, Back_default as BackIcon, Beam_default as BeamIcon, BeamNetwork_default as BeamNetworkIcon, Close_default as CloseIcon, Cursor_default as CursorIcon, Dash_default as DashIcon, Discord_default as DiscordIcon, Down_default as DownIcon, Error_default as ErrorIcon, Eth_default as EthIcon, Friends_default as FriendsIcon, Google_default as GoogleIcon, Immutable_default as ImmutableIcon, LedOff_default as LedOffIcon, LedOn_default as LedOnIcon, Loader_default as LoaderIcon, Menu_default as MenuIcon, MeritCircle_default as MeritCircleIcon, PasswordHide_default as PasswordHideIcon, PasswordShow_default as PasswordShowIcon, Plus_default as PlusIcon, QrCode_default as QrCodeIcon, Refresh_default as RefreshIcon, Settings_default as SettingsIcon, SoundOff_default as SoundOffIcon, SoundOn_default as SoundOnIcon, Success_default as SuccessIcon, Swap_default as SwapIcon, TooltipGrey_default as TooltipGreyIcon, Tooltip_default as TooltipIcon, Twitter_default as TwitterIcon, Upload_default as UploadIcon, Usdc_default as UsdcIcon };
|
|
2136
2291
|
//# sourceMappingURL=out.js.map
|
|
2137
2292
|
//# sourceMappingURL=index.mjs.map
|