@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.d.mts
CHANGED
|
@@ -7,6 +7,8 @@ declare const GoogleIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGEl
|
|
|
7
7
|
|
|
8
8
|
declare const TwitterIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
9
9
|
|
|
10
|
+
declare const AppleIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
|
|
10
12
|
declare const BeamIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
11
13
|
|
|
12
14
|
declare const BeamNetworkIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
@@ -65,4 +67,6 @@ declare const TooltipIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGE
|
|
|
65
67
|
|
|
66
68
|
declare const UploadIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
67
69
|
|
|
68
|
-
|
|
70
|
+
declare const TooltipGreyIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
71
|
+
|
|
72
|
+
export { AppleIcon, BackIcon, BeamIcon, BeamNetworkIcon, CloseIcon, CursorIcon, DashIcon, DiscordIcon, DownIcon, ErrorIcon, EthIcon, FriendsIcon, GoogleIcon, ImmutableIcon, LedOffIcon, LedOnIcon, LoaderIcon, MenuIcon, MeritCircleIcon, PasswordHideIcon, PasswordShowIcon, PlusIcon, QrCodeIcon, RefreshIcon, SettingsIcon, SoundOffIcon, SoundOnIcon, SuccessIcon, SwapIcon, TooltipGreyIcon, TooltipIcon, TwitterIcon, UploadIcon, UsdcIcon };
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ declare const GoogleIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGEl
|
|
|
7
7
|
|
|
8
8
|
declare const TwitterIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
9
9
|
|
|
10
|
+
declare const AppleIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
|
|
10
12
|
declare const BeamIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
11
13
|
|
|
12
14
|
declare const BeamNetworkIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
@@ -65,4 +67,6 @@ declare const TooltipIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGE
|
|
|
65
67
|
|
|
66
68
|
declare const UploadIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
67
69
|
|
|
68
|
-
|
|
70
|
+
declare const TooltipGreyIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
71
|
+
|
|
72
|
+
export { AppleIcon, BackIcon, BeamIcon, BeamNetworkIcon, CloseIcon, CursorIcon, DashIcon, DiscordIcon, DownIcon, ErrorIcon, EthIcon, FriendsIcon, GoogleIcon, ImmutableIcon, LedOffIcon, LedOnIcon, LoaderIcon, MenuIcon, MeritCircleIcon, PasswordHideIcon, PasswordShowIcon, PlusIcon, QrCodeIcon, RefreshIcon, SettingsIcon, SoundOffIcon, SoundOnIcon, SuccessIcon, SwapIcon, TooltipGreyIcon, TooltipIcon, TwitterIcon, UploadIcon, UsdcIcon };
|
package/dist/index.js
CHANGED
|
@@ -23,12 +23,14 @@ var __spreadValues = (a, b) => {
|
|
|
23
23
|
};
|
|
24
24
|
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
25
25
|
var DiscordIcon = react.forwardRef(
|
|
26
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
26
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
27
27
|
"svg",
|
|
28
28
|
__spreadProps(__spreadValues({
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
fill: "none",
|
|
31
31
|
viewBox: "0 0 24 24",
|
|
32
|
+
height,
|
|
33
|
+
width,
|
|
32
34
|
ref: svgRef
|
|
33
35
|
}, props), {
|
|
34
36
|
children: [
|
|
@@ -104,12 +106,14 @@ var DiscordIcon = react.forwardRef(
|
|
|
104
106
|
);
|
|
105
107
|
var Discord_default = DiscordIcon;
|
|
106
108
|
var GoogleIcon = react.forwardRef(
|
|
107
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
109
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
108
110
|
"svg",
|
|
109
111
|
__spreadProps(__spreadValues({
|
|
110
112
|
xmlns: "http://www.w3.org/2000/svg",
|
|
111
113
|
fill: "none",
|
|
112
114
|
viewBox: "0 0 24 24",
|
|
115
|
+
height,
|
|
116
|
+
width,
|
|
113
117
|
ref: svgRef
|
|
114
118
|
}, props), {
|
|
115
119
|
children: [
|
|
@@ -168,12 +172,14 @@ var GoogleIcon = react.forwardRef(
|
|
|
168
172
|
);
|
|
169
173
|
var Google_default = GoogleIcon;
|
|
170
174
|
var TwitterIcon = react.forwardRef(
|
|
171
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
175
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
172
176
|
"svg",
|
|
173
177
|
__spreadProps(__spreadValues({
|
|
174
178
|
xmlns: "http://www.w3.org/2000/svg",
|
|
175
179
|
fill: "none",
|
|
176
180
|
viewBox: "0 0 24 24",
|
|
181
|
+
height,
|
|
182
|
+
width,
|
|
177
183
|
ref: svgRef
|
|
178
184
|
}, props), {
|
|
179
185
|
children: [
|
|
@@ -258,13 +264,36 @@ var TwitterIcon = react.forwardRef(
|
|
|
258
264
|
)
|
|
259
265
|
);
|
|
260
266
|
var Twitter_default = TwitterIcon;
|
|
267
|
+
var AppleIcon = react.forwardRef(
|
|
268
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
269
|
+
"svg",
|
|
270
|
+
__spreadProps(__spreadValues({
|
|
271
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
272
|
+
viewBox: "0 0 814 1000",
|
|
273
|
+
height,
|
|
274
|
+
width,
|
|
275
|
+
ref: svgRef
|
|
276
|
+
}, props), {
|
|
277
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
278
|
+
"path",
|
|
279
|
+
{
|
|
280
|
+
fill: "currentColor",
|
|
281
|
+
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"
|
|
282
|
+
}
|
|
283
|
+
)
|
|
284
|
+
})
|
|
285
|
+
)
|
|
286
|
+
);
|
|
287
|
+
var Apple_default = AppleIcon;
|
|
261
288
|
var BeamIcon = react.forwardRef(
|
|
262
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
289
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
263
290
|
"svg",
|
|
264
291
|
__spreadProps(__spreadValues({
|
|
265
292
|
xmlns: "http://www.w3.org/2000/svg",
|
|
266
293
|
fill: "none",
|
|
267
294
|
viewBox: "0 0 40 40",
|
|
295
|
+
height,
|
|
296
|
+
width,
|
|
268
297
|
ref: svgRef
|
|
269
298
|
}, props), {
|
|
270
299
|
children: [
|
|
@@ -385,13 +414,15 @@ var BeamIcon = react.forwardRef(
|
|
|
385
414
|
);
|
|
386
415
|
var Beam_default = BeamIcon;
|
|
387
416
|
var BeamNetworkIcon = react.forwardRef(
|
|
388
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
417
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
389
418
|
"svg",
|
|
390
419
|
__spreadProps(__spreadValues({
|
|
391
420
|
xmlns: "http://www.w3.org/2000/svg",
|
|
392
421
|
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
393
422
|
fill: "none",
|
|
394
423
|
viewBox: "0 0 40 40",
|
|
424
|
+
height,
|
|
425
|
+
width,
|
|
395
426
|
ref: svgRef
|
|
396
427
|
}, props), {
|
|
397
428
|
children: [
|
|
@@ -435,12 +466,14 @@ var BeamNetworkIcon = react.forwardRef(
|
|
|
435
466
|
);
|
|
436
467
|
var BeamNetwork_default = BeamNetworkIcon;
|
|
437
468
|
var EthIcon = react.forwardRef(
|
|
438
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
469
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
439
470
|
"svg",
|
|
440
471
|
__spreadProps(__spreadValues({
|
|
441
472
|
xmlns: "http://www.w3.org/2000/svg",
|
|
442
473
|
fill: "none",
|
|
443
474
|
viewBox: "0 0 40 40",
|
|
475
|
+
height,
|
|
476
|
+
width,
|
|
444
477
|
ref: svgRef
|
|
445
478
|
}, props), {
|
|
446
479
|
children: [
|
|
@@ -494,12 +527,14 @@ var EthIcon = react.forwardRef(
|
|
|
494
527
|
);
|
|
495
528
|
var Eth_default = EthIcon;
|
|
496
529
|
var ImmutableIcon = react.forwardRef(
|
|
497
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
530
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
498
531
|
"svg",
|
|
499
532
|
__spreadProps(__spreadValues({
|
|
500
533
|
xmlns: "http://www.w3.org/2000/svg",
|
|
501
534
|
fill: "none",
|
|
502
535
|
viewBox: "0 0 40 40",
|
|
536
|
+
height,
|
|
537
|
+
width,
|
|
503
538
|
ref: svgRef
|
|
504
539
|
}, props), {
|
|
505
540
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -514,12 +549,14 @@ var ImmutableIcon = react.forwardRef(
|
|
|
514
549
|
);
|
|
515
550
|
var Immutable_default = ImmutableIcon;
|
|
516
551
|
var MeritCircleIcon = react.forwardRef(
|
|
517
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
552
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
518
553
|
"svg",
|
|
519
554
|
__spreadProps(__spreadValues({
|
|
520
555
|
xmlns: "http://www.w3.org/2000/svg",
|
|
521
556
|
fill: "none",
|
|
522
557
|
viewBox: "0 0 40 40",
|
|
558
|
+
height,
|
|
559
|
+
width,
|
|
523
560
|
ref: svgRef
|
|
524
561
|
}, props), {
|
|
525
562
|
children: [
|
|
@@ -627,12 +664,14 @@ var MeritCircleIcon = react.forwardRef(
|
|
|
627
664
|
);
|
|
628
665
|
var MeritCircle_default = MeritCircleIcon;
|
|
629
666
|
var UsdcIcon = react.forwardRef(
|
|
630
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
667
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
631
668
|
"svg",
|
|
632
669
|
__spreadProps(__spreadValues({
|
|
633
670
|
xmlns: "http://www.w3.org/2000/svg",
|
|
634
671
|
fill: "none",
|
|
635
672
|
viewBox: "0 0 40 40",
|
|
673
|
+
height,
|
|
674
|
+
width,
|
|
636
675
|
ref: svgRef
|
|
637
676
|
}, props), {
|
|
638
677
|
children: [
|
|
@@ -666,12 +705,14 @@ var UsdcIcon = react.forwardRef(
|
|
|
666
705
|
);
|
|
667
706
|
var Usdc_default = UsdcIcon;
|
|
668
707
|
var BackIcon = react.forwardRef(
|
|
669
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
708
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
670
709
|
"svg",
|
|
671
710
|
__spreadProps(__spreadValues({
|
|
672
711
|
xmlns: "http://www.w3.org/2000/svg",
|
|
673
712
|
fill: "none",
|
|
674
713
|
viewBox: "0 0 24 24",
|
|
714
|
+
height,
|
|
715
|
+
width,
|
|
675
716
|
ref: svgRef
|
|
676
717
|
}, props), {
|
|
677
718
|
children: [
|
|
@@ -711,12 +752,14 @@ var BackIcon = react.forwardRef(
|
|
|
711
752
|
);
|
|
712
753
|
var Back_default = BackIcon;
|
|
713
754
|
var CloseIcon = react.forwardRef(
|
|
714
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
755
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
715
756
|
"svg",
|
|
716
757
|
__spreadProps(__spreadValues({
|
|
717
758
|
xmlns: "http://www.w3.org/2000/svg",
|
|
718
759
|
fill: "none",
|
|
719
760
|
viewBox: "0 0 24 24",
|
|
761
|
+
height,
|
|
762
|
+
width,
|
|
720
763
|
ref: svgRef
|
|
721
764
|
}, props), {
|
|
722
765
|
children: [
|
|
@@ -804,12 +847,14 @@ var CloseIcon = react.forwardRef(
|
|
|
804
847
|
);
|
|
805
848
|
var Close_default = CloseIcon;
|
|
806
849
|
var CursorIcon = react.forwardRef(
|
|
807
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
850
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
808
851
|
"svg",
|
|
809
852
|
__spreadProps(__spreadValues({
|
|
810
853
|
xmlns: "http://www.w3.org/2000/svg",
|
|
811
854
|
fill: "none",
|
|
812
855
|
viewBox: "0 0 24 24",
|
|
856
|
+
height,
|
|
857
|
+
width,
|
|
813
858
|
ref: svgRef
|
|
814
859
|
}, props), {
|
|
815
860
|
children: [
|
|
@@ -837,12 +882,14 @@ var CursorIcon = react.forwardRef(
|
|
|
837
882
|
);
|
|
838
883
|
var Cursor_default = CursorIcon;
|
|
839
884
|
var DashIcon = react.forwardRef(
|
|
840
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
885
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
841
886
|
"svg",
|
|
842
887
|
__spreadProps(__spreadValues({
|
|
843
888
|
xmlns: "http://www.w3.org/2000/svg",
|
|
844
889
|
fill: "none",
|
|
845
890
|
viewBox: "0 0 24 24",
|
|
891
|
+
height,
|
|
892
|
+
width,
|
|
846
893
|
ref: svgRef
|
|
847
894
|
}, props), {
|
|
848
895
|
children: [
|
|
@@ -919,12 +966,14 @@ var DashIcon = react.forwardRef(
|
|
|
919
966
|
);
|
|
920
967
|
var Dash_default = DashIcon;
|
|
921
968
|
var DownIcon = react.forwardRef(
|
|
922
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
969
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
923
970
|
"svg",
|
|
924
971
|
__spreadProps(__spreadValues({
|
|
925
972
|
xmlns: "http://www.w3.org/2000/svg",
|
|
926
973
|
fill: "none",
|
|
927
974
|
viewBox: "0 0 24 24",
|
|
975
|
+
height,
|
|
976
|
+
width,
|
|
928
977
|
ref: svgRef
|
|
929
978
|
}, props), {
|
|
930
979
|
children: [
|
|
@@ -964,12 +1013,14 @@ var DownIcon = react.forwardRef(
|
|
|
964
1013
|
);
|
|
965
1014
|
var Down_default = DownIcon;
|
|
966
1015
|
var ErrorIcon = react.forwardRef(
|
|
967
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1016
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
968
1017
|
"svg",
|
|
969
1018
|
__spreadProps(__spreadValues({
|
|
970
1019
|
xmlns: "http://www.w3.org/2000/svg",
|
|
971
1020
|
fill: "none",
|
|
972
1021
|
viewBox: "0 0 24 24",
|
|
1022
|
+
height,
|
|
1023
|
+
width,
|
|
973
1024
|
ref: svgRef
|
|
974
1025
|
}, props), {
|
|
975
1026
|
children: [
|
|
@@ -989,12 +1040,14 @@ var ErrorIcon = react.forwardRef(
|
|
|
989
1040
|
);
|
|
990
1041
|
var Error_default = ErrorIcon;
|
|
991
1042
|
var FriendsIcon = react.forwardRef(
|
|
992
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1043
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
993
1044
|
"svg",
|
|
994
1045
|
__spreadProps(__spreadValues({
|
|
995
1046
|
xmlns: "http://www.w3.org/2000/svg",
|
|
996
1047
|
fill: "none",
|
|
997
1048
|
viewBox: "0 0 28 26",
|
|
1049
|
+
height,
|
|
1050
|
+
width,
|
|
998
1051
|
ref: svgRef
|
|
999
1052
|
}, props), {
|
|
1000
1053
|
children: [
|
|
@@ -1059,12 +1112,14 @@ var FriendsIcon = react.forwardRef(
|
|
|
1059
1112
|
);
|
|
1060
1113
|
var Friends_default = FriendsIcon;
|
|
1061
1114
|
var LedOffIcon = react.forwardRef(
|
|
1062
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1115
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1063
1116
|
"svg",
|
|
1064
1117
|
__spreadProps(__spreadValues({
|
|
1065
1118
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1066
1119
|
fill: "none",
|
|
1067
1120
|
viewBox: "0 0 16 16",
|
|
1121
|
+
height,
|
|
1122
|
+
width,
|
|
1068
1123
|
ref: svgRef
|
|
1069
1124
|
}, props), {
|
|
1070
1125
|
children: [
|
|
@@ -1136,12 +1191,14 @@ var LedOffIcon = react.forwardRef(
|
|
|
1136
1191
|
);
|
|
1137
1192
|
var LedOff_default = LedOffIcon;
|
|
1138
1193
|
var LedOnIcon = react.forwardRef(
|
|
1139
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1194
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1140
1195
|
"svg",
|
|
1141
1196
|
__spreadProps(__spreadValues({
|
|
1142
1197
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1143
1198
|
fill: "none",
|
|
1144
1199
|
viewBox: "0 0 16 16",
|
|
1200
|
+
height,
|
|
1201
|
+
width,
|
|
1145
1202
|
ref: svgRef
|
|
1146
1203
|
}, props), {
|
|
1147
1204
|
children: [
|
|
@@ -1213,13 +1270,15 @@ var LedOnIcon = react.forwardRef(
|
|
|
1213
1270
|
);
|
|
1214
1271
|
var LedOn_default = LedOnIcon;
|
|
1215
1272
|
var LoaderIcon = react.forwardRef(
|
|
1216
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1273
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1217
1274
|
"svg",
|
|
1218
1275
|
__spreadProps(__spreadValues({
|
|
1219
1276
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1220
1277
|
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
1221
1278
|
fill: "none",
|
|
1222
1279
|
viewBox: "0 0 24 24",
|
|
1280
|
+
height,
|
|
1281
|
+
width,
|
|
1223
1282
|
ref: svgRef
|
|
1224
1283
|
}, props), {
|
|
1225
1284
|
children: [
|
|
@@ -1257,12 +1316,14 @@ var LoaderIcon = react.forwardRef(
|
|
|
1257
1316
|
);
|
|
1258
1317
|
var Loader_default = LoaderIcon;
|
|
1259
1318
|
var MenuIcon = react.forwardRef(
|
|
1260
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1319
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1261
1320
|
"svg",
|
|
1262
1321
|
__spreadProps(__spreadValues({
|
|
1263
1322
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1264
1323
|
fill: "none",
|
|
1265
1324
|
viewBox: "0 0 24 24",
|
|
1325
|
+
height,
|
|
1326
|
+
width,
|
|
1266
1327
|
ref: svgRef
|
|
1267
1328
|
}, props), {
|
|
1268
1329
|
children: [
|
|
@@ -1336,12 +1397,14 @@ var MenuIcon = react.forwardRef(
|
|
|
1336
1397
|
);
|
|
1337
1398
|
var Menu_default = MenuIcon;
|
|
1338
1399
|
var PasswordHideIcon = react.forwardRef(
|
|
1339
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1400
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1340
1401
|
"svg",
|
|
1341
1402
|
__spreadProps(__spreadValues({
|
|
1342
1403
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1343
1404
|
fill: "none",
|
|
1344
1405
|
viewBox: "0 0 24 24",
|
|
1406
|
+
height,
|
|
1407
|
+
width,
|
|
1345
1408
|
ref: svgRef
|
|
1346
1409
|
}, props), {
|
|
1347
1410
|
children: [
|
|
@@ -1404,12 +1467,14 @@ var PasswordHideIcon = react.forwardRef(
|
|
|
1404
1467
|
);
|
|
1405
1468
|
var PasswordHide_default = PasswordHideIcon;
|
|
1406
1469
|
var PasswordShowIcon = react.forwardRef(
|
|
1407
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1470
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1408
1471
|
"svg",
|
|
1409
1472
|
__spreadProps(__spreadValues({
|
|
1410
1473
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1411
1474
|
fill: "none",
|
|
1412
1475
|
viewBox: "0 0 24 24",
|
|
1476
|
+
height,
|
|
1477
|
+
width,
|
|
1413
1478
|
ref: svgRef
|
|
1414
1479
|
}, props), {
|
|
1415
1480
|
children: [
|
|
@@ -1472,12 +1537,14 @@ var PasswordShowIcon = react.forwardRef(
|
|
|
1472
1537
|
);
|
|
1473
1538
|
var PasswordShow_default = PasswordShowIcon;
|
|
1474
1539
|
var PlusIcon = react.forwardRef(
|
|
1475
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1540
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1476
1541
|
"svg",
|
|
1477
1542
|
__spreadProps(__spreadValues({
|
|
1478
1543
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1479
1544
|
fill: "none",
|
|
1480
1545
|
viewBox: "0 0 24 24",
|
|
1546
|
+
height,
|
|
1547
|
+
width,
|
|
1481
1548
|
ref: svgRef
|
|
1482
1549
|
}, props), {
|
|
1483
1550
|
children: [
|
|
@@ -1554,12 +1621,14 @@ var PlusIcon = react.forwardRef(
|
|
|
1554
1621
|
);
|
|
1555
1622
|
var Plus_default = PlusIcon;
|
|
1556
1623
|
var QrCodeIcon = react.forwardRef(
|
|
1557
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1624
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1558
1625
|
"svg",
|
|
1559
1626
|
__spreadProps(__spreadValues({
|
|
1560
1627
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1561
1628
|
fill: "none",
|
|
1562
1629
|
viewBox: "0 0 24 24",
|
|
1630
|
+
height,
|
|
1631
|
+
width,
|
|
1563
1632
|
ref: svgRef
|
|
1564
1633
|
}, props), {
|
|
1565
1634
|
children: [
|
|
@@ -1621,12 +1690,14 @@ var QrCodeIcon = react.forwardRef(
|
|
|
1621
1690
|
);
|
|
1622
1691
|
var QrCode_default = QrCodeIcon;
|
|
1623
1692
|
var RefreshIcon = react.forwardRef(
|
|
1624
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1693
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1625
1694
|
"svg",
|
|
1626
1695
|
__spreadProps(__spreadValues({
|
|
1627
1696
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1628
1697
|
fill: "none",
|
|
1629
1698
|
viewBox: "0 0 24 24",
|
|
1699
|
+
height,
|
|
1700
|
+
width,
|
|
1630
1701
|
ref: svgRef
|
|
1631
1702
|
}, props), {
|
|
1632
1703
|
children: [
|
|
@@ -1689,12 +1760,14 @@ var RefreshIcon = react.forwardRef(
|
|
|
1689
1760
|
);
|
|
1690
1761
|
var Refresh_default = RefreshIcon;
|
|
1691
1762
|
var SettingsIcon = react.forwardRef(
|
|
1692
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1763
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1693
1764
|
"svg",
|
|
1694
1765
|
__spreadProps(__spreadValues({
|
|
1695
1766
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1696
1767
|
fill: "none",
|
|
1697
1768
|
viewBox: "0 0 24 24",
|
|
1769
|
+
height,
|
|
1770
|
+
width,
|
|
1698
1771
|
ref: svgRef
|
|
1699
1772
|
}, props), {
|
|
1700
1773
|
children: [
|
|
@@ -1762,12 +1835,14 @@ var SettingsIcon = react.forwardRef(
|
|
|
1762
1835
|
);
|
|
1763
1836
|
var Settings_default = SettingsIcon;
|
|
1764
1837
|
var SoundOffIcon = react.forwardRef(
|
|
1765
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1838
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1766
1839
|
"svg",
|
|
1767
1840
|
__spreadProps(__spreadValues({
|
|
1768
1841
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1769
1842
|
fill: "none",
|
|
1770
1843
|
viewBox: "0 0 24 24",
|
|
1844
|
+
height,
|
|
1845
|
+
width,
|
|
1771
1846
|
ref: svgRef
|
|
1772
1847
|
}, props), {
|
|
1773
1848
|
children: [
|
|
@@ -1850,12 +1925,14 @@ var SoundOffIcon = react.forwardRef(
|
|
|
1850
1925
|
);
|
|
1851
1926
|
var SoundOff_default = SoundOffIcon;
|
|
1852
1927
|
var SoundOnIcon = react.forwardRef(
|
|
1853
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1928
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1854
1929
|
"svg",
|
|
1855
1930
|
__spreadProps(__spreadValues({
|
|
1856
1931
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1857
1932
|
fill: "none",
|
|
1858
1933
|
viewBox: "0 0 24 24",
|
|
1934
|
+
height,
|
|
1935
|
+
width,
|
|
1859
1936
|
ref: svgRef
|
|
1860
1937
|
}, props), {
|
|
1861
1938
|
children: [
|
|
@@ -1927,12 +2004,14 @@ var SoundOnIcon = react.forwardRef(
|
|
|
1927
2004
|
);
|
|
1928
2005
|
var SoundOn_default = SoundOnIcon;
|
|
1929
2006
|
var SuccessIcon = react.forwardRef(
|
|
1930
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2007
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1931
2008
|
"svg",
|
|
1932
2009
|
__spreadProps(__spreadValues({
|
|
1933
2010
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1934
2011
|
fill: "none",
|
|
1935
2012
|
viewBox: "0 0 24 24",
|
|
2013
|
+
height,
|
|
2014
|
+
width,
|
|
1936
2015
|
ref: svgRef
|
|
1937
2016
|
}, props), {
|
|
1938
2017
|
children: [
|
|
@@ -1952,12 +2031,14 @@ var SuccessIcon = react.forwardRef(
|
|
|
1952
2031
|
);
|
|
1953
2032
|
var Success_default = SuccessIcon;
|
|
1954
2033
|
var SwapIcon = react.forwardRef(
|
|
1955
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2034
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1956
2035
|
"svg",
|
|
1957
2036
|
__spreadProps(__spreadValues({
|
|
1958
2037
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1959
2038
|
fill: "none",
|
|
1960
2039
|
viewBox: "0 0 24 24",
|
|
2040
|
+
height,
|
|
2041
|
+
width,
|
|
1961
2042
|
ref: svgRef
|
|
1962
2043
|
}, props), {
|
|
1963
2044
|
children: [
|
|
@@ -2029,12 +2110,14 @@ var SwapIcon = react.forwardRef(
|
|
|
2029
2110
|
);
|
|
2030
2111
|
var Swap_default = SwapIcon;
|
|
2031
2112
|
var TooltipIcon = react.forwardRef(
|
|
2032
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2113
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2033
2114
|
"svg",
|
|
2034
2115
|
__spreadProps(__spreadValues({
|
|
2035
2116
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2036
2117
|
fill: "none",
|
|
2037
2118
|
viewBox: "0 0 24 24",
|
|
2119
|
+
height,
|
|
2120
|
+
width,
|
|
2038
2121
|
ref: svgRef
|
|
2039
2122
|
}, props), {
|
|
2040
2123
|
children: [
|
|
@@ -2097,12 +2180,14 @@ var TooltipIcon = react.forwardRef(
|
|
|
2097
2180
|
);
|
|
2098
2181
|
var Tooltip_default = TooltipIcon;
|
|
2099
2182
|
var UploadIcon = react.forwardRef(
|
|
2100
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2183
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2101
2184
|
"svg",
|
|
2102
2185
|
__spreadProps(__spreadValues({
|
|
2103
2186
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2104
2187
|
fill: "none",
|
|
2105
2188
|
viewBox: "0 0 24 24",
|
|
2189
|
+
height,
|
|
2190
|
+
width,
|
|
2106
2191
|
ref: svgRef
|
|
2107
2192
|
}, props), {
|
|
2108
2193
|
children: [
|
|
@@ -2133,7 +2218,78 @@ var UploadIcon = react.forwardRef(
|
|
|
2133
2218
|
)
|
|
2134
2219
|
);
|
|
2135
2220
|
var Upload_default = UploadIcon;
|
|
2221
|
+
var TooltipGreyIcon = react.forwardRef(
|
|
2222
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2223
|
+
"svg",
|
|
2224
|
+
__spreadProps(__spreadValues({
|
|
2225
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2226
|
+
fill: "none",
|
|
2227
|
+
viewBox: "0 0 16 16",
|
|
2228
|
+
height,
|
|
2229
|
+
width,
|
|
2230
|
+
ref: svgRef
|
|
2231
|
+
}, props), {
|
|
2232
|
+
children: [
|
|
2233
|
+
/* @__PURE__ */ jsxRuntime.jsxs("g", { filter: "url(#tooltipGrey_svg__tooltipGrey_svg__filter0_i_162_975)", children: [
|
|
2234
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2235
|
+
"mask",
|
|
2236
|
+
{
|
|
2237
|
+
id: "tooltipGrey_svg__a",
|
|
2238
|
+
style: {
|
|
2239
|
+
maskType: "alpha"
|
|
2240
|
+
},
|
|
2241
|
+
width: 16,
|
|
2242
|
+
height: 16,
|
|
2243
|
+
x: 0,
|
|
2244
|
+
y: 0,
|
|
2245
|
+
maskUnits: "userSpaceOnUse",
|
|
2246
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#D9D9D9", d: "M0 0h16v16H0z" })
|
|
2247
|
+
}
|
|
2248
|
+
),
|
|
2249
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", { mask: "url(#tooltipGrey_svg__a)", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2250
|
+
"path",
|
|
2251
|
+
{
|
|
2252
|
+
fill: "#6D6D6D",
|
|
2253
|
+
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"
|
|
2254
|
+
}
|
|
2255
|
+
) })
|
|
2256
|
+
] }),
|
|
2257
|
+
/* @__PURE__ */ jsxRuntime.jsx("defs", { children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2258
|
+
"filter",
|
|
2259
|
+
{
|
|
2260
|
+
id: "tooltipGrey_svg__tooltipGrey_svg__filter0_i_162_975",
|
|
2261
|
+
width: 16,
|
|
2262
|
+
height: 16.33,
|
|
2263
|
+
x: 0,
|
|
2264
|
+
y: -0.33,
|
|
2265
|
+
colorInterpolationFilters: "sRGB",
|
|
2266
|
+
filterUnits: "userSpaceOnUse",
|
|
2267
|
+
children: [
|
|
2268
|
+
/* @__PURE__ */ jsxRuntime.jsx("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }),
|
|
2269
|
+
/* @__PURE__ */ jsxRuntime.jsx("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", result: "shape" }),
|
|
2270
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2271
|
+
"feColorMatrix",
|
|
2272
|
+
{
|
|
2273
|
+
in: "SourceAlpha",
|
|
2274
|
+
result: "hardAlpha",
|
|
2275
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
2276
|
+
}
|
|
2277
|
+
),
|
|
2278
|
+
/* @__PURE__ */ jsxRuntime.jsx("feOffset", { dy: -0.67 }),
|
|
2279
|
+
/* @__PURE__ */ jsxRuntime.jsx("feGaussianBlur", { stdDeviation: 0.17 }),
|
|
2280
|
+
/* @__PURE__ */ jsxRuntime.jsx("feComposite", { in2: "hardAlpha", k2: -1, k3: 1, operator: "arithmetic" }),
|
|
2281
|
+
/* @__PURE__ */ jsxRuntime.jsx("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0" }),
|
|
2282
|
+
/* @__PURE__ */ jsxRuntime.jsx("feBlend", { in2: "shape", result: "effect1_innerShadow_162_975" })
|
|
2283
|
+
]
|
|
2284
|
+
}
|
|
2285
|
+
) })
|
|
2286
|
+
]
|
|
2287
|
+
})
|
|
2288
|
+
)
|
|
2289
|
+
);
|
|
2290
|
+
var TooltipGrey_default = TooltipGreyIcon;
|
|
2136
2291
|
|
|
2292
|
+
exports.AppleIcon = Apple_default;
|
|
2137
2293
|
exports.BackIcon = Back_default;
|
|
2138
2294
|
exports.BeamIcon = Beam_default;
|
|
2139
2295
|
exports.BeamNetworkIcon = BeamNetwork_default;
|
|
@@ -2162,6 +2318,7 @@ exports.SoundOffIcon = SoundOff_default;
|
|
|
2162
2318
|
exports.SoundOnIcon = SoundOn_default;
|
|
2163
2319
|
exports.SuccessIcon = Success_default;
|
|
2164
2320
|
exports.SwapIcon = Swap_default;
|
|
2321
|
+
exports.TooltipGreyIcon = TooltipGrey_default;
|
|
2165
2322
|
exports.TooltipIcon = Tooltip_default;
|
|
2166
2323
|
exports.TwitterIcon = Twitter_default;
|
|
2167
2324
|
exports.UploadIcon = Upload_default;
|