@onbeam/icons 1.0.0-21 → 1.0.0-22
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +167 -32
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +167 -33
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -65,4 +65,6 @@ declare const TooltipIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGE
|
|
|
65
65
|
|
|
66
66
|
declare const UploadIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
67
67
|
|
|
68
|
-
|
|
68
|
+
declare const TooltipGreyIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
69
|
+
|
|
70
|
+
export { 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
|
@@ -65,4 +65,6 @@ declare const TooltipIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGE
|
|
|
65
65
|
|
|
66
66
|
declare const UploadIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
67
67
|
|
|
68
|
-
|
|
68
|
+
declare const TooltipGreyIcon: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
69
|
+
|
|
70
|
+
export { 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: [
|
|
@@ -259,12 +265,14 @@ var TwitterIcon = react.forwardRef(
|
|
|
259
265
|
);
|
|
260
266
|
var Twitter_default = TwitterIcon;
|
|
261
267
|
var BeamIcon = react.forwardRef(
|
|
262
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
268
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
263
269
|
"svg",
|
|
264
270
|
__spreadProps(__spreadValues({
|
|
265
271
|
xmlns: "http://www.w3.org/2000/svg",
|
|
266
272
|
fill: "none",
|
|
267
273
|
viewBox: "0 0 40 40",
|
|
274
|
+
height,
|
|
275
|
+
width,
|
|
268
276
|
ref: svgRef
|
|
269
277
|
}, props), {
|
|
270
278
|
children: [
|
|
@@ -385,13 +393,15 @@ var BeamIcon = react.forwardRef(
|
|
|
385
393
|
);
|
|
386
394
|
var Beam_default = BeamIcon;
|
|
387
395
|
var BeamNetworkIcon = react.forwardRef(
|
|
388
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
396
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
389
397
|
"svg",
|
|
390
398
|
__spreadProps(__spreadValues({
|
|
391
399
|
xmlns: "http://www.w3.org/2000/svg",
|
|
392
400
|
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
393
401
|
fill: "none",
|
|
394
402
|
viewBox: "0 0 40 40",
|
|
403
|
+
height,
|
|
404
|
+
width,
|
|
395
405
|
ref: svgRef
|
|
396
406
|
}, props), {
|
|
397
407
|
children: [
|
|
@@ -435,12 +445,14 @@ var BeamNetworkIcon = react.forwardRef(
|
|
|
435
445
|
);
|
|
436
446
|
var BeamNetwork_default = BeamNetworkIcon;
|
|
437
447
|
var EthIcon = react.forwardRef(
|
|
438
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
448
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
439
449
|
"svg",
|
|
440
450
|
__spreadProps(__spreadValues({
|
|
441
451
|
xmlns: "http://www.w3.org/2000/svg",
|
|
442
452
|
fill: "none",
|
|
443
453
|
viewBox: "0 0 40 40",
|
|
454
|
+
height,
|
|
455
|
+
width,
|
|
444
456
|
ref: svgRef
|
|
445
457
|
}, props), {
|
|
446
458
|
children: [
|
|
@@ -494,12 +506,14 @@ var EthIcon = react.forwardRef(
|
|
|
494
506
|
);
|
|
495
507
|
var Eth_default = EthIcon;
|
|
496
508
|
var ImmutableIcon = react.forwardRef(
|
|
497
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
509
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
498
510
|
"svg",
|
|
499
511
|
__spreadProps(__spreadValues({
|
|
500
512
|
xmlns: "http://www.w3.org/2000/svg",
|
|
501
513
|
fill: "none",
|
|
502
514
|
viewBox: "0 0 40 40",
|
|
515
|
+
height,
|
|
516
|
+
width,
|
|
503
517
|
ref: svgRef
|
|
504
518
|
}, props), {
|
|
505
519
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -514,12 +528,14 @@ var ImmutableIcon = react.forwardRef(
|
|
|
514
528
|
);
|
|
515
529
|
var Immutable_default = ImmutableIcon;
|
|
516
530
|
var MeritCircleIcon = react.forwardRef(
|
|
517
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
531
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
518
532
|
"svg",
|
|
519
533
|
__spreadProps(__spreadValues({
|
|
520
534
|
xmlns: "http://www.w3.org/2000/svg",
|
|
521
535
|
fill: "none",
|
|
522
536
|
viewBox: "0 0 40 40",
|
|
537
|
+
height,
|
|
538
|
+
width,
|
|
523
539
|
ref: svgRef
|
|
524
540
|
}, props), {
|
|
525
541
|
children: [
|
|
@@ -627,12 +643,14 @@ var MeritCircleIcon = react.forwardRef(
|
|
|
627
643
|
);
|
|
628
644
|
var MeritCircle_default = MeritCircleIcon;
|
|
629
645
|
var UsdcIcon = react.forwardRef(
|
|
630
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
646
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
631
647
|
"svg",
|
|
632
648
|
__spreadProps(__spreadValues({
|
|
633
649
|
xmlns: "http://www.w3.org/2000/svg",
|
|
634
650
|
fill: "none",
|
|
635
651
|
viewBox: "0 0 40 40",
|
|
652
|
+
height,
|
|
653
|
+
width,
|
|
636
654
|
ref: svgRef
|
|
637
655
|
}, props), {
|
|
638
656
|
children: [
|
|
@@ -666,12 +684,14 @@ var UsdcIcon = react.forwardRef(
|
|
|
666
684
|
);
|
|
667
685
|
var Usdc_default = UsdcIcon;
|
|
668
686
|
var BackIcon = react.forwardRef(
|
|
669
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
687
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
670
688
|
"svg",
|
|
671
689
|
__spreadProps(__spreadValues({
|
|
672
690
|
xmlns: "http://www.w3.org/2000/svg",
|
|
673
691
|
fill: "none",
|
|
674
692
|
viewBox: "0 0 24 24",
|
|
693
|
+
height,
|
|
694
|
+
width,
|
|
675
695
|
ref: svgRef
|
|
676
696
|
}, props), {
|
|
677
697
|
children: [
|
|
@@ -711,12 +731,14 @@ var BackIcon = react.forwardRef(
|
|
|
711
731
|
);
|
|
712
732
|
var Back_default = BackIcon;
|
|
713
733
|
var CloseIcon = react.forwardRef(
|
|
714
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
734
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
715
735
|
"svg",
|
|
716
736
|
__spreadProps(__spreadValues({
|
|
717
737
|
xmlns: "http://www.w3.org/2000/svg",
|
|
718
738
|
fill: "none",
|
|
719
739
|
viewBox: "0 0 24 24",
|
|
740
|
+
height,
|
|
741
|
+
width,
|
|
720
742
|
ref: svgRef
|
|
721
743
|
}, props), {
|
|
722
744
|
children: [
|
|
@@ -804,12 +826,14 @@ var CloseIcon = react.forwardRef(
|
|
|
804
826
|
);
|
|
805
827
|
var Close_default = CloseIcon;
|
|
806
828
|
var CursorIcon = react.forwardRef(
|
|
807
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
829
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
808
830
|
"svg",
|
|
809
831
|
__spreadProps(__spreadValues({
|
|
810
832
|
xmlns: "http://www.w3.org/2000/svg",
|
|
811
833
|
fill: "none",
|
|
812
834
|
viewBox: "0 0 24 24",
|
|
835
|
+
height,
|
|
836
|
+
width,
|
|
813
837
|
ref: svgRef
|
|
814
838
|
}, props), {
|
|
815
839
|
children: [
|
|
@@ -837,12 +861,14 @@ var CursorIcon = react.forwardRef(
|
|
|
837
861
|
);
|
|
838
862
|
var Cursor_default = CursorIcon;
|
|
839
863
|
var DashIcon = react.forwardRef(
|
|
840
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
864
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
841
865
|
"svg",
|
|
842
866
|
__spreadProps(__spreadValues({
|
|
843
867
|
xmlns: "http://www.w3.org/2000/svg",
|
|
844
868
|
fill: "none",
|
|
845
869
|
viewBox: "0 0 24 24",
|
|
870
|
+
height,
|
|
871
|
+
width,
|
|
846
872
|
ref: svgRef
|
|
847
873
|
}, props), {
|
|
848
874
|
children: [
|
|
@@ -919,12 +945,14 @@ var DashIcon = react.forwardRef(
|
|
|
919
945
|
);
|
|
920
946
|
var Dash_default = DashIcon;
|
|
921
947
|
var DownIcon = react.forwardRef(
|
|
922
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
948
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
923
949
|
"svg",
|
|
924
950
|
__spreadProps(__spreadValues({
|
|
925
951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
926
952
|
fill: "none",
|
|
927
953
|
viewBox: "0 0 24 24",
|
|
954
|
+
height,
|
|
955
|
+
width,
|
|
928
956
|
ref: svgRef
|
|
929
957
|
}, props), {
|
|
930
958
|
children: [
|
|
@@ -964,12 +992,14 @@ var DownIcon = react.forwardRef(
|
|
|
964
992
|
);
|
|
965
993
|
var Down_default = DownIcon;
|
|
966
994
|
var ErrorIcon = react.forwardRef(
|
|
967
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
995
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
968
996
|
"svg",
|
|
969
997
|
__spreadProps(__spreadValues({
|
|
970
998
|
xmlns: "http://www.w3.org/2000/svg",
|
|
971
999
|
fill: "none",
|
|
972
1000
|
viewBox: "0 0 24 24",
|
|
1001
|
+
height,
|
|
1002
|
+
width,
|
|
973
1003
|
ref: svgRef
|
|
974
1004
|
}, props), {
|
|
975
1005
|
children: [
|
|
@@ -989,12 +1019,14 @@ var ErrorIcon = react.forwardRef(
|
|
|
989
1019
|
);
|
|
990
1020
|
var Error_default = ErrorIcon;
|
|
991
1021
|
var FriendsIcon = react.forwardRef(
|
|
992
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1022
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
993
1023
|
"svg",
|
|
994
1024
|
__spreadProps(__spreadValues({
|
|
995
1025
|
xmlns: "http://www.w3.org/2000/svg",
|
|
996
1026
|
fill: "none",
|
|
997
1027
|
viewBox: "0 0 28 26",
|
|
1028
|
+
height,
|
|
1029
|
+
width,
|
|
998
1030
|
ref: svgRef
|
|
999
1031
|
}, props), {
|
|
1000
1032
|
children: [
|
|
@@ -1059,12 +1091,14 @@ var FriendsIcon = react.forwardRef(
|
|
|
1059
1091
|
);
|
|
1060
1092
|
var Friends_default = FriendsIcon;
|
|
1061
1093
|
var LedOffIcon = react.forwardRef(
|
|
1062
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1094
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1063
1095
|
"svg",
|
|
1064
1096
|
__spreadProps(__spreadValues({
|
|
1065
1097
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1066
1098
|
fill: "none",
|
|
1067
1099
|
viewBox: "0 0 16 16",
|
|
1100
|
+
height,
|
|
1101
|
+
width,
|
|
1068
1102
|
ref: svgRef
|
|
1069
1103
|
}, props), {
|
|
1070
1104
|
children: [
|
|
@@ -1136,12 +1170,14 @@ var LedOffIcon = react.forwardRef(
|
|
|
1136
1170
|
);
|
|
1137
1171
|
var LedOff_default = LedOffIcon;
|
|
1138
1172
|
var LedOnIcon = react.forwardRef(
|
|
1139
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1173
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1140
1174
|
"svg",
|
|
1141
1175
|
__spreadProps(__spreadValues({
|
|
1142
1176
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1143
1177
|
fill: "none",
|
|
1144
1178
|
viewBox: "0 0 16 16",
|
|
1179
|
+
height,
|
|
1180
|
+
width,
|
|
1145
1181
|
ref: svgRef
|
|
1146
1182
|
}, props), {
|
|
1147
1183
|
children: [
|
|
@@ -1213,13 +1249,15 @@ var LedOnIcon = react.forwardRef(
|
|
|
1213
1249
|
);
|
|
1214
1250
|
var LedOn_default = LedOnIcon;
|
|
1215
1251
|
var LoaderIcon = react.forwardRef(
|
|
1216
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1252
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1217
1253
|
"svg",
|
|
1218
1254
|
__spreadProps(__spreadValues({
|
|
1219
1255
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1220
1256
|
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
1221
1257
|
fill: "none",
|
|
1222
1258
|
viewBox: "0 0 24 24",
|
|
1259
|
+
height,
|
|
1260
|
+
width,
|
|
1223
1261
|
ref: svgRef
|
|
1224
1262
|
}, props), {
|
|
1225
1263
|
children: [
|
|
@@ -1257,12 +1295,14 @@ var LoaderIcon = react.forwardRef(
|
|
|
1257
1295
|
);
|
|
1258
1296
|
var Loader_default = LoaderIcon;
|
|
1259
1297
|
var MenuIcon = react.forwardRef(
|
|
1260
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1298
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1261
1299
|
"svg",
|
|
1262
1300
|
__spreadProps(__spreadValues({
|
|
1263
1301
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1264
1302
|
fill: "none",
|
|
1265
1303
|
viewBox: "0 0 24 24",
|
|
1304
|
+
height,
|
|
1305
|
+
width,
|
|
1266
1306
|
ref: svgRef
|
|
1267
1307
|
}, props), {
|
|
1268
1308
|
children: [
|
|
@@ -1336,12 +1376,14 @@ var MenuIcon = react.forwardRef(
|
|
|
1336
1376
|
);
|
|
1337
1377
|
var Menu_default = MenuIcon;
|
|
1338
1378
|
var PasswordHideIcon = react.forwardRef(
|
|
1339
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1379
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1340
1380
|
"svg",
|
|
1341
1381
|
__spreadProps(__spreadValues({
|
|
1342
1382
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1343
1383
|
fill: "none",
|
|
1344
1384
|
viewBox: "0 0 24 24",
|
|
1385
|
+
height,
|
|
1386
|
+
width,
|
|
1345
1387
|
ref: svgRef
|
|
1346
1388
|
}, props), {
|
|
1347
1389
|
children: [
|
|
@@ -1404,12 +1446,14 @@ var PasswordHideIcon = react.forwardRef(
|
|
|
1404
1446
|
);
|
|
1405
1447
|
var PasswordHide_default = PasswordHideIcon;
|
|
1406
1448
|
var PasswordShowIcon = react.forwardRef(
|
|
1407
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1449
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1408
1450
|
"svg",
|
|
1409
1451
|
__spreadProps(__spreadValues({
|
|
1410
1452
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1411
1453
|
fill: "none",
|
|
1412
1454
|
viewBox: "0 0 24 24",
|
|
1455
|
+
height,
|
|
1456
|
+
width,
|
|
1413
1457
|
ref: svgRef
|
|
1414
1458
|
}, props), {
|
|
1415
1459
|
children: [
|
|
@@ -1472,12 +1516,14 @@ var PasswordShowIcon = react.forwardRef(
|
|
|
1472
1516
|
);
|
|
1473
1517
|
var PasswordShow_default = PasswordShowIcon;
|
|
1474
1518
|
var PlusIcon = react.forwardRef(
|
|
1475
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1519
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1476
1520
|
"svg",
|
|
1477
1521
|
__spreadProps(__spreadValues({
|
|
1478
1522
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1479
1523
|
fill: "none",
|
|
1480
1524
|
viewBox: "0 0 24 24",
|
|
1525
|
+
height,
|
|
1526
|
+
width,
|
|
1481
1527
|
ref: svgRef
|
|
1482
1528
|
}, props), {
|
|
1483
1529
|
children: [
|
|
@@ -1554,12 +1600,14 @@ var PlusIcon = react.forwardRef(
|
|
|
1554
1600
|
);
|
|
1555
1601
|
var Plus_default = PlusIcon;
|
|
1556
1602
|
var QrCodeIcon = react.forwardRef(
|
|
1557
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1603
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1558
1604
|
"svg",
|
|
1559
1605
|
__spreadProps(__spreadValues({
|
|
1560
1606
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1561
1607
|
fill: "none",
|
|
1562
1608
|
viewBox: "0 0 24 24",
|
|
1609
|
+
height,
|
|
1610
|
+
width,
|
|
1563
1611
|
ref: svgRef
|
|
1564
1612
|
}, props), {
|
|
1565
1613
|
children: [
|
|
@@ -1621,12 +1669,14 @@ var QrCodeIcon = react.forwardRef(
|
|
|
1621
1669
|
);
|
|
1622
1670
|
var QrCode_default = QrCodeIcon;
|
|
1623
1671
|
var RefreshIcon = react.forwardRef(
|
|
1624
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1672
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1625
1673
|
"svg",
|
|
1626
1674
|
__spreadProps(__spreadValues({
|
|
1627
1675
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1628
1676
|
fill: "none",
|
|
1629
1677
|
viewBox: "0 0 24 24",
|
|
1678
|
+
height,
|
|
1679
|
+
width,
|
|
1630
1680
|
ref: svgRef
|
|
1631
1681
|
}, props), {
|
|
1632
1682
|
children: [
|
|
@@ -1689,12 +1739,14 @@ var RefreshIcon = react.forwardRef(
|
|
|
1689
1739
|
);
|
|
1690
1740
|
var Refresh_default = RefreshIcon;
|
|
1691
1741
|
var SettingsIcon = react.forwardRef(
|
|
1692
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1742
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1693
1743
|
"svg",
|
|
1694
1744
|
__spreadProps(__spreadValues({
|
|
1695
1745
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1696
1746
|
fill: "none",
|
|
1697
1747
|
viewBox: "0 0 24 24",
|
|
1748
|
+
height,
|
|
1749
|
+
width,
|
|
1698
1750
|
ref: svgRef
|
|
1699
1751
|
}, props), {
|
|
1700
1752
|
children: [
|
|
@@ -1762,12 +1814,14 @@ var SettingsIcon = react.forwardRef(
|
|
|
1762
1814
|
);
|
|
1763
1815
|
var Settings_default = SettingsIcon;
|
|
1764
1816
|
var SoundOffIcon = react.forwardRef(
|
|
1765
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1817
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1766
1818
|
"svg",
|
|
1767
1819
|
__spreadProps(__spreadValues({
|
|
1768
1820
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1769
1821
|
fill: "none",
|
|
1770
1822
|
viewBox: "0 0 24 24",
|
|
1823
|
+
height,
|
|
1824
|
+
width,
|
|
1771
1825
|
ref: svgRef
|
|
1772
1826
|
}, props), {
|
|
1773
1827
|
children: [
|
|
@@ -1850,12 +1904,14 @@ var SoundOffIcon = react.forwardRef(
|
|
|
1850
1904
|
);
|
|
1851
1905
|
var SoundOff_default = SoundOffIcon;
|
|
1852
1906
|
var SoundOnIcon = react.forwardRef(
|
|
1853
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1907
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1854
1908
|
"svg",
|
|
1855
1909
|
__spreadProps(__spreadValues({
|
|
1856
1910
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1857
1911
|
fill: "none",
|
|
1858
1912
|
viewBox: "0 0 24 24",
|
|
1913
|
+
height,
|
|
1914
|
+
width,
|
|
1859
1915
|
ref: svgRef
|
|
1860
1916
|
}, props), {
|
|
1861
1917
|
children: [
|
|
@@ -1927,12 +1983,14 @@ var SoundOnIcon = react.forwardRef(
|
|
|
1927
1983
|
);
|
|
1928
1984
|
var SoundOn_default = SoundOnIcon;
|
|
1929
1985
|
var SuccessIcon = react.forwardRef(
|
|
1930
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1986
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1931
1987
|
"svg",
|
|
1932
1988
|
__spreadProps(__spreadValues({
|
|
1933
1989
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1934
1990
|
fill: "none",
|
|
1935
1991
|
viewBox: "0 0 24 24",
|
|
1992
|
+
height,
|
|
1993
|
+
width,
|
|
1936
1994
|
ref: svgRef
|
|
1937
1995
|
}, props), {
|
|
1938
1996
|
children: [
|
|
@@ -1952,12 +2010,14 @@ var SuccessIcon = react.forwardRef(
|
|
|
1952
2010
|
);
|
|
1953
2011
|
var Success_default = SuccessIcon;
|
|
1954
2012
|
var SwapIcon = react.forwardRef(
|
|
1955
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2013
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1956
2014
|
"svg",
|
|
1957
2015
|
__spreadProps(__spreadValues({
|
|
1958
2016
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1959
2017
|
fill: "none",
|
|
1960
2018
|
viewBox: "0 0 24 24",
|
|
2019
|
+
height,
|
|
2020
|
+
width,
|
|
1961
2021
|
ref: svgRef
|
|
1962
2022
|
}, props), {
|
|
1963
2023
|
children: [
|
|
@@ -2029,12 +2089,14 @@ var SwapIcon = react.forwardRef(
|
|
|
2029
2089
|
);
|
|
2030
2090
|
var Swap_default = SwapIcon;
|
|
2031
2091
|
var TooltipIcon = react.forwardRef(
|
|
2032
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2092
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2033
2093
|
"svg",
|
|
2034
2094
|
__spreadProps(__spreadValues({
|
|
2035
2095
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2036
2096
|
fill: "none",
|
|
2037
2097
|
viewBox: "0 0 24 24",
|
|
2098
|
+
height,
|
|
2099
|
+
width,
|
|
2038
2100
|
ref: svgRef
|
|
2039
2101
|
}, props), {
|
|
2040
2102
|
children: [
|
|
@@ -2097,12 +2159,14 @@ var TooltipIcon = react.forwardRef(
|
|
|
2097
2159
|
);
|
|
2098
2160
|
var Tooltip_default = TooltipIcon;
|
|
2099
2161
|
var UploadIcon = react.forwardRef(
|
|
2100
|
-
(props, svgRef) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2162
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2101
2163
|
"svg",
|
|
2102
2164
|
__spreadProps(__spreadValues({
|
|
2103
2165
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2104
2166
|
fill: "none",
|
|
2105
2167
|
viewBox: "0 0 24 24",
|
|
2168
|
+
height,
|
|
2169
|
+
width,
|
|
2106
2170
|
ref: svgRef
|
|
2107
2171
|
}, props), {
|
|
2108
2172
|
children: [
|
|
@@ -2133,6 +2197,76 @@ var UploadIcon = react.forwardRef(
|
|
|
2133
2197
|
)
|
|
2134
2198
|
);
|
|
2135
2199
|
var Upload_default = UploadIcon;
|
|
2200
|
+
var TooltipGreyIcon = react.forwardRef(
|
|
2201
|
+
(props, svgRef, height = 24, width = 24) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2202
|
+
"svg",
|
|
2203
|
+
__spreadProps(__spreadValues({
|
|
2204
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2205
|
+
fill: "none",
|
|
2206
|
+
viewBox: "0 0 16 16",
|
|
2207
|
+
height,
|
|
2208
|
+
width,
|
|
2209
|
+
ref: svgRef
|
|
2210
|
+
}, props), {
|
|
2211
|
+
children: [
|
|
2212
|
+
/* @__PURE__ */ jsxRuntime.jsxs("g", { filter: "url(#tooltipGrey_svg__tooltipGrey_svg__filter0_i_162_975)", children: [
|
|
2213
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2214
|
+
"mask",
|
|
2215
|
+
{
|
|
2216
|
+
id: "tooltipGrey_svg__a",
|
|
2217
|
+
style: {
|
|
2218
|
+
maskType: "alpha"
|
|
2219
|
+
},
|
|
2220
|
+
width: 16,
|
|
2221
|
+
height: 16,
|
|
2222
|
+
x: 0,
|
|
2223
|
+
y: 0,
|
|
2224
|
+
maskUnits: "userSpaceOnUse",
|
|
2225
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#D9D9D9", d: "M0 0h16v16H0z" })
|
|
2226
|
+
}
|
|
2227
|
+
),
|
|
2228
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", { mask: "url(#tooltipGrey_svg__a)", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2229
|
+
"path",
|
|
2230
|
+
{
|
|
2231
|
+
fill: "#6D6D6D",
|
|
2232
|
+
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"
|
|
2233
|
+
}
|
|
2234
|
+
) })
|
|
2235
|
+
] }),
|
|
2236
|
+
/* @__PURE__ */ jsxRuntime.jsx("defs", { children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2237
|
+
"filter",
|
|
2238
|
+
{
|
|
2239
|
+
id: "tooltipGrey_svg__tooltipGrey_svg__filter0_i_162_975",
|
|
2240
|
+
width: 16,
|
|
2241
|
+
height: 16.33,
|
|
2242
|
+
x: 0,
|
|
2243
|
+
y: -0.33,
|
|
2244
|
+
colorInterpolationFilters: "sRGB",
|
|
2245
|
+
filterUnits: "userSpaceOnUse",
|
|
2246
|
+
children: [
|
|
2247
|
+
/* @__PURE__ */ jsxRuntime.jsx("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }),
|
|
2248
|
+
/* @__PURE__ */ jsxRuntime.jsx("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", result: "shape" }),
|
|
2249
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2250
|
+
"feColorMatrix",
|
|
2251
|
+
{
|
|
2252
|
+
in: "SourceAlpha",
|
|
2253
|
+
result: "hardAlpha",
|
|
2254
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
2255
|
+
}
|
|
2256
|
+
),
|
|
2257
|
+
/* @__PURE__ */ jsxRuntime.jsx("feOffset", { dy: -0.67 }),
|
|
2258
|
+
/* @__PURE__ */ jsxRuntime.jsx("feGaussianBlur", { stdDeviation: 0.17 }),
|
|
2259
|
+
/* @__PURE__ */ jsxRuntime.jsx("feComposite", { in2: "hardAlpha", k2: -1, k3: 1, operator: "arithmetic" }),
|
|
2260
|
+
/* @__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" }),
|
|
2261
|
+
/* @__PURE__ */ jsxRuntime.jsx("feBlend", { in2: "shape", result: "effect1_innerShadow_162_975" })
|
|
2262
|
+
]
|
|
2263
|
+
}
|
|
2264
|
+
) })
|
|
2265
|
+
]
|
|
2266
|
+
})
|
|
2267
|
+
)
|
|
2268
|
+
);
|
|
2269
|
+
var TooltipGrey_default = TooltipGreyIcon;
|
|
2136
2270
|
|
|
2137
2271
|
exports.BackIcon = Back_default;
|
|
2138
2272
|
exports.BeamIcon = Beam_default;
|
|
@@ -2162,6 +2296,7 @@ exports.SoundOffIcon = SoundOff_default;
|
|
|
2162
2296
|
exports.SoundOnIcon = SoundOn_default;
|
|
2163
2297
|
exports.SuccessIcon = Success_default;
|
|
2164
2298
|
exports.SwapIcon = Swap_default;
|
|
2299
|
+
exports.TooltipGreyIcon = TooltipGrey_default;
|
|
2165
2300
|
exports.TooltipIcon = Tooltip_default;
|
|
2166
2301
|
exports.TwitterIcon = Twitter_default;
|
|
2167
2302
|
exports.UploadIcon = Upload_default;
|