@agg-build/ui 1.2.3 → 1.2.4
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/{chunk-XCECYRTH.mjs → chunk-6FVYER7E.mjs} +3 -3
- package/dist/{chunk-TBKDLNOE.mjs → chunk-ISAU6HX5.mjs} +1 -1
- package/dist/{chunk-5FXMHTVR.mjs → chunk-OFFJNHAG.mjs} +1 -1
- package/dist/{chunk-E45WOOMN.mjs → chunk-P2OOA3U3.mjs} +2 -2
- package/dist/{chunk-34L7ZKJW.mjs → chunk-PALIVBG3.mjs} +1 -2
- package/dist/{chunk-Q2BRDVBU.mjs → chunk-UCH7MMRN.mjs} +50 -41
- package/dist/{chunk-XUYPM4LM.mjs → chunk-VH3DMH77.mjs} +46 -34
- package/dist/events.js +1 -2
- package/dist/events.mjs +3 -3
- package/dist/index.js +211 -185
- package/dist/index.mjs +7 -7
- package/dist/modals.js +751 -740
- package/dist/modals.mjs +3 -3
- package/dist/pages.js +44 -33
- package/dist/pages.mjs +6 -6
- package/dist/primitives.mjs +1 -1
- package/dist/styles.css +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/trading.mjs +4 -4
- package/dist/types/shared/constants.d.mts +3 -2
- package/dist/types/shared/constants.d.ts +3 -2
- package/package.json +1 -1
package/dist/modals.js
CHANGED
|
@@ -98,7 +98,7 @@ __export(modals_exports, {
|
|
|
98
98
|
module.exports = __toCommonJS(modals_exports);
|
|
99
99
|
|
|
100
100
|
// src/deposit/index.tsx
|
|
101
|
-
var
|
|
101
|
+
var import_react6 = require("react");
|
|
102
102
|
var import_hooks24 = require("@agg-build/hooks");
|
|
103
103
|
var import_deposit = require("@agg-build/hooks/deposit");
|
|
104
104
|
|
|
@@ -438,273 +438,6 @@ var ModalFooter = ({
|
|
|
438
438
|
Modal.Footer = ModalFooter;
|
|
439
439
|
Modal.displayName = "Modal";
|
|
440
440
|
|
|
441
|
-
// src/shared/constants.ts
|
|
442
|
-
var import_react = __toESM(require("react"));
|
|
443
|
-
|
|
444
|
-
// src/primitives/icon/svg/ethereum.tsx
|
|
445
|
-
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
446
|
-
var EthereumIcon = (_a) => {
|
|
447
|
-
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
448
|
-
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
449
|
-
"svg",
|
|
450
|
-
__spreadProps(__spreadValues(__spreadValues({
|
|
451
|
-
viewBox: "0 0 24 24",
|
|
452
|
-
className: cn("rounded-agg-sm", className),
|
|
453
|
-
fill: "none"
|
|
454
|
-
}, getIconA11yProps(title)), props), {
|
|
455
|
-
children: [
|
|
456
|
-
title ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { children: title }) : null,
|
|
457
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "24", height: "24", fill: "#627EEA" }),
|
|
458
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
459
|
-
"path",
|
|
460
|
-
{
|
|
461
|
-
d: "M12.0861 3.36035L11.9719 3.74822V15.0024L12.0861 15.1163L17.3101 12.0284L12.0861 3.36035Z",
|
|
462
|
-
fill: "#C1CCF6"
|
|
463
|
-
}
|
|
464
|
-
),
|
|
465
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12.0861 3.36035L6.86206 12.0284L12.0861 15.1163V9.65385V3.36035Z", fill: "#FFFFFF" }),
|
|
466
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
467
|
-
"path",
|
|
468
|
-
{
|
|
469
|
-
d: "M12.0858 16.1054L12.0215 16.1838V20.1927L12.0858 20.3806L17.313 13.019L12.0858 16.1054Z",
|
|
470
|
-
fill: "#C1CCF6"
|
|
471
|
-
}
|
|
472
|
-
),
|
|
473
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12.0861 20.3806V16.1054L6.86206 13.019L12.0861 20.3806Z", fill: "#FFFFFF" }),
|
|
474
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12.0862 15.1163L17.3101 12.0283L12.0862 9.65381V15.1163Z", fill: "#8198EE" }),
|
|
475
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6.86206 12.0283L12.0861 15.1163V9.65381L6.86206 12.0283Z", fill: "#C1CCF6" })
|
|
476
|
-
]
|
|
477
|
-
})
|
|
478
|
-
);
|
|
479
|
-
};
|
|
480
|
-
EthereumIcon.displayName = "EthereumIcon";
|
|
481
|
-
|
|
482
|
-
// src/primitives/icon/svg/polygon.tsx
|
|
483
|
-
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
484
|
-
var PolygonIcon = (_a) => {
|
|
485
|
-
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
486
|
-
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
487
|
-
"svg",
|
|
488
|
-
__spreadProps(__spreadValues(__spreadValues({
|
|
489
|
-
viewBox: "0 0 24 24",
|
|
490
|
-
className,
|
|
491
|
-
fill: "none"
|
|
492
|
-
}, getIconA11yProps(title)), props), {
|
|
493
|
-
children: [
|
|
494
|
-
title ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { children: title }) : null,
|
|
495
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { width: "24", height: "24", rx: "8", fill: "#8247E5" }),
|
|
496
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
497
|
-
"path",
|
|
498
|
-
{
|
|
499
|
-
d: "M9.00108 10.1467L7.12599 9.05774L1.5 12.3246V18.836L7.12599 22.0919L12.752 18.836V8.70922L15.8729 6.90135L18.9938 8.70922V12.3246L15.8729 14.1325L13.9978 13.0435V15.9409L15.8729 17.0299L21.4989 13.774V7.26264L15.8729 4.00674L10.2469 7.26264V17.3894L7.12599 19.1973L4.00508 17.3894V13.7628L7.12599 11.955L9.00108 13.0435V10.1467Z",
|
|
500
|
-
fill: "white"
|
|
501
|
-
}
|
|
502
|
-
)
|
|
503
|
-
]
|
|
504
|
-
})
|
|
505
|
-
);
|
|
506
|
-
};
|
|
507
|
-
PolygonIcon.displayName = "PolygonIcon";
|
|
508
|
-
|
|
509
|
-
// src/primitives/icon/svg/base.tsx
|
|
510
|
-
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
511
|
-
var BaseIcon = (_a) => {
|
|
512
|
-
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
513
|
-
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
514
|
-
"svg",
|
|
515
|
-
__spreadProps(__spreadValues(__spreadValues({
|
|
516
|
-
viewBox: "0 0 24 24",
|
|
517
|
-
className,
|
|
518
|
-
fill: "none"
|
|
519
|
-
}, getIconA11yProps(title)), props), {
|
|
520
|
-
children: [
|
|
521
|
-
title ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", { children: title }) : null,
|
|
522
|
-
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "12", fill: "#0052FF" }),
|
|
523
|
-
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
524
|
-
"path",
|
|
525
|
-
{
|
|
526
|
-
d: "M11.988 18.9C15.8 18.9 18.9 15.8 18.9 11.988C18.9 8.176 15.8 5.1 11.988 5.1C8.308 5.1 5.292 8.004 5.1 11.622H15.27V12.378H5.1C5.292 15.996 8.308 18.9 11.988 18.9Z",
|
|
527
|
-
fill: "white"
|
|
528
|
-
}
|
|
529
|
-
)
|
|
530
|
-
]
|
|
531
|
-
})
|
|
532
|
-
);
|
|
533
|
-
};
|
|
534
|
-
BaseIcon.displayName = "BaseIcon";
|
|
535
|
-
|
|
536
|
-
// src/primitives/icon/svg/arbitrum.tsx
|
|
537
|
-
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
538
|
-
var ArbitrumIcon = (_a) => {
|
|
539
|
-
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
540
|
-
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
541
|
-
"svg",
|
|
542
|
-
__spreadProps(__spreadValues(__spreadValues({
|
|
543
|
-
viewBox: "0 0 24 24",
|
|
544
|
-
className,
|
|
545
|
-
fill: "none"
|
|
546
|
-
}, getIconA11yProps(title)), props), {
|
|
547
|
-
children: [
|
|
548
|
-
title ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", { children: title }) : null,
|
|
549
|
-
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { width: "24", height: "24", rx: "4", fill: "#213147" }),
|
|
550
|
-
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
551
|
-
"path",
|
|
552
|
-
{
|
|
553
|
-
d: "M13.62 8.08L15.06 10.64L16.5 13.2L12 19.8L7.5 13.2L8.94 10.64L10.38 8.08L12 5L13.62 8.08Z",
|
|
554
|
-
fill: "#28A0F0"
|
|
555
|
-
}
|
|
556
|
-
),
|
|
557
|
-
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
558
|
-
"path",
|
|
559
|
-
{
|
|
560
|
-
d: "M12 5L7.5 13.2L12 19.8L16.5 13.2L12 5ZM12 7.2L15.12 12.6L12 17.4L8.88 12.6L12 7.2Z",
|
|
561
|
-
fill: "white"
|
|
562
|
-
}
|
|
563
|
-
)
|
|
564
|
-
]
|
|
565
|
-
})
|
|
566
|
-
);
|
|
567
|
-
};
|
|
568
|
-
ArbitrumIcon.displayName = "ArbitrumIcon";
|
|
569
|
-
|
|
570
|
-
// src/primitives/icon/svg/solana.tsx
|
|
571
|
-
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
572
|
-
var SolanaIcon = (_a) => {
|
|
573
|
-
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
574
|
-
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
575
|
-
"svg",
|
|
576
|
-
__spreadProps(__spreadValues(__spreadValues({
|
|
577
|
-
viewBox: "0 0 24 24",
|
|
578
|
-
className: cn("rounded-agg-sm", className),
|
|
579
|
-
fill: "none"
|
|
580
|
-
}, getIconA11yProps(title)), props), {
|
|
581
|
-
children: [
|
|
582
|
-
title ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("title", { children: title }) : null,
|
|
583
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("rect", { width: "24", height: "24", fill: "black" }),
|
|
584
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
585
|
-
"path",
|
|
586
|
-
{
|
|
587
|
-
d: "M5.92399 15.7169C6.03262 15.6083 6.18198 15.5449 6.34039 15.5449H20.706C20.9685 15.5449 21.0998 15.8617 20.9142 16.0473L18.0764 18.8851C17.9677 18.9938 17.8184 19.0571 17.66 19.0571H3.29437C3.03186 19.0571 2.90061 18.7403 3.08617 18.5547L5.92399 15.7169Z",
|
|
588
|
-
fill: "url(#paint0_linear_1471_9988)"
|
|
589
|
-
}
|
|
590
|
-
),
|
|
591
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
592
|
-
"path",
|
|
593
|
-
{
|
|
594
|
-
d: "M5.92399 5.1217C6.03714 5.01307 6.1865 4.94971 6.34039 4.94971H20.706C20.9685 4.94971 21.0998 5.26653 20.9142 5.4521L18.0764 8.28991C17.9677 8.39854 17.8184 8.4619 17.66 8.4619H3.29437C3.03186 8.4619 2.90061 8.14508 3.08617 7.95951L5.92399 5.1217Z",
|
|
595
|
-
fill: "url(#paint1_linear_1471_9988)"
|
|
596
|
-
}
|
|
597
|
-
),
|
|
598
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
599
|
-
"path",
|
|
600
|
-
{
|
|
601
|
-
d: "M18.0764 10.3854C17.9677 10.2767 17.8184 10.2134 17.66 10.2134H3.29437C3.03186 10.2134 2.90061 10.5302 3.08617 10.7158L5.92399 13.5536C6.03262 13.6622 6.18198 13.7256 6.34039 13.7256H20.706C20.9685 13.7256 21.0998 13.4088 20.9142 13.2232L18.0764 10.3854Z",
|
|
602
|
-
fill: "url(#paint2_linear_1471_9988)"
|
|
603
|
-
}
|
|
604
|
-
),
|
|
605
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("defs", { children: [
|
|
606
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
607
|
-
"linearGradient",
|
|
608
|
-
{
|
|
609
|
-
id: "paint0_linear_1471_9988",
|
|
610
|
-
x1: "19.3337",
|
|
611
|
-
y1: "3.25426",
|
|
612
|
-
x2: "9.39151",
|
|
613
|
-
y2: "22.2975",
|
|
614
|
-
gradientUnits: "userSpaceOnUse",
|
|
615
|
-
children: [
|
|
616
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("stop", { stopColor: "#00FFA3" }),
|
|
617
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("stop", { offset: "1", stopColor: "#DC1FFF" })
|
|
618
|
-
]
|
|
619
|
-
}
|
|
620
|
-
),
|
|
621
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
622
|
-
"linearGradient",
|
|
623
|
-
{
|
|
624
|
-
id: "paint1_linear_1471_9988",
|
|
625
|
-
x1: "14.9864",
|
|
626
|
-
y1: "0.984846",
|
|
627
|
-
x2: "5.04427",
|
|
628
|
-
y2: "20.028",
|
|
629
|
-
gradientUnits: "userSpaceOnUse",
|
|
630
|
-
children: [
|
|
631
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("stop", { stopColor: "#00FFA3" }),
|
|
632
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("stop", { offset: "1", stopColor: "#DC1FFF" })
|
|
633
|
-
]
|
|
634
|
-
}
|
|
635
|
-
),
|
|
636
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
637
|
-
"linearGradient",
|
|
638
|
-
{
|
|
639
|
-
id: "paint2_linear_1471_9988",
|
|
640
|
-
x1: "17.1462",
|
|
641
|
-
y1: "2.11234",
|
|
642
|
-
x2: "7.20405",
|
|
643
|
-
y2: "21.1555",
|
|
644
|
-
gradientUnits: "userSpaceOnUse",
|
|
645
|
-
children: [
|
|
646
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("stop", { stopColor: "#00FFA3" }),
|
|
647
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("stop", { offset: "1", stopColor: "#DC1FFF" })
|
|
648
|
-
]
|
|
649
|
-
}
|
|
650
|
-
)
|
|
651
|
-
] })
|
|
652
|
-
]
|
|
653
|
-
})
|
|
654
|
-
);
|
|
655
|
-
};
|
|
656
|
-
SolanaIcon.displayName = "SolanaIcon";
|
|
657
|
-
|
|
658
|
-
// src/primitives/icon/svg/bnb.tsx
|
|
659
|
-
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
660
|
-
var BnbIcon = (_a) => {
|
|
661
|
-
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
662
|
-
return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
663
|
-
"svg",
|
|
664
|
-
__spreadProps(__spreadValues(__spreadValues({
|
|
665
|
-
viewBox: "0 0 24 24",
|
|
666
|
-
className,
|
|
667
|
-
fill: "none"
|
|
668
|
-
}, getIconA11yProps(title)), props), {
|
|
669
|
-
children: [
|
|
670
|
-
title ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("title", { children: title }) : null,
|
|
671
|
-
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("rect", { width: "24", height: "24", rx: "8", fill: "#F3BA2F" }),
|
|
672
|
-
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
673
|
-
"path",
|
|
674
|
-
{
|
|
675
|
-
d: "M9.295 12.001 9.306 15.97l3.37 1.982v2.322l-5.343-3.135v-6.301l1.962 1.16Zm0-3.968v2.312l-1.963-1.16V6.873L9.295 5.712l1.972 1.16-1.972 1.16Zm4.786-1.16 1.963-1.16 1.972 1.16-1.963 1.16-1.972-1.16Z",
|
|
676
|
-
fill: "white"
|
|
677
|
-
}
|
|
678
|
-
),
|
|
679
|
-
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
680
|
-
"path",
|
|
681
|
-
{
|
|
682
|
-
d: "M10.714 15.146v-2.322l1.962 1.16v2.312l-1.962-1.15Zm3.367 3.636 1.963 1.16 1.972-1.16v2.311l-1.972 1.161-1.963-1.16v-2.312Zm6.75-11.909 1.963-1.16 1.972 1.16v2.312l-1.972 1.16V8.033L20.83 6.873Zm1.963 8.999.01-3.97 1.963-1.16v6.301l-5.343 3.136v-2.322l3.37-1.985Z",
|
|
683
|
-
fill: "white",
|
|
684
|
-
transform: "translate(-6.667)"
|
|
685
|
-
}
|
|
686
|
-
),
|
|
687
|
-
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
688
|
-
"path",
|
|
689
|
-
{
|
|
690
|
-
d: "m20.831 15.143-1.963 1.15v-2.312l1.963-1.16v2.322Z",
|
|
691
|
-
fill: "white",
|
|
692
|
-
transform: "translate(-6.667)"
|
|
693
|
-
}
|
|
694
|
-
),
|
|
695
|
-
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
696
|
-
"path",
|
|
697
|
-
{
|
|
698
|
-
d: "m20.83 8.851.011 2.322-3.38 1.982v3.98l-1.963 1.15-1.963-1.15v-3.98l-3.38-1.982V8.851l1.972-1.16 3.36 1.992 3.38-1.992 1.973 1.16ZM10.714 4.9l5.334-3.144L21.39 4.9l-1.963 1.16-3.38-1.992-3.37 1.991L10.714 4.9Z",
|
|
699
|
-
fill: "white"
|
|
700
|
-
}
|
|
701
|
-
)
|
|
702
|
-
]
|
|
703
|
-
})
|
|
704
|
-
);
|
|
705
|
-
};
|
|
706
|
-
BnbIcon.displayName = "BnbIcon";
|
|
707
|
-
|
|
708
441
|
// src/shared/constants.ts
|
|
709
442
|
var USDC = {
|
|
710
443
|
value: "USDC",
|
|
@@ -712,28 +445,40 @@ var USDC = {
|
|
|
712
445
|
iconUrl: "https://assets.snagsolutions.io/public/web/icons/usdc.svg"
|
|
713
446
|
};
|
|
714
447
|
var SUPPORTED_NETWORKS = [
|
|
448
|
+
{
|
|
449
|
+
value: "abstract",
|
|
450
|
+
label: "Abstract",
|
|
451
|
+
iconUrl: "https://assets.snagsolutions.io/public/prediction-markets/logos/Abstract.svg",
|
|
452
|
+
tokens: [USDC]
|
|
453
|
+
},
|
|
715
454
|
{
|
|
716
455
|
value: "arbitrum",
|
|
717
456
|
label: "Arbitrum One",
|
|
718
|
-
iconUrl: "https://assets.snagsolutions.io/public/
|
|
457
|
+
iconUrl: "https://assets.snagsolutions.io/public/prediction-markets/logos/Arbitrum.svg",
|
|
719
458
|
tokens: [USDC]
|
|
720
459
|
},
|
|
721
460
|
{
|
|
722
461
|
value: "base",
|
|
723
462
|
label: "Base",
|
|
724
|
-
iconUrl: "https://assets.snagsolutions.io/public/
|
|
463
|
+
iconUrl: "https://assets.snagsolutions.io/public/prediction-markets/logos/Base.svg",
|
|
725
464
|
tokens: [USDC]
|
|
726
465
|
},
|
|
727
466
|
{
|
|
728
467
|
value: "bnb",
|
|
729
468
|
label: "BNB Chain",
|
|
730
|
-
iconUrl: "https://assets.snagsolutions.io/public/
|
|
469
|
+
iconUrl: "https://assets.snagsolutions.io/public/prediction-markets/logos/BNB.svg",
|
|
470
|
+
tokens: [USDC]
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
value: "flow",
|
|
474
|
+
label: "Flow",
|
|
475
|
+
iconUrl: "https://assets.snagsolutions.io/public/prediction-markets/logos/Flow.svg",
|
|
731
476
|
tokens: [USDC]
|
|
732
477
|
},
|
|
733
478
|
{
|
|
734
479
|
value: "mainnet",
|
|
735
480
|
label: "Ethereum",
|
|
736
|
-
iconUrl: "https://assets.snagsolutions.io/public/
|
|
481
|
+
iconUrl: "https://assets.snagsolutions.io/public/prediction-markets/logos/ETH.svg",
|
|
737
482
|
tokens: [USDC]
|
|
738
483
|
},
|
|
739
484
|
{
|
|
@@ -745,13 +490,13 @@ var SUPPORTED_NETWORKS = [
|
|
|
745
490
|
{
|
|
746
491
|
value: "polygon",
|
|
747
492
|
label: "Polygon Mainnet",
|
|
748
|
-
iconUrl: "https://assets.snagsolutions.io/public/
|
|
493
|
+
iconUrl: "https://assets.snagsolutions.io/public/prediction-markets/logos/Polygon.svg",
|
|
749
494
|
tokens: [USDC]
|
|
750
495
|
},
|
|
751
496
|
{
|
|
752
497
|
value: "solana",
|
|
753
498
|
label: "Solana",
|
|
754
|
-
iconUrl: "https://assets.snagsolutions.io/public/
|
|
499
|
+
iconUrl: "https://assets.snagsolutions.io/public/prediction-markets/logos/Solana.svg",
|
|
755
500
|
tokens: [USDC]
|
|
756
501
|
},
|
|
757
502
|
{
|
|
@@ -762,15 +507,11 @@ var SUPPORTED_NETWORKS = [
|
|
|
762
507
|
}
|
|
763
508
|
];
|
|
764
509
|
var mapNetworksToOptions = () => {
|
|
765
|
-
return SUPPORTED_NETWORKS.map((n) => {
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
iconUrl: n.iconUrl,
|
|
771
|
-
icon: Component ? import_react.default.createElement(Component) : void 0
|
|
772
|
-
};
|
|
773
|
-
});
|
|
510
|
+
return SUPPORTED_NETWORKS.map((n) => ({
|
|
511
|
+
value: n.value,
|
|
512
|
+
label: n.label,
|
|
513
|
+
iconUrl: n.iconUrl
|
|
514
|
+
}));
|
|
774
515
|
};
|
|
775
516
|
var DEFAULT_CURRENCY_OPTIONS = [
|
|
776
517
|
{
|
|
@@ -825,27 +566,19 @@ var CHAIN_ID_TO_SLUG = {
|
|
|
825
566
|
"56": "bnb",
|
|
826
567
|
"137": "polygon",
|
|
827
568
|
"324": "zksync",
|
|
569
|
+
"747": "flow",
|
|
828
570
|
"8453": "base",
|
|
829
571
|
"42161": "arbitrum",
|
|
572
|
+
"2741": "abstract",
|
|
830
573
|
"792703809": "solana"
|
|
831
574
|
};
|
|
832
|
-
var CHAIN_ICON_COMPONENTS = {
|
|
833
|
-
mainnet: EthereumIcon,
|
|
834
|
-
polygon: PolygonIcon,
|
|
835
|
-
base: BaseIcon,
|
|
836
|
-
arbitrum: ArbitrumIcon,
|
|
837
|
-
solana: SolanaIcon,
|
|
838
|
-
bnb: BnbIcon
|
|
839
|
-
};
|
|
840
575
|
var withNetworkIcons = (options) => {
|
|
841
576
|
const bySlug = new Map(SUPPORTED_NETWORKS.map((n) => [n.value, n.iconUrl]));
|
|
842
577
|
return options.map((o) => {
|
|
843
|
-
var _a, _b
|
|
578
|
+
var _a, _b;
|
|
844
579
|
const slug = (_a = CHAIN_ID_TO_SLUG[o.value]) != null ? _a : o.value;
|
|
845
|
-
const Component = CHAIN_ICON_COMPONENTS[slug];
|
|
846
580
|
return __spreadProps(__spreadValues({}, o), {
|
|
847
|
-
iconUrl: (_b = o.iconUrl) != null ? _b : bySlug.get(slug)
|
|
848
|
-
icon: (_c = o.icon) != null ? _c : Component ? import_react.default.createElement(Component) : void 0
|
|
581
|
+
iconUrl: (_b = o.iconUrl) != null ? _b : bySlug.get(slug)
|
|
849
582
|
});
|
|
850
583
|
});
|
|
851
584
|
};
|
|
@@ -867,9 +600,6 @@ var mergeSelectOptionsUnique = (base, fill) => {
|
|
|
867
600
|
return out;
|
|
868
601
|
};
|
|
869
602
|
|
|
870
|
-
// src/deposit/deposit-modal.constants.ts
|
|
871
|
-
var import_react2 = __toESM(require("react"));
|
|
872
|
-
|
|
873
603
|
// src/primitives/venue-logo/venue-logo.constants.ts
|
|
874
604
|
var import_sdk9 = require("@agg-build/sdk");
|
|
875
605
|
|
|
@@ -886,7 +616,7 @@ var resolveLogoPrimaryColor = ({
|
|
|
886
616
|
};
|
|
887
617
|
|
|
888
618
|
// src/primitives/venue-logo/svg/default-venue.tsx
|
|
889
|
-
var
|
|
619
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
890
620
|
var DefaultVenueIcon = (_a) => {
|
|
891
621
|
var _b = _a, {
|
|
892
622
|
title,
|
|
@@ -904,7 +634,7 @@ var DefaultVenueIcon = (_a) => {
|
|
|
904
634
|
isColor,
|
|
905
635
|
color
|
|
906
636
|
});
|
|
907
|
-
return /* @__PURE__ */ (0,
|
|
637
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
908
638
|
"svg",
|
|
909
639
|
__spreadProps(__spreadValues(__spreadValues({
|
|
910
640
|
viewBox: "0 0 100 100",
|
|
@@ -912,9 +642,9 @@ var DefaultVenueIcon = (_a) => {
|
|
|
912
642
|
fill: "none"
|
|
913
643
|
}, getIconA11yProps(title)), props), {
|
|
914
644
|
children: [
|
|
915
|
-
title ? /* @__PURE__ */ (0,
|
|
916
|
-
/* @__PURE__ */ (0,
|
|
917
|
-
/* @__PURE__ */ (0,
|
|
645
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { children: title }) : null,
|
|
646
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "50", cy: "50", r: "45", stroke: primaryColor, strokeWidth: "6", fill: "none" }),
|
|
647
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "50", cy: "50", r: "8", fill: primaryColor })
|
|
918
648
|
]
|
|
919
649
|
})
|
|
920
650
|
);
|
|
@@ -923,7 +653,7 @@ var DefaultVenueIcon = (_a) => {
|
|
|
923
653
|
// src/primitives/venue-logo/svg/logo-hyperliquid.tsx
|
|
924
654
|
var import_hooks2 = require("@agg-build/hooks");
|
|
925
655
|
var import_sdk = require("@agg-build/sdk");
|
|
926
|
-
var
|
|
656
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
927
657
|
var LogoHyperliquidIcon = (_a) => {
|
|
928
658
|
var _b = _a, {
|
|
929
659
|
title,
|
|
@@ -946,7 +676,7 @@ var LogoHyperliquidIcon = (_a) => {
|
|
|
946
676
|
isColor,
|
|
947
677
|
color
|
|
948
678
|
});
|
|
949
|
-
return /* @__PURE__ */ (0,
|
|
679
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
950
680
|
"svg",
|
|
951
681
|
__spreadProps(__spreadValues(__spreadValues({
|
|
952
682
|
viewBox: "0 0 100 100",
|
|
@@ -954,8 +684,8 @@ var LogoHyperliquidIcon = (_a) => {
|
|
|
954
684
|
fill: "none"
|
|
955
685
|
}, getIconA11yProps(title)), props), {
|
|
956
686
|
children: [
|
|
957
|
-
title ? /* @__PURE__ */ (0,
|
|
958
|
-
/* @__PURE__ */ (0,
|
|
687
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { children: title }) : null,
|
|
688
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
959
689
|
"path",
|
|
960
690
|
{
|
|
961
691
|
d: "M82 49.2724C82 70.431 69.0516 77.2204 62.2292 71.175C56.6135 66.2457 54.9427 55.8293 46.496 54.7597C35.7752 53.4112 34.847 67.6875 27.7926 67.6875C19.578 67.6875 18 55.7363 18 49.5979C18 43.3201 19.7636 34.7636 26.7716 34.7636C34.9398 34.7636 35.4039 46.9938 45.6142 46.3427C55.7781 45.6452 55.9637 32.9034 62.5542 27.4626C68.3089 22.7658 82 27.8346 82 49.2724Z",
|
|
@@ -971,7 +701,7 @@ LogoHyperliquidIcon.displayName = "LogoHyperliquidIcon";
|
|
|
971
701
|
// src/primitives/venue-logo/svg/logo-kalshi.tsx
|
|
972
702
|
var import_hooks3 = require("@agg-build/hooks");
|
|
973
703
|
var import_sdk2 = require("@agg-build/sdk");
|
|
974
|
-
var
|
|
704
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
975
705
|
var LogoKalshiIcon = (_a) => {
|
|
976
706
|
var _b = _a, {
|
|
977
707
|
title,
|
|
@@ -994,7 +724,7 @@ var LogoKalshiIcon = (_a) => {
|
|
|
994
724
|
isColor,
|
|
995
725
|
color
|
|
996
726
|
});
|
|
997
|
-
return /* @__PURE__ */ (0,
|
|
727
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
998
728
|
"svg",
|
|
999
729
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1000
730
|
viewBox: "0 0 100 100",
|
|
@@ -1002,8 +732,8 @@ var LogoKalshiIcon = (_a) => {
|
|
|
1002
732
|
fill: "none"
|
|
1003
733
|
}, getIconA11yProps(title)), props), {
|
|
1004
734
|
children: [
|
|
1005
|
-
title ? /* @__PURE__ */ (0,
|
|
1006
|
-
/* @__PURE__ */ (0,
|
|
735
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", { children: title }) : null,
|
|
736
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1007
737
|
"path",
|
|
1008
738
|
{
|
|
1009
739
|
d: "M54.9798 47.579L79.4249 85.9995H58.2273L38.2531 52.9344V85.9995H20.4189V13.9995H38.2531V45.4356L59.6547 13.9995H78.7119L54.9798 47.579Z",
|
|
@@ -1019,7 +749,7 @@ LogoKalshiIcon.displayName = "LogoKalshiIcon";
|
|
|
1019
749
|
// src/primitives/venue-logo/svg/logo-limitless.tsx
|
|
1020
750
|
var import_hooks4 = require("@agg-build/hooks");
|
|
1021
751
|
var import_sdk3 = require("@agg-build/sdk");
|
|
1022
|
-
var
|
|
752
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
1023
753
|
var LogoLimitlessIcon = (_a) => {
|
|
1024
754
|
var _b = _a, {
|
|
1025
755
|
title,
|
|
@@ -1042,7 +772,7 @@ var LogoLimitlessIcon = (_a) => {
|
|
|
1042
772
|
isColor,
|
|
1043
773
|
color
|
|
1044
774
|
});
|
|
1045
|
-
return /* @__PURE__ */ (0,
|
|
775
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
1046
776
|
"svg",
|
|
1047
777
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1048
778
|
viewBox: "0 0 100 100",
|
|
@@ -1050,8 +780,8 @@ var LogoLimitlessIcon = (_a) => {
|
|
|
1050
780
|
fill: "none"
|
|
1051
781
|
}, getIconA11yProps(title)), props), {
|
|
1052
782
|
children: [
|
|
1053
|
-
title ? /* @__PURE__ */ (0,
|
|
1054
|
-
/* @__PURE__ */ (0,
|
|
783
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", { children: title }) : null,
|
|
784
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1055
785
|
"path",
|
|
1056
786
|
{
|
|
1057
787
|
d: "M78.2762 44.4662H67.7966L81.9152 30.0554L82 29.9706L76.8528 24.8176H62.8524V21.6803C62.8524 19.6513 61.2036 18 59.1777 18H44.1555C42.1297 18 40.4809 19.6513 40.4809 21.6803V48.171H21.7238C19.6979 48.171 18.0491 49.8223 18.0491 51.8512C18.0491 53.8804 19.6979 55.5317 21.7238 55.5317H32.2034L18.0848 69.9379L18 70.0227L23.145 75.1755H37.1476V78.3195C37.1476 80.3487 38.7964 82 40.8222 82H55.8444C57.8703 82 59.5191 80.3487 59.5191 78.3195V51.8267H78.2762C80.3021 51.8267 81.9509 50.1754 81.9509 48.1464C81.9509 46.1175 80.3021 44.4662 78.2762 44.4662ZM57.9886 78.3173C57.9886 79.5018 57.0269 80.4647 55.8444 80.4647C54.6619 80.4647 53.7003 79.5018 53.7003 78.3173V57.2411L38.2096 73.0506L35.1752 70.0137L50.8712 54.0009H36.7459C35.5634 54.0009 34.6018 53.0377 34.6018 51.8535C34.6018 50.6692 35.5634 49.7038 36.7459 49.7038H54.8204C56.5673 49.7038 57.9886 51.1273 57.9886 52.8769V78.3195V78.3173ZM78.2762 50.2938H60.2018C58.4549 50.2938 57.0336 48.8704 57.0336 47.1208V21.6781C57.0336 20.4938 57.9953 19.5307 59.1777 19.5307C60.3602 19.5307 61.3241 20.4938 61.3241 21.6781V42.7544L76.8126 26.9403L79.847 29.9772L64.1509 45.9968H78.2762C79.4587 45.9968 80.4204 46.9599 80.4204 48.1442C80.4204 49.3285 79.4587 50.2916 78.2762 50.2916V50.2938Z",
|
|
@@ -1067,7 +797,7 @@ LogoLimitlessIcon.displayName = "LogoLimitlessIcon";
|
|
|
1067
797
|
// src/primitives/venue-logo/svg/logo-myriad.tsx
|
|
1068
798
|
var import_hooks5 = require("@agg-build/hooks");
|
|
1069
799
|
var import_sdk4 = require("@agg-build/sdk");
|
|
1070
|
-
var
|
|
800
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
1071
801
|
var LogoMyriadIcon = (_a) => {
|
|
1072
802
|
var _b = _a, {
|
|
1073
803
|
title,
|
|
@@ -1090,7 +820,7 @@ var LogoMyriadIcon = (_a) => {
|
|
|
1090
820
|
isColor,
|
|
1091
821
|
color
|
|
1092
822
|
});
|
|
1093
|
-
return /* @__PURE__ */ (0,
|
|
823
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
1094
824
|
"svg",
|
|
1095
825
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1096
826
|
viewBox: "0 0 100 100",
|
|
@@ -1098,8 +828,8 @@ var LogoMyriadIcon = (_a) => {
|
|
|
1098
828
|
fill: "none"
|
|
1099
829
|
}, getIconA11yProps(title)), props), {
|
|
1100
830
|
children: [
|
|
1101
|
-
title ? /* @__PURE__ */ (0,
|
|
1102
|
-
/* @__PURE__ */ (0,
|
|
831
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("title", { children: title }) : null,
|
|
832
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1103
833
|
"path",
|
|
1104
834
|
{
|
|
1105
835
|
d: "M24.356 52.5901C24.1479 52.8348 24.0342 53.1458 24.0352 53.467L24.0394 64.9354V68.672H44.3882V58.5767H32.5776L55.2898 31.713C55.4979 31.4683 55.6116 31.1573 55.6107 30.8361V19.3656C55.6107 18.093 54.0108 17.5155 53.1874 18.4887L24.356 52.5901ZM75.9594 31.3259V35.0646L75.9637 46.533C75.9637 46.8538 75.8504 47.1639 75.6429 47.4099L46.8137 81.5113C45.9902 82.4845 44.3925 81.907 44.3925 80.6344V69.1617C44.3925 68.8409 44.5059 68.5329 44.7133 68.287L67.4234 41.4233H55.6128V31.328L75.9594 31.3259Z",
|
|
@@ -1115,7 +845,7 @@ LogoMyriadIcon.displayName = "LogoMyriadIcon";
|
|
|
1115
845
|
// src/primitives/venue-logo/svg/logo-opinion.tsx
|
|
1116
846
|
var import_hooks6 = require("@agg-build/hooks");
|
|
1117
847
|
var import_sdk5 = require("@agg-build/sdk");
|
|
1118
|
-
var
|
|
848
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
1119
849
|
var LogoOpinionIcon = (_a) => {
|
|
1120
850
|
var _b = _a, {
|
|
1121
851
|
title,
|
|
@@ -1138,7 +868,7 @@ var LogoOpinionIcon = (_a) => {
|
|
|
1138
868
|
isColor,
|
|
1139
869
|
color
|
|
1140
870
|
});
|
|
1141
|
-
return /* @__PURE__ */ (0,
|
|
871
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
1142
872
|
"svg",
|
|
1143
873
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1144
874
|
viewBox: "0 0 100 100",
|
|
@@ -1146,8 +876,8 @@ var LogoOpinionIcon = (_a) => {
|
|
|
1146
876
|
fill: "none"
|
|
1147
877
|
}, getIconA11yProps(title)), props), {
|
|
1148
878
|
children: [
|
|
1149
|
-
title ? /* @__PURE__ */ (0,
|
|
1150
|
-
/* @__PURE__ */ (0,
|
|
879
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("title", { children: title }) : null,
|
|
880
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1151
881
|
"path",
|
|
1152
882
|
{
|
|
1153
883
|
d: "M51.8239 68.4603L56.9659 68.0094L58.8049 89.0576C61.1459 88.5314 63.4349 87.7952 65.6437 86.8578V68.1879H71.9955V83.4385C74.6496 81.6828 77.0863 79.619 79.2548 77.2898L80.0716 67.958L85.516 68.433C88.6185 62.4381 90.156 55.7558 89.9858 49.0072C89.8154 42.2584 87.9429 35.6623 84.542 29.8316L84.3394 32.1494L77.9876 31.5927L78.8042 22.2668C76.7468 20.1288 74.4594 18.225 71.9835 16.5902V31.9164H65.6317V13.1739C62.9224 12.0205 60.0929 11.173 57.1957 10.6473L59.0317 31.6441L53.8897 32.0949L51.9599 10.0482C51.3128 10.0179 50.6593 9.99976 50.006 9.99976C47.4581 9.99976 44.9161 10.2419 42.414 10.723L46.0438 31.3899L42.1297 32.0798L38.5304 11.6701C35.1755 12.6725 31.9677 14.1143 28.9905 15.9578L33.0435 31.0873L29.9705 31.9134L26.2018 17.8369C23.2938 19.9923 20.6902 22.5308 18.4615 25.3835L20.4246 30.7787L18.1833 31.5956L16.7707 27.7134C14.5111 31.0771 12.7772 34.7657 11.6287 38.652L12.2639 38.4221L20.4306 60.8471L18.1893 61.6641L10.8877 41.5963C9.21542 49.4012 9.91256 57.528 12.8896 64.9338C15.8667 72.3395 20.9879 78.6865 27.5961 83.1601L23.8031 68.9989L26.8762 68.1728L31.5162 85.4991C34.6952 87.1593 38.0844 88.3808 41.5914 89.1303L38.0132 68.7296L41.9301 68.0397L45.7684 89.8262C47.1811 89.9757 48.6007 90.0505 50.0212 90.0502C51.2583 90.0502 52.4863 89.9926 53.6963 89.8807L51.8239 68.4603ZM80.1017 37.8985L86.4385 38.4524L84.3605 62.2299L78.0087 61.6761L80.1017 37.8985ZM65.6528 38.1315H72.0046V61.9969H65.6528V38.1315ZM56.975 37.9501L59.053 61.7277L53.911 62.1785L51.8299 38.4009L56.975 37.9501ZM29.9976 62.003L23.8243 38.9486L26.8974 38.1255L33.0707 61.1649L29.9976 62.003ZM42.157 62.1603L38.0132 38.658L41.9301 37.9683L46.0709 61.4674L42.157 62.1603Z",
|
|
@@ -1163,7 +893,7 @@ LogoOpinionIcon.displayName = "LogoOpinionIcon";
|
|
|
1163
893
|
// src/primitives/venue-logo/svg/logo-polymarket.tsx
|
|
1164
894
|
var import_hooks7 = require("@agg-build/hooks");
|
|
1165
895
|
var import_sdk6 = require("@agg-build/sdk");
|
|
1166
|
-
var
|
|
896
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
1167
897
|
var LogoPolymarketIcon = (_a) => {
|
|
1168
898
|
var _b = _a, {
|
|
1169
899
|
title,
|
|
@@ -1186,7 +916,7 @@ var LogoPolymarketIcon = (_a) => {
|
|
|
1186
916
|
isColor,
|
|
1187
917
|
color
|
|
1188
918
|
});
|
|
1189
|
-
return /* @__PURE__ */ (0,
|
|
919
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
1190
920
|
"svg",
|
|
1191
921
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1192
922
|
viewBox: "0 0 100 100",
|
|
@@ -1194,8 +924,8 @@ var LogoPolymarketIcon = (_a) => {
|
|
|
1194
924
|
fill: "none"
|
|
1195
925
|
}, getIconA11yProps(title)), props), {
|
|
1196
926
|
children: [
|
|
1197
|
-
title ? /* @__PURE__ */ (0,
|
|
1198
|
-
/* @__PURE__ */ (0,
|
|
927
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("title", { children: title }) : null,
|
|
928
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1199
929
|
"path",
|
|
1200
930
|
{
|
|
1201
931
|
d: "M81.0904 84.2882C81.0904 87.9246 81.0904 89.7428 79.901 90.644C78.7119 91.5456 76.9613 91.0542 73.4603 90.0717L17.1975 74.2838C15.0881 73.6919 14.0332 73.3959 13.4233 72.5913C12.8135 71.7866 12.8135 70.6911 12.8135 68.5002V31.4998C12.8135 29.309 12.8135 28.2134 13.4233 27.4088C14.0332 26.6042 15.0881 26.3081 17.1975 25.7163L73.4603 9.92806C76.9613 8.94572 78.7119 8.45448 79.901 9.35587C81.0904 10.2573 81.0904 12.0755 81.0904 15.7119V84.2882ZM26.8451 69.1363L73.4308 82.2104V56.0637L26.8451 69.1363ZM20.4723 63.0711L67.0487 50L20.4723 36.929V63.0711ZM26.8446 30.8638L73.4308 43.9366V17.7896L26.8446 30.8638Z",
|
|
@@ -1211,7 +941,7 @@ LogoPolymarketIcon.displayName = "LogoPolymarketIcon";
|
|
|
1211
941
|
// src/primitives/venue-logo/svg/logo-predict.tsx
|
|
1212
942
|
var import_hooks8 = require("@agg-build/hooks");
|
|
1213
943
|
var import_sdk7 = require("@agg-build/sdk");
|
|
1214
|
-
var
|
|
944
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
1215
945
|
var LogoPredictIcon = (_a) => {
|
|
1216
946
|
var _b = _a, {
|
|
1217
947
|
title,
|
|
@@ -1234,7 +964,7 @@ var LogoPredictIcon = (_a) => {
|
|
|
1234
964
|
isColor,
|
|
1235
965
|
color
|
|
1236
966
|
});
|
|
1237
|
-
return /* @__PURE__ */ (0,
|
|
967
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
1238
968
|
"svg",
|
|
1239
969
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1240
970
|
viewBox: "0 0 100 100",
|
|
@@ -1242,8 +972,8 @@ var LogoPredictIcon = (_a) => {
|
|
|
1242
972
|
fill: "none"
|
|
1243
973
|
}, getIconA11yProps(title)), props), {
|
|
1244
974
|
children: [
|
|
1245
|
-
title ? /* @__PURE__ */ (0,
|
|
1246
|
-
/* @__PURE__ */ (0,
|
|
975
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("title", { children: title }) : null,
|
|
976
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1247
977
|
"path",
|
|
1248
978
|
{
|
|
1249
979
|
fillRule: "evenodd",
|
|
@@ -1261,7 +991,7 @@ LogoPredictIcon.displayName = "LogoPredictIcon";
|
|
|
1261
991
|
// src/primitives/venue-logo/svg/logo-probable.tsx
|
|
1262
992
|
var import_hooks9 = require("@agg-build/hooks");
|
|
1263
993
|
var import_sdk8 = require("@agg-build/sdk");
|
|
1264
|
-
var
|
|
994
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
1265
995
|
var LogoProbableIcon = (_a) => {
|
|
1266
996
|
var _b = _a, {
|
|
1267
997
|
title,
|
|
@@ -1284,7 +1014,7 @@ var LogoProbableIcon = (_a) => {
|
|
|
1284
1014
|
isColor,
|
|
1285
1015
|
color
|
|
1286
1016
|
});
|
|
1287
|
-
return /* @__PURE__ */ (0,
|
|
1017
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
1288
1018
|
"svg",
|
|
1289
1019
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1290
1020
|
viewBox: "0 0 100 100",
|
|
@@ -1292,16 +1022,16 @@ var LogoProbableIcon = (_a) => {
|
|
|
1292
1022
|
fill: "none"
|
|
1293
1023
|
}, getIconA11yProps(title)), props), {
|
|
1294
1024
|
children: [
|
|
1295
|
-
title ? /* @__PURE__ */ (0,
|
|
1296
|
-
/* @__PURE__ */ (0,
|
|
1025
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("title", { children: title }) : null,
|
|
1026
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1297
1027
|
"path",
|
|
1298
1028
|
{
|
|
1299
1029
|
d: "M75.625 59.3489C75.6247 53.7323 71.0719 49.1792 65.4551 49.179H33.9209C28.3039 49.179 23.7503 53.7321 23.75 59.3489C23.75 64.9659 28.3038 69.5198 33.9209 69.5198H65.4551C71.0719 69.5195 75.625 64.9658 75.625 59.3489ZM90.625 59.3489C90.625 73.2501 79.3562 84.5195 65.4551 84.5198H33.9209C20.0196 84.5198 8.75 73.2502 8.75 59.3489C8.75026 45.4477 20.0198 34.179 33.9209 34.179H65.4551C79.3559 34.1792 90.6247 45.4478 90.625 59.3489Z",
|
|
1300
1030
|
fill: primaryColor
|
|
1301
1031
|
}
|
|
1302
1032
|
),
|
|
1303
|
-
/* @__PURE__ */ (0,
|
|
1304
|
-
/* @__PURE__ */ (0,
|
|
1033
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "M90.9329 15.4546V30.4546H8.90234V15.4546H90.9329Z", fill: primaryColor }),
|
|
1034
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1305
1035
|
"path",
|
|
1306
1036
|
{
|
|
1307
1037
|
d: "M64.5742 51.3496C68.9894 51.3496 72.5742 54.9344 72.5742 59.3496C72.5742 63.7648 68.9894 67.3496 64.5742 67.3496C60.159 67.3496 56.5742 63.7648 56.5742 59.3496C56.5742 54.9344 60.159 51.3496 64.5742 51.3496Z",
|
|
@@ -1382,12 +1112,29 @@ var resolveVenueLineColor = (venue, isDarkTheme) => {
|
|
|
1382
1112
|
var DEFAULT_VENUE_COLOR = "#94a3b8";
|
|
1383
1113
|
|
|
1384
1114
|
// src/deposit/deposit-modal.constants.ts
|
|
1115
|
+
var BASE_URL = "https://assets.snagsolutions.io";
|
|
1385
1116
|
var CARD_NETWORK_OPTIONS = [
|
|
1386
|
-
{
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1117
|
+
{
|
|
1118
|
+
value: "ethereum",
|
|
1119
|
+
label: "Ethereum",
|
|
1120
|
+
iconUrl: `${BASE_URL}/public/prediction-markets/logos/ETH.svg`
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
value: "arbitrum",
|
|
1124
|
+
label: "Arbitrum",
|
|
1125
|
+
iconUrl: `${BASE_URL}/public/prediction-markets/logos/Arbitrum.svg`
|
|
1126
|
+
},
|
|
1127
|
+
{ value: "base", label: "Base", iconUrl: `${BASE_URL}/public/prediction-markets/logos/Base.svg` },
|
|
1128
|
+
{
|
|
1129
|
+
value: "solana",
|
|
1130
|
+
label: "Solana",
|
|
1131
|
+
iconUrl: `${BASE_URL}/public/prediction-markets/logos/Solana.svg`
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
value: "polygon",
|
|
1135
|
+
label: "Polygon",
|
|
1136
|
+
iconUrl: `${BASE_URL}/public/prediction-markets/logos/Polygon.svg`
|
|
1137
|
+
}
|
|
1391
1138
|
];
|
|
1392
1139
|
var NETWORK_TO_CURRENCY_CODE = {
|
|
1393
1140
|
ethereum: "USDC",
|
|
@@ -1401,10 +1148,10 @@ var NETWORK_TO_CURRENCY_CODE = {
|
|
|
1401
1148
|
var import_hooks11 = require("@agg-build/hooks");
|
|
1402
1149
|
|
|
1403
1150
|
// src/primitives/icon/svg/apple.tsx
|
|
1404
|
-
var
|
|
1151
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
1405
1152
|
var AppleIcon = (_a) => {
|
|
1406
1153
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1407
|
-
return /* @__PURE__ */ (0,
|
|
1154
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
1408
1155
|
"svg",
|
|
1409
1156
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1410
1157
|
viewBox: "0 0 24 24",
|
|
@@ -1412,15 +1159,15 @@ var AppleIcon = (_a) => {
|
|
|
1412
1159
|
fill: "none"
|
|
1413
1160
|
}, getIconA11yProps(title)), props), {
|
|
1414
1161
|
children: [
|
|
1415
|
-
title ? /* @__PURE__ */ (0,
|
|
1416
|
-
/* @__PURE__ */ (0,
|
|
1162
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("title", { children: title }) : null,
|
|
1163
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1417
1164
|
"path",
|
|
1418
1165
|
{
|
|
1419
1166
|
d: "M18.5464 12.763C18.5704 10.893 19.5504 9.166 21.1434 8.187C20.1344 6.745 18.5034 5.864 16.7444 5.809C14.8934 5.615 13.0994 6.916 12.1564 6.916C11.1954 6.916 9.74336 5.828 8.17936 5.86C6.12236 5.927 4.25036 7.068 3.24936 8.867C1.11836 12.557 2.70736 17.981 4.74936 20.964C5.77136 22.425 6.96436 24.056 8.52736 23.999C10.0564 23.936 10.6274 23.024 12.4724 23.024C14.3004 23.024 14.8364 23.999 16.4304 23.962C18.0704 23.935 19.1044 22.495 20.0904 21.02C20.8244 19.979 21.3894 18.829 21.7634 17.612C19.8154 16.788 18.5484 14.879 18.5464 12.763Z",
|
|
1420
1167
|
fill: "currentColor"
|
|
1421
1168
|
}
|
|
1422
1169
|
),
|
|
1423
|
-
/* @__PURE__ */ (0,
|
|
1170
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1424
1171
|
"path",
|
|
1425
1172
|
{
|
|
1426
1173
|
d: "M15.5354 3.847C16.4294 2.773 16.8704 1.393 16.7634 0C15.3974 0.144 14.1344 0.797 13.2284 1.829C12.3334 2.848 11.8794 4.18 11.9674 5.534C13.3524 5.548 14.6674 4.926 15.5354 3.847Z",
|
|
@@ -1434,10 +1181,10 @@ var AppleIcon = (_a) => {
|
|
|
1434
1181
|
AppleIcon.displayName = "AppleIcon";
|
|
1435
1182
|
|
|
1436
1183
|
// src/primitives/icon/svg/apps.tsx
|
|
1437
|
-
var
|
|
1184
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
1438
1185
|
var AppsIcon = (_a) => {
|
|
1439
1186
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1440
|
-
return /* @__PURE__ */ (0,
|
|
1187
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
1441
1188
|
"svg",
|
|
1442
1189
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1443
1190
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1446,30 +1193,30 @@ var AppsIcon = (_a) => {
|
|
|
1446
1193
|
className
|
|
1447
1194
|
}, getIconA11yProps(title)), props), {
|
|
1448
1195
|
children: [
|
|
1449
|
-
title ? /* @__PURE__ */ (0,
|
|
1450
|
-
/* @__PURE__ */ (0,
|
|
1451
|
-
/* @__PURE__ */ (0,
|
|
1196
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("title", { children: title }) : null,
|
|
1197
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("g", { transform: "translate(2 2)", children: [
|
|
1198
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1452
1199
|
"path",
|
|
1453
1200
|
{
|
|
1454
1201
|
d: "M3.5 0H2C1.46957 0 0.960859 0.210714 0.585787 0.585787C0.210714 0.960859 0 1.46957 0 2V3.5C0 4.03043 0.210714 4.53914 0.585787 4.91421C0.960859 5.28929 1.46957 5.5 2 5.5H3.5C4.03043 5.5 4.53914 5.28929 4.91421 4.91421C5.28929 4.53914 5.5 4.03043 5.5 3.5V2C5.5 1.46957 5.28929 0.960859 4.91421 0.585787C4.53914 0.210714 4.03043 0 3.5 0ZM4.5 3.5C4.5 3.76522 4.39464 4.01957 4.20711 4.20711C4.01957 4.39464 3.76522 4.5 3.5 4.5H2C1.73478 4.5 1.48043 4.39464 1.29289 4.20711C1.10536 4.01957 1 3.76522 1 3.5V2C1 1.73478 1.10536 1.48043 1.29289 1.29289C1.48043 1.10536 1.73478 1 2 1H3.5C3.76522 1 4.01957 1.10536 4.20711 1.29289C4.39464 1.48043 4.5 1.73478 4.5 2V3.5Z",
|
|
1455
1202
|
fill: "currentColor"
|
|
1456
1203
|
}
|
|
1457
1204
|
),
|
|
1458
|
-
/* @__PURE__ */ (0,
|
|
1205
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1459
1206
|
"path",
|
|
1460
1207
|
{
|
|
1461
1208
|
d: "M10 0H8.5C7.96957 0 7.46086 0.210714 7.08579 0.585786C6.71071 0.960859 6.5 1.46957 6.5 2V3.5C6.5 4.03043 6.71071 4.53914 7.08579 4.91421C7.46086 5.28929 7.96957 5.5 8.5 5.5H10C10.5304 5.5 11.0391 5.28929 11.4142 4.91421C11.7893 4.53914 12 4.03043 12 3.5V2C12 1.46957 11.7893 0.960859 11.4142 0.585786C11.0391 0.210714 10.5304 0 10 0ZM11 3.5C11 3.76522 10.8946 4.01957 10.7071 4.20711C10.5196 4.39464 10.2652 4.5 10 4.5H8.5C8.23478 4.5 7.98043 4.39464 7.79289 4.20711C7.60536 4.01957 7.5 3.76522 7.5 3.5V2C7.5 1.73478 7.60536 1.48043 7.79289 1.29289C7.98043 1.10536 8.23478 1 8.5 1H10C10.2652 1 10.5196 1.10536 10.7071 1.29289C10.8946 1.48043 11 1.73478 11 2V3.5Z",
|
|
1462
1209
|
fill: "currentColor"
|
|
1463
1210
|
}
|
|
1464
1211
|
),
|
|
1465
|
-
/* @__PURE__ */ (0,
|
|
1212
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1466
1213
|
"path",
|
|
1467
1214
|
{
|
|
1468
1215
|
d: "M3.5 6.5H2C1.46957 6.5 0.960859 6.71071 0.585786 7.08579C0.210714 7.46086 0 7.96957 0 8.5V10C0 10.5304 0.210714 11.0391 0.585786 11.4142C0.960859 11.7893 1.46957 12 2 12H3.5C4.03043 12 4.53914 11.7893 4.91421 11.4142C5.28929 11.0391 5.5 10.5304 5.5 10V8.5C5.5 7.96957 5.28929 7.46086 4.91421 7.08579C4.53914 6.71071 4.03043 6.5 3.5 6.5ZM4.5 10C4.5 10.2652 4.39464 10.5196 4.20711 10.7071C4.01957 10.8946 3.76522 11 3.5 11H2C1.73478 11 1.48043 10.8946 1.29289 10.7071C1.10536 10.5196 1 10.2652 1 10V8.5C1 8.23478 1.10536 7.98043 1.29289 7.79289C1.48043 7.60536 1.73478 7.5 2 7.5H3.5C3.76522 7.5 4.01957 7.60536 4.20711 7.79289C4.39464 7.98043 4.5 8.23478 4.5 8.5V10Z",
|
|
1469
1216
|
fill: "currentColor"
|
|
1470
1217
|
}
|
|
1471
1218
|
),
|
|
1472
|
-
/* @__PURE__ */ (0,
|
|
1219
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1473
1220
|
"path",
|
|
1474
1221
|
{
|
|
1475
1222
|
d: "M10 6.5H8.5C7.96957 6.5 7.46086 6.71071 7.08579 7.08579C6.71071 7.46086 6.5 7.96957 6.5 8.5V10C6.5 10.5304 6.71071 11.0391 7.08579 11.4142C7.46086 11.7893 7.96957 12 8.5 12H10C10.5304 12 11.0391 11.7893 11.4142 11.4142C11.7893 11.0391 12 10.5304 12 10V8.5C12 7.96957 11.7893 7.46086 11.4142 7.08579C11.0391 6.71071 10.5304 6.5 10 6.5ZM11 10C11 10.2652 10.8946 10.5196 10.7071 10.7071C10.5196 10.8946 10.2652 11 10 11H8.5C8.23478 11 7.98043 10.8946 7.79289 10.7071C7.60536 10.5196 7.5 10.2652 7.5 10V8.5C7.5 8.23478 7.60536 7.98043 7.79289 7.79289C7.98043 7.60536 8.23478 7.5 8.5 7.5H10C10.2652 7.5 10.5196 7.60536 10.7071 7.79289C10.8946 7.98043 11 8.23478 11 8.5V10Z",
|
|
@@ -1483,11 +1230,45 @@ var AppsIcon = (_a) => {
|
|
|
1483
1230
|
};
|
|
1484
1231
|
AppsIcon.displayName = "AppsIcon";
|
|
1485
1232
|
|
|
1233
|
+
// src/primitives/icon/svg/arbitrum.tsx
|
|
1234
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
1235
|
+
var ArbitrumIcon = (_a) => {
|
|
1236
|
+
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1237
|
+
return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
|
|
1238
|
+
"svg",
|
|
1239
|
+
__spreadProps(__spreadValues(__spreadValues({
|
|
1240
|
+
viewBox: "0 0 24 24",
|
|
1241
|
+
className,
|
|
1242
|
+
fill: "none"
|
|
1243
|
+
}, getIconA11yProps(title)), props), {
|
|
1244
|
+
children: [
|
|
1245
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("title", { children: title }) : null,
|
|
1246
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("rect", { width: "24", height: "24", rx: "4", fill: "#213147" }),
|
|
1247
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1248
|
+
"path",
|
|
1249
|
+
{
|
|
1250
|
+
d: "M13.62 8.08L15.06 10.64L16.5 13.2L12 19.8L7.5 13.2L8.94 10.64L10.38 8.08L12 5L13.62 8.08Z",
|
|
1251
|
+
fill: "#28A0F0"
|
|
1252
|
+
}
|
|
1253
|
+
),
|
|
1254
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1255
|
+
"path",
|
|
1256
|
+
{
|
|
1257
|
+
d: "M12 5L7.5 13.2L12 19.8L16.5 13.2L12 5ZM12 7.2L15.12 12.6L12 17.4L8.88 12.6L12 7.2Z",
|
|
1258
|
+
fill: "white"
|
|
1259
|
+
}
|
|
1260
|
+
)
|
|
1261
|
+
]
|
|
1262
|
+
})
|
|
1263
|
+
);
|
|
1264
|
+
};
|
|
1265
|
+
ArbitrumIcon.displayName = "ArbitrumIcon";
|
|
1266
|
+
|
|
1486
1267
|
// src/primitives/icon/svg/arrow-right.tsx
|
|
1487
|
-
var
|
|
1268
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
1488
1269
|
var ArrowRightIcon = (_a) => {
|
|
1489
1270
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1490
|
-
return /* @__PURE__ */ (0,
|
|
1271
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
1491
1272
|
"svg",
|
|
1492
1273
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1493
1274
|
viewBox: "0 0 14 14",
|
|
@@ -1495,15 +1276,15 @@ var ArrowRightIcon = (_a) => {
|
|
|
1495
1276
|
fill: "none"
|
|
1496
1277
|
}, getIconA11yProps(title)), props), {
|
|
1497
1278
|
children: [
|
|
1498
|
-
title ? /* @__PURE__ */ (0,
|
|
1499
|
-
/* @__PURE__ */ (0,
|
|
1279
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("title", { children: title }) : null,
|
|
1280
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("g", { clipPath: "url(#arrow-right-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
1500
1281
|
"path",
|
|
1501
1282
|
{
|
|
1502
1283
|
d: "M13.4867 5.76198L11.2292 3.48114C11.1749 3.42647 11.1104 3.38307 11.0393 3.35346C10.9683 3.32384 10.892 3.30859 10.815 3.30859C10.738 3.30859 10.6617 3.32384 10.5907 3.35346C10.5196 3.38307 10.4551 3.42647 10.4008 3.48114C10.2922 3.59044 10.2312 3.73828 10.2312 3.89239C10.2312 4.0465 10.2922 4.19435 10.4008 4.30364L12.4775 6.39781H0.583333C0.428624 6.39781 0.280251 6.45927 0.170854 6.56866C0.0614582 6.67806 0 6.82643 0 6.98114C0 7.13585 0.0614582 7.28423 0.170854 7.39362C0.280251 7.50302 0.428624 7.56448 0.583333 7.56448H12.5125L10.4008 9.67031C10.3462 9.72454 10.3028 9.78906 10.2731 9.86014C10.2435 9.93122 10.2283 10.0075 10.2283 10.0845C10.2283 10.1615 10.2435 10.2377 10.2731 10.3088C10.3028 10.3799 10.3462 10.4444 10.4008 10.4986C10.4551 10.5533 10.5196 10.5967 10.5907 10.6263C10.6617 10.6559 10.738 10.6712 10.815 10.6712C10.892 10.6712 10.9683 10.6559 11.0393 10.6263C11.1104 10.5967 11.1749 10.5533 11.2292 10.4986L13.4867 8.23531C13.8144 7.90718 13.9985 7.46239 13.9985 6.99864C13.9985 6.53489 13.8144 6.0901 13.4867 5.76198Z",
|
|
1503
1284
|
fill: "currentColor"
|
|
1504
1285
|
}
|
|
1505
1286
|
) }),
|
|
1506
|
-
/* @__PURE__ */ (0,
|
|
1287
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("clipPath", { id: "arrow-right-clip", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
|
|
1507
1288
|
]
|
|
1508
1289
|
})
|
|
1509
1290
|
);
|
|
@@ -1511,10 +1292,10 @@ var ArrowRightIcon = (_a) => {
|
|
|
1511
1292
|
ArrowRightIcon.displayName = "ArrowRightIcon";
|
|
1512
1293
|
|
|
1513
1294
|
// src/primitives/icon/svg/arrow-trend-up.tsx
|
|
1514
|
-
var
|
|
1295
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
1515
1296
|
var ArrowTrendUpIcon = (_a) => {
|
|
1516
1297
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1517
|
-
return /* @__PURE__ */ (0,
|
|
1298
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
1518
1299
|
"svg",
|
|
1519
1300
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1520
1301
|
viewBox: "0 0 16 16",
|
|
@@ -1522,15 +1303,15 @@ var ArrowTrendUpIcon = (_a) => {
|
|
|
1522
1303
|
fill: "none"
|
|
1523
1304
|
}, getIconA11yProps(title)), props), {
|
|
1524
1305
|
children: [
|
|
1525
|
-
title ? /* @__PURE__ */ (0,
|
|
1526
|
-
/* @__PURE__ */ (0,
|
|
1306
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("title", { children: title }) : null,
|
|
1307
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("g", { clipPath: "url(#arrow-trend-up-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
1527
1308
|
"path",
|
|
1528
1309
|
{
|
|
1529
1310
|
d: "M14.0002 4H10.0002C9.6315 4 9.3335 4.298 9.3335 4.66667C9.3335 5.03533 9.6315 5.33333 10.0002 5.33333H13.7242L9.3495 9.708C8.9735 10.084 8.3615 10.084 7.98483 9.708L6.29217 8.01533C5.39617 7.11933 3.93817 7.11933 3.04217 8.01533L0.1955 10.862C-0.0651667 11.1227 -0.0651667 11.544 0.1955 11.8047C0.3255 11.9347 0.496167 12 0.666833 12C0.8375 12 1.00817 11.9347 1.13817 11.8047L3.98483 8.958C4.3495 8.59333 4.98483 8.59333 5.3495 8.958L7.04217 10.6507C7.93817 11.5467 9.39617 11.5467 10.2922 10.6507L14.6675 6.276V10C14.6675 10.3687 14.9655 10.6667 15.3342 10.6667C15.7028 10.6667 16.0008 10.3687 16.0008 10V6C16.0008 4.89733 15.1028 4 14.0002 4Z",
|
|
1530
1311
|
fill: "currentColor"
|
|
1531
1312
|
}
|
|
1532
1313
|
) }),
|
|
1533
|
-
/* @__PURE__ */ (0,
|
|
1314
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("clipPath", { id: "arrow-trend-up-clip", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
1534
1315
|
]
|
|
1535
1316
|
})
|
|
1536
1317
|
);
|
|
@@ -1538,10 +1319,10 @@ var ArrowTrendUpIcon = (_a) => {
|
|
|
1538
1319
|
ArrowTrendUpIcon.displayName = "ArrowTrendUpIcon";
|
|
1539
1320
|
|
|
1540
1321
|
// src/primitives/icon/svg/arrows-to-dot.tsx
|
|
1541
|
-
var
|
|
1322
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
1542
1323
|
var ArrowsToDotIcon = (_a) => {
|
|
1543
1324
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1544
|
-
return /* @__PURE__ */ (0,
|
|
1325
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
1545
1326
|
"svg",
|
|
1546
1327
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1547
1328
|
viewBox: "0 0 16 16",
|
|
@@ -1549,8 +1330,8 @@ var ArrowsToDotIcon = (_a) => {
|
|
|
1549
1330
|
fill: "none"
|
|
1550
1331
|
}, getIconA11yProps(title)), props), {
|
|
1551
1332
|
children: [
|
|
1552
|
-
title ? /* @__PURE__ */ (0,
|
|
1553
|
-
/* @__PURE__ */ (0,
|
|
1333
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("title", { children: title }) : null,
|
|
1334
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1554
1335
|
"path",
|
|
1555
1336
|
{
|
|
1556
1337
|
d: "M8 6.66667C8.73667 6.66667 9.33333 7.26333 9.33333 8C9.33333 8.73667 8.73667 9.33333 8 9.33333C7.26333 9.33333 6.66667 8.73667 6.66667 8C6.66667 7.26333 7.26333 6.66667 8 6.66667ZM5.27867 7.05733L3.39267 5.17133C3.132 4.91067 2.71067 4.91067 2.45 5.17133C2.18933 5.432 2.18933 5.854 2.45 6.114L3.67467 7.33333H0.666667C0.298 7.33333 0 7.632 0 8C0 8.368 0.298 8.66667 0.666667 8.66667H3.662L2.44867 9.88667C2.18867 10.148 2.19 10.5693 2.45133 10.8293C2.71267 11.0893 3.13467 11.088 3.394 10.8267L5.27933 8.93133C5.79467 8.41467 5.79467 7.574 5.27933 7.05667L5.27867 7.05733ZM7.068 5.278C7.56133 5.79267 8.45 5.79267 8.94267 5.278L10.828 3.392C11.0887 3.13133 11.0887 2.70933 10.828 2.44933C10.5673 2.18867 10.146 2.18867 9.88533 2.44933L8.66667 3.674V0.666667C8.66667 0.298667 8.36867 0 8 0C7.63133 0 7.33333 0.298667 7.33333 0.666667V3.662L6.11333 2.44867C5.852 2.18867 5.43067 2.19 5.17067 2.45133C4.91067 2.71267 4.912 3.13467 5.17333 3.394L7.068 5.278ZM8.94267 10.7213C8.42667 10.2053 7.58533 10.2053 7.06867 10.72L5.17267 12.606C4.91133 12.866 4.91 13.2873 5.17 13.5487C5.42933 13.8093 5.85067 13.8113 6.11267 13.5513L7.33267 12.3307V15.3333C7.33267 15.702 7.63067 16 7.99933 16C8.368 16 8.666 15.702 8.666 15.3333V12.3307L9.88467 13.55C10.1453 13.8107 10.5667 13.8107 10.8273 13.55C11.088 13.2893 11.088 12.868 10.8273 12.6073L8.94267 10.7213ZM15.3333 7.33333H12.3307L13.55 6.114C13.8107 5.854 13.8107 5.432 13.55 5.17133C13.2893 4.91067 12.868 4.91067 12.6073 5.17133L10.7213 7.05733C10.2053 7.574 10.2047 8.41467 10.72 8.93133L12.606 10.8273C12.866 11.088 13.2873 11.09 13.5487 10.83C13.81 10.57 13.8113 10.1487 13.5513 9.88733L12.3307 8.66733H15.3333C15.702 8.66733 16 8.36867 16 8.00067C16 7.63267 15.702 7.334 15.3333 7.334V7.33333Z",
|
|
@@ -1564,10 +1345,10 @@ var ArrowsToDotIcon = (_a) => {
|
|
|
1564
1345
|
ArrowsToDotIcon.displayName = "ArrowsToDotIcon";
|
|
1565
1346
|
|
|
1566
1347
|
// src/primitives/icon/svg/badge-check-thin.tsx
|
|
1567
|
-
var
|
|
1348
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
1568
1349
|
var BadgeCheckThinIcon = (_a) => {
|
|
1569
1350
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1570
|
-
return /* @__PURE__ */ (0,
|
|
1351
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
1571
1352
|
"svg",
|
|
1572
1353
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1573
1354
|
viewBox: "0 0 24 24",
|
|
@@ -1575,8 +1356,8 @@ var BadgeCheckThinIcon = (_a) => {
|
|
|
1575
1356
|
className
|
|
1576
1357
|
}, getIconA11yProps(title)), props), {
|
|
1577
1358
|
children: [
|
|
1578
|
-
title ? /* @__PURE__ */ (0,
|
|
1579
|
-
/* @__PURE__ */ (0,
|
|
1359
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("title", { children: title }) : null,
|
|
1360
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1580
1361
|
"path",
|
|
1581
1362
|
{
|
|
1582
1363
|
d: "M12 24C10.461 24 9.00998 23.324 8.01798 22.146C7.92298 22.033 7.79898 21.982 7.64198 21.991C6.11398 22.117 4.60298 21.574 3.51498 20.486C2.42698 19.398 1.87798 17.894 2.00998 16.359C2.02298 16.212 1.96698 16.078 1.85498 15.984C0.675977 14.991 0.000976562 13.539 0.000976562 12.001C0.000976562 10.463 0.676977 9.01095 1.85498 8.01895C1.96798 7.92395 2.02398 7.78995 2.01098 7.64295C1.87898 6.10795 2.42798 4.60395 3.51598 3.51595C4.60298 2.42895 6.09998 1.87595 7.64298 2.01095C7.78798 2.02495 7.92398 1.96895 8.01898 1.85595C9.01098 0.676953 10.462 0.00195312 12.001 0.00195312C13.54 0.00195312 14.991 0.677953 15.983 1.85595C16.079 1.96895 16.203 2.02195 16.359 2.01095C17.88 1.88095 19.398 2.42795 20.486 3.51595C21.574 4.60395 22.123 6.10795 21.991 7.64295C21.978 7.78995 22.034 7.92395 22.146 8.01795C23.325 9.01095 24 10.463 24 12.001C24 13.539 23.324 14.991 22.146 15.983C22.033 16.078 21.977 16.212 21.99 16.359C22.122 17.894 21.573 19.398 20.485 20.486C19.398 21.573 17.903 22.129 16.358 21.991C16.214 21.98 16.077 22.034 15.982 22.146C14.99 23.325 13.539 24 12 24ZM7.68598 20.988C8.11098 20.988 8.50498 21.171 8.78398 21.502C9.58498 22.454 10.758 23 12.001 23C13.244 23 14.417 22.454 15.218 21.502C15.524 21.138 15.975 20.952 16.446 20.994C17.687 21.099 18.901 20.657 19.78 19.778C20.659 18.899 21.102 17.684 20.996 16.443C20.956 15.969 21.141 15.523 21.505 15.217C22.456 14.415 23.002 13.242 23.002 12C23.002 10.758 22.456 9.58395 21.504 8.78195C21.141 8.47695 20.956 8.02995 20.996 7.55595C21.102 6.31495 20.659 5.09995 19.78 4.22095C18.9 3.34195 17.677 2.89895 16.446 3.00495C15.966 3.04895 15.525 2.86095 15.218 2.49695C14.417 1.54495 13.244 0.998953 12.001 0.998953C10.758 0.998953 9.58498 1.54495 8.78398 2.49695C8.47698 2.86095 8.02198 3.04795 7.55598 3.00495C6.31298 2.89795 5.10098 3.34195 4.22198 4.22095C3.34298 5.09995 2.89998 6.31495 3.00598 7.55595C3.04598 8.02995 2.86098 8.47595 2.49698 8.78195C1.54598 9.58395 0.999977 10.757 0.999977 11.999C0.999977 13.241 1.54598 14.415 2.49798 15.217C2.86098 15.522 3.04598 15.969 3.00598 16.443C2.89998 17.684 3.34298 18.899 4.22198 19.778C5.10098 20.657 6.32098 21.097 7.55598 20.994C7.59998 20.99 7.64298 20.988 7.68598 20.988ZM12.454 14.274L17.193 9.70595C17.392 9.51495 17.398 9.19795 17.207 8.99895C17.015 8.80195 16.699 8.79395 16.5 8.98595L11.754 13.56C11.169 14.144 10.217 14.144 9.61998 13.547L7.34198 11.43C7.13998 11.243 6.82298 11.254 6.63498 11.456C6.44698 11.658 6.45798 11.975 6.65998 12.163L8.92598 14.267C9.41398 14.755 10.056 14.999 10.696 14.999C11.336 14.999 11.971 14.757 12.455 14.273L12.454 14.274Z",
|
|
@@ -1590,10 +1371,10 @@ var BadgeCheckThinIcon = (_a) => {
|
|
|
1590
1371
|
BadgeCheckThinIcon.displayName = "BadgeCheckThinIcon";
|
|
1591
1372
|
|
|
1592
1373
|
// src/primitives/icon/svg/bank.tsx
|
|
1593
|
-
var
|
|
1374
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
1594
1375
|
var BankIcon = (_a) => {
|
|
1595
1376
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1596
|
-
return /* @__PURE__ */ (0,
|
|
1377
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
1597
1378
|
"svg",
|
|
1598
1379
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1599
1380
|
viewBox: "0 0 24 24",
|
|
@@ -1601,8 +1382,8 @@ var BankIcon = (_a) => {
|
|
|
1601
1382
|
fill: "none"
|
|
1602
1383
|
}, getIconA11yProps(title)), props), {
|
|
1603
1384
|
children: [
|
|
1604
|
-
title ? /* @__PURE__ */ (0,
|
|
1605
|
-
/* @__PURE__ */ (0,
|
|
1385
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("title", { children: title }) : null,
|
|
1386
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
1606
1387
|
"path",
|
|
1607
1388
|
{
|
|
1608
1389
|
d: "M23 22H1C0.448 22 0 22.448 0 23C0 23.552 0.448 24 1 24H23C23.552 24 24 23.552 24 23C24 22.448 23.552 22 23 22ZM2 21H4V11H2V21ZM6 21H8V11H6V21ZM10 21H14V11H10V21ZM16 21H18V11H16V21ZM20 21H22V11H20V21ZM12 0.334C11.826 0.123 11.569 0 11.297 0H12.703C12.431 0 12.174 0.123 12 0.334ZM0.392 8.613C0.144 9.02 0 9.495 0 10C0 10 0 10 1 10H23C24 10 24 10 24 10C24 9.495 23.856 9.02 23.608 8.613L13.406 0.668C13.016 0.244 12.528 0 12 0C11.472 0 10.984 0.244 10.594 0.668L0.392 8.613ZM12 2.156L21.445 9H2.555L12 2.156ZM12 5C10.895 5 10 5.895 10 7C10 8.105 10.895 9 12 9C13.105 9 14 8.105 14 7C14 5.895 13.105 5 12 5ZM12 8C11.448 8 11 7.552 11 7C11 6.448 11.448 6 12 6C12.552 6 13 6.448 13 7C13 7.552 12.552 8 12 8Z",
|
|
@@ -1615,11 +1396,38 @@ var BankIcon = (_a) => {
|
|
|
1615
1396
|
};
|
|
1616
1397
|
BankIcon.displayName = "BankIcon";
|
|
1617
1398
|
|
|
1399
|
+
// src/primitives/icon/svg/base.tsx
|
|
1400
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
1401
|
+
var BaseIcon = (_a) => {
|
|
1402
|
+
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1403
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
1404
|
+
"svg",
|
|
1405
|
+
__spreadProps(__spreadValues(__spreadValues({
|
|
1406
|
+
viewBox: "0 0 24 24",
|
|
1407
|
+
className,
|
|
1408
|
+
fill: "none"
|
|
1409
|
+
}, getIconA11yProps(title)), props), {
|
|
1410
|
+
children: [
|
|
1411
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("title", { children: title }) : null,
|
|
1412
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("circle", { cx: "12", cy: "12", r: "12", fill: "#0052FF" }),
|
|
1413
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
1414
|
+
"path",
|
|
1415
|
+
{
|
|
1416
|
+
d: "M11.988 18.9C15.8 18.9 18.9 15.8 18.9 11.988C18.9 8.176 15.8 5.1 11.988 5.1C8.308 5.1 5.292 8.004 5.1 11.622H15.27V12.378H5.1C5.292 15.996 8.308 18.9 11.988 18.9Z",
|
|
1417
|
+
fill: "white"
|
|
1418
|
+
}
|
|
1419
|
+
)
|
|
1420
|
+
]
|
|
1421
|
+
})
|
|
1422
|
+
);
|
|
1423
|
+
};
|
|
1424
|
+
BaseIcon.displayName = "BaseIcon";
|
|
1425
|
+
|
|
1618
1426
|
// src/primitives/icon/svg/best-prices.tsx
|
|
1619
|
-
var
|
|
1427
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
1620
1428
|
var BestPricesIcon = (_a) => {
|
|
1621
1429
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1622
|
-
return /* @__PURE__ */ (0,
|
|
1430
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
1623
1431
|
"svg",
|
|
1624
1432
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1625
1433
|
width: "28",
|
|
@@ -1630,26 +1438,76 @@ var BestPricesIcon = (_a) => {
|
|
|
1630
1438
|
className
|
|
1631
1439
|
}, getIconA11yProps(title)), props), {
|
|
1632
1440
|
children: [
|
|
1633
|
-
title ? /* @__PURE__ */ (0,
|
|
1634
|
-
/* @__PURE__ */ (0,
|
|
1441
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("title", { children: title }) : null,
|
|
1442
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("g", { clipPath: "url(#clip0_best_prices)", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1443
|
+
"path",
|
|
1444
|
+
{
|
|
1445
|
+
d: "M12.8333 27.4167C12.8333 27.7387 12.572 28 12.25 28H5.25C2.3555 28 0 25.6445 0 22.75V5.25117C0 2.35667 2.35433 0 5.25 0H18.0833C20.9778 0 23.3333 2.35433 23.3333 5.24883V8.74883C23.3333 9.07083 23.0732 9.33217 22.75 9.33217C22.4268 9.33217 22.1667 9.07083 22.1667 8.74883V5.24883C22.1667 2.99717 20.3338 1.1655 18.0833 1.1655H5.25C2.99833 1.1655 1.16667 2.99833 1.16667 5.25V22.7488C1.16667 25.0005 2.9995 26.8322 5.25 26.8322H12.25C12.572 26.8322 12.8333 27.0947 12.8333 27.4167ZM27.8297 27.8297C27.7153 27.944 27.566 28 27.4167 28C27.2673 28 27.118 27.9428 27.0037 27.8297L23.0102 23.8362C21.6837 24.9748 19.964 25.6667 18.0822 25.6667C13.9008 25.6667 10.4988 22.2647 10.4988 18.0833C10.4988 13.902 13.9008 10.5 18.0822 10.5C22.2635 10.5 25.6655 13.902 25.6655 18.0833C25.6655 19.964 24.9725 21.6837 23.835 23.0113L27.8285 27.0048C28.056 27.2323 28.0572 27.6022 27.8297 27.8297ZM24.5 18.0833C24.5 14.546 21.6218 11.6667 18.0833 11.6667C14.5448 11.6667 11.6667 14.546 11.6667 18.0833C11.6667 21.6207 14.5448 24.5 18.0833 24.5C21.6218 24.5 24.5 21.6207 24.5 18.0833ZM7.58333 5.83333H5.25C4.928 5.83333 4.66667 6.09467 4.66667 6.41667C4.66667 6.73867 4.928 7 5.25 7H7.58333C7.90533 7 8.16667 6.73867 8.16667 6.41667C8.16667 6.09467 7.90533 5.83333 7.58333 5.83333ZM7.58333 17.5H5.25C4.928 17.5 4.66667 17.7613 4.66667 18.0833C4.66667 18.4053 4.928 18.6667 5.25 18.6667H7.58333C7.90533 18.6667 8.16667 18.4053 8.16667 18.0833C8.16667 17.7613 7.90533 17.5 7.58333 17.5ZM11.0833 5.83333C10.7613 5.83333 10.5 6.09467 10.5 6.41667C10.5 6.73867 10.7613 7 11.0833 7H18.0833C18.4053 7 18.6667 6.73867 18.6667 6.41667C18.6667 6.09467 18.4053 5.83333 18.0833 5.83333H11.0833ZM7.58333 11.6667H5.25C4.928 11.6667 4.66667 11.928 4.66667 12.25C4.66667 12.572 4.928 12.8333 5.25 12.8333H7.58333C7.90533 12.8333 8.16667 12.572 8.16667 12.25C8.16667 11.928 7.90533 11.6667 7.58333 11.6667ZM21.1668 16.4862L18.0098 19.5405C17.6167 19.9255 16.9762 19.9302 16.583 19.5452L14.9928 17.976C14.7642 17.7497 14.3943 17.752 14.168 17.9807C13.9417 18.2105 13.944 18.5803 14.1738 18.8055L15.7652 20.377C16.1875 20.79 16.7417 20.9965 17.2958 20.9965C17.85 20.9965 18.4053 20.7888 18.8253 20.3747L21.9788 17.325C22.2098 17.101 22.2168 16.7312 21.9928 16.5002C21.77 16.2692 21.399 16.2645 21.1668 16.4862Z",
|
|
1446
|
+
fill: "currentColor"
|
|
1447
|
+
}
|
|
1448
|
+
) }),
|
|
1449
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("clipPath", { id: "clip0_best_prices", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("rect", { width: "28", height: "28", fill: "white" }) }) })
|
|
1450
|
+
]
|
|
1451
|
+
})
|
|
1452
|
+
);
|
|
1453
|
+
};
|
|
1454
|
+
BestPricesIcon.displayName = "BestPricesIcon";
|
|
1455
|
+
|
|
1456
|
+
// src/primitives/icon/svg/bnb.tsx
|
|
1457
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
1458
|
+
var BnbIcon = (_a) => {
|
|
1459
|
+
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1460
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
1461
|
+
"svg",
|
|
1462
|
+
__spreadProps(__spreadValues(__spreadValues({
|
|
1463
|
+
viewBox: "0 0 24 24",
|
|
1464
|
+
className,
|
|
1465
|
+
fill: "none"
|
|
1466
|
+
}, getIconA11yProps(title)), props), {
|
|
1467
|
+
children: [
|
|
1468
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("title", { children: title }) : null,
|
|
1469
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("rect", { width: "24", height: "24", rx: "8", fill: "#F3BA2F" }),
|
|
1470
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1635
1471
|
"path",
|
|
1636
1472
|
{
|
|
1637
|
-
d: "
|
|
1638
|
-
fill: "
|
|
1473
|
+
d: "M9.295 12.001 9.306 15.97l3.37 1.982v2.322l-5.343-3.135v-6.301l1.962 1.16Zm0-3.968v2.312l-1.963-1.16V6.873L9.295 5.712l1.972 1.16-1.972 1.16Zm4.786-1.16 1.963-1.16 1.972 1.16-1.963 1.16-1.972-1.16Z",
|
|
1474
|
+
fill: "white"
|
|
1639
1475
|
}
|
|
1640
|
-
)
|
|
1641
|
-
/* @__PURE__ */ (0,
|
|
1476
|
+
),
|
|
1477
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1478
|
+
"path",
|
|
1479
|
+
{
|
|
1480
|
+
d: "M10.714 15.146v-2.322l1.962 1.16v2.312l-1.962-1.15Zm3.367 3.636 1.963 1.16 1.972-1.16v2.311l-1.972 1.161-1.963-1.16v-2.312Zm6.75-11.909 1.963-1.16 1.972 1.16v2.312l-1.972 1.16V8.033L20.83 6.873Zm1.963 8.999.01-3.97 1.963-1.16v6.301l-5.343 3.136v-2.322l3.37-1.985Z",
|
|
1481
|
+
fill: "white",
|
|
1482
|
+
transform: "translate(-6.667)"
|
|
1483
|
+
}
|
|
1484
|
+
),
|
|
1485
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1486
|
+
"path",
|
|
1487
|
+
{
|
|
1488
|
+
d: "m20.831 15.143-1.963 1.15v-2.312l1.963-1.16v2.322Z",
|
|
1489
|
+
fill: "white",
|
|
1490
|
+
transform: "translate(-6.667)"
|
|
1491
|
+
}
|
|
1492
|
+
),
|
|
1493
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1494
|
+
"path",
|
|
1495
|
+
{
|
|
1496
|
+
d: "m20.83 8.851.011 2.322-3.38 1.982v3.98l-1.963 1.15-1.963-1.15v-3.98l-3.38-1.982V8.851l1.972-1.16 3.36 1.992 3.38-1.992 1.973 1.16ZM10.714 4.9l5.334-3.144L21.39 4.9l-1.963 1.16-3.38-1.992-3.37 1.991L10.714 4.9Z",
|
|
1497
|
+
fill: "white"
|
|
1498
|
+
}
|
|
1499
|
+
)
|
|
1642
1500
|
]
|
|
1643
1501
|
})
|
|
1644
1502
|
);
|
|
1645
1503
|
};
|
|
1646
|
-
|
|
1504
|
+
BnbIcon.displayName = "BnbIcon";
|
|
1647
1505
|
|
|
1648
1506
|
// src/primitives/icon/svg/bolt.tsx
|
|
1649
|
-
var
|
|
1507
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
1650
1508
|
var BoltIcon = (_a) => {
|
|
1651
1509
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1652
|
-
return /* @__PURE__ */ (0,
|
|
1510
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
1653
1511
|
"svg",
|
|
1654
1512
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1655
1513
|
viewBox: "0 0 24 24",
|
|
@@ -1657,15 +1515,15 @@ var BoltIcon = (_a) => {
|
|
|
1657
1515
|
fill: "none"
|
|
1658
1516
|
}, getIconA11yProps(title)), props), {
|
|
1659
1517
|
children: [
|
|
1660
|
-
title ? /* @__PURE__ */ (0,
|
|
1661
|
-
/* @__PURE__ */ (0,
|
|
1518
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("title", { children: title }) : null,
|
|
1519
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("g", { clipPath: "url(#bolt-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
1662
1520
|
"path",
|
|
1663
1521
|
{
|
|
1664
1522
|
d: "M11.7372 24C11.4922 24 11.2432 23.946 11.0022 23.835C10.2162 23.472 9.83423 22.637 10.0722 21.805L11.8272 16H6.50123C5.70223 16 4.97023 15.632 4.49423 14.99C4.01823 14.348 3.87723 13.541 4.10823 12.776L7.13023 1.788C7.45523 0.714 8.41723 0 9.52623 0H13.8992C14.5872 0 15.2322 0.338 15.6242 0.903C16.0162 1.468 16.1062 2.191 15.8652 2.835L13.7052 9H17.5002C18.4422 9 19.2682 9.497 19.7092 10.33C20.1502 11.163 20.0982 12.124 19.5692 12.904L13.1592 23.216C12.8202 23.725 12.2912 24 11.7372 24ZM9.52723 1C8.86123 1 8.28423 1.428 8.09123 2.066L5.06923 13.054C4.92723 13.525 5.01123 14.009 5.29723 14.394C5.58323 14.779 6.02223 15 6.50223 15H12.5012C12.6592 15 12.8082 15.075 12.9022 15.202C12.9962 15.329 13.0252 15.493 12.9792 15.644L11.0322 22.086C10.9102 22.514 11.1532 22.802 11.4232 22.926C11.6922 23.05 12.0692 23.05 12.3192 22.673L18.7312 12.358C19.0592 11.874 19.0912 11.297 18.8262 10.797C18.5612 10.297 18.0662 9.999 17.5002 9.999H13.0002C12.8382 9.999 12.6862 9.92 12.5922 9.788C12.4982 9.656 12.4742 9.487 12.5282 9.333L14.9252 2.493C15.0572 2.14 15.0112 1.772 14.8022 1.472C14.5942 1.171 14.2642 0.999 13.8992 0.999H9.52623L9.52723 1Z",
|
|
1665
1523
|
fill: "currentColor"
|
|
1666
1524
|
}
|
|
1667
1525
|
) }),
|
|
1668
|
-
/* @__PURE__ */ (0,
|
|
1526
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("clipPath", { id: "bolt-clip", children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("rect", { width: "24", height: "24", fill: "white" }) }) })
|
|
1669
1527
|
]
|
|
1670
1528
|
})
|
|
1671
1529
|
);
|
|
@@ -1673,10 +1531,10 @@ var BoltIcon = (_a) => {
|
|
|
1673
1531
|
BoltIcon.displayName = "BoltIcon";
|
|
1674
1532
|
|
|
1675
1533
|
// src/primitives/icon/svg/check-circle.tsx
|
|
1676
|
-
var
|
|
1534
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
1677
1535
|
var CheckCircleIcon = (_a) => {
|
|
1678
1536
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1679
|
-
return /* @__PURE__ */ (0,
|
|
1537
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
1680
1538
|
"svg",
|
|
1681
1539
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1682
1540
|
width: "16",
|
|
@@ -1687,8 +1545,8 @@ var CheckCircleIcon = (_a) => {
|
|
|
1687
1545
|
className
|
|
1688
1546
|
}, getIconA11yProps(title)), props), {
|
|
1689
1547
|
children: [
|
|
1690
|
-
title ? /* @__PURE__ */ (0,
|
|
1691
|
-
/* @__PURE__ */ (0,
|
|
1548
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("title", { children: title }) : null,
|
|
1549
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
1692
1550
|
"path",
|
|
1693
1551
|
{
|
|
1694
1552
|
d: "M8 0C3.58867 0 0 3.58867 0 8C0 12.4113 3.58867 16 8 16C12.4113 16 16 12.4113 16 8C16 3.58867 12.4113 0 8 0ZM7.93933 10.2793C7.68133 10.5373 7.342 10.666 7.00133 10.666C6.66067 10.666 6.318 10.536 6.05733 10.276L4.20267 8.47867L5.13133 7.52067L6.99333 9.32533L10.866 5.52467L11.802 6.47467L7.93933 10.2793Z",
|
|
@@ -1702,10 +1560,10 @@ var CheckCircleIcon = (_a) => {
|
|
|
1702
1560
|
CheckCircleIcon.displayName = "CheckCircleIcon";
|
|
1703
1561
|
|
|
1704
1562
|
// src/primitives/icon/svg/chart-candlestick.tsx
|
|
1705
|
-
var
|
|
1563
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
1706
1564
|
var ChartCandlestickIcon = (_a) => {
|
|
1707
1565
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1708
|
-
return /* @__PURE__ */ (0,
|
|
1566
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
1709
1567
|
"svg",
|
|
1710
1568
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1711
1569
|
viewBox: "0 0 20 20",
|
|
@@ -1714,21 +1572,21 @@ var ChartCandlestickIcon = (_a) => {
|
|
|
1714
1572
|
className
|
|
1715
1573
|
}, getIconA11yProps(title)), props), {
|
|
1716
1574
|
children: [
|
|
1717
|
-
/* @__PURE__ */ (0,
|
|
1575
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
1718
1576
|
"path",
|
|
1719
1577
|
{
|
|
1720
1578
|
d: "M5.55496 13.3329H6.11051H7.22163H7.77718V6.66623H7.22163H6.11051H5.55496V13.3329ZM8.88829 13.6107C8.88829 14.0709 8.5152 14.444 8.05496 14.444H7.22163H6.11051H5.27718L5.192 14.4397C4.77178 14.397 4.44385 14.0422 4.44385 13.6107V6.38845C4.44385 5.92822 4.81694 5.55512 5.27718 5.55512H6.11051H7.22163H8.05496C8.5152 5.55512 8.88829 5.92822 8.88829 6.38845V13.6107Z",
|
|
1721
1579
|
fill: "currentColor"
|
|
1722
1580
|
}
|
|
1723
1581
|
),
|
|
1724
|
-
/* @__PURE__ */ (0,
|
|
1582
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
1725
1583
|
"path",
|
|
1726
1584
|
{
|
|
1727
1585
|
d: "M12.2216 12.2218H12.7772H13.8883H14.4438V7.77734H13.8883H12.7772H12.2216V12.2218ZM15.555 12.4996C15.555 12.9598 15.1819 13.3329 14.7216 13.3329H13.8883H12.7772H11.9438L11.8587 13.3286C11.4384 13.2859 11.1105 12.931 11.1105 12.4996V7.49957C11.1105 7.03933 11.4836 6.66623 11.9438 6.66623H12.7772H13.8883H14.7216C15.1819 6.66623 15.555 7.03933 15.555 7.49957V12.4996Z",
|
|
1728
1586
|
fill: "currentColor"
|
|
1729
1587
|
}
|
|
1730
1588
|
),
|
|
1731
|
-
/* @__PURE__ */ (0,
|
|
1589
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
1732
1590
|
"path",
|
|
1733
1591
|
{
|
|
1734
1592
|
fillRule: "evenodd",
|
|
@@ -1737,7 +1595,7 @@ var ChartCandlestickIcon = (_a) => {
|
|
|
1737
1595
|
fill: "currentColor"
|
|
1738
1596
|
}
|
|
1739
1597
|
),
|
|
1740
|
-
/* @__PURE__ */ (0,
|
|
1598
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
1741
1599
|
"path",
|
|
1742
1600
|
{
|
|
1743
1601
|
fillRule: "evenodd",
|
|
@@ -1753,10 +1611,10 @@ var ChartCandlestickIcon = (_a) => {
|
|
|
1753
1611
|
ChartCandlestickIcon.displayName = "ChartCandlestickIcon";
|
|
1754
1612
|
|
|
1755
1613
|
// src/primitives/icon/svg/chart-line.tsx
|
|
1756
|
-
var
|
|
1614
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
1757
1615
|
var ChartLineIcon = (_a) => {
|
|
1758
1616
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1759
|
-
return /* @__PURE__ */ (0,
|
|
1617
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
1760
1618
|
"svg",
|
|
1761
1619
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1762
1620
|
viewBox: "0 0 20 20",
|
|
@@ -1765,29 +1623,29 @@ var ChartLineIcon = (_a) => {
|
|
|
1765
1623
|
className
|
|
1766
1624
|
}, getIconA11yProps(title)), props), {
|
|
1767
1625
|
children: [
|
|
1768
|
-
title ? /* @__PURE__ */ (0,
|
|
1769
|
-
/* @__PURE__ */ (0,
|
|
1626
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("title", { children: title }) : null,
|
|
1627
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
1770
1628
|
"path",
|
|
1771
1629
|
{
|
|
1772
1630
|
d: "M16.8875 5.37257C16.6712 5.28028 16.4321 5.25518 16.2012 5.29987C15.9703 5.34459 15.7582 5.45741 15.592 5.62376C15.4258 5.79009 15.3132 6.00218 15.2686 6.23303L13.8672 13.5068L12.6558 10.2527C12.5907 10.0785 12.4852 9.92156 12.3482 9.79586C12.2109 9.67003 12.0458 9.57864 11.8664 9.52893C11.6869 9.47923 11.4982 9.47263 11.3157 9.50995C11.1332 9.5473 10.9621 9.62754 10.8166 9.74378L10.5746 9.93692L9.56334 8.34566C9.44798 8.16423 9.28505 8.018 9.09242 7.92249C8.89973 7.82699 8.68443 7.78559 8.47014 7.80367C8.25577 7.8218 8.05005 7.89849 7.87606 8.02503C7.70218 8.15153 7.566 8.32319 7.48273 8.52145L5.72004 12.7207L4.79828 11.9937C4.55292 11.8004 4.24095 11.7125 3.93077 11.749C3.6205 11.7856 3.33728 11.9439 3.14356 12.189L3.14301 12.1884L1.51487 14.2539L1.51433 14.2533C1.41771 14.3762 1.37444 14.5327 1.3928 14.6879C1.41122 14.8432 1.49034 14.9849 1.61307 15.0818C1.7359 15.1787 1.89227 15.2232 2.04764 15.2049C2.20294 15.1867 2.34451 15.1073 2.44152 14.9847L4.06912 12.922L4.99196 13.65C5.13448 13.7623 5.30109 13.84 5.47861 13.8774C5.65618 13.9147 5.84005 13.9103 6.01572 13.8649C6.19141 13.8195 6.35425 13.734 6.49152 13.6153C6.62876 13.4966 6.73698 13.348 6.80728 13.1807L8.56942 8.98314L9.60349 10.6091L9.67239 10.7068C9.74621 10.8005 9.83393 10.8828 9.9328 10.9504C10.0647 11.0405 10.2139 11.1029 10.3706 11.1338C10.5273 11.1645 10.6887 11.1629 10.8448 11.1294C11.0009 11.0959 11.1486 11.0313 11.2788 10.939L11.574 10.7296L12.7637 13.9267C12.8534 14.1676 13.0193 14.3727 13.2363 14.5105C13.4532 14.6482 13.7094 14.7108 13.9654 14.6895C14.2216 14.6682 14.4638 14.564 14.655 14.3922C14.8462 14.2205 14.9759 13.9909 15.0245 13.7385L16.4264 6.46252L17.8749 8.70754C17.9169 8.77265 17.9713 8.82942 18.035 8.87355C18.0987 8.91771 18.1708 8.94885 18.2466 8.96524C18.3224 8.98163 18.4008 8.98293 18.4771 8.96904C18.5534 8.95514 18.6263 8.92644 18.6914 8.8844C18.7566 8.84235 18.8128 8.78762 18.8569 8.72381C18.901 8.66003 18.9323 8.58802 18.9486 8.51222C18.9649 8.43652 18.9658 8.35835 18.9519 8.28219C18.9379 8.20597 18.9093 8.13296 18.8672 8.06789L18.8667 8.06734L17.4154 5.81745C17.2879 5.61981 17.1039 5.46489 16.8875 5.37257Z",
|
|
1773
1631
|
fill: "currentColor"
|
|
1774
1632
|
}
|
|
1775
1633
|
),
|
|
1776
|
-
/* @__PURE__ */ (0,
|
|
1634
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
1777
1635
|
"path",
|
|
1778
1636
|
{
|
|
1779
1637
|
d: "M10.4631 11.4269C10.6099 11.4405 10.7584 11.4319 10.9032 11.4009C10.7102 11.4423 10.5107 11.444 10.3171 11.4059C10.2989 11.4023 10.2808 11.3984 10.2629 11.3941C10.1371 11.3644 10.0159 11.3181 9.90263 11.2565L9.90176 11.256C9.85881 11.2326 9.81699 11.207 9.77646 11.1793C9.61349 11.0679 9.47488 10.9245 9.36906 10.7579L8.62036 9.57988L7.06362 13.2878C6.97676 13.4945 6.8433 13.6785 6.67365 13.8252C6.5178 13.96 6.33528 14.06 6.13825 14.1189C6.12082 14.1241 6.10327 14.129 6.08561 14.1335C5.86846 14.1897 5.64128 14.1949 5.42179 14.1487C5.39778 14.1437 5.37392 14.1381 5.35025 14.1318C5.18457 14.0882 5.02788 14.0157 4.88746 13.9176L4.88406 13.9151C4.86239 13.8999 4.84111 13.884 4.82025 13.8676L4.1153 13.3115L2.65995 15.1565C2.51728 15.337 2.30878 15.4534 2.08028 15.4803C2.05174 15.4837 2.02319 15.4856 1.99471 15.4861L1.99468 15.4861C1.99469 15.4861 1.9947 15.4861 1.99471 15.4861L2.08028 15.4803C2.30878 15.4534 2.51728 15.337 2.65995 15.1565L4.1153 13.3115L4.82025 13.8676L4.88406 13.9151C5.02536 14.0144 5.18322 14.0878 5.35025 14.1318C5.37392 14.1381 5.39778 14.1437 5.42179 14.1487L5.50432 14.1634C5.67031 14.1884 5.83933 14.1846 6.004 14.152L6.08561 14.1335C6.10327 14.129 6.12082 14.1241 6.13825 14.1189C6.30842 14.068 6.46767 13.9862 6.60838 13.878L6.67365 13.8252C6.8433 13.6785 6.97676 13.4945 7.06362 13.2878L8.62036 9.57988L9.36906 10.7579C9.47488 10.9245 9.61349 11.0679 9.77646 11.1793L9.90176 11.256C10.0153 11.3178 10.1368 11.3643 10.2629 11.3941C10.2808 11.3984 10.2989 11.4023 10.3171 11.4059L10.4631 11.4269Z",
|
|
1780
1638
|
fill: "currentColor"
|
|
1781
1639
|
}
|
|
1782
1640
|
),
|
|
1783
|
-
/* @__PURE__ */ (0,
|
|
1641
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
1784
1642
|
"path",
|
|
1785
1643
|
{
|
|
1786
1644
|
d: "M1.99468 15.4861L1.99471 15.4861C1.9947 15.4861 1.99469 15.4861 1.99468 15.4861C1.9448 15.487 1.89515 15.4836 1.84626 15.476C1.77676 15.4653 1.7088 15.4461 1.64391 15.419C1.57189 15.3889 1.50366 15.3489 1.4413 15.2997C1.26066 15.1572 1.14397 14.9489 1.11688 14.7204C1.08979 14.4919 1.15451 14.262 1.29683 14.0812L2.92578 12.0162C2.94214 11.9955 2.95902 11.9753 2.97639 11.9556C3.18137 11.7233 3.45477 11.5625 3.75628 11.4963L3.76129 11.4955C3.80636 11.4857 3.85206 11.4781 3.89824 11.4727C4.2816 11.4275 4.66723 11.5362 4.97045 11.7751L5.60556 12.2759L7.22706 8.41378C7.23269 8.40038 7.23851 8.38707 7.24453 8.37387C7.34851 8.14561 7.50983 7.94784 7.71308 7.80002L7.63485 7.86132C7.46833 8.00075 7.33478 8.1758 7.24453 8.37387C7.23851 8.38707 7.23269 8.40038 7.22706 8.41378L5.60556 12.2759L4.97045 11.7751C4.66723 11.5362 4.2816 11.4275 3.89824 11.4727L3.76129 11.4955C3.4578 11.561 3.1825 11.722 2.97639 11.9556C2.95902 11.9753 2.94214 11.9955 2.92578 12.0162L1.29683 14.0812C1.15451 14.262 1.08979 14.4919 1.11688 14.7204L1.13151 14.8052C1.17449 15 1.28339 15.1751 1.4413 15.2997C1.50366 15.3489 1.57189 15.3889 1.64391 15.419C1.7088 15.4461 1.77676 15.4653 1.84626 15.476C1.89515 15.4836 1.9448 15.487 1.99468 15.4861Z",
|
|
1787
1645
|
fill: "currentColor"
|
|
1788
1646
|
}
|
|
1789
1647
|
),
|
|
1790
|
-
/* @__PURE__ */ (0,
|
|
1648
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
1791
1649
|
"path",
|
|
1792
1650
|
{
|
|
1793
1651
|
d: "M15.465 5.3617C15.6316 5.21547 15.8293 5.10915 16.043 5.05098L16.0463 5.05022C16.0801 5.04112 16.1142 5.03321 16.1487 5.02653C16.4341 4.97129 16.7295 5.00274 16.9968 5.11683C17.2642 5.23091 17.4913 5.42242 17.6488 5.66668L19.1004 7.91651C19.1624 8.01229 19.2049 8.11934 19.2254 8.23155C19.246 8.34375 19.2442 8.45891 19.2202 8.57043C19.1962 8.68195 19.1505 8.78765 19.0856 8.88149C19.0208 8.97533 18.9381 9.05546 18.8422 9.11731C18.7464 9.17916 18.6393 9.22151 18.527 9.24194C18.4148 9.26237 18.2997 9.26049 18.1882 9.23638C18.1777 9.23412 18.1673 9.23167 18.1569 9.22903C18.0845 9.21056 18.0147 9.18287 17.9495 9.14658L17.9474 9.14526C17.9233 9.13181 17.9 9.11721 17.8773 9.10148C17.8685 9.09539 17.8598 9.08915 17.8512 9.08276C17.7914 9.038 17.7376 8.98582 17.6912 8.9274L17.6886 8.92366C17.672 8.90248 17.6563 8.88051 17.6417 8.8578L17.6886 8.92366C17.7355 8.98354 17.7902 9.03705 17.8512 9.08276C17.8598 9.08915 17.8685 9.09539 17.8773 9.10148L17.9474 9.14526C18.0132 9.18215 18.0837 9.21033 18.1569 9.22903C18.1673 9.23167 18.1777 9.23412 18.1882 9.23638L18.2723 9.25021C18.3288 9.25672 18.3859 9.25758 18.4426 9.25292L18.527 9.24194C18.6393 9.22151 18.7464 9.17916 18.8422 9.11731C18.9381 9.05546 19.0208 8.97533 19.0856 8.88149C19.1505 8.78765 19.1962 8.68195 19.2202 8.57043C19.2442 8.45891 19.246 8.34375 19.2254 8.23155C19.2049 8.11934 19.1624 8.01229 19.1004 7.91651L17.6488 5.66668C17.4913 5.42242 17.2642 5.23091 16.9968 5.11683C16.7295 5.00274 16.4341 4.97129 16.1487 5.02653L16.0463 5.05022C15.8313 5.1082 15.6324 5.21475 15.465 5.3617Z",
|
|
@@ -1801,10 +1659,10 @@ var ChartLineIcon = (_a) => {
|
|
|
1801
1659
|
ChartLineIcon.displayName = "ChartLineIcon";
|
|
1802
1660
|
|
|
1803
1661
|
// src/primitives/icon/svg/circle-overlap.tsx
|
|
1804
|
-
var
|
|
1662
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
1805
1663
|
var CircleOverlapIcon = (_a) => {
|
|
1806
1664
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1807
|
-
return /* @__PURE__ */ (0,
|
|
1665
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
1808
1666
|
"svg",
|
|
1809
1667
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1810
1668
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1813,8 +1671,8 @@ var CircleOverlapIcon = (_a) => {
|
|
|
1813
1671
|
className
|
|
1814
1672
|
}, getIconA11yProps(title)), props), {
|
|
1815
1673
|
children: [
|
|
1816
|
-
title ? /* @__PURE__ */ (0,
|
|
1817
|
-
/* @__PURE__ */ (0,
|
|
1674
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("title", { children: title }) : null,
|
|
1675
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("g", { transform: "translate(2 2)", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
1818
1676
|
"path",
|
|
1819
1677
|
{
|
|
1820
1678
|
d: "M8.439 3.561C8.108 1.545 6.3585 0 4.25 0C1.9065 0 0 1.9065 0 4.25C0 6.3585 1.545 8.108 3.561 8.439C3.892 10.455 5.6415 12 7.75 12C10.0935 12 12 10.0935 12 7.75C12 5.6415 10.455 3.892 8.439 3.561ZM1 4.25C1 2.458 2.458 1 4.25 1C5.7895 1 7.08 2.0775 7.4135 3.517C5.3385 3.681 3.681 5.3385 3.517 7.4135C2.0775 7.08 1 5.7895 1 4.25ZM7.75 11C6.2105 11 4.92 9.9225 4.5865 8.483C6.6615 8.319 8.319 6.6615 8.483 4.5865C9.9225 4.92 11 6.2105 11 7.75C11 9.542 9.542 11 7.75 11Z",
|
|
@@ -1828,10 +1686,10 @@ var CircleOverlapIcon = (_a) => {
|
|
|
1828
1686
|
CircleOverlapIcon.displayName = "CircleOverlapIcon";
|
|
1829
1687
|
|
|
1830
1688
|
// src/primitives/icon/svg/chevron-down.tsx
|
|
1831
|
-
var
|
|
1689
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
1832
1690
|
var ChevronDownIcon = (_a) => {
|
|
1833
1691
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1834
|
-
return /* @__PURE__ */ (0,
|
|
1692
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
1835
1693
|
"svg",
|
|
1836
1694
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1837
1695
|
viewBox: "0 0 16 16",
|
|
@@ -1839,8 +1697,8 @@ var ChevronDownIcon = (_a) => {
|
|
|
1839
1697
|
fill: "none"
|
|
1840
1698
|
}, getIconA11yProps(title)), props), {
|
|
1841
1699
|
children: [
|
|
1842
|
-
title ? /* @__PURE__ */ (0,
|
|
1843
|
-
/* @__PURE__ */ (0,
|
|
1700
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("title", { children: title }) : null,
|
|
1701
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
1844
1702
|
"path",
|
|
1845
1703
|
{
|
|
1846
1704
|
d: "M12.473 6.11907C12.4111 6.05659 12.3373 6.00699 12.2561 5.97315C12.1749 5.9393 12.0877 5.92188 11.9997 5.92188C11.9117 5.92188 11.8246 5.9393 11.7433 5.97315C11.6621 6.00699 11.5884 6.05659 11.5264 6.11907L8.47305 9.17241C8.41107 9.23489 8.33734 9.28449 8.2561 9.31833C8.17486 9.35218 8.08772 9.36961 7.99971 9.36961C7.91171 9.36961 7.82457 9.35218 7.74333 9.31833C7.66209 9.28449 7.58836 9.23489 7.52638 9.17241L4.47305 6.11907C4.41107 6.05659 4.33734 6.00699 4.2561 5.97315C4.17486 5.9393 4.08772 5.92188 3.99971 5.92188C3.91171 5.92188 3.82457 5.9393 3.74333 5.97315C3.66209 6.00699 3.58836 6.05659 3.52638 6.11907C3.40221 6.24398 3.33252 6.41295 3.33252 6.58907C3.33252 6.7652 3.40221 6.93417 3.52638 7.05907L6.58638 10.1191C6.96138 10.4936 7.46971 10.704 7.99971 10.704C8.52972 10.704 9.03805 10.4936 9.41305 10.1191L12.473 7.05907C12.5972 6.93417 12.6669 6.7652 12.6669 6.58907C12.6669 6.41295 12.5972 6.24398 12.473 6.11907Z",
|
|
@@ -1854,10 +1712,10 @@ var ChevronDownIcon = (_a) => {
|
|
|
1854
1712
|
ChevronDownIcon.displayName = "ChevronDownIcon";
|
|
1855
1713
|
|
|
1856
1714
|
// src/primitives/icon/svg/chevron-left.tsx
|
|
1857
|
-
var
|
|
1715
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
1858
1716
|
var ChevronLeftIcon = (_a) => {
|
|
1859
1717
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1860
|
-
return /* @__PURE__ */ (0,
|
|
1718
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
1861
1719
|
"svg",
|
|
1862
1720
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1863
1721
|
viewBox: "0 0 24 24",
|
|
@@ -1865,8 +1723,8 @@ var ChevronLeftIcon = (_a) => {
|
|
|
1865
1723
|
fill: "none"
|
|
1866
1724
|
}, getIconA11yProps(title)), props), {
|
|
1867
1725
|
children: [
|
|
1868
|
-
title ? /* @__PURE__ */ (0,
|
|
1869
|
-
/* @__PURE__ */ (0,
|
|
1726
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("title", { children: title }) : null,
|
|
1727
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
1870
1728
|
"path",
|
|
1871
1729
|
{
|
|
1872
1730
|
d: "M10.5999 12.6786C10.5061 12.5856 10.4317 12.475 10.381 12.3531C10.3302 12.2313 10.3041 12.1006 10.3041 11.9686C10.3041 11.8366 10.3302 11.7058 10.381 11.584C10.4317 11.4621 10.5061 11.3515 10.5999 11.2586L15.1899 6.67857C15.2836 6.5856 15.358 6.475 15.4088 6.35314C15.4595 6.23128 15.4857 6.10058 15.4857 5.96857C15.4857 5.83655 15.4595 5.70585 15.4088 5.58399C15.358 5.46213 15.2836 5.35153 15.1899 5.25857C15.0025 5.07231 14.749 4.96777 14.4849 4.96777C14.2207 4.96777 13.9672 5.07231 13.7799 5.25857L9.18986 9.84857C8.62806 10.4111 8.3125 11.1736 8.3125 11.9686C8.3125 12.7636 8.62806 13.5261 9.18986 14.0886L13.7799 18.6786C13.9661 18.8633 14.2175 18.9675 14.4799 18.9686C14.6115 18.9693 14.7419 18.9441 14.8638 18.8943C14.9856 18.8446 15.0964 18.7712 15.1899 18.6786C15.2836 18.5856 15.358 18.475 15.4088 18.3531C15.4595 18.2313 15.4857 18.1006 15.4857 17.9686C15.4857 17.8366 15.4595 17.7058 15.4088 17.584C15.358 17.4621 15.2836 17.3515 15.1899 17.2586L10.5999 12.6786Z",
|
|
@@ -1880,10 +1738,10 @@ var ChevronLeftIcon = (_a) => {
|
|
|
1880
1738
|
ChevronLeftIcon.displayName = "ChevronLeftIcon";
|
|
1881
1739
|
|
|
1882
1740
|
// src/primitives/icon/svg/chevron-right.tsx
|
|
1883
|
-
var
|
|
1741
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
1884
1742
|
var ChevronRightIcon = (_a) => {
|
|
1885
1743
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1886
|
-
return /* @__PURE__ */ (0,
|
|
1744
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
1887
1745
|
"svg",
|
|
1888
1746
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1889
1747
|
viewBox: "0 0 16 16",
|
|
@@ -1891,8 +1749,8 @@ var ChevronRightIcon = (_a) => {
|
|
|
1891
1749
|
fill: "none"
|
|
1892
1750
|
}, getIconA11yProps(title)), props), {
|
|
1893
1751
|
children: [
|
|
1894
|
-
title ? /* @__PURE__ */ (0,
|
|
1895
|
-
/* @__PURE__ */ (0,
|
|
1752
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("title", { children: title }) : null,
|
|
1753
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
1896
1754
|
"path",
|
|
1897
1755
|
{
|
|
1898
1756
|
d: "M10.2665 6.56563L7.20654 3.50563C7.08163 3.38146 6.91266 3.31177 6.73653 3.31177C6.56041 3.31177 6.39144 3.38146 6.26653 3.50563C6.20405 3.5676 6.15445 3.64134 6.12061 3.72258C6.08676 3.80382 6.06934 3.89095 6.06934 3.97896C6.06934 4.06697 6.08676 4.15411 6.12061 4.23535C6.15445 4.31659 6.20405 4.39032 6.26653 4.4523L9.3332 7.50563C9.39569 7.5676 9.44528 7.64134 9.47913 7.72258C9.51298 7.80382 9.5304 7.89095 9.5304 7.97896C9.5304 8.06697 9.51298 8.15411 9.47913 8.23535C9.44528 8.31659 9.39569 8.39032 9.3332 8.4523L6.26653 11.5056C6.141 11.6303 6.07012 11.7997 6.0695 11.9766C6.06887 12.1535 6.13855 12.3234 6.2632 12.449C6.38785 12.5745 6.55727 12.6454 6.73418 12.646C6.91109 12.6466 7.081 12.5769 7.20654 12.4523L10.2665 9.3923C10.6411 9.0173 10.8514 8.50896 10.8514 7.97896C10.8514 7.44896 10.6411 6.94063 10.2665 6.56563Z",
|
|
@@ -1906,10 +1764,10 @@ var ChevronRightIcon = (_a) => {
|
|
|
1906
1764
|
ChevronRightIcon.displayName = "ChevronRightIcon";
|
|
1907
1765
|
|
|
1908
1766
|
// src/primitives/icon/svg/chevron-up.tsx
|
|
1909
|
-
var
|
|
1767
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
1910
1768
|
var ChevronUpIcon = (_a) => {
|
|
1911
1769
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1912
|
-
return /* @__PURE__ */ (0,
|
|
1770
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
|
|
1913
1771
|
"svg",
|
|
1914
1772
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1915
1773
|
viewBox: "0 0 16 16",
|
|
@@ -1917,8 +1775,8 @@ var ChevronUpIcon = (_a) => {
|
|
|
1917
1775
|
fill: "none"
|
|
1918
1776
|
}, getIconA11yProps(title)), props), {
|
|
1919
1777
|
children: [
|
|
1920
|
-
title ? /* @__PURE__ */ (0,
|
|
1921
|
-
/* @__PURE__ */ (0,
|
|
1778
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("title", { children: title }) : null,
|
|
1779
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
1922
1780
|
"path",
|
|
1923
1781
|
{
|
|
1924
1782
|
d: "M12.473 9.88093C12.4111 9.94341 12.3373 9.99301 12.2561 10.0269C12.1749 10.0607 12.0877 10.0781 11.9997 10.0781C11.9117 10.0781 11.8246 10.0607 11.7433 10.0269C11.6621 9.99301 11.5884 9.94341 11.5264 9.88093L8.47305 6.82759C8.41107 6.76511 8.33734 6.71551 8.2561 6.68167C8.17486 6.64782 8.08772 6.63039 7.99971 6.63039C7.91171 6.63039 7.82457 6.64782 7.74333 6.68167C7.66209 6.71551 7.58836 6.76511 7.52638 6.82759L4.47305 9.88093C4.41107 9.94341 4.33734 9.99301 4.2561 10.0269C4.17486 10.0607 4.08772 10.0781 3.99971 10.0781C3.91171 10.0781 3.82457 10.0607 3.74333 10.0269C3.66209 9.99301 3.58836 9.94341 3.52638 9.88093C3.40221 9.75602 3.33252 9.58705 3.33252 9.41093C3.33252 9.2348 3.40221 9.06583 3.52638 8.94093L6.58638 5.88093C6.96138 5.50639 7.46971 5.29597 7.99971 5.29597C8.52972 5.29597 9.03805 5.50639 9.41305 5.88093L12.473 8.94093C12.5972 9.06583 12.6669 9.2348 12.6669 9.41093C12.6669 9.58705 12.5972 9.75602 12.473 9.88093Z",
|
|
@@ -1932,10 +1790,10 @@ var ChevronUpIcon = (_a) => {
|
|
|
1932
1790
|
ChevronUpIcon.displayName = "ChevronUpIcon";
|
|
1933
1791
|
|
|
1934
1792
|
// src/primitives/icon/svg/copy.tsx
|
|
1935
|
-
var
|
|
1793
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
1936
1794
|
var CopyIcon = (_a) => {
|
|
1937
1795
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1938
|
-
return /* @__PURE__ */ (0,
|
|
1796
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
1939
1797
|
"svg",
|
|
1940
1798
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1941
1799
|
viewBox: "0 0 16 16",
|
|
@@ -1943,15 +1801,15 @@ var CopyIcon = (_a) => {
|
|
|
1943
1801
|
fill: "none"
|
|
1944
1802
|
}, getIconA11yProps(title)), props), {
|
|
1945
1803
|
children: [
|
|
1946
|
-
title ? /* @__PURE__ */ (0,
|
|
1947
|
-
/* @__PURE__ */ (0,
|
|
1804
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("title", { children: title }) : null,
|
|
1805
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("g", { clipPath: "url(#clip0_copy)", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
1948
1806
|
"path",
|
|
1949
1807
|
{
|
|
1950
1808
|
d: "M10 13.3333H3.33333C2.4496 13.3323 1.60237 12.9807 0.97748 12.3559C0.352588 11.731 0.00105857 10.8837 0 10L0 3.33333C0.00105857 2.4496 0.352588 1.60237 0.97748 0.97748C1.60237 0.352588 2.4496 0.00105857 3.33333 0L10 0C10.8837 0.00105857 11.731 0.352588 12.3559 0.97748C12.9807 1.60237 13.3323 2.4496 13.3333 3.33333V10C13.3323 10.8837 12.9807 11.731 12.3559 12.3559C11.731 12.9807 10.8837 13.3323 10 13.3333ZM3.33333 1.33333C2.8029 1.33333 2.29419 1.54405 1.91912 1.91912C1.54405 2.29419 1.33333 2.8029 1.33333 3.33333V10C1.33333 10.5304 1.54405 11.0391 1.91912 11.4142C2.29419 11.7893 2.8029 12 3.33333 12H10C10.5304 12 11.0391 11.7893 11.4142 11.4142C11.7893 11.0391 12 10.5304 12 10V3.33333C12 2.8029 11.7893 2.29419 11.4142 1.91912C11.0391 1.54405 10.5304 1.33333 10 1.33333H3.33333ZM16 12.6667V4C16 3.82319 15.9298 3.65362 15.8047 3.5286C15.6797 3.40357 15.5101 3.33333 15.3333 3.33333C15.1565 3.33333 14.987 3.40357 14.8619 3.5286C14.7369 3.65362 14.6667 3.82319 14.6667 4V12.6667C14.6667 13.1971 14.456 13.7058 14.0809 14.0809C13.7058 14.456 13.1971 14.6667 12.6667 14.6667H4C3.82319 14.6667 3.65362 14.7369 3.5286 14.8619C3.40357 14.987 3.33333 15.1565 3.33333 15.3333C3.33333 15.5101 3.40357 15.6797 3.5286 15.8047C3.65362 15.9298 3.82319 16 4 16H12.6667C13.5504 15.9989 14.3976 15.6474 15.0225 15.0225C15.6474 14.3976 15.9989 13.5504 16 12.6667Z",
|
|
1951
1809
|
fill: "currentColor"
|
|
1952
1810
|
}
|
|
1953
1811
|
) }),
|
|
1954
|
-
/* @__PURE__ */ (0,
|
|
1812
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("clipPath", { id: "clip0_copy", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
1955
1813
|
]
|
|
1956
1814
|
})
|
|
1957
1815
|
);
|
|
@@ -1959,10 +1817,10 @@ var CopyIcon = (_a) => {
|
|
|
1959
1817
|
CopyIcon.displayName = "CopyIcon";
|
|
1960
1818
|
|
|
1961
1819
|
// src/primitives/icon/svg/create-account.tsx
|
|
1962
|
-
var
|
|
1820
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
1963
1821
|
var CreateAccountIcon = (_a) => {
|
|
1964
1822
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1965
|
-
return /* @__PURE__ */ (0,
|
|
1823
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
|
|
1966
1824
|
"svg",
|
|
1967
1825
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1968
1826
|
width: "28",
|
|
@@ -1973,15 +1831,15 @@ var CreateAccountIcon = (_a) => {
|
|
|
1973
1831
|
className
|
|
1974
1832
|
}, getIconA11yProps(title)), props), {
|
|
1975
1833
|
children: [
|
|
1976
|
-
title ? /* @__PURE__ */ (0,
|
|
1977
|
-
/* @__PURE__ */ (0,
|
|
1834
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("title", { children: title }) : null,
|
|
1835
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("g", { clipPath: "url(#clip0_create_account)", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
1978
1836
|
"path",
|
|
1979
1837
|
{
|
|
1980
1838
|
d: "M22.1667 4.66667V0.583333C22.1667 0.261333 22.428 0 22.75 0C23.072 0 23.3333 0.261333 23.3333 0.583333V4.66667H27.4167C27.7387 4.66667 28 4.928 28 5.25C28 5.572 27.7387 5.83333 27.4167 5.83333H23.3333V9.91667C23.3333 10.2387 23.072 10.5 22.75 10.5C22.428 10.5 22.1667 10.2387 22.1667 9.91667V5.83333H18.0833C17.7613 5.83333 17.5 5.572 17.5 5.25C17.5 4.928 17.7613 4.66667 18.0833 4.66667H22.1667ZM18.6667 11.6667C18.6667 14.2403 16.5737 16.3333 14 16.3333C11.4263 16.3333 9.33333 14.2403 9.33333 11.6667C9.33333 9.093 11.4263 7 14 7C16.5737 7 18.6667 9.093 18.6667 11.6667ZM17.5 11.6667C17.5 9.737 15.9297 8.16667 14 8.16667C12.0703 8.16667 10.5 9.737 10.5 11.6667C10.5 13.5963 12.0703 15.1667 14 15.1667C15.9297 15.1667 17.5 13.5963 17.5 11.6667ZM27.3922 9.90617C27.7958 11.2292 28 12.6058 28 14C28 21.7198 21.7198 28 14 28C6.28017 28 0 21.7198 0 14C0 6.28017 6.28017 0 14 0C15.4548 0 16.8898 0.221667 18.2607 0.660333C18.5675 0.758333 18.7367 1.08617 18.6387 1.393C18.5395 1.69983 18.2105 1.87017 17.9048 1.771C16.6483 1.36967 15.3335 1.1655 13.9988 1.1655C6.92417 1.16667 1.16667 6.92417 1.16667 14C1.16667 18.5197 3.521 22.4933 7.063 24.78C7.5005 21.3383 10.4417 18.6667 14 18.6667C17.5583 18.6667 20.4995 21.3383 20.937 24.78C24.4778 22.4933 26.8333 18.5197 26.8333 14C26.8333 12.7213 26.6467 11.459 26.2757 10.2468C26.1823 9.93883 26.355 9.61217 26.6642 9.51883C26.9722 9.422 27.2977 9.59933 27.3922 9.90617ZM14 26.8333C16.0918 26.8333 18.0623 26.32 19.8088 25.4287C19.6805 22.3253 17.1348 19.8333 14 19.8333C10.8652 19.8333 8.31833 22.3242 8.19117 25.4287C9.93767 26.32 11.9082 26.8333 14 26.8333Z",
|
|
1981
1839
|
fill: "currentColor"
|
|
1982
1840
|
}
|
|
1983
1841
|
) }),
|
|
1984
|
-
/* @__PURE__ */ (0,
|
|
1842
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("clipPath", { id: "clip0_create_account", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("rect", { width: "28", height: "28", fill: "white" }) }) })
|
|
1985
1843
|
]
|
|
1986
1844
|
})
|
|
1987
1845
|
);
|
|
@@ -1989,10 +1847,10 @@ var CreateAccountIcon = (_a) => {
|
|
|
1989
1847
|
CreateAccountIcon.displayName = "CreateAccountIcon";
|
|
1990
1848
|
|
|
1991
1849
|
// src/primitives/icon/svg/credit-card.tsx
|
|
1992
|
-
var
|
|
1850
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
1993
1851
|
var CreditCardIcon = (_a) => {
|
|
1994
1852
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
1995
|
-
return /* @__PURE__ */ (0,
|
|
1853
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
1996
1854
|
"svg",
|
|
1997
1855
|
__spreadProps(__spreadValues(__spreadValues({
|
|
1998
1856
|
viewBox: "0 0 24 24",
|
|
@@ -2000,8 +1858,8 @@ var CreditCardIcon = (_a) => {
|
|
|
2000
1858
|
fill: "none"
|
|
2001
1859
|
}, getIconA11yProps(title)), props), {
|
|
2002
1860
|
children: [
|
|
2003
|
-
title ? /* @__PURE__ */ (0,
|
|
2004
|
-
/* @__PURE__ */ (0,
|
|
1861
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("title", { children: title }) : null,
|
|
1862
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2005
1863
|
"path",
|
|
2006
1864
|
{
|
|
2007
1865
|
d: "M19.5 3H4.5C2.019 3 0 5.019 0 7.5V16.5C0 18.981 2.019 21 4.5 21H19.5C21.981 21 24 18.981 24 16.5V7.5C24 5.019 21.981 3 19.5 3ZM1 8H23V10H1V8ZM4.5 4H19.5C21.258 4 22.704 5.308 22.949 7H1.051C1.296 5.308 2.742 4 4.5 4ZM19.5 20H4.5C2.57 20 1 18.43 1 16.5V11H23V16.5C23 18.43 21.43 20 19.5 20ZM5 14C3.897 14 3 14.897 3 16C3 17.103 3.897 18 5 18C6.103 18 7 17.103 7 16C7 14.897 6.103 14 5 14ZM5 17C4.449 17 4 16.552 4 16C4 15.448 4.449 15 5 15C5.551 15 6 15.448 6 16C6 16.552 5.551 17 5 17Z",
|
|
@@ -2015,10 +1873,10 @@ var CreditCardIcon = (_a) => {
|
|
|
2015
1873
|
CreditCardIcon.displayName = "CreditCardIcon";
|
|
2016
1874
|
|
|
2017
1875
|
// src/primitives/icon/svg/disconnect.tsx
|
|
2018
|
-
var
|
|
1876
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
2019
1877
|
var DisconnectIcon = (_a) => {
|
|
2020
1878
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2021
|
-
return /* @__PURE__ */ (0,
|
|
1879
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
2022
1880
|
"svg",
|
|
2023
1881
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2024
1882
|
viewBox: "0 0 16 16",
|
|
@@ -2026,16 +1884,16 @@ var DisconnectIcon = (_a) => {
|
|
|
2026
1884
|
fill: "none"
|
|
2027
1885
|
}, getIconA11yProps(title)), props), {
|
|
2028
1886
|
children: [
|
|
2029
|
-
title ? /* @__PURE__ */ (0,
|
|
2030
|
-
/* @__PURE__ */ (0,
|
|
2031
|
-
/* @__PURE__ */ (0,
|
|
1887
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("title", { children: title }) : null,
|
|
1888
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("g", { clipPath: "url(#disconnect-clip)", children: [
|
|
1889
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2032
1890
|
"path",
|
|
2033
1891
|
{
|
|
2034
1892
|
d: "M7.65067 10C7.47386 10 7.30429 10.0702 7.17926 10.1953C7.05424 10.3203 6.984 10.4899 6.984 10.6667V12.6667C6.984 13.1971 6.77329 13.7058 6.39821 14.0809C6.02314 14.456 5.51443 14.6667 4.984 14.6667H3.33333C2.8029 14.6667 2.29419 14.456 1.91912 14.0809C1.54405 13.7058 1.33333 13.1971 1.33333 12.6667V3.33333C1.33333 2.8029 1.54405 2.29419 1.91912 1.91912C2.29419 1.54405 2.8029 1.33333 3.33333 1.33333H4.984C5.51443 1.33333 6.02314 1.54405 6.39821 1.91912C6.77329 2.29419 6.984 2.8029 6.984 3.33333V5.33333C6.984 5.51014 7.05424 5.67971 7.17926 5.80474C7.30429 5.92976 7.47386 6 7.65067 6C7.82748 6 7.99705 5.92976 8.12207 5.80474C8.2471 5.67971 8.31733 5.51014 8.31733 5.33333V3.33333C8.31627 2.4496 7.96475 1.60237 7.33985 0.97748C6.71496 0.352588 5.86773 0.00105857 4.984 0H3.33333C2.4496 0.00105857 1.60237 0.352588 0.97748 0.97748C0.352588 1.60237 0.00105857 2.4496 0 3.33333L0 12.6667C0.00105857 13.5504 0.352588 14.3976 0.97748 15.0225C1.60237 15.6474 2.4496 15.9989 3.33333 16H4.984C5.86773 15.9989 6.71496 15.6474 7.33985 15.0225C7.96475 14.3976 8.31627 13.5504 8.31733 12.6667V10.6667C8.31733 10.4899 8.2471 10.3203 8.12207 10.1953C7.99705 10.0702 7.82748 10 7.65067 10Z",
|
|
2035
1893
|
fill: "currentColor"
|
|
2036
1894
|
}
|
|
2037
1895
|
),
|
|
2038
|
-
/* @__PURE__ */ (0,
|
|
1896
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2039
1897
|
"path",
|
|
2040
1898
|
{
|
|
2041
1899
|
d: "M15.2443 6.58599L12.187 3.52866C12.1255 3.46499 12.0519 3.4142 11.9706 3.37926C11.8893 3.34432 11.8018 3.32593 11.7133 3.32516C11.6248 3.32439 11.537 3.34126 11.455 3.37478C11.3731 3.4083 11.2987 3.4578 11.2361 3.5204C11.1735 3.58299 11.124 3.65743 11.0905 3.73936C11.0569 3.82129 11.0401 3.90907 11.0408 3.99759C11.0416 4.08611 11.06 4.17359 11.0949 4.25493C11.1299 4.33627 11.1807 4.40983 11.2443 4.47133L14.0857 7.31333L3.99967 7.33333C3.82286 7.33333 3.65329 7.40356 3.52827 7.52859C3.40325 7.65361 3.33301 7.82318 3.33301 7.99999C3.33301 8.1768 3.40325 8.34637 3.52827 8.4714C3.65329 8.59642 3.82286 8.66666 3.99967 8.66666L14.125 8.64599L11.243 11.5287C11.1793 11.5902 11.1285 11.6637 11.0936 11.7451C11.0587 11.8264 11.0403 11.9139 11.0395 12.0024C11.0387 12.0909 11.0556 12.1787 11.0891 12.2606C11.1226 12.3426 11.1722 12.417 11.2347 12.4796C11.2973 12.5422 11.3718 12.5917 11.4537 12.6252C11.5356 12.6587 11.6234 12.6756 11.7119 12.6748C11.8005 12.6741 11.8879 12.6557 11.9693 12.6207C12.0506 12.5858 12.1242 12.535 12.1857 12.4713L15.243 9.41399C15.6181 9.03911 15.829 8.5306 15.8292 8.00027C15.8295 7.46994 15.6191 6.96123 15.2443 6.58599Z",
|
|
@@ -2043,7 +1901,7 @@ var DisconnectIcon = (_a) => {
|
|
|
2043
1901
|
}
|
|
2044
1902
|
)
|
|
2045
1903
|
] }),
|
|
2046
|
-
/* @__PURE__ */ (0,
|
|
1904
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("clipPath", { id: "disconnect-clip", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
2047
1905
|
]
|
|
2048
1906
|
})
|
|
2049
1907
|
);
|
|
@@ -2051,10 +1909,10 @@ var DisconnectIcon = (_a) => {
|
|
|
2051
1909
|
DisconnectIcon.displayName = "DisconnectIcon";
|
|
2052
1910
|
|
|
2053
1911
|
// src/primitives/icon/svg/dots-horizontal.tsx
|
|
2054
|
-
var
|
|
1912
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
2055
1913
|
var DotsHorizontalIcon = (_a) => {
|
|
2056
1914
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2057
|
-
return /* @__PURE__ */ (0,
|
|
1915
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
2058
1916
|
"svg",
|
|
2059
1917
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2060
1918
|
viewBox: "0 0 16 16",
|
|
@@ -2062,10 +1920,10 @@ var DotsHorizontalIcon = (_a) => {
|
|
|
2062
1920
|
fill: "none"
|
|
2063
1921
|
}, getIconA11yProps(title)), props), {
|
|
2064
1922
|
children: [
|
|
2065
|
-
title ? /* @__PURE__ */ (0,
|
|
2066
|
-
/* @__PURE__ */ (0,
|
|
2067
|
-
/* @__PURE__ */ (0,
|
|
2068
|
-
/* @__PURE__ */ (0,
|
|
1923
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("title", { children: title }) : null,
|
|
1924
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "3.5", cy: "8", r: "1.25", fill: "currentColor" }),
|
|
1925
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "8", cy: "8", r: "1.25", fill: "currentColor" }),
|
|
1926
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "12.5", cy: "8", r: "1.25", fill: "currentColor" })
|
|
2069
1927
|
]
|
|
2070
1928
|
})
|
|
2071
1929
|
);
|
|
@@ -2073,10 +1931,10 @@ var DotsHorizontalIcon = (_a) => {
|
|
|
2073
1931
|
DotsHorizontalIcon.displayName = "DotsHorizontalIcon";
|
|
2074
1932
|
|
|
2075
1933
|
// src/primitives/icon/svg/document.tsx
|
|
2076
|
-
var
|
|
1934
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
2077
1935
|
var DocumentIcon = (_a) => {
|
|
2078
1936
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2079
|
-
return /* @__PURE__ */ (0,
|
|
1937
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
2080
1938
|
"svg",
|
|
2081
1939
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2082
1940
|
viewBox: "0 0 16 16",
|
|
@@ -2084,15 +1942,15 @@ var DocumentIcon = (_a) => {
|
|
|
2084
1942
|
fill: "none"
|
|
2085
1943
|
}, getIconA11yProps(title)), props), {
|
|
2086
1944
|
children: [
|
|
2087
|
-
title ? /* @__PURE__ */ (0,
|
|
2088
|
-
/* @__PURE__ */ (0,
|
|
1945
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("title", { children: title }) : null,
|
|
1946
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("g", { clipPath: "url(#document-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2089
1947
|
"path",
|
|
2090
1948
|
{
|
|
2091
1949
|
d: "M11.3335 9.33335C11.3335 9.51016 11.2633 9.67973 11.1382 9.80475C11.0132 9.92978 10.8436 10 10.6668 10H5.3335C5.15669 10 4.98712 9.92978 4.86209 9.80475C4.73707 9.67973 4.66683 9.51016 4.66683 9.33335C4.66683 9.15654 4.73707 8.98697 4.86209 8.86194C4.98712 8.73692 5.15669 8.66668 5.3335 8.66668H10.6668C10.8436 8.66668 11.0132 8.73692 11.1382 8.86194C11.2633 8.98697 11.3335 9.15654 11.3335 9.33335ZM8.66683 11.3333H5.3335C5.15669 11.3333 4.98712 11.4036 4.86209 11.5286C4.73707 11.6536 4.66683 11.8232 4.66683 12C4.66683 12.1768 4.73707 12.3464 4.86209 12.4714C4.98712 12.5964 5.15669 12.6667 5.3335 12.6667H8.66683C8.84364 12.6667 9.01321 12.5964 9.13823 12.4714C9.26326 12.3464 9.3335 12.1768 9.3335 12C9.3335 11.8232 9.26326 11.6536 9.13823 11.5286C9.01321 11.4036 8.84364 11.3333 8.66683 11.3333ZM14.6668 6.99002V12.6667C14.6658 13.5504 14.3142 14.3976 13.6894 15.0225C13.0645 15.6474 12.2172 15.999 11.3335 16H4.66683C3.7831 15.999 2.93587 15.6474 2.31098 15.0225C1.68608 14.3976 1.33455 13.5504 1.3335 12.6667V3.33335C1.33455 2.44962 1.68608 1.60239 2.31098 0.977495C2.93587 0.352603 3.7831 0.00107394 4.66683 1.53658e-05H7.67683C8.28991 -0.00156258 8.89722 0.118407 9.46365 0.352988C10.0301 0.587569 10.5444 0.932107 10.9768 1.36668L13.2995 3.69068C13.7343 4.12284 14.0791 4.63699 14.3138 5.20333C14.5485 5.76968 14.6685 6.37696 14.6668 6.99002ZM10.0342 2.30935C9.82435 2.10612 9.58879 1.9313 9.3335 1.78935V4.66668C9.3335 4.84349 9.40373 5.01306 9.52876 5.13809C9.65378 5.26311 9.82335 5.33335 10.0002 5.33335H12.8775C12.7355 5.07814 12.5604 4.84278 12.3568 4.63335L10.0342 2.30935ZM13.3335 6.99002C13.3335 6.88002 13.3122 6.77468 13.3022 6.66668H10.0002C9.46973 6.66668 8.96102 6.45597 8.58595 6.0809C8.21088 5.70582 8.00016 5.19711 8.00016 4.66668V1.36468C7.89216 1.35468 7.78616 1.33335 7.67683 1.33335H4.66683C4.1364 1.33335 3.62769 1.54406 3.25262 1.91914C2.87754 2.29421 2.66683 2.80292 2.66683 3.33335V12.6667C2.66683 13.1971 2.87754 13.7058 3.25262 14.0809C3.62769 14.456 4.1364 14.6667 4.66683 14.6667H11.3335C11.8639 14.6667 12.3726 14.456 12.7477 14.0809C13.1228 13.7058 13.3335 13.1971 13.3335 12.6667V6.99002Z",
|
|
2092
1950
|
fill: "currentColor"
|
|
2093
1951
|
}
|
|
2094
1952
|
) }),
|
|
2095
|
-
/* @__PURE__ */ (0,
|
|
1953
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("clipPath", { id: "document-clip", children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
2096
1954
|
]
|
|
2097
1955
|
})
|
|
2098
1956
|
);
|
|
@@ -2100,10 +1958,10 @@ var DocumentIcon = (_a) => {
|
|
|
2100
1958
|
DocumentIcon.displayName = "DocumentIcon";
|
|
2101
1959
|
|
|
2102
1960
|
// src/primitives/icon/svg/download.tsx
|
|
2103
|
-
var
|
|
1961
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
2104
1962
|
var DownloadIcon = (_a) => {
|
|
2105
1963
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2106
|
-
return /* @__PURE__ */ (0,
|
|
1964
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
|
|
2107
1965
|
"svg",
|
|
2108
1966
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2109
1967
|
viewBox: "0 0 16 16",
|
|
@@ -2111,16 +1969,16 @@ var DownloadIcon = (_a) => {
|
|
|
2111
1969
|
fill: "none"
|
|
2112
1970
|
}, getIconA11yProps(title)), props), {
|
|
2113
1971
|
children: [
|
|
2114
|
-
title ? /* @__PURE__ */ (0,
|
|
2115
|
-
/* @__PURE__ */ (0,
|
|
2116
|
-
/* @__PURE__ */ (0,
|
|
1972
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("title", { children: title }) : null,
|
|
1973
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("g", { clipPath: "url(#download-clip)", children: [
|
|
1974
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2117
1975
|
"path",
|
|
2118
1976
|
{
|
|
2119
1977
|
d: "M6.58516 12.0813C6.77089 12.2672 6.99143 12.4146 7.23416 12.5152C7.4769 12.6158 7.73707 12.6676 7.99983 12.6676C8.26258 12.6676 8.52275 12.6158 8.76549 12.5152C9.00822 12.4146 9.22876 12.2672 9.41449 12.0813L11.5552 9.94067C11.6699 9.81373 11.7315 9.64752 11.7271 9.47644C11.7227 9.30536 11.6527 9.14253 11.5316 9.02165C11.4104 8.90077 11.2474 8.8311 11.0764 8.82707C10.9053 8.82304 10.7392 8.88496 10.6125 9L8.66183 10.9513L8.66649 0.666667C8.66649 0.489856 8.59625 0.320286 8.47123 0.195262C8.34621 0.0702379 8.17664 0 7.99983 0C7.82301 0 7.65345 0.0702379 7.52842 0.195262C7.4034 0.320286 7.33316 0.489856 7.33316 0.666667L7.32716 10.9387L5.38716 9C5.26207 8.875 5.09244 8.8048 4.91559 8.80487C4.73874 8.80493 4.56916 8.87524 4.44416 9.00033C4.31915 9.12543 4.24896 9.29506 4.24902 9.4719C4.24909 9.64875 4.3194 9.81833 4.44449 9.94333L6.58516 12.0813Z",
|
|
2120
1978
|
fill: "currentColor"
|
|
2121
1979
|
}
|
|
2122
1980
|
),
|
|
2123
|
-
/* @__PURE__ */ (0,
|
|
1981
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2124
1982
|
"path",
|
|
2125
1983
|
{
|
|
2126
1984
|
d: "M15.3333 10.6667C15.1565 10.6667 14.987 10.7369 14.8619 10.8619C14.7369 10.9869 14.6667 11.1565 14.6667 11.3333V14C14.6667 14.1768 14.5964 14.3464 14.4714 14.4714C14.3464 14.5964 14.1768 14.6667 14 14.6667H2C1.82319 14.6667 1.65362 14.5964 1.5286 14.4714C1.40357 14.3464 1.33333 14.1768 1.33333 14V11.3333C1.33333 11.1565 1.2631 10.9869 1.13807 10.8619C1.01305 10.7369 0.843478 10.6667 0.666667 10.6667C0.489856 10.6667 0.320286 10.7369 0.195262 10.8619C0.0702379 10.9869 0 11.1565 0 11.3333L0 14C0 14.5304 0.210714 15.0391 0.585786 15.4142C0.960859 15.7893 1.46957 16 2 16H14C14.5304 16 15.0391 15.7893 15.4142 15.4142C15.7893 15.0391 16 14.5304 16 14V11.3333C16 11.1565 15.9298 10.9869 15.8047 10.8619C15.6797 10.7369 15.5101 10.6667 15.3333 10.6667Z",
|
|
@@ -2128,7 +1986,7 @@ var DownloadIcon = (_a) => {
|
|
|
2128
1986
|
}
|
|
2129
1987
|
)
|
|
2130
1988
|
] }),
|
|
2131
|
-
/* @__PURE__ */ (0,
|
|
1989
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("clipPath", { id: "download-clip", children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
2132
1990
|
]
|
|
2133
1991
|
})
|
|
2134
1992
|
);
|
|
@@ -2136,10 +1994,10 @@ var DownloadIcon = (_a) => {
|
|
|
2136
1994
|
DownloadIcon.displayName = "DownloadIcon";
|
|
2137
1995
|
|
|
2138
1996
|
// src/primitives/icon/svg/error-filled.tsx
|
|
2139
|
-
var
|
|
1997
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
2140
1998
|
var ErrorFilledIcon = (_a) => {
|
|
2141
1999
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2142
|
-
return /* @__PURE__ */ (0,
|
|
2000
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
|
|
2143
2001
|
"svg",
|
|
2144
2002
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2145
2003
|
viewBox: "0 0 16 16",
|
|
@@ -2147,10 +2005,10 @@ var ErrorFilledIcon = (_a) => {
|
|
|
2147
2005
|
fill: "none"
|
|
2148
2006
|
}, getIconA11yProps(title)), props), {
|
|
2149
2007
|
children: [
|
|
2150
|
-
title ? /* @__PURE__ */ (0,
|
|
2151
|
-
/* @__PURE__ */ (0,
|
|
2152
|
-
/* @__PURE__ */ (0,
|
|
2153
|
-
/* @__PURE__ */ (0,
|
|
2008
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("title", { children: title }) : null,
|
|
2009
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("circle", { cx: "8", cy: "8", r: "8", fill: "currentColor" }),
|
|
2010
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M8 4.16699V8.50033", stroke: "white", strokeWidth: "1.4", strokeLinecap: "round" }),
|
|
2011
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("circle", { cx: "8", cy: "11.167", r: "0.833333", fill: "white" })
|
|
2154
2012
|
]
|
|
2155
2013
|
})
|
|
2156
2014
|
);
|
|
@@ -2158,10 +2016,10 @@ var ErrorFilledIcon = (_a) => {
|
|
|
2158
2016
|
ErrorFilledIcon.displayName = "ErrorFilledIcon";
|
|
2159
2017
|
|
|
2160
2018
|
// src/primitives/icon/svg/external-link.tsx
|
|
2161
|
-
var
|
|
2019
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
2162
2020
|
var ExternalLinkIcon = (_a) => {
|
|
2163
2021
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2164
|
-
return /* @__PURE__ */ (0,
|
|
2022
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
|
|
2165
2023
|
"svg",
|
|
2166
2024
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2167
2025
|
viewBox: "0 0 14 14",
|
|
@@ -2169,26 +2027,64 @@ var ExternalLinkIcon = (_a) => {
|
|
|
2169
2027
|
fill: "none"
|
|
2170
2028
|
}, getIconA11yProps(title)), props), {
|
|
2171
2029
|
children: [
|
|
2172
|
-
title ? /* @__PURE__ */ (0,
|
|
2173
|
-
/* @__PURE__ */ (0,
|
|
2030
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("title", { children: title }) : null,
|
|
2031
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("g", { clipPath: "url(#clip0_422_235)", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2174
2032
|
"path",
|
|
2175
2033
|
{
|
|
2176
2034
|
d: "M11.6667 6.41667V11.0833C11.6667 12.6916 10.3582 14 8.75 14H2.91667C1.30842 14 0 12.6916 0 11.0833V5.25C0 3.64175 1.30842 2.33333 2.91667 2.33333H7.58333C7.90533 2.33333 8.16667 2.59467 8.16667 2.91667C8.16667 3.23867 7.90533 3.5 7.58333 3.5H2.91667C1.95183 3.5 1.16667 4.28517 1.16667 5.25V11.0833C1.16667 12.0482 1.95183 12.8333 2.91667 12.8333H8.75C9.71483 12.8333 10.5 12.0482 10.5 11.0833V6.41667C10.5 6.09467 10.7613 5.83333 11.0833 5.83333C11.4053 5.83333 11.6667 6.09467 11.6667 6.41667ZM12.25 0H8.16667C7.84467 0 7.58333 0.261333 7.58333 0.583333C7.58333 0.905333 7.84467 1.16667 8.16667 1.16667H12.0085L4.83758 8.33758C4.6095 8.56567 4.6095 8.93433 4.83758 9.16242C4.95133 9.27617 5.10067 9.33333 5.25 9.33333C5.39933 9.33333 5.54867 9.27617 5.66242 9.16242L12.8333 1.9915V5.83333C12.8333 6.15533 13.0947 6.41667 13.4167 6.41667C13.7387 6.41667 14 6.15533 14 5.83333V1.75C14 0.785167 13.2148 0 12.25 0Z",
|
|
2177
2035
|
fill: "currentColor"
|
|
2178
2036
|
}
|
|
2179
2037
|
) }),
|
|
2180
|
-
/* @__PURE__ */ (0,
|
|
2038
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("clipPath", { id: "clip0_422_235", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
|
|
2181
2039
|
]
|
|
2182
2040
|
})
|
|
2183
2041
|
);
|
|
2184
2042
|
};
|
|
2185
2043
|
ExternalLinkIcon.displayName = "ExternalLinkIcon";
|
|
2186
2044
|
|
|
2045
|
+
// src/primitives/icon/svg/ethereum.tsx
|
|
2046
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
2047
|
+
var EthereumIcon = (_a) => {
|
|
2048
|
+
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2049
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
|
|
2050
|
+
"svg",
|
|
2051
|
+
__spreadProps(__spreadValues(__spreadValues({
|
|
2052
|
+
viewBox: "0 0 24 24",
|
|
2053
|
+
className: cn("rounded-agg-sm", className),
|
|
2054
|
+
fill: "none"
|
|
2055
|
+
}, getIconA11yProps(title)), props), {
|
|
2056
|
+
children: [
|
|
2057
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("title", { children: title }) : null,
|
|
2058
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("rect", { width: "24", height: "24", fill: "#627EEA" }),
|
|
2059
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2060
|
+
"path",
|
|
2061
|
+
{
|
|
2062
|
+
d: "M12.0861 3.36035L11.9719 3.74822V15.0024L12.0861 15.1163L17.3101 12.0284L12.0861 3.36035Z",
|
|
2063
|
+
fill: "#C1CCF6"
|
|
2064
|
+
}
|
|
2065
|
+
),
|
|
2066
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { d: "M12.0861 3.36035L6.86206 12.0284L12.0861 15.1163V9.65385V3.36035Z", fill: "#FFFFFF" }),
|
|
2067
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2068
|
+
"path",
|
|
2069
|
+
{
|
|
2070
|
+
d: "M12.0858 16.1054L12.0215 16.1838V20.1927L12.0858 20.3806L17.313 13.019L12.0858 16.1054Z",
|
|
2071
|
+
fill: "#C1CCF6"
|
|
2072
|
+
}
|
|
2073
|
+
),
|
|
2074
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { d: "M12.0861 20.3806V16.1054L6.86206 13.019L12.0861 20.3806Z", fill: "#FFFFFF" }),
|
|
2075
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { d: "M12.0862 15.1163L17.3101 12.0283L12.0862 9.65381V15.1163Z", fill: "#8198EE" }),
|
|
2076
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { d: "M6.86206 12.0283L12.0861 15.1163V9.65381L6.86206 12.0283Z", fill: "#C1CCF6" })
|
|
2077
|
+
]
|
|
2078
|
+
})
|
|
2079
|
+
);
|
|
2080
|
+
};
|
|
2081
|
+
EthereumIcon.displayName = "EthereumIcon";
|
|
2082
|
+
|
|
2187
2083
|
// src/primitives/icon/svg/google.tsx
|
|
2188
|
-
var
|
|
2084
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
2189
2085
|
var GoogleIcon = (_a) => {
|
|
2190
2086
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2191
|
-
return /* @__PURE__ */ (0,
|
|
2087
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
|
|
2192
2088
|
"svg",
|
|
2193
2089
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2194
2090
|
viewBox: "0 0 24 24",
|
|
@@ -2196,29 +2092,29 @@ var GoogleIcon = (_a) => {
|
|
|
2196
2092
|
fill: "none"
|
|
2197
2093
|
}, getIconA11yProps(title)), props), {
|
|
2198
2094
|
children: [
|
|
2199
|
-
title ? /* @__PURE__ */ (0,
|
|
2200
|
-
/* @__PURE__ */ (0,
|
|
2095
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("title", { children: title }) : null,
|
|
2096
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2201
2097
|
"path",
|
|
2202
2098
|
{
|
|
2203
2099
|
d: "M23.0001 12.4427C23.0001 11.5198 22.9252 10.8464 22.7632 10.1479H12.2246V14.3134H18.4105C18.2858 15.3486 17.6124 16.9076 16.1157 17.9551L16.0948 18.0946L19.4269 20.6759L19.6577 20.699C21.7778 18.7409 23.0001 15.8599 23.0001 12.4427Z",
|
|
2204
2100
|
fill: "#4285F4"
|
|
2205
2101
|
}
|
|
2206
2102
|
),
|
|
2207
|
-
/* @__PURE__ */ (0,
|
|
2103
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2208
2104
|
"path",
|
|
2209
2105
|
{
|
|
2210
2106
|
d: "M12.2245 23.4181C15.2551 23.4181 17.7994 22.42 19.6577 20.699L16.1157 17.9551C15.1679 18.6161 13.8957 19.0779 12.2245 19.0779C9.25627 19.0779 6.73701 17.1199 5.83897 14.4136L5.70734 14.4248L2.24258 17.1062L2.19727 17.2321C4.04305 20.8988 7.83444 23.4181 12.2245 23.4181Z",
|
|
2211
2107
|
fill: "#34A853"
|
|
2212
2108
|
}
|
|
2213
2109
|
),
|
|
2214
|
-
/* @__PURE__ */ (0,
|
|
2110
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2215
2111
|
"path",
|
|
2216
2112
|
{
|
|
2217
2113
|
d: "M5.83897 14.4136C5.60201 13.7152 5.46486 12.9665 5.46486 12.1933C5.46486 11.42 5.602 10.6717 5.82649 9.97333L5.82021 9.82458L2.31203 7.1001L2.19725 7.15469C1.43651 8.67626 1 10.3849 1 12.1933C1 14.0017 1.43653 15.7106 2.19727 17.2321L5.83897 14.4136Z",
|
|
2218
2114
|
fill: "#FBBC05"
|
|
2219
2115
|
}
|
|
2220
2116
|
),
|
|
2221
|
-
/* @__PURE__ */ (0,
|
|
2117
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2222
2118
|
"path",
|
|
2223
2119
|
{
|
|
2224
2120
|
d: "M12.2245 5.30886C14.3322 5.30886 15.7539 6.21928 16.5646 6.98011L19.7324 3.88712C17.7869 2.07873 15.2551 0.96875 12.2245 0.96875C7.83444 0.96875 4.04304 3.48806 2.19725 7.15469L5.82649 9.97333C6.737 7.26698 9.25627 5.30886 12.2245 5.30886Z",
|
|
@@ -2232,10 +2128,10 @@ var GoogleIcon = (_a) => {
|
|
|
2232
2128
|
GoogleIcon.displayName = "GoogleIcon";
|
|
2233
2129
|
|
|
2234
2130
|
// src/primitives/icon/svg/hourglass-start.tsx
|
|
2235
|
-
var
|
|
2131
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
2236
2132
|
var HourglassStartIcon = (_a) => {
|
|
2237
2133
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2238
|
-
return /* @__PURE__ */ (0,
|
|
2134
|
+
return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
|
|
2239
2135
|
"svg",
|
|
2240
2136
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2241
2137
|
width: "16",
|
|
@@ -2246,8 +2142,8 @@ var HourglassStartIcon = (_a) => {
|
|
|
2246
2142
|
className
|
|
2247
2143
|
}, getIconA11yProps(title)), props), {
|
|
2248
2144
|
children: [
|
|
2249
|
-
title ? /* @__PURE__ */ (0,
|
|
2250
|
-
/* @__PURE__ */ (0,
|
|
2145
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("title", { children: title }) : null,
|
|
2146
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2251
2147
|
"path",
|
|
2252
2148
|
{
|
|
2253
2149
|
d: "M4.25 1.5H11.75M4.25 14.5H11.75M5 1.5V4.6C5 5.2 5.27 5.76 5.73 6.14L8 8L5.73 9.86C5.27 10.24 5 10.8 5 11.4V14.5M11 1.5V4.6C11 5.2 10.73 5.76 10.27 6.14L8 8L10.27 9.86C10.73 10.24 11 10.8 11 11.4V14.5",
|
|
@@ -2257,7 +2153,7 @@ var HourglassStartIcon = (_a) => {
|
|
|
2257
2153
|
strokeLinejoin: "round"
|
|
2258
2154
|
}
|
|
2259
2155
|
),
|
|
2260
|
-
/* @__PURE__ */ (0,
|
|
2156
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("path", { d: "M6.75 4.25H9.25L8 5.25L6.75 4.25Z", fill: "currentColor" })
|
|
2261
2157
|
]
|
|
2262
2158
|
})
|
|
2263
2159
|
);
|
|
@@ -2265,7 +2161,7 @@ var HourglassStartIcon = (_a) => {
|
|
|
2265
2161
|
HourglassStartIcon.displayName = "HourglassStartIcon";
|
|
2266
2162
|
|
|
2267
2163
|
// src/primitives/icon/svg/image.tsx
|
|
2268
|
-
var
|
|
2164
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
2269
2165
|
var ImageIcon = (_a) => {
|
|
2270
2166
|
var _b = _a, {
|
|
2271
2167
|
title,
|
|
@@ -2276,7 +2172,7 @@ var ImageIcon = (_a) => {
|
|
|
2276
2172
|
"className",
|
|
2277
2173
|
"isDarkTheme"
|
|
2278
2174
|
]);
|
|
2279
|
-
return /* @__PURE__ */ (0,
|
|
2175
|
+
return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
|
|
2280
2176
|
"svg",
|
|
2281
2177
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2282
2178
|
viewBox: "0 0 40 40",
|
|
@@ -2284,9 +2180,9 @@ var ImageIcon = (_a) => {
|
|
|
2284
2180
|
fill: "none"
|
|
2285
2181
|
}, getIconA11yProps(title)), props), {
|
|
2286
2182
|
children: [
|
|
2287
|
-
title ? /* @__PURE__ */ (0,
|
|
2288
|
-
/* @__PURE__ */ (0,
|
|
2289
|
-
/* @__PURE__ */ (0,
|
|
2183
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("title", { children: title }) : null,
|
|
2184
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("rect", { width: "40", height: "40", fill: "currentColor" }),
|
|
2185
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2290
2186
|
"path",
|
|
2291
2187
|
{
|
|
2292
2188
|
d: "M22.0001 16.3333C24.2092 16.3333 26.0001 14.5424 26.0001 12.3333C26.0001 10.1241 24.2092 8.33325 22.0001 8.33325C19.7909 8.33325 18.0001 10.1241 18.0001 12.3333C18.0001 14.5424 19.7909 16.3333 22.0001 16.3333Z",
|
|
@@ -2294,7 +2190,7 @@ var ImageIcon = (_a) => {
|
|
|
2294
2190
|
fillOpacity: "0.1"
|
|
2295
2191
|
}
|
|
2296
2192
|
),
|
|
2297
|
-
/* @__PURE__ */ (0,
|
|
2193
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2298
2194
|
"path",
|
|
2299
2195
|
{
|
|
2300
2196
|
d: "M29.8379 21.3615C29.5903 21.1242 29.262 20.9946 28.9224 21.0001C28.5828 21.0056 28.2586 21.1457 28.0186 21.3909L22.3828 27.1429L22.1904 27.3332L13.8385 19.0367C13.5855 18.799 13.2504 18.6666 12.9022 18.6666C12.5539 18.6666 12.2188 18.799 11.9658 19.0367L0 30.9233V39.9999H40V31.1341L29.8379 21.3615Z",
|
|
@@ -2309,10 +2205,10 @@ var ImageIcon = (_a) => {
|
|
|
2309
2205
|
ImageIcon.displayName = "ImageIcon";
|
|
2310
2206
|
|
|
2311
2207
|
// src/primitives/icon/svg/info.tsx
|
|
2312
|
-
var
|
|
2208
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
2313
2209
|
var InfoIcon = (_a) => {
|
|
2314
2210
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2315
|
-
return /* @__PURE__ */ (0,
|
|
2211
|
+
return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
|
|
2316
2212
|
"svg",
|
|
2317
2213
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2318
2214
|
viewBox: "0 0 12 12",
|
|
@@ -2320,23 +2216,23 @@ var InfoIcon = (_a) => {
|
|
|
2320
2216
|
fill: "none"
|
|
2321
2217
|
}, getIconA11yProps(title)), props), {
|
|
2322
2218
|
children: [
|
|
2323
|
-
title ? /* @__PURE__ */ (0,
|
|
2324
|
-
/* @__PURE__ */ (0,
|
|
2325
|
-
/* @__PURE__ */ (0,
|
|
2219
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("title", { children: title }) : null,
|
|
2220
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("g", { clipPath: "url(#info_clip)", children: [
|
|
2221
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2326
2222
|
"path",
|
|
2327
2223
|
{
|
|
2328
2224
|
d: "M6 0C4.81331 0 3.65328 0.351894 2.66658 1.01118C1.67989 1.67047 0.910851 2.60754 0.456726 3.7039C0.00259972 4.80026 -0.11622 6.00666 0.115291 7.17054C0.346802 8.33443 0.918247 9.40353 1.75736 10.2426C2.59648 11.0818 3.66558 11.6532 4.82946 11.8847C5.99335 12.1162 7.19975 11.9974 8.2961 11.5433C9.39246 11.0892 10.3295 10.3201 10.9888 9.33342C11.6481 8.34673 12 7.18669 12 6C11.9983 4.40923 11.3656 2.88411 10.2407 1.75926C9.1159 0.634414 7.59077 0.00172054 6 0ZM6 11C5.0111 11 4.0444 10.7068 3.22215 10.1573C2.39991 9.60794 1.75904 8.82705 1.38061 7.91342C1.00217 6.99979 0.90315 5.99445 1.09608 5.02455C1.289 4.05464 1.76521 3.16373 2.46447 2.46447C3.16373 1.7652 4.05465 1.289 5.02455 1.09607C5.99446 0.903148 6.99979 1.00216 7.91342 1.3806C8.82705 1.75904 9.60794 2.3999 10.1574 3.22215C10.7068 4.04439 11 5.01109 11 6C10.9985 7.32564 10.4713 8.59656 9.53393 9.53393C8.59656 10.4713 7.32564 10.9985 6 11Z",
|
|
2329
2225
|
fill: "currentColor"
|
|
2330
2226
|
}
|
|
2331
2227
|
),
|
|
2332
|
-
/* @__PURE__ */ (0,
|
|
2228
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2333
2229
|
"path",
|
|
2334
2230
|
{
|
|
2335
2231
|
d: "M6 5H5.5C5.36739 5 5.24021 5.05268 5.14645 5.14645C5.05268 5.24021 5 5.36739 5 5.5C5 5.63261 5.05268 5.75979 5.14645 5.85355C5.24021 5.94732 5.36739 6 5.5 6H6V9C6 9.13261 6.05268 9.25979 6.14645 9.35355C6.24021 9.44732 6.36739 9.5 6.5 9.5C6.63261 9.5 6.75979 9.44732 6.85355 9.35355C6.94732 9.25979 7 9.13261 7 9V6C7 5.73478 6.89464 5.48043 6.70711 5.29289C6.51957 5.10536 6.26522 5 6 5Z",
|
|
2336
2232
|
fill: "currentColor"
|
|
2337
2233
|
}
|
|
2338
2234
|
),
|
|
2339
|
-
/* @__PURE__ */ (0,
|
|
2235
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2340
2236
|
"path",
|
|
2341
2237
|
{
|
|
2342
2238
|
d: "M6 4C6.41421 4 6.75 3.66421 6.75 3.25C6.75 2.83579 6.41421 2.5 6 2.5C5.58579 2.5 5.25 2.83579 5.25 3.25C5.25 3.66421 5.58579 4 6 4Z",
|
|
@@ -2344,7 +2240,7 @@ var InfoIcon = (_a) => {
|
|
|
2344
2240
|
}
|
|
2345
2241
|
)
|
|
2346
2242
|
] }),
|
|
2347
|
-
/* @__PURE__ */ (0,
|
|
2243
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("clipPath", { id: "info_clip", children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("rect", { width: "12", height: "12", fill: "white" }) }) })
|
|
2348
2244
|
]
|
|
2349
2245
|
})
|
|
2350
2246
|
);
|
|
@@ -2360,10 +2256,10 @@ var iconSizeClasses = {
|
|
|
2360
2256
|
};
|
|
2361
2257
|
|
|
2362
2258
|
// src/primitives/search/search-empty-icon.tsx
|
|
2363
|
-
var
|
|
2259
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
2364
2260
|
var SearchEmptyIcon = (_a) => {
|
|
2365
2261
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2366
|
-
return /* @__PURE__ */ (0,
|
|
2262
|
+
return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
|
|
2367
2263
|
"svg",
|
|
2368
2264
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2369
2265
|
viewBox: "0 0 36 36",
|
|
@@ -2372,8 +2268,8 @@ var SearchEmptyIcon = (_a) => {
|
|
|
2372
2268
|
className
|
|
2373
2269
|
}, getIconA11yProps(title)), props), {
|
|
2374
2270
|
children: [
|
|
2375
|
-
title ? /* @__PURE__ */ (0,
|
|
2376
|
-
/* @__PURE__ */ (0,
|
|
2271
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("title", { children: title }) : null,
|
|
2272
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2377
2273
|
"path",
|
|
2378
2274
|
{
|
|
2379
2275
|
d: "M35.2335 0.758837C32.958 -1.51816 27.2145 1.83434 23.82 4.17284C22.029 3.41534 20.061 2.99534 17.9955 2.99534C9.72603 2.99534 2.99703 9.72434 2.99703 17.9953C2.99703 20.0593 3.41553 22.0273 4.17303 23.8183C1.83303 27.2143 -1.51797 32.9563 0.759027 35.2318C1.26903 35.7418 1.97703 35.9758 2.83953 35.9758C5.11653 35.9758 8.47653 34.3453 12.1545 31.8103C13.9515 32.5723 15.9255 32.9953 17.9955 32.9953C26.2665 32.9953 32.9955 26.2663 32.9955 17.9953C32.9955 15.9313 32.577 13.9633 31.8195 12.1723C32.43 11.2873 32.985 10.4233 33.48 9.58934C35.2755 6.55784 37.038 2.56334 35.2335 0.758837ZM17.997 4.49534C23.295 4.49534 27.8895 7.56434 30.099 12.0163C27.885 15.1228 25.008 18.4783 21.744 21.7423C18.48 25.0063 15.1245 27.8818 12.018 30.0958C7.56453 27.8863 4.49703 23.2918 4.49703 17.9938C4.49703 10.5523 10.5525 4.49534 17.997 4.49534ZM8.82603 32.1883C4.66353 34.6558 2.47503 34.8283 1.82103 34.1713C0.979527 33.3313 1.65453 30.3028 4.93803 25.3663C6.28203 27.7393 8.25453 29.7103 10.6275 31.0558C10.014 31.4623 9.41103 31.8418 8.82603 32.1883ZM31.497 17.9953C31.497 25.4383 25.4415 31.4953 17.997 31.4953C16.4655 31.4953 14.994 31.2388 13.62 30.7663C16.6755 28.5178 19.875 25.7323 22.8045 22.8028C25.8645 19.7428 28.593 16.5988 30.7755 13.6363C31.2435 15.0043 31.497 16.4698 31.497 17.9938V17.9953ZM31.0575 10.6243C29.7135 8.25134 27.741 6.27884 25.368 4.93484C30.3045 1.65134 33.333 0.979337 34.173 1.81784C34.83 2.47484 34.6545 4.66184 32.19 8.82284C31.8435 9.40934 31.464 10.0108 31.0575 10.6243Z",
|
|
@@ -2387,10 +2283,10 @@ var SearchEmptyIcon = (_a) => {
|
|
|
2387
2283
|
SearchEmptyIcon.displayName = "SearchEmptyIcon";
|
|
2388
2284
|
|
|
2389
2285
|
// src/primitives/icon/svg/activity.tsx
|
|
2390
|
-
var
|
|
2286
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
2391
2287
|
var ActivityIcon = (_a) => {
|
|
2392
2288
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2393
|
-
return /* @__PURE__ */ (0,
|
|
2289
|
+
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
|
|
2394
2290
|
"svg",
|
|
2395
2291
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2396
2292
|
viewBox: "0 0 24 24",
|
|
@@ -2398,8 +2294,8 @@ var ActivityIcon = (_a) => {
|
|
|
2398
2294
|
fill: "none"
|
|
2399
2295
|
}, getIconA11yProps(title)), props), {
|
|
2400
2296
|
children: [
|
|
2401
|
-
title ? /* @__PURE__ */ (0,
|
|
2402
|
-
/* @__PURE__ */ (0,
|
|
2297
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("title", { children: title }) : null,
|
|
2298
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2403
2299
|
"path",
|
|
2404
2300
|
{
|
|
2405
2301
|
d: "M2 12h4l2.5-7 4 14 3-7h8.5",
|
|
@@ -2416,10 +2312,10 @@ var ActivityIcon = (_a) => {
|
|
|
2416
2312
|
ActivityIcon.displayName = "ActivityIcon";
|
|
2417
2313
|
|
|
2418
2314
|
// src/primitives/icon/svg/activity-chart.tsx
|
|
2419
|
-
var
|
|
2315
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
2420
2316
|
var ActivityChartIcon = (_a) => {
|
|
2421
2317
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2422
|
-
return /* @__PURE__ */ (0,
|
|
2318
|
+
return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
|
|
2423
2319
|
"svg",
|
|
2424
2320
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2425
2321
|
viewBox: "0 0 14 14",
|
|
@@ -2427,8 +2323,8 @@ var ActivityChartIcon = (_a) => {
|
|
|
2427
2323
|
fill: "none"
|
|
2428
2324
|
}, getIconA11yProps(title)), props), {
|
|
2429
2325
|
children: [
|
|
2430
|
-
title ? /* @__PURE__ */ (0,
|
|
2431
|
-
/* @__PURE__ */ (0,
|
|
2326
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("title", { children: title }) : null,
|
|
2327
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2432
2328
|
"path",
|
|
2433
2329
|
{
|
|
2434
2330
|
d: "M14 6.99987C14 7.32187 13.7392 7.5832 13.4167 7.5832H11.9782C11.7145 7.5832 11.4829 7.76112 11.4147 8.01487L10.4364 11.656C10.325 12.0206 10.0135 12.2499 9.65417 12.2499H9.64425C9.28083 12.2458 8.9705 12.0078 8.87192 11.6584L6.96208 3.9432L5.10825 10.4993C4.99683 10.8475 4.70575 11.0686 4.36158 11.082C4.00458 11.1013 3.70883 10.8983 3.577 10.5792L2.64367 7.96937C2.56025 7.73837 2.33975 7.58262 2.09417 7.58262H0.583333C0.26075 7.58262 0 7.32128 0 6.99928C0 6.67728 0.26075 6.41595 0.583333 6.41595H2.09475C2.83208 6.41595 3.49358 6.88203 3.74267 7.5762L4.28983 9.10803L6.2055 2.33262C6.32275 1.96803 6.62958 1.73353 6.99942 1.74928C7.35992 1.7557 7.66792 1.99312 7.7665 2.33962L9.66758 10.0198L10.2871 7.71212C10.4918 6.94912 11.1866 6.41595 11.977 6.41595H13.4155C13.7381 6.41595 13.9988 6.67728 13.9988 6.99928L14 6.99987Z",
|
|
@@ -2442,10 +2338,10 @@ var ActivityChartIcon = (_a) => {
|
|
|
2442
2338
|
ActivityChartIcon.displayName = "ActivityChartIcon";
|
|
2443
2339
|
|
|
2444
2340
|
// src/primitives/icon/svg/check-badge.tsx
|
|
2445
|
-
var
|
|
2341
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
2446
2342
|
var CheckBadgeIcon = (_a) => {
|
|
2447
2343
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2448
|
-
return /* @__PURE__ */ (0,
|
|
2344
|
+
return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
|
|
2449
2345
|
"svg",
|
|
2450
2346
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2451
2347
|
viewBox: "0 0 16 16",
|
|
@@ -2453,15 +2349,15 @@ var CheckBadgeIcon = (_a) => {
|
|
|
2453
2349
|
fill: "none"
|
|
2454
2350
|
}, getIconA11yProps(title)), props), {
|
|
2455
2351
|
children: [
|
|
2456
|
-
title ? /* @__PURE__ */ (0,
|
|
2457
|
-
/* @__PURE__ */ (0,
|
|
2352
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("title", { children: title }) : null,
|
|
2353
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("g", { clipPath: "url(#check-badge-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2458
2354
|
"path",
|
|
2459
2355
|
{
|
|
2460
2356
|
d: "M15.4173 6.57883L13.9833 5.14283V3.9975C13.9833 2.89683 13.0886 2.00083 11.9893 2.00083H10.8453L9.4113 0.5655C8.6573 -0.1885 7.34397 -0.1885 6.59063 0.5655L5.15663 2.00083H4.01263C2.91263 2.00083 2.01863 2.89617 2.01863 3.9975V5.14283L0.583965 6.57883C-0.192702 7.3575 -0.192702 8.6235 0.583965 9.40217L2.01796 10.8382V11.9835C2.01796 13.0842 2.91263 13.9802 4.01196 13.9802H5.15596L6.58997 15.4155C6.96663 15.7922 7.46797 16.0002 8.00063 16.0002C8.5333 16.0002 9.03397 15.7922 9.41063 15.4155L10.8446 13.9802H11.9886C13.0886 13.9802 13.9826 13.0848 13.9826 11.9835V10.8382L15.4173 9.40217C16.194 8.6235 16.194 7.3575 15.4173 6.57883ZM12.136 6.8075L8.76663 10.1375C8.3573 10.5442 7.81797 10.7482 7.2793 10.7482C6.74063 10.7482 6.20396 10.5448 5.7933 10.1395L4.06063 8.4735C3.7993 8.21417 3.79663 7.79283 4.05596 7.53083C4.31596 7.27017 4.73663 7.26683 4.9993 7.52617L6.7313 9.1915C7.0333 9.49083 7.52463 9.4915 7.8273 9.1915L11.1973 5.86083C11.46 5.60083 11.8813 5.6035 12.1406 5.8655C12.4 6.1275 12.3973 6.54817 12.136 6.8075Z",
|
|
2461
2357
|
fill: "currentColor"
|
|
2462
2358
|
}
|
|
2463
2359
|
) }),
|
|
2464
|
-
/* @__PURE__ */ (0,
|
|
2360
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("clipPath", { id: "check-badge-clip", children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
2465
2361
|
]
|
|
2466
2362
|
})
|
|
2467
2363
|
);
|
|
@@ -2469,10 +2365,10 @@ var CheckBadgeIcon = (_a) => {
|
|
|
2469
2365
|
CheckBadgeIcon.displayName = "CheckBadgeIcon";
|
|
2470
2366
|
|
|
2471
2367
|
// src/primitives/icon/svg/chevron-down-thin.tsx
|
|
2472
|
-
var
|
|
2368
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
2473
2369
|
var ChevronDownThinIcon = (_a) => {
|
|
2474
2370
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2475
|
-
return /* @__PURE__ */ (0,
|
|
2371
|
+
return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
|
|
2476
2372
|
"svg",
|
|
2477
2373
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2478
2374
|
viewBox: "0 0 16 16",
|
|
@@ -2481,8 +2377,8 @@ var ChevronDownThinIcon = (_a) => {
|
|
|
2481
2377
|
className
|
|
2482
2378
|
}, getIconA11yProps(title)), props), {
|
|
2483
2379
|
children: [
|
|
2484
|
-
title ? /* @__PURE__ */ (0,
|
|
2485
|
-
/* @__PURE__ */ (0,
|
|
2380
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("title", { children: title }) : null,
|
|
2381
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2486
2382
|
"path",
|
|
2487
2383
|
{
|
|
2488
2384
|
d: "M4 6L8 10L12 6",
|
|
@@ -2499,10 +2395,10 @@ var ChevronDownThinIcon = (_a) => {
|
|
|
2499
2395
|
ChevronDownThinIcon.displayName = "ChevronDownThinIcon";
|
|
2500
2396
|
|
|
2501
2397
|
// src/primitives/icon/svg/cross-circle.tsx
|
|
2502
|
-
var
|
|
2398
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
2503
2399
|
var CrossCircleIcon = (_a) => {
|
|
2504
2400
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2505
|
-
return /* @__PURE__ */ (0,
|
|
2401
|
+
return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
|
|
2506
2402
|
"svg",
|
|
2507
2403
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2508
2404
|
width: "16",
|
|
@@ -2513,8 +2409,8 @@ var CrossCircleIcon = (_a) => {
|
|
|
2513
2409
|
className
|
|
2514
2410
|
}, getIconA11yProps(title)), props), {
|
|
2515
2411
|
children: [
|
|
2516
|
-
title ? /* @__PURE__ */ (0,
|
|
2517
|
-
/* @__PURE__ */ (0,
|
|
2412
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("title", { children: title }) : null,
|
|
2413
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2518
2414
|
"path",
|
|
2519
2415
|
{
|
|
2520
2416
|
d: "M8 0C6.41775 0 4.87104 0.469192 3.55544 1.34824C2.23985 2.22729 1.21447 3.47672 0.608967 4.93853C0.00346629 6.40034 -0.15496 8.00887 0.153721 9.56072C0.462403 11.1126 1.22433 12.538 2.34315 13.6569C3.46197 14.7757 4.88743 15.5376 6.43928 15.8463C7.99113 16.155 9.59966 15.9965 11.0615 15.391C12.5233 14.7855 13.7727 13.7602 14.6518 12.4446C15.5308 11.129 16 9.58225 16 8C16 5.87827 15.1571 3.84344 13.6569 2.34315C12.1566 0.842855 10.1217 0 8 0ZM11.138 10.1953L10.1953 11.138L8 8.94267L5.80467 11.138L4.862 10.1953L7.05734 8L4.862 5.80467L5.80467 4.862L8 7.05733L10.1953 4.862L11.138 5.80467L8.94267 8L11.138 10.1953Z",
|
|
@@ -2528,10 +2424,10 @@ var CrossCircleIcon = (_a) => {
|
|
|
2528
2424
|
CrossCircleIcon.displayName = "CrossCircleIcon";
|
|
2529
2425
|
|
|
2530
2426
|
// src/primitives/icon/svg/discord.tsx
|
|
2531
|
-
var
|
|
2427
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
2532
2428
|
var DiscordIcon = (_a) => {
|
|
2533
2429
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2534
|
-
return /* @__PURE__ */ (0,
|
|
2430
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
|
|
2535
2431
|
"svg",
|
|
2536
2432
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2537
2433
|
viewBox: "0 0 20 20",
|
|
@@ -2539,8 +2435,8 @@ var DiscordIcon = (_a) => {
|
|
|
2539
2435
|
fill: "none"
|
|
2540
2436
|
}, getIconA11yProps(title)), props), {
|
|
2541
2437
|
children: [
|
|
2542
|
-
title ? /* @__PURE__ */ (0,
|
|
2543
|
-
/* @__PURE__ */ (0,
|
|
2438
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("title", { children: title }) : null,
|
|
2439
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2544
2440
|
"path",
|
|
2545
2441
|
{
|
|
2546
2442
|
d: "M16.3546 4.49236C15.1858 3.95607 13.9329 3.56111 12.6227 3.33499C12.599 3.3304 12.5754 3.34186 12.5624 3.36325C12.4012 3.64973 12.2224 4.02406 12.0979 4.31742C10.6884 4.10657 9.28659 4.10657 7.90615 4.31742C7.78162 4.01719 7.59598 3.64973 7.43479 3.36325C7.42181 3.34186 7.39812 3.33117 7.37444 3.33499C6.06504 3.56035 4.81218 3.95531 3.64258 4.49236C3.63265 4.49618 3.62348 4.50382 3.61813 4.51298C1.24151 8.06379 0.589865 11.5275 0.909193 14.9484C0.910721 14.9653 0.919888 14.9813 0.932875 14.9912C2.50125 16.1433 4.01997 16.8423 5.51119 17.3052C5.53487 17.3128 5.56008 17.3037 5.57536 17.2838C5.9283 16.8025 6.24228 16.2945 6.51195 15.7605C6.52799 15.7292 6.51271 15.6918 6.47986 15.6795C5.98101 15.4901 5.5066 15.2594 5.04976 14.9981C5.01386 14.9767 5.0108 14.9255 5.04365 14.9003C5.13991 14.8285 5.23617 14.7536 5.32784 14.678C5.34465 14.6643 5.36756 14.6612 5.38743 14.6704C8.38819 16.0401 11.6365 16.0401 14.6013 14.6704C14.6212 14.6612 14.6441 14.6635 14.6617 14.678C14.7534 14.7536 14.8496 14.8293 14.9466 14.9011C14.9803 14.9255 14.978 14.9775 14.9413 14.9989C14.4845 15.2655 14.01 15.4916 13.5104 15.6795C13.4776 15.6918 13.4638 15.73 13.4791 15.7613C13.7541 16.2945 14.0689 16.8025 14.4149 17.2838C14.4295 17.3044 14.4554 17.3128 14.4791 17.306C15.9772 16.8423 17.4967 16.1433 19.0643 14.992C19.078 14.9821 19.0865 14.9668 19.088 14.95C19.4699 10.995 18.4478 7.55959 16.3775 4.51451C16.3737 4.50382 16.3645 4.49618 16.3546 4.49236ZM6.96038 12.8659C6.05664 12.8659 5.31256 12.0363 5.31256 11.018C5.31256 9.99962 6.04213 9.16998 6.96038 9.16998C7.88552 9.16998 8.62272 10.0065 8.60821 11.018C8.60821 12.0371 7.87788 12.8659 6.96038 12.8659ZM13.0528 12.8659C12.1498 12.8659 11.405 12.0363 11.405 11.018C11.405 9.99962 12.1346 9.16998 13.0528 9.16998C13.978 9.16998 14.7152 10.0065 14.7007 11.018C14.7007 12.0371 13.978 12.8659 13.0528 12.8659Z",
|
|
@@ -2554,10 +2450,10 @@ var DiscordIcon = (_a) => {
|
|
|
2554
2450
|
DiscordIcon.displayName = "DiscordIcon";
|
|
2555
2451
|
|
|
2556
2452
|
// src/primitives/icon/svg/email.tsx
|
|
2557
|
-
var
|
|
2453
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
2558
2454
|
var EmailIcon = (_a) => {
|
|
2559
2455
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2560
|
-
return /* @__PURE__ */ (0,
|
|
2456
|
+
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
|
|
2561
2457
|
"svg",
|
|
2562
2458
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2563
2459
|
viewBox: "0 0 20 20",
|
|
@@ -2565,8 +2461,8 @@ var EmailIcon = (_a) => {
|
|
|
2565
2461
|
fill: "none"
|
|
2566
2462
|
}, getIconA11yProps(title)), props), {
|
|
2567
2463
|
children: [
|
|
2568
|
-
title ? /* @__PURE__ */ (0,
|
|
2569
|
-
/* @__PURE__ */ (0,
|
|
2464
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("title", { children: title }) : null,
|
|
2465
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2570
2466
|
"path",
|
|
2571
2467
|
{
|
|
2572
2468
|
d: "M3.33333 3.33398H16.6667C17.5833 3.33398 18.3333 4.08398 18.3333 5.00065V15.0007C18.3333 15.9173 17.5833 16.6673 16.6667 16.6673H3.33333C2.41667 16.6673 1.66667 15.9173 1.66667 15.0007V5.00065C1.66667 4.08398 2.41667 3.33398 3.33333 3.33398Z",
|
|
@@ -2576,7 +2472,7 @@ var EmailIcon = (_a) => {
|
|
|
2576
2472
|
strokeLinejoin: "round"
|
|
2577
2473
|
}
|
|
2578
2474
|
),
|
|
2579
|
-
/* @__PURE__ */ (0,
|
|
2475
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2580
2476
|
"path",
|
|
2581
2477
|
{
|
|
2582
2478
|
d: "M18.3333 5L10 10.8333L1.66667 5",
|
|
@@ -2593,10 +2489,10 @@ var EmailIcon = (_a) => {
|
|
|
2593
2489
|
EmailIcon.displayName = "EmailIcon";
|
|
2594
2490
|
|
|
2595
2491
|
// src/primitives/icon/svg/internet-security.tsx
|
|
2596
|
-
var
|
|
2492
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
2597
2493
|
var InternetSecurityIcon = (_a) => {
|
|
2598
2494
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2599
|
-
return /* @__PURE__ */ (0,
|
|
2495
|
+
return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
|
|
2600
2496
|
"svg",
|
|
2601
2497
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2602
2498
|
viewBox: "0 0 60 60",
|
|
@@ -2604,15 +2500,15 @@ var InternetSecurityIcon = (_a) => {
|
|
|
2604
2500
|
fill: "none"
|
|
2605
2501
|
}, getIconA11yProps(title)), props), {
|
|
2606
2502
|
children: [
|
|
2607
|
-
title ? /* @__PURE__ */ (0,
|
|
2608
|
-
/* @__PURE__ */ (0,
|
|
2503
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("title", { children: title }) : null,
|
|
2504
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("g", { clipPath: "url(#internet-security-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2609
2505
|
"path",
|
|
2610
2506
|
{
|
|
2611
2507
|
d: "M31.2125 58.9425C31.32 58.55 31.1175 58.13 30.855 57.84C30.76 57.7525 24.195 51.48 20.3075 42.5025H26.2525C26.9425 42.5025 27.5025 41.9425 27.5025 41.2525C27.5025 40.5625 26.9425 40.0025 26.2525 40.0025H19.33C18.2325 36.885 17.5025 33.52 17.5025 30.0025C17.5025 26.485 18.2325 23.12 19.33 20.0025H55.605C56.115 21.2975 56.5425 22.635 56.85 24.0225C57 24.695 57.6625 25.125 58.3425 24.9725C59.0175 24.8225 59.44 24.155 59.2925 23.48C56.275 9.88753 43.98 0.0225282 30.0425 2.81571e-05C13.49 -0.0224718 -0.00249965 13.4425 3.47359e-07 30C3.47359e-07 46.5425 13.4575 60 30 60C30.61 60.0025 31.1475 59.5325 31.2125 58.9425ZM20.305 17.5C23.3775 10.4025 28.0975 5.02003 30 3.02753C31.92 5.03253 36.6625 10.415 39.72 17.5H20.305ZM54.485 17.5H42.42C39.745 10.8325 35.645 5.56253 33.1075 2.70003C42.2725 3.76003 50.325 9.42003 54.485 17.5ZM26.9 2.68753C24.3525 5.54753 20.24 10.83 17.5725 17.5H5.535C9.6475 9.48503 17.565 3.74003 26.9 2.68753ZM4.41 20H16.6725C15.6625 23.12 15 26.4725 15 30C15 33.5275 15.6625 36.88 16.6725 40H4.41C3.1925 36.895 2.5 33.53 2.5 30C2.5 26.47 3.1925 23.105 4.41 20ZM5.535 42.5H17.5725C20.24 49.1725 24.3525 54.4525 26.9 57.3125C17.565 56.26 9.6475 50.515 5.535 42.5ZM55 38.3775V33.75C55 28.925 51.075 25 46.25 25C41.425 25 37.5 28.925 37.5 33.75V38.3775C34.555 39.7875 32.5 42.7725 32.5 46.25V51.25C32.5 56.075 36.425 60 41.25 60H51.25C56.075 60 60 56.075 60 51.25V46.25C60 42.7725 57.945 39.7875 55 38.3775ZM40 33.75C40 30.305 42.8025 27.5 46.25 27.5C49.6975 27.5 52.5 30.305 52.5 33.75V37.6275C52.0875 37.5675 51.6775 37.5 51.25 37.5H41.25C40.8225 37.5 40.4125 37.5675 40 37.6275V33.75ZM57.5 51.25C57.5 54.695 54.6975 57.5 51.25 57.5H41.25C37.8025 57.5 35 54.695 35 51.25V46.25C35 42.805 37.8025 40 41.25 40H51.25C54.6975 40 57.5 42.805 57.5 46.25V51.25ZM48.75 48.75C48.75 50.13 47.63 51.25 46.25 51.25C44.87 51.25 43.75 50.13 43.75 48.75C43.75 47.37 44.87 46.25 46.25 46.25C47.63 46.25 48.75 47.37 48.75 48.75Z",
|
|
2612
2508
|
fill: "currentColor"
|
|
2613
2509
|
}
|
|
2614
2510
|
) }),
|
|
2615
|
-
/* @__PURE__ */ (0,
|
|
2511
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("clipPath", { id: "internet-security-clip", children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("rect", { width: "60", height: "60", fill: "white" }) }) })
|
|
2616
2512
|
]
|
|
2617
2513
|
})
|
|
2618
2514
|
);
|
|
@@ -2620,10 +2516,10 @@ var InternetSecurityIcon = (_a) => {
|
|
|
2620
2516
|
InternetSecurityIcon.displayName = "InternetSecurityIcon";
|
|
2621
2517
|
|
|
2622
2518
|
// src/primitives/icon/svg/link-accounts.tsx
|
|
2623
|
-
var
|
|
2519
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
2624
2520
|
var LinkAccountsIcon = (_a) => {
|
|
2625
2521
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2626
|
-
return /* @__PURE__ */ (0,
|
|
2522
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
|
|
2627
2523
|
"svg",
|
|
2628
2524
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2629
2525
|
width: "28",
|
|
@@ -2634,15 +2530,15 @@ var LinkAccountsIcon = (_a) => {
|
|
|
2634
2530
|
className
|
|
2635
2531
|
}, getIconA11yProps(title)), props), {
|
|
2636
2532
|
children: [
|
|
2637
|
-
title ? /* @__PURE__ */ (0,
|
|
2638
|
-
/* @__PURE__ */ (0,
|
|
2533
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("title", { children: title }) : null,
|
|
2534
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("g", { clipPath: "url(#clip0_link_accounts)", children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2639
2535
|
"path",
|
|
2640
2536
|
{
|
|
2641
2537
|
d: "M28 18.0835C28 22.2648 24.598 25.6668 20.4167 25.6668H14.5833C10.402 25.6668 7 22.2648 7 18.0835C7 13.9022 10.402 10.5002 14.5833 10.5002H16.9167C17.2387 10.5002 17.5 10.7615 17.5 11.0835C17.5 11.4055 17.2387 11.6668 16.9167 11.6668H14.5833C11.0448 11.6668 8.16667 14.5462 8.16667 18.0835C8.16667 21.6208 11.0448 24.5002 14.5833 24.5002H20.4167C23.9552 24.5002 26.8333 21.6208 26.8333 18.0835C26.8333 15.7992 25.6037 13.67 23.625 12.5243C23.3462 12.3633 23.2505 12.0063 23.4127 11.7275C23.5725 11.4487 23.9283 11.3507 24.2095 11.514C26.5475 12.8662 28.0012 15.3827 28.0012 18.0823L28 18.0835ZM4.375 15.476C2.39517 14.3315 1.16667 12.2012 1.16667 9.91683C1.16667 6.3795 4.04483 3.50016 7.58333 3.50016H13.4167C16.9552 3.50016 19.8333 6.3795 19.8333 9.91683C19.8333 13.4542 16.9552 16.3335 13.4167 16.3335H11.0833C10.7613 16.3335 10.5 16.5948 10.5 16.9168C10.5 17.2388 10.7613 17.5002 11.0833 17.5002H13.4167C17.598 17.5002 21 14.0982 21 9.91683C21 5.7355 17.598 2.3335 13.4167 2.3335H7.58333C3.402 2.3335 0 5.7355 0 9.91683C0 12.6153 1.4525 15.133 3.79167 16.4852C4.0705 16.6462 4.4275 16.5517 4.5885 16.2717C4.75067 15.994 4.655 15.6358 4.37617 15.4748L4.375 15.476Z",
|
|
2642
2538
|
fill: "currentColor"
|
|
2643
2539
|
}
|
|
2644
2540
|
) }),
|
|
2645
|
-
/* @__PURE__ */ (0,
|
|
2541
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("clipPath", { id: "clip0_link_accounts", children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("rect", { width: "28", height: "28", fill: "white" }) }) })
|
|
2646
2542
|
]
|
|
2647
2543
|
})
|
|
2648
2544
|
);
|
|
@@ -2650,10 +2546,10 @@ var LinkAccountsIcon = (_a) => {
|
|
|
2650
2546
|
LinkAccountsIcon.displayName = "LinkAccountsIcon";
|
|
2651
2547
|
|
|
2652
2548
|
// src/primitives/icon/svg/lock.tsx
|
|
2653
|
-
var
|
|
2549
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
2654
2550
|
var LockIcon = (_a) => {
|
|
2655
2551
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2656
|
-
return /* @__PURE__ */ (0,
|
|
2552
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
|
|
2657
2553
|
"svg",
|
|
2658
2554
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2659
2555
|
viewBox: "0 0 12 12",
|
|
@@ -2662,15 +2558,15 @@ var LockIcon = (_a) => {
|
|
|
2662
2558
|
xmlns: "http://www.w3.org/2000/svg"
|
|
2663
2559
|
}, getIconA11yProps(title)), props), {
|
|
2664
2560
|
children: [
|
|
2665
|
-
title ? /* @__PURE__ */ (0,
|
|
2666
|
-
/* @__PURE__ */ (0,
|
|
2561
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("title", { children: title }) : null,
|
|
2562
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2667
2563
|
"path",
|
|
2668
2564
|
{
|
|
2669
2565
|
d: "M9.5 4.212V3.5C9.5 2.57174 9.13125 1.6815 8.47487 1.02513C7.8185 0.368749 6.92826 0 6 0C5.07174 0 4.1815 0.368749 3.52513 1.02513C2.86875 1.6815 2.5 2.57174 2.5 3.5V4.212C2.05468 4.40635 1.67565 4.72626 1.40925 5.13261C1.14285 5.53895 1.00064 6.01412 1 6.5V9.5C1.00079 10.1628 1.26444 10.7982 1.73311 11.2669C2.20178 11.7356 2.8372 11.9992 3.5 12H8.5C9.1628 11.9992 9.79822 11.7356 10.2669 11.2669C10.7356 10.7982 10.9992 10.1628 11 9.5V6.5C10.9994 6.01412 10.8571 5.53895 10.5908 5.13261C10.3244 4.72626 9.94532 4.40635 9.5 4.212ZM3.5 3.5C3.5 2.83696 3.76339 2.20107 4.23223 1.73223C4.70107 1.26339 5.33696 1 6 1C6.66304 1 7.29893 1.26339 7.76777 1.73223C8.23661 2.20107 8.5 2.83696 8.5 3.5V4H3.5V3.5ZM10 9.5C10 9.89782 9.84196 10.2794 9.56066 10.5607C9.27936 10.842 8.89782 11 8.5 11H3.5C3.10218 11 2.72064 10.842 2.43934 10.5607C2.15804 10.2794 2 9.89782 2 9.5V6.5C2 6.10218 2.15804 5.72064 2.43934 5.43934C2.72064 5.15804 3.10218 5 3.5 5H8.5C8.89782 5 9.27936 5.15804 9.56066 5.43934C9.84196 5.72064 10 6.10218 10 6.5V9.5Z",
|
|
2670
2566
|
fill: "currentColor"
|
|
2671
2567
|
}
|
|
2672
2568
|
),
|
|
2673
|
-
/* @__PURE__ */ (0,
|
|
2569
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2674
2570
|
"path",
|
|
2675
2571
|
{
|
|
2676
2572
|
d: "M6 7C5.86739 7 5.74021 7.05268 5.64645 7.14645C5.55268 7.24021 5.5 7.36739 5.5 7.5V8.5C5.5 8.63261 5.55268 8.75979 5.64645 8.85355C5.74021 8.94732 5.86739 9 6 9C6.13261 9 6.25979 8.94732 6.35355 8.85355C6.44732 8.75979 6.5 8.63261 6.5 8.5V7.5C6.5 7.36739 6.44732 7.24021 6.35355 7.14645C6.25979 7.05268 6.13261 7 6 7Z",
|
|
@@ -2684,10 +2580,10 @@ var LockIcon = (_a) => {
|
|
|
2684
2580
|
LockIcon.displayName = "LockIcon";
|
|
2685
2581
|
|
|
2686
2582
|
// src/primitives/icon/svg/pencil.tsx
|
|
2687
|
-
var
|
|
2583
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
2688
2584
|
var PencilIcon = (_a) => {
|
|
2689
2585
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2690
|
-
return /* @__PURE__ */ (0,
|
|
2586
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
|
|
2691
2587
|
"svg",
|
|
2692
2588
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2693
2589
|
viewBox: "0 0 16 16",
|
|
@@ -2695,15 +2591,15 @@ var PencilIcon = (_a) => {
|
|
|
2695
2591
|
fill: "none"
|
|
2696
2592
|
}, getIconA11yProps(title)), props), {
|
|
2697
2593
|
children: [
|
|
2698
|
-
title ? /* @__PURE__ */ (0,
|
|
2699
|
-
/* @__PURE__ */ (0,
|
|
2594
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("title", { children: title }) : null,
|
|
2595
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("g", { clipPath: "url(#pencil_clip)", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2700
2596
|
"path",
|
|
2701
2597
|
{
|
|
2702
2598
|
d: "M15.2353 0.706709C14.7821 0.254173 14.1678 0 13.5273 0C12.8869 0 12.2726 0.254173 11.8193 0.706709L0.976677 11.5494C0.666178 11.8581 0.419985 12.2254 0.252342 12.6299C0.0846994 13.0344 -0.00106532 13.4682 9.98748e-06 13.906V15.2747C9.98748e-06 15.4515 0.0702479 15.6211 0.195272 15.7461C0.320296 15.8711 0.489866 15.9414 0.666677 15.9414H2.03534C2.47318 15.9426 2.90692 15.857 3.31145 15.6895C3.71597 15.5219 4.08325 15.2758 4.39201 14.9654L15.2353 4.12204C15.6877 3.66884 15.9417 3.05469 15.9417 2.41438C15.9417 1.77406 15.6877 1.15991 15.2353 0.706709ZM3.44934 14.0227C3.07335 14.3962 2.56532 14.6065 2.03534 14.608H1.33334V13.906C1.33267 13.6433 1.38411 13.3831 1.4847 13.1403C1.58529 12.8976 1.73302 12.6773 1.91934 12.492L10.148 4.26338L11.6813 5.79671L3.44934 14.0227ZM14.292 3.17938L12.6213 4.85071L11.088 3.32071L12.7593 1.64938C12.86 1.54891 12.9795 1.46927 13.111 1.41498C13.2424 1.3607 13.3833 1.33284 13.5255 1.33299C13.6678 1.33314 13.8086 1.36131 13.9399 1.41588C14.0712 1.47045 14.1905 1.55036 14.291 1.65104C14.3915 1.75172 14.4711 1.8712 14.5254 2.00266C14.5797 2.13413 14.6076 2.27499 14.6074 2.41722C14.6072 2.55945 14.5791 2.70025 14.5245 2.8316C14.4699 2.96294 14.39 3.08225 14.2893 3.18271L14.292 3.17938Z",
|
|
2703
2599
|
fill: "currentColor"
|
|
2704
2600
|
}
|
|
2705
2601
|
) }),
|
|
2706
|
-
/* @__PURE__ */ (0,
|
|
2602
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("clipPath", { id: "pencil_clip", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
2707
2603
|
]
|
|
2708
2604
|
})
|
|
2709
2605
|
);
|
|
@@ -2711,10 +2607,10 @@ var PencilIcon = (_a) => {
|
|
|
2711
2607
|
PencilIcon.displayName = "PencilIcon";
|
|
2712
2608
|
|
|
2713
2609
|
// src/primitives/icon/svg/play-square.tsx
|
|
2714
|
-
var
|
|
2610
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
2715
2611
|
var PlaySquareIcon = (_a) => {
|
|
2716
2612
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2717
|
-
return /* @__PURE__ */ (0,
|
|
2613
|
+
return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
|
|
2718
2614
|
"svg",
|
|
2719
2615
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2720
2616
|
viewBox: "0 0 16 16",
|
|
@@ -2722,26 +2618,53 @@ var PlaySquareIcon = (_a) => {
|
|
|
2722
2618
|
fill: "none"
|
|
2723
2619
|
}, getIconA11yProps(title)), props), {
|
|
2724
2620
|
children: [
|
|
2725
|
-
title ? /* @__PURE__ */ (0,
|
|
2726
|
-
/* @__PURE__ */ (0,
|
|
2621
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("title", { children: title }) : null,
|
|
2622
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("g", { clipPath: "url(#play-square-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2727
2623
|
"path",
|
|
2728
2624
|
{
|
|
2729
2625
|
d: "M12.6667 16H3.33333C2.4496 15.9989 1.60237 15.6474 0.97748 15.0225C0.352588 14.3976 0.00105857 13.5504 0 12.6667L0 3.33333C0.00105857 2.4496 0.352588 1.60237 0.97748 0.97748C1.60237 0.352588 2.4496 0.00105857 3.33333 0L12.6667 0C13.5504 0.00105857 14.3976 0.352588 15.0225 0.97748C15.6474 1.60237 15.9989 2.4496 16 3.33333V12.6667C15.9989 13.5504 15.6474 14.3976 15.0225 15.0225C14.3976 15.6474 13.5504 15.9989 12.6667 16ZM3.33333 1.33333C2.8029 1.33333 2.29419 1.54405 1.91912 1.91912C1.54405 2.29419 1.33333 2.8029 1.33333 3.33333V12.6667C1.33333 13.1971 1.54405 13.7058 1.91912 14.0809C2.29419 14.456 2.8029 14.6667 3.33333 14.6667H12.6667C13.1971 14.6667 13.7058 14.456 14.0809 14.0809C14.456 13.7058 14.6667 13.1971 14.6667 12.6667V3.33333C14.6667 2.8029 14.456 2.29419 14.0809 1.91912C13.7058 1.54405 13.1971 1.33333 12.6667 1.33333H3.33333ZM6.228 11.3367C5.95008 11.3357 5.67734 11.2615 5.43733 11.1213C5.20023 10.9856 5.00344 10.7894 4.86709 10.5526C4.73074 10.3159 4.65973 10.0472 4.66133 9.774V6.226C4.66111 5.95276 4.73274 5.68427 4.86905 5.44746C5.00537 5.21066 5.20156 5.01386 5.43794 4.87683C5.67433 4.73979 5.9426 4.66733 6.21584 4.66672C6.48907 4.6661 6.75767 4.73736 6.99467 4.87333L10.5133 6.63C10.7577 6.76194 10.9624 6.95685 11.1062 7.19452C11.2499 7.4322 11.3274 7.70399 11.3308 7.98172C11.3341 8.25946 11.2631 8.53303 11.1251 8.77408C10.9871 9.01514 10.7872 9.2149 10.546 9.35267L6.962 11.144C6.73847 11.2715 6.48533 11.3379 6.228 11.3367ZM6.21133 6.00333C6.17459 6.00332 6.13849 6.01298 6.10667 6.03133C6.07209 6.05056 6.0434 6.07884 6.02367 6.11313C6.00394 6.14743 5.99391 6.18644 5.99467 6.226V9.774C5.99489 9.81297 6.00525 9.85121 6.02473 9.88497C6.0442 9.91872 6.07212 9.94683 6.10574 9.96653C6.13936 9.98624 6.17753 9.99686 6.2165 9.99735C6.25547 9.99784 6.29389 9.98818 6.328 9.96933L9.912 8.17733C9.93869 8.15646 9.95992 8.12941 9.97385 8.09852C9.98779 8.06764 9.99401 8.03383 9.992 8C9.99284 7.96035 9.98277 7.92123 9.96291 7.8869C9.94304 7.85258 9.91413 7.82436 9.87933 7.80533L6.36333 6.04867C6.31749 6.02054 6.26509 6.00492 6.21133 6.00333Z",
|
|
2730
2626
|
fill: "currentColor"
|
|
2731
2627
|
}
|
|
2732
2628
|
) }),
|
|
2733
|
-
/* @__PURE__ */ (0,
|
|
2629
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("clipPath", { id: "play-square-clip", children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
2734
2630
|
]
|
|
2735
2631
|
})
|
|
2736
2632
|
);
|
|
2737
2633
|
};
|
|
2738
2634
|
PlaySquareIcon.displayName = "PlaySquareIcon";
|
|
2739
2635
|
|
|
2636
|
+
// src/primitives/icon/svg/polygon.tsx
|
|
2637
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
2638
|
+
var PolygonIcon = (_a) => {
|
|
2639
|
+
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2640
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(
|
|
2641
|
+
"svg",
|
|
2642
|
+
__spreadProps(__spreadValues(__spreadValues({
|
|
2643
|
+
viewBox: "0 0 24 24",
|
|
2644
|
+
className,
|
|
2645
|
+
fill: "none"
|
|
2646
|
+
}, getIconA11yProps(title)), props), {
|
|
2647
|
+
children: [
|
|
2648
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("title", { children: title }) : null,
|
|
2649
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)("rect", { width: "24", height: "24", rx: "8", fill: "#8247E5" }),
|
|
2650
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2651
|
+
"path",
|
|
2652
|
+
{
|
|
2653
|
+
d: "M9.00108 10.1467L7.12599 9.05774L1.5 12.3246V18.836L7.12599 22.0919L12.752 18.836V8.70922L15.8729 6.90135L18.9938 8.70922V12.3246L15.8729 14.1325L13.9978 13.0435V15.9409L15.8729 17.0299L21.4989 13.774V7.26264L15.8729 4.00674L10.2469 7.26264V17.3894L7.12599 19.1973L4.00508 17.3894V13.7628L7.12599 11.955L9.00108 13.0435V10.1467Z",
|
|
2654
|
+
fill: "white"
|
|
2655
|
+
}
|
|
2656
|
+
)
|
|
2657
|
+
]
|
|
2658
|
+
})
|
|
2659
|
+
);
|
|
2660
|
+
};
|
|
2661
|
+
PolygonIcon.displayName = "PolygonIcon";
|
|
2662
|
+
|
|
2740
2663
|
// src/primitives/icon/svg/quotes-warning.tsx
|
|
2741
|
-
var
|
|
2664
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
2742
2665
|
var QuotesWarningIcon = (_a) => {
|
|
2743
2666
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2744
|
-
return /* @__PURE__ */ (0,
|
|
2667
|
+
return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
|
|
2745
2668
|
"svg",
|
|
2746
2669
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2747
2670
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2752,8 +2675,8 @@ var QuotesWarningIcon = (_a) => {
|
|
|
2752
2675
|
className
|
|
2753
2676
|
}, getIconA11yProps(title)), props), {
|
|
2754
2677
|
children: [
|
|
2755
|
-
title ? /* @__PURE__ */ (0,
|
|
2756
|
-
/* @__PURE__ */ (0,
|
|
2678
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("title", { children: title }) : null,
|
|
2679
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2757
2680
|
"path",
|
|
2758
2681
|
{
|
|
2759
2682
|
d: "M17.25 21.75V9.75C17.25 9.33 17.58 9 18 9C18.42 9 18.75 9.33 18.75 9.75V21.75C18.75 22.17 18.42 22.5 18 22.5C17.58 22.5 17.25 22.17 17.25 21.75ZM18 25.5C17.175 25.5 16.5 26.175 16.5 27C16.5 27.825 17.175 28.5 18 28.5C18.825 28.5 19.5 27.825 19.5 27C19.5 26.175 18.825 25.5 18 25.5ZM35.415 30.105C34.455 31.95 32.43 33 29.85 33H6.15002C3.58502 33 1.54502 31.95 0.585023 30.105C-0.389977 28.245 -0.119977 25.8 1.30502 23.745L13.95 3.645C14.88 2.295 16.395 1.5 18 1.5C19.605 1.5 21.12 2.295 22.035 3.615L34.695 23.76C36.12 25.815 36.39 28.245 35.415 30.105ZM33.45 24.6C33.45 24.6 33.45 24.585 33.435 24.57L20.79 4.44C20.16 3.525 19.14 3 18 3C16.86 3 15.84 3.54 15.195 4.47L2.56502 24.57C1.44002 26.19 1.20002 28.035 1.92002 29.415C2.62502 30.765 4.12502 31.5 6.15002 31.5H29.865C31.89 31.5 33.39 30.765 34.095 29.415C34.815 28.05 34.575 26.205 33.465 24.6H33.45Z",
|
|
@@ -2767,10 +2690,10 @@ var QuotesWarningIcon = (_a) => {
|
|
|
2767
2690
|
QuotesWarningIcon.displayName = "QuotesWarningIcon";
|
|
2768
2691
|
|
|
2769
2692
|
// src/primitives/icon/svg/profile-about-tab.tsx
|
|
2770
|
-
var
|
|
2693
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
2771
2694
|
var ProfileAboutTabIcon = (_a) => {
|
|
2772
2695
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2773
|
-
return /* @__PURE__ */ (0,
|
|
2696
|
+
return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
|
|
2774
2697
|
"svg",
|
|
2775
2698
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2776
2699
|
viewBox: "0 0 16 16",
|
|
@@ -2778,16 +2701,16 @@ var ProfileAboutTabIcon = (_a) => {
|
|
|
2778
2701
|
fill: "none"
|
|
2779
2702
|
}, getIconA11yProps(title)), props), {
|
|
2780
2703
|
children: [
|
|
2781
|
-
title ? /* @__PURE__ */ (0,
|
|
2782
|
-
/* @__PURE__ */ (0,
|
|
2783
|
-
/* @__PURE__ */ (0,
|
|
2704
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("title", { children: title }) : null,
|
|
2705
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("g", { clipPath: "url(#clip_profile_about_tab)", children: [
|
|
2706
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2784
2707
|
"path",
|
|
2785
2708
|
{
|
|
2786
2709
|
d: "M12.6667 0H3.33333C2.4496 0.00105857 1.60237 0.352588 0.97748 0.97748C0.352588 1.60237 0.00105857 2.4496 0 3.33333L0 12.6667C0.00105857 13.5504 0.352588 14.3976 0.97748 15.0225C1.60237 15.6474 2.4496 15.9989 3.33333 16H12.6667C13.5504 15.9989 14.3976 15.6474 15.0225 15.0225C15.6474 14.3976 15.9989 13.5504 16 12.6667V3.33333C15.9989 2.4496 15.6474 1.60237 15.0225 0.97748C14.3976 0.352588 13.5504 0.00105857 12.6667 0ZM4.66667 14.6667V14C4.66667 13.1159 5.01786 12.2681 5.64298 11.643C6.2681 11.0179 7.11595 10.6667 8 10.6667C8.88406 10.6667 9.7319 11.0179 10.357 11.643C10.9821 12.2681 11.3333 13.1159 11.3333 14V14.6667H4.66667ZM14.6667 12.6667C14.6667 13.1971 14.456 13.7058 14.0809 14.0809C13.7058 14.456 13.1971 14.6667 12.6667 14.6667V14C12.6667 12.7623 12.175 11.5753 11.2998 10.7002C10.4247 9.825 9.23768 9.33333 8 9.33333C6.76232 9.33333 5.57534 9.825 4.70017 10.7002C3.825 11.5753 3.33333 12.7623 3.33333 14V14.6667C2.8029 14.6667 2.29419 14.456 1.91912 14.0809C1.54405 13.7058 1.33333 13.1971 1.33333 12.6667V3.33333C1.33333 2.8029 1.54405 2.29419 1.91912 1.91912C2.29419 1.54405 2.8029 1.33333 3.33333 1.33333H12.6667C13.1971 1.33333 13.7058 1.54405 14.0809 1.91912C14.456 2.29419 14.6667 2.8029 14.6667 3.33333V12.6667Z",
|
|
2787
2710
|
fill: "currentColor"
|
|
2788
2711
|
}
|
|
2789
2712
|
),
|
|
2790
|
-
/* @__PURE__ */ (0,
|
|
2713
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2791
2714
|
"path",
|
|
2792
2715
|
{
|
|
2793
2716
|
d: "M8.00004 2.66669C7.47263 2.66669 6.95705 2.82308 6.51852 3.1161C6.07999 3.40912 5.7382 3.82559 5.53636 4.31286C5.33453 4.80013 5.28172 5.33631 5.38461 5.85359C5.48751 6.37088 5.74148 6.84603 6.11442 7.21897C6.48736 7.59191 6.96252 7.84589 7.4798 7.94878C7.99708 8.05167 8.53326 7.99887 9.02053 7.79703C9.5078 7.5952 9.92428 7.2534 10.2173 6.81487C10.5103 6.37634 10.6667 5.86077 10.6667 5.33335C10.6667 4.62611 10.3858 3.94783 9.88566 3.44774C9.38556 2.94764 8.70729 2.66669 8.00004 2.66669ZM8.00004 6.66669C7.73633 6.66669 7.47855 6.58849 7.25928 6.44198C7.04002 6.29547 6.86912 6.08723 6.7682 5.8436C6.66729 5.59996 6.64088 5.33187 6.69233 5.07323C6.74378 4.81459 6.87076 4.57701 7.05723 4.39054C7.2437 4.20407 7.48128 4.07709 7.73992 4.02564C7.99856 3.97419 8.26665 4.0006 8.51029 4.10151C8.75392 4.20243 8.96216 4.37333 9.10867 4.59259C9.25518 4.81186 9.33338 5.06965 9.33338 5.33335C9.33338 5.68698 9.1929 6.02611 8.94285 6.27616C8.6928 6.52621 8.35366 6.66669 8.00004 6.66669Z",
|
|
@@ -2795,7 +2718,7 @@ var ProfileAboutTabIcon = (_a) => {
|
|
|
2795
2718
|
}
|
|
2796
2719
|
)
|
|
2797
2720
|
] }),
|
|
2798
|
-
/* @__PURE__ */ (0,
|
|
2721
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("clipPath", { id: "clip_profile_about_tab", children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
2799
2722
|
]
|
|
2800
2723
|
})
|
|
2801
2724
|
);
|
|
@@ -2803,7 +2726,7 @@ var ProfileAboutTabIcon = (_a) => {
|
|
|
2803
2726
|
ProfileAboutTabIcon.displayName = "ProfileAboutTabIcon";
|
|
2804
2727
|
|
|
2805
2728
|
// src/primitives/icon/svg/profile-accounts-wallets-tab.tsx
|
|
2806
|
-
var
|
|
2729
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
2807
2730
|
var ProfileAccountsWalletsTabIcon = (_a) => {
|
|
2808
2731
|
var _b = _a, {
|
|
2809
2732
|
title,
|
|
@@ -2812,7 +2735,7 @@ var ProfileAccountsWalletsTabIcon = (_a) => {
|
|
|
2812
2735
|
"title",
|
|
2813
2736
|
"className"
|
|
2814
2737
|
]);
|
|
2815
|
-
return /* @__PURE__ */ (0,
|
|
2738
|
+
return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
|
|
2816
2739
|
"svg",
|
|
2817
2740
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2818
2741
|
viewBox: "0 0 16 16",
|
|
@@ -2820,15 +2743,15 @@ var ProfileAccountsWalletsTabIcon = (_a) => {
|
|
|
2820
2743
|
fill: "none"
|
|
2821
2744
|
}, getIconA11yProps(title)), props), {
|
|
2822
2745
|
children: [
|
|
2823
|
-
title ? /* @__PURE__ */ (0,
|
|
2824
|
-
/* @__PURE__ */ (0,
|
|
2746
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("title", { children: title }) : null,
|
|
2747
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("g", { clipPath: "url(#clip_profile_accounts_wallets_tab)", children: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2825
2748
|
"path",
|
|
2826
2749
|
{
|
|
2827
2750
|
d: "M5 8.66667C4.40666 8.66667 3.82664 8.49072 3.33329 8.16108C2.83994 7.83143 2.45542 7.3629 2.22836 6.81472C2.0013 6.26654 1.94189 5.66334 2.05764 5.0814C2.1734 4.49945 2.45912 3.96491 2.87868 3.54535C3.29824 3.12579 3.83279 2.84007 4.41473 2.72431C4.99667 2.60856 5.59987 2.66797 6.14805 2.89503C6.69623 3.12209 7.16476 3.50661 7.49441 3.99996C7.82405 4.4933 8 5.07332 8 5.66667C7.99912 6.46205 7.68276 7.2246 7.12035 7.78701C6.55793 8.34943 5.79538 8.66579 5 8.66667ZM5 4C4.67036 4 4.34813 4.09775 4.07405 4.28089C3.79997 4.46402 3.58635 4.72432 3.4602 5.02886C3.33405 5.33341 3.30105 5.66852 3.36536 5.99182C3.42967 6.31512 3.5884 6.61209 3.82149 6.84518C4.05458 7.07827 4.35155 7.237 4.67485 7.30131C4.99815 7.36562 5.33326 7.33261 5.63781 7.20647C5.94235 7.08032 6.20265 6.8667 6.38578 6.59262C6.56892 6.31854 6.66667 5.9963 6.66667 5.66667C6.66667 5.22464 6.49107 4.80072 6.17851 4.48816C5.86595 4.1756 5.44203 4 5 4ZM10 15.3333V15C10 13.6739 9.47322 12.4021 8.53553 11.4645C7.59785 10.5268 6.32608 10 5 10C3.67392 10 2.40215 10.5268 1.46447 11.4645C0.526784 12.4021 0 13.6739 0 15L0 15.3333C0 15.5101 0.0702379 15.6797 0.195262 15.8047C0.320286 15.9298 0.489856 16 0.666667 16C0.843478 16 1.01305 15.9298 1.13807 15.8047C1.2631 15.6797 1.33333 15.5101 1.33333 15.3333V15C1.33333 14.0275 1.71964 13.0949 2.40728 12.4073C3.09491 11.7196 4.02754 11.3333 5 11.3333C5.97246 11.3333 6.90509 11.7196 7.59273 12.4073C8.28036 13.0949 8.66667 14.0275 8.66667 15V15.3333C8.66667 15.5101 8.73691 15.6797 8.86193 15.8047C8.98695 15.9298 9.15652 16 9.33333 16C9.51014 16 9.67971 15.9298 9.80474 15.8047C9.92976 15.6797 10 15.5101 10 15.3333ZM16 12C16 11.0991 15.7392 10.2175 15.2491 9.46158C14.7591 8.70565 14.0607 8.10772 13.2383 7.73998C12.4159 7.37223 11.5046 7.25039 10.6145 7.38916C9.72437 7.52793 8.89344 7.92137 8.222 8.522C8.15584 8.58013 8.10186 8.6508 8.06317 8.72991C8.02448 8.80903 8.00185 8.89502 7.99659 8.98293C7.99132 9.07085 8.00353 9.15893 8.0325 9.24209C8.06147 9.32526 8.10663 9.40186 8.16537 9.46748C8.22412 9.53309 8.29528 9.58642 8.37475 9.62437C8.45422 9.66232 8.54042 9.68416 8.62838 9.68861C8.71633 9.69306 8.8043 9.68004 8.88719 9.6503C8.97009 9.62055 9.04627 9.57469 9.11133 9.51534C9.59097 9.08641 10.1845 8.80548 10.8203 8.70644C11.456 8.6074 12.1069 8.69449 12.6943 8.9572C13.2816 9.21991 13.7804 9.647 14.1304 10.1869C14.4804 10.7269 14.6667 11.3566 14.6667 12C14.6667 12.1768 14.7369 12.3464 14.8619 12.4714C14.987 12.5964 15.1565 12.6667 15.3333 12.6667C15.5101 12.6667 15.6797 12.5964 15.8047 12.4714C15.9298 12.3464 16 12.1768 16 12ZM11.6667 6C11.0733 6 10.4933 5.82405 9.99996 5.49441C9.50661 5.16477 9.12209 4.69623 8.89503 4.14805C8.66796 3.59987 8.60855 2.99667 8.72431 2.41473C8.84007 1.83279 9.12579 1.29824 9.54535 0.878681C9.9649 0.459123 10.4995 0.173401 11.0814 0.0576455C11.6633 -0.0581102 12.2665 0.00129986 12.8147 0.228363C13.3629 0.455426 13.8314 0.839943 14.1611 1.33329C14.4907 1.82664 14.6667 2.40666 14.6667 3C14.6658 3.79538 14.3494 4.55793 13.787 5.12035C13.2246 5.68277 12.462 5.99912 11.6667 6ZM11.6667 1.33333C11.337 1.33333 11.0148 1.43108 10.7407 1.61422C10.4666 1.79735 10.253 2.05765 10.1269 2.3622C10.0007 2.66674 9.96772 3.00185 10.032 3.32515C10.0963 3.64845 10.2551 3.94543 10.4882 4.17851C10.7212 4.4116 11.0182 4.57033 11.3415 4.63464C11.6648 4.69895 11.9999 4.66595 12.3045 4.5398C12.609 4.41365 12.8693 4.20003 13.0525 3.92595C13.2356 3.65187 13.3333 3.32964 13.3333 3C13.3333 2.55797 13.1577 2.13405 12.8452 1.82149C12.5326 1.50893 12.1087 1.33333 11.6667 1.33333Z",
|
|
2828
2751
|
fill: "currentColor"
|
|
2829
2752
|
}
|
|
2830
2753
|
) }),
|
|
2831
|
-
/* @__PURE__ */ (0,
|
|
2754
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("clipPath", { id: "clip_profile_accounts_wallets_tab", children: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
2832
2755
|
]
|
|
2833
2756
|
})
|
|
2834
2757
|
);
|
|
@@ -2836,10 +2759,10 @@ var ProfileAccountsWalletsTabIcon = (_a) => {
|
|
|
2836
2759
|
ProfileAccountsWalletsTabIcon.displayName = "ProfileAccountsWalletsTabIcon";
|
|
2837
2760
|
|
|
2838
2761
|
// src/primitives/icon/svg/profile.tsx
|
|
2839
|
-
var
|
|
2762
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
2840
2763
|
var ProfileIcon = (_a) => {
|
|
2841
2764
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2842
|
-
return /* @__PURE__ */ (0,
|
|
2765
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
|
|
2843
2766
|
"svg",
|
|
2844
2767
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2845
2768
|
viewBox: "0 0 16 16",
|
|
@@ -2847,16 +2770,16 @@ var ProfileIcon = (_a) => {
|
|
|
2847
2770
|
fill: "none"
|
|
2848
2771
|
}, getIconA11yProps(title)), props), {
|
|
2849
2772
|
children: [
|
|
2850
|
-
title ? /* @__PURE__ */ (0,
|
|
2851
|
-
/* @__PURE__ */ (0,
|
|
2852
|
-
/* @__PURE__ */ (0,
|
|
2773
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("title", { children: title }) : null,
|
|
2774
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("g", { clipPath: "url(#profile-clip)", children: [
|
|
2775
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2853
2776
|
"path",
|
|
2854
2777
|
{
|
|
2855
2778
|
d: "M8 8C8.79113 8 9.56448 7.76541 10.2223 7.32588C10.8801 6.88635 11.3928 6.26164 11.6955 5.53074C11.9983 4.79983 12.0775 3.99556 11.9231 3.21964C11.7688 2.44372 11.3878 1.73098 10.8284 1.17157C10.269 0.612165 9.55629 0.231202 8.78036 0.0768607C8.00444 -0.0774802 7.20017 0.00173314 6.46927 0.304484C5.73836 0.607234 5.11365 1.11992 4.67412 1.77772C4.2346 2.43552 4 3.20888 4 4C4.00106 5.06054 4.42283 6.07734 5.17274 6.82726C5.92266 7.57718 6.93946 7.99894 8 8ZM8 1.33334C8.52742 1.33334 9.04299 1.48973 9.48152 1.78275C9.92005 2.07577 10.2618 2.49224 10.4637 2.97951C10.6655 3.46678 10.7183 4.00296 10.6154 4.52024C10.5125 5.03753 10.2586 5.51268 9.88562 5.88562C9.51268 6.25856 9.03752 6.51254 8.52024 6.61543C8.00296 6.71832 7.46678 6.66551 6.97951 6.46368C6.49224 6.26185 6.07577 5.92005 5.78275 5.48152C5.48973 5.04299 5.33333 4.52742 5.33333 4C5.33333 3.29276 5.61428 2.61448 6.11438 2.11438C6.61448 1.61429 7.29276 1.33334 8 1.33334Z",
|
|
2856
2779
|
fill: "currentColor"
|
|
2857
2780
|
}
|
|
2858
2781
|
),
|
|
2859
|
-
/* @__PURE__ */ (0,
|
|
2782
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2860
2783
|
"path",
|
|
2861
2784
|
{
|
|
2862
2785
|
d: "M8 9.33334C6.40924 9.33511 4.88414 9.96782 3.75931 11.0927C2.63447 12.2175 2.00176 13.7426 2 15.3333C2 15.5102 2.07024 15.6797 2.19526 15.8047C2.32029 15.9298 2.48986 16 2.66667 16C2.84348 16 3.01305 15.9298 3.13807 15.8047C3.2631 15.6797 3.33333 15.5102 3.33333 15.3333C3.33333 14.0957 3.825 12.9087 4.70017 12.0335C5.57534 11.1583 6.76232 10.6667 8 10.6667C9.23768 10.6667 10.4247 11.1583 11.2998 12.0335C12.175 12.9087 12.6667 14.0957 12.6667 15.3333C12.6667 15.5102 12.7369 15.6797 12.8619 15.8047C12.987 15.9298 13.1565 16 13.3333 16C13.5101 16 13.6797 15.9298 13.8047 15.8047C13.9298 15.6797 14 15.5102 14 15.3333C13.9982 13.7426 13.3655 12.2175 12.2407 11.0927C11.1159 9.96782 9.59076 9.33511 8 9.33334Z",
|
|
@@ -2864,7 +2787,7 @@ var ProfileIcon = (_a) => {
|
|
|
2864
2787
|
}
|
|
2865
2788
|
)
|
|
2866
2789
|
] }),
|
|
2867
|
-
/* @__PURE__ */ (0,
|
|
2790
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("clipPath", { id: "profile-clip", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
2868
2791
|
]
|
|
2869
2792
|
})
|
|
2870
2793
|
);
|
|
@@ -2872,10 +2795,10 @@ var ProfileIcon = (_a) => {
|
|
|
2872
2795
|
ProfileIcon.displayName = "ProfileIcon";
|
|
2873
2796
|
|
|
2874
2797
|
// src/primitives/icon/svg/recenter.tsx
|
|
2875
|
-
var
|
|
2798
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
2876
2799
|
var RecenterIcon = (_a) => {
|
|
2877
2800
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2878
|
-
return /* @__PURE__ */ (0,
|
|
2801
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
|
|
2879
2802
|
"svg",
|
|
2880
2803
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2881
2804
|
viewBox: "0 0 16 16",
|
|
@@ -2883,15 +2806,15 @@ var RecenterIcon = (_a) => {
|
|
|
2883
2806
|
fill: "none"
|
|
2884
2807
|
}, getIconA11yProps(title)), props), {
|
|
2885
2808
|
children: [
|
|
2886
|
-
title ? /* @__PURE__ */ (0,
|
|
2887
|
-
/* @__PURE__ */ (0,
|
|
2809
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("title", { children: title }) : null,
|
|
2810
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("g", { clipPath: "url(#recenter-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
2888
2811
|
"path",
|
|
2889
2812
|
{
|
|
2890
2813
|
d: "M16 8C16 8.36867 15.7013 8.66667 15.3333 8.66667H0.666667C0.298667 8.66667 0 8.36867 0 8C0 7.63133 0.298667 7.33333 0.666667 7.33333H15.3333C15.7013 7.33333 16 7.63133 16 8ZM7.05733 5.60933C7.31733 5.86933 7.65867 5.99933 8 5.99933C8.34133 5.99933 8.68267 5.86933 8.94267 5.60933L11.138 3.414C11.3987 3.15333 11.3987 2.732 11.138 2.47133C10.8773 2.21067 10.456 2.21067 10.1953 2.47133L8.66667 4V0.666667C8.66667 0.298 8.368 0 8 0C7.632 0 7.33333 0.298 7.33333 0.666667V4L5.80467 2.47133C5.544 2.21067 5.12267 2.21067 4.862 2.47133C4.60133 2.732 4.60133 3.15333 4.862 3.414L7.05733 5.60933ZM8.94267 10.3907C8.42333 9.87133 7.57667 9.87133 7.05733 10.3907L4.862 12.586C4.60133 12.8467 4.60133 13.268 4.862 13.5287C5.12267 13.7893 5.544 13.7893 5.80467 13.5287L7.33333 12V15.3333C7.33333 15.702 7.632 16 8 16C8.368 16 8.66667 15.702 8.66667 15.3333V12L10.1953 13.5287C10.3253 13.6587 10.496 13.724 10.6667 13.724C10.8373 13.724 11.008 13.6587 11.138 13.5287C11.3987 13.268 11.3987 12.8467 11.138 12.586L8.94267 10.3907Z",
|
|
2891
2814
|
fill: "currentColor"
|
|
2892
2815
|
}
|
|
2893
2816
|
) }),
|
|
2894
|
-
/* @__PURE__ */ (0,
|
|
2817
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("clipPath", { id: "recenter-clip", children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
2895
2818
|
]
|
|
2896
2819
|
})
|
|
2897
2820
|
);
|
|
@@ -2899,10 +2822,10 @@ var RecenterIcon = (_a) => {
|
|
|
2899
2822
|
RecenterIcon.displayName = "RecenterIcon";
|
|
2900
2823
|
|
|
2901
2824
|
// src/primitives/icon/svg/revenue-alt.tsx
|
|
2902
|
-
var
|
|
2825
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
2903
2826
|
var RevenueAltIcon = (_a) => {
|
|
2904
2827
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2905
|
-
return /* @__PURE__ */ (0,
|
|
2828
|
+
return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
|
|
2906
2829
|
"svg",
|
|
2907
2830
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2908
2831
|
viewBox: "0 0 20 20",
|
|
@@ -2910,8 +2833,8 @@ var RevenueAltIcon = (_a) => {
|
|
|
2910
2833
|
fill: "none"
|
|
2911
2834
|
}, getIconA11yProps(title)), props), {
|
|
2912
2835
|
children: [
|
|
2913
|
-
title ? /* @__PURE__ */ (0,
|
|
2914
|
-
/* @__PURE__ */ (0,
|
|
2836
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("title", { children: title }) : null,
|
|
2837
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
2915
2838
|
"path",
|
|
2916
2839
|
{
|
|
2917
2840
|
d: "M3 14V6M3 6L1.5 7.5M3 6L4.5 7.5M17 6V14M17 14L15.5 12.5M17 14L18.5 12.5",
|
|
@@ -2921,7 +2844,7 @@ var RevenueAltIcon = (_a) => {
|
|
|
2921
2844
|
strokeLinejoin: "round"
|
|
2922
2845
|
}
|
|
2923
2846
|
),
|
|
2924
|
-
/* @__PURE__ */ (0,
|
|
2847
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
2925
2848
|
"path",
|
|
2926
2849
|
{
|
|
2927
2850
|
d: "M10 5.5V14.5M12.5 7.4C12.5 6.55 11.38 5.86 10 5.86C8.62 5.86 7.5 6.55 7.5 7.4C7.5 8.25 8.62 8.94 10 8.94C11.38 8.94 12.5 9.63 12.5 10.48C12.5 11.33 11.38 12.02 10 12.02C8.62 12.02 7.5 11.33 7.5 10.48",
|
|
@@ -2938,10 +2861,10 @@ var RevenueAltIcon = (_a) => {
|
|
|
2938
2861
|
RevenueAltIcon.displayName = "RevenueAltIcon";
|
|
2939
2862
|
|
|
2940
2863
|
// src/primitives/icon/svg/search.tsx
|
|
2941
|
-
var
|
|
2864
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
2942
2865
|
var SearchIcon = (_a) => {
|
|
2943
2866
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2944
|
-
return /* @__PURE__ */ (0,
|
|
2867
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
|
|
2945
2868
|
"svg",
|
|
2946
2869
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2947
2870
|
viewBox: "0 0 16 16",
|
|
@@ -2950,8 +2873,8 @@ var SearchIcon = (_a) => {
|
|
|
2950
2873
|
className
|
|
2951
2874
|
}, getIconA11yProps(title)), props), {
|
|
2952
2875
|
children: [
|
|
2953
|
-
title ? /* @__PURE__ */ (0,
|
|
2954
|
-
/* @__PURE__ */ (0,
|
|
2876
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("title", { children: title }) : null,
|
|
2877
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
2955
2878
|
"path",
|
|
2956
2879
|
{
|
|
2957
2880
|
d: "M7.3335 12.3333C10.0949 12.3333 12.3335 10.0947 12.3335 7.33329C12.3335 4.57187 10.0949 2.33329 7.3335 2.33329C4.57208 2.33329 2.3335 4.57187 2.3335 7.33329C2.3335 10.0947 4.57208 12.3333 7.3335 12.3333Z",
|
|
@@ -2961,7 +2884,7 @@ var SearchIcon = (_a) => {
|
|
|
2961
2884
|
strokeLinejoin: "round"
|
|
2962
2885
|
}
|
|
2963
2886
|
),
|
|
2964
|
-
/* @__PURE__ */ (0,
|
|
2887
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
2965
2888
|
"path",
|
|
2966
2889
|
{
|
|
2967
2890
|
d: "M13.6668 13.6666L11.1667 11.1666",
|
|
@@ -2978,10 +2901,10 @@ var SearchIcon = (_a) => {
|
|
|
2978
2901
|
SearchIcon.displayName = "SearchIcon";
|
|
2979
2902
|
|
|
2980
2903
|
// src/primitives/icon/svg/shield-trust.tsx
|
|
2981
|
-
var
|
|
2904
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
2982
2905
|
var ShieldTrustIcon = (_a) => {
|
|
2983
2906
|
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2984
|
-
return /* @__PURE__ */ (0,
|
|
2907
|
+
return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
|
|
2985
2908
|
"svg",
|
|
2986
2909
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2987
2910
|
viewBox: "0 0 14 14",
|
|
@@ -2989,8 +2912,8 @@ var ShieldTrustIcon = (_a) => {
|
|
|
2989
2912
|
fill: "none"
|
|
2990
2913
|
}, getIconA11yProps(title)), props), {
|
|
2991
2914
|
children: [
|
|
2992
|
-
title ? /* @__PURE__ */ (0,
|
|
2993
|
-
/* @__PURE__ */ (0,
|
|
2915
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("title", { children: title }) : null,
|
|
2916
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
2994
2917
|
"path",
|
|
2995
2918
|
{
|
|
2996
2919
|
d: "M13.4889 5.75648L12.2341 4.49998V3.49781C12.2341 2.53473 11.4513 1.75073 10.4894 1.75073H9.48835L8.2336 0.494813C7.57385 -0.164938 6.42469 -0.164938 5.76552 0.494813L4.51077 1.75073H3.50977C2.54727 1.75073 1.76502 2.53415 1.76502 3.49781V4.49998L0.509687 5.75648C-0.169896 6.43781 -0.169896 7.54556 0.509687 8.2269L1.76444 9.4834V10.4856C1.76444 11.4486 2.54727 12.2326 3.50919 12.2326H4.51019L5.76494 13.4886C6.09452 13.8181 6.53319 14.0001 6.99927 14.0001C7.46535 14.0001 7.90344 13.8181 8.23302 13.4886L9.48777 12.2326H10.4888C11.4513 12.2326 12.2335 11.4492 12.2335 10.4856V9.4834L13.4889 8.2269C14.1684 7.54556 14.1684 6.43781 13.4889 5.75648ZM10.6177 5.95656L7.66952 8.87031C7.31135 9.22615 6.83944 9.40465 6.3681 9.40465C5.89677 9.40465 5.42719 9.22673 5.06785 8.87206L3.55177 7.41431C3.3231 7.1874 3.32077 6.81873 3.54769 6.58948C3.77519 6.3614 4.14327 6.35848 4.3731 6.5854L5.8886 8.04256C6.15285 8.30448 6.58277 8.30506 6.8476 8.04256L9.79635 5.12823C10.0262 4.90073 10.3949 4.90306 10.6218 5.13231C10.8487 5.36156 10.8464 5.72965 10.6177 5.95656Z",
|
|
@@ -3003,6 +2926,94 @@ var ShieldTrustIcon = (_a) => {
|
|
|
3003
2926
|
};
|
|
3004
2927
|
ShieldTrustIcon.displayName = "ShieldTrustIcon";
|
|
3005
2928
|
|
|
2929
|
+
// src/primitives/icon/svg/solana.tsx
|
|
2930
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
2931
|
+
var SolanaIcon = (_a) => {
|
|
2932
|
+
var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2933
|
+
return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
|
|
2934
|
+
"svg",
|
|
2935
|
+
__spreadProps(__spreadValues(__spreadValues({
|
|
2936
|
+
viewBox: "0 0 24 24",
|
|
2937
|
+
className: cn("rounded-agg-sm", className),
|
|
2938
|
+
fill: "none"
|
|
2939
|
+
}, getIconA11yProps(title)), props), {
|
|
2940
|
+
children: [
|
|
2941
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("title", { children: title }) : null,
|
|
2942
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("rect", { width: "24", height: "24", fill: "black" }),
|
|
2943
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
2944
|
+
"path",
|
|
2945
|
+
{
|
|
2946
|
+
d: "M5.92399 15.7169C6.03262 15.6083 6.18198 15.5449 6.34039 15.5449H20.706C20.9685 15.5449 21.0998 15.8617 20.9142 16.0473L18.0764 18.8851C17.9677 18.9938 17.8184 19.0571 17.66 19.0571H3.29437C3.03186 19.0571 2.90061 18.7403 3.08617 18.5547L5.92399 15.7169Z",
|
|
2947
|
+
fill: "url(#paint0_linear_1471_9988)"
|
|
2948
|
+
}
|
|
2949
|
+
),
|
|
2950
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
2951
|
+
"path",
|
|
2952
|
+
{
|
|
2953
|
+
d: "M5.92399 5.1217C6.03714 5.01307 6.1865 4.94971 6.34039 4.94971H20.706C20.9685 4.94971 21.0998 5.26653 20.9142 5.4521L18.0764 8.28991C17.9677 8.39854 17.8184 8.4619 17.66 8.4619H3.29437C3.03186 8.4619 2.90061 8.14508 3.08617 7.95951L5.92399 5.1217Z",
|
|
2954
|
+
fill: "url(#paint1_linear_1471_9988)"
|
|
2955
|
+
}
|
|
2956
|
+
),
|
|
2957
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
2958
|
+
"path",
|
|
2959
|
+
{
|
|
2960
|
+
d: "M18.0764 10.3854C17.9677 10.2767 17.8184 10.2134 17.66 10.2134H3.29437C3.03186 10.2134 2.90061 10.5302 3.08617 10.7158L5.92399 13.5536C6.03262 13.6622 6.18198 13.7256 6.34039 13.7256H20.706C20.9685 13.7256 21.0998 13.4088 20.9142 13.2232L18.0764 10.3854Z",
|
|
2961
|
+
fill: "url(#paint2_linear_1471_9988)"
|
|
2962
|
+
}
|
|
2963
|
+
),
|
|
2964
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("defs", { children: [
|
|
2965
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
|
|
2966
|
+
"linearGradient",
|
|
2967
|
+
{
|
|
2968
|
+
id: "paint0_linear_1471_9988",
|
|
2969
|
+
x1: "19.3337",
|
|
2970
|
+
y1: "3.25426",
|
|
2971
|
+
x2: "9.39151",
|
|
2972
|
+
y2: "22.2975",
|
|
2973
|
+
gradientUnits: "userSpaceOnUse",
|
|
2974
|
+
children: [
|
|
2975
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("stop", { stopColor: "#00FFA3" }),
|
|
2976
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("stop", { offset: "1", stopColor: "#DC1FFF" })
|
|
2977
|
+
]
|
|
2978
|
+
}
|
|
2979
|
+
),
|
|
2980
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
|
|
2981
|
+
"linearGradient",
|
|
2982
|
+
{
|
|
2983
|
+
id: "paint1_linear_1471_9988",
|
|
2984
|
+
x1: "14.9864",
|
|
2985
|
+
y1: "0.984846",
|
|
2986
|
+
x2: "5.04427",
|
|
2987
|
+
y2: "20.028",
|
|
2988
|
+
gradientUnits: "userSpaceOnUse",
|
|
2989
|
+
children: [
|
|
2990
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("stop", { stopColor: "#00FFA3" }),
|
|
2991
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("stop", { offset: "1", stopColor: "#DC1FFF" })
|
|
2992
|
+
]
|
|
2993
|
+
}
|
|
2994
|
+
),
|
|
2995
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
|
|
2996
|
+
"linearGradient",
|
|
2997
|
+
{
|
|
2998
|
+
id: "paint2_linear_1471_9988",
|
|
2999
|
+
x1: "17.1462",
|
|
3000
|
+
y1: "2.11234",
|
|
3001
|
+
x2: "7.20405",
|
|
3002
|
+
y2: "21.1555",
|
|
3003
|
+
gradientUnits: "userSpaceOnUse",
|
|
3004
|
+
children: [
|
|
3005
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("stop", { stopColor: "#00FFA3" }),
|
|
3006
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("stop", { offset: "1", stopColor: "#DC1FFF" })
|
|
3007
|
+
]
|
|
3008
|
+
}
|
|
3009
|
+
)
|
|
3010
|
+
] })
|
|
3011
|
+
]
|
|
3012
|
+
})
|
|
3013
|
+
);
|
|
3014
|
+
};
|
|
3015
|
+
SolanaIcon.displayName = "SolanaIcon";
|
|
3016
|
+
|
|
3006
3017
|
// src/primitives/icon/svg/sparkles-filled.tsx
|
|
3007
3018
|
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
3008
3019
|
var SparklesFilledIcon = (_a) => {
|
|
@@ -3882,7 +3893,7 @@ var DepositMethodStep = ({
|
|
|
3882
3893
|
|
|
3883
3894
|
// src/deposit/steps/card-deposit.tsx
|
|
3884
3895
|
var import_hooks16 = require("@agg-build/hooks");
|
|
3885
|
-
var
|
|
3896
|
+
var import_react3 = require("react");
|
|
3886
3897
|
|
|
3887
3898
|
// src/primitives/button/index.tsx
|
|
3888
3899
|
var import_hooks12 = require("@agg-build/hooks");
|
|
@@ -4022,13 +4033,13 @@ var Button = (_a) => {
|
|
|
4022
4033
|
Button.displayName = "Button";
|
|
4023
4034
|
|
|
4024
4035
|
// src/primitives/select/index.tsx
|
|
4025
|
-
var
|
|
4036
|
+
var import_react2 = require("react");
|
|
4026
4037
|
var import_react_dom = require("react-dom");
|
|
4027
4038
|
var import_hooks15 = require("@agg-build/hooks");
|
|
4028
4039
|
|
|
4029
4040
|
// src/primitives/remote-image/index.tsx
|
|
4030
4041
|
var import_hooks14 = require("@agg-build/hooks");
|
|
4031
|
-
var
|
|
4042
|
+
var import_react = require("react");
|
|
4032
4043
|
|
|
4033
4044
|
// src/primitives/skeleton/skeleton-block.tsx
|
|
4034
4045
|
var import_hooks13 = require("@agg-build/hooks");
|
|
@@ -4082,10 +4093,10 @@ var RemoteImage = ({
|
|
|
4082
4093
|
general: { theme }
|
|
4083
4094
|
} = (0, import_hooks14.useSdkUiConfig)();
|
|
4084
4095
|
const isDarkTheme = theme === "dark";
|
|
4085
|
-
const [status, setStatus] = (0,
|
|
4096
|
+
const [status, setStatus] = (0, import_react.useState)(
|
|
4086
4097
|
() => resolveRemoteImageStatusFromSrc(src)
|
|
4087
4098
|
);
|
|
4088
|
-
const prevSrcRef = (0,
|
|
4099
|
+
const prevSrcRef = (0, import_react.useRef)(src);
|
|
4089
4100
|
if (src !== prevSrcRef.current) {
|
|
4090
4101
|
prevSrcRef.current = src;
|
|
4091
4102
|
const next = resolveRemoteImageStatusFromSrc(src);
|
|
@@ -4194,27 +4205,27 @@ var Select = ({
|
|
|
4194
4205
|
} = (0, import_hooks15.useSdkUiConfig)();
|
|
4195
4206
|
const isDisabled = resolveIsSelectDisabled({ disabled, items });
|
|
4196
4207
|
const selectedItem = resolveSelectedItem(items, value);
|
|
4197
|
-
const [isOpen, setIsOpen] = (0,
|
|
4198
|
-
const [menuRect, setMenuRect] = (0,
|
|
4208
|
+
const [isOpen, setIsOpen] = (0, import_react2.useState)(false);
|
|
4209
|
+
const [menuRect, setMenuRect] = (0, import_react2.useState)(
|
|
4199
4210
|
null
|
|
4200
4211
|
);
|
|
4201
|
-
const containerRef = (0,
|
|
4202
|
-
const portalRef = (0,
|
|
4203
|
-
const handleClose = (0,
|
|
4204
|
-
const updateMenuRect = (0,
|
|
4212
|
+
const containerRef = (0, import_react2.useRef)(null);
|
|
4213
|
+
const portalRef = (0, import_react2.useRef)(null);
|
|
4214
|
+
const handleClose = (0, import_react2.useCallback)(() => setIsOpen(false), []);
|
|
4215
|
+
const updateMenuRect = (0, import_react2.useCallback)(() => {
|
|
4205
4216
|
const el = containerRef.current;
|
|
4206
4217
|
if (!el) return;
|
|
4207
4218
|
const r = el.getBoundingClientRect();
|
|
4208
4219
|
setMenuRect({ top: r.bottom + 4, left: r.left, width: r.width });
|
|
4209
4220
|
}, []);
|
|
4210
|
-
(0,
|
|
4221
|
+
(0, import_react2.useLayoutEffect)(() => {
|
|
4211
4222
|
if (!isOpen) {
|
|
4212
4223
|
setMenuRect(null);
|
|
4213
4224
|
return;
|
|
4214
4225
|
}
|
|
4215
4226
|
updateMenuRect();
|
|
4216
4227
|
}, [isOpen, updateMenuRect, value]);
|
|
4217
|
-
(0,
|
|
4228
|
+
(0, import_react2.useEffect)(() => {
|
|
4218
4229
|
if (!isOpen) return;
|
|
4219
4230
|
const handlePointerDown = (event) => {
|
|
4220
4231
|
var _a2, _b;
|
|
@@ -4235,7 +4246,7 @@ var Select = ({
|
|
|
4235
4246
|
document.removeEventListener("scroll", handleReposition, true);
|
|
4236
4247
|
};
|
|
4237
4248
|
}, [isOpen, handleClose, updateMenuRect]);
|
|
4238
|
-
(0,
|
|
4249
|
+
(0, import_react2.useEffect)(() => {
|
|
4239
4250
|
if (!isOpen) return;
|
|
4240
4251
|
const handleKeyDown = (event) => {
|
|
4241
4252
|
if ((event == null ? void 0 : event.key) === "Escape") handleClose();
|
|
@@ -4366,8 +4377,8 @@ var CardDepositStep = ({
|
|
|
4366
4377
|
onContinue
|
|
4367
4378
|
}) => {
|
|
4368
4379
|
const labels = (0, import_hooks16.useLabels)();
|
|
4369
|
-
const [localAmount, setLocalAmount] = (0,
|
|
4370
|
-
(0,
|
|
4380
|
+
const [localAmount, setLocalAmount] = (0, import_react3.useState)(amount);
|
|
4381
|
+
(0, import_react3.useEffect)(() => {
|
|
4371
4382
|
setLocalAmount(amount);
|
|
4372
4383
|
}, [amount]);
|
|
4373
4384
|
const numericAmount = Number(localAmount) || 0;
|
|
@@ -4485,7 +4496,7 @@ var CardDepositStep = ({
|
|
|
4485
4496
|
var import_hooks17 = require("@agg-build/hooks");
|
|
4486
4497
|
|
|
4487
4498
|
// src/primitives/copy-button/index.tsx
|
|
4488
|
-
var
|
|
4499
|
+
var import_react4 = require("react");
|
|
4489
4500
|
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
4490
4501
|
var CopyButton = ({
|
|
4491
4502
|
value,
|
|
@@ -4498,15 +4509,15 @@ var CopyButton = ({
|
|
|
4498
4509
|
onCopy,
|
|
4499
4510
|
resetMs = 2e3
|
|
4500
4511
|
}) => {
|
|
4501
|
-
const [isCopied, setIsCopied] = (0,
|
|
4502
|
-
const timeoutRef = (0,
|
|
4503
|
-
(0,
|
|
4512
|
+
const [isCopied, setIsCopied] = (0, import_react4.useState)(false);
|
|
4513
|
+
const timeoutRef = (0, import_react4.useRef)(null);
|
|
4514
|
+
(0, import_react4.useEffect)(
|
|
4504
4515
|
() => () => {
|
|
4505
4516
|
if (timeoutRef.current !== null) clearTimeout(timeoutRef.current);
|
|
4506
4517
|
},
|
|
4507
4518
|
[]
|
|
4508
4519
|
);
|
|
4509
|
-
const handleClick = (0,
|
|
4520
|
+
const handleClick = (0, import_react4.useCallback)(() => {
|
|
4510
4521
|
var _a;
|
|
4511
4522
|
if (!value) return;
|
|
4512
4523
|
(_a = navigator.clipboard) == null ? void 0 : _a.writeText(value).catch(() => {
|
|
@@ -5092,7 +5103,7 @@ var CardPurchaseSuccessStep = ({
|
|
|
5092
5103
|
|
|
5093
5104
|
// src/deposit/steps/wallet-processing.tsx
|
|
5094
5105
|
var import_hooks22 = require("@agg-build/hooks");
|
|
5095
|
-
var
|
|
5106
|
+
var import_react5 = require("react");
|
|
5096
5107
|
var import_jsx_runtime101 = require("react/jsx-runtime");
|
|
5097
5108
|
var WalletProcessingStep = ({
|
|
5098
5109
|
steps,
|
|
@@ -5100,7 +5111,7 @@ var WalletProcessingStep = ({
|
|
|
5100
5111
|
onComplete
|
|
5101
5112
|
}) => {
|
|
5102
5113
|
const labels = (0, import_hooks22.useLabels)();
|
|
5103
|
-
(0,
|
|
5114
|
+
(0, import_react5.useEffect)(() => {
|
|
5104
5115
|
const allDone = steps.length > 0 && steps.every((s) => s.status === "complete");
|
|
5105
5116
|
if (allDone) {
|
|
5106
5117
|
onComplete();
|
|
@@ -5270,28 +5281,28 @@ function DepositModalControlled({
|
|
|
5270
5281
|
const { walletActions } = (0, import_hooks24.useAggUiConfig)();
|
|
5271
5282
|
const labels = (0, import_hooks24.useLabels)();
|
|
5272
5283
|
const defaultMethod = isWeb3User ? "wallet" : "crypto";
|
|
5273
|
-
const [step, setStep] = (0,
|
|
5284
|
+
const [step, setStep] = (0, import_react6.useState)(
|
|
5274
5285
|
() => pendingCardPurchaseSummary ? "card-success" : "method"
|
|
5275
5286
|
);
|
|
5276
|
-
const [highlightedMethod, setHighlightedMethod] = (0,
|
|
5277
|
-
const walletSubmitInFlightRef = (0,
|
|
5278
|
-
const [isWalletSubmitting, setIsWalletSubmitting] = (0,
|
|
5279
|
-
const [cardProviders, setCardProviders] = (0,
|
|
5280
|
-
const [quotesLoading, setQuotesLoading] = (0,
|
|
5281
|
-
const [quotesError, setQuotesError] = (0,
|
|
5282
|
-
const [sessionError, setSessionError] = (0,
|
|
5283
|
-
const [pendingProviderName, setPendingProviderName] = (0,
|
|
5284
|
-
const [pendingProviderWalletAddress, setPendingProviderWalletAddress] = (0,
|
|
5285
|
-
(0,
|
|
5287
|
+
const [highlightedMethod, setHighlightedMethod] = (0, import_react6.useState)(defaultMethod);
|
|
5288
|
+
const walletSubmitInFlightRef = (0, import_react6.useRef)(false);
|
|
5289
|
+
const [isWalletSubmitting, setIsWalletSubmitting] = (0, import_react6.useState)(false);
|
|
5290
|
+
const [cardProviders, setCardProviders] = (0, import_react6.useState)([]);
|
|
5291
|
+
const [quotesLoading, setQuotesLoading] = (0, import_react6.useState)(false);
|
|
5292
|
+
const [quotesError, setQuotesError] = (0, import_react6.useState)(null);
|
|
5293
|
+
const [sessionError, setSessionError] = (0, import_react6.useState)(null);
|
|
5294
|
+
const [pendingProviderName, setPendingProviderName] = (0, import_react6.useState)("");
|
|
5295
|
+
const [pendingProviderWalletAddress, setPendingProviderWalletAddress] = (0, import_react6.useState)("");
|
|
5296
|
+
(0, import_react6.useEffect)(() => {
|
|
5286
5297
|
if (pendingCardPurchaseSummary) {
|
|
5287
5298
|
clearPendingCardSession();
|
|
5288
5299
|
setStep("card-success");
|
|
5289
5300
|
}
|
|
5290
5301
|
}, [pendingCardPurchaseSummary]);
|
|
5291
|
-
const [walletChainId, setWalletChainId] = (0,
|
|
5292
|
-
const [walletToken, setWalletToken] = (0,
|
|
5293
|
-
const [sendChainId, setSendChainId] = (0,
|
|
5294
|
-
const [sendToken, setSendToken] = (0,
|
|
5302
|
+
const [walletChainId, setWalletChainId] = (0, import_react6.useState)("");
|
|
5303
|
+
const [walletToken, setWalletToken] = (0, import_react6.useState)("");
|
|
5304
|
+
const [sendChainId, setSendChainId] = (0, import_react6.useState)("");
|
|
5305
|
+
const [sendToken, setSendToken] = (0, import_react6.useState)("");
|
|
5295
5306
|
const {
|
|
5296
5307
|
isReady,
|
|
5297
5308
|
isTimedOut,
|
|
@@ -5299,14 +5310,14 @@ function DepositModalControlled({
|
|
|
5299
5310
|
supportedChains,
|
|
5300
5311
|
getAddress
|
|
5301
5312
|
} = (0, import_hooks24.useDepositAddresses)({ enabled: open });
|
|
5302
|
-
const fallbackNetworkOptions = (0,
|
|
5303
|
-
const networkOptions = (0,
|
|
5313
|
+
const fallbackNetworkOptions = (0, import_react6.useMemo)(() => mapNetworksToOptions(), []);
|
|
5314
|
+
const networkOptions = (0, import_react6.useMemo)(() => {
|
|
5304
5315
|
if (!(supportedChains == null ? void 0 : supportedChains.length)) return fallbackNetworkOptions;
|
|
5305
5316
|
return withNetworkIcons(
|
|
5306
5317
|
supportedChains.map((c) => ({ value: String(c.chainId), label: c.name }))
|
|
5307
5318
|
);
|
|
5308
5319
|
}, [supportedChains, fallbackNetworkOptions]);
|
|
5309
|
-
const walletNetworkOptions = (0,
|
|
5320
|
+
const walletNetworkOptions = (0, import_react6.useMemo)(() => {
|
|
5310
5321
|
if (!(supportedChains == null ? void 0 : supportedChains.length) || !connectedWalletKind) return networkOptions;
|
|
5311
5322
|
const filtered = supportedChains.filter(
|
|
5312
5323
|
(c) => connectedWalletKind === "solana" ? import_deposit.SVM_CHAIN_IDS.has(c.chainId) : !import_deposit.SVM_CHAIN_IDS.has(c.chainId)
|
|
@@ -5314,17 +5325,17 @@ function DepositModalControlled({
|
|
|
5314
5325
|
if (filtered.length === 0) return networkOptions;
|
|
5315
5326
|
return withNetworkIcons(filtered.map((c) => ({ value: String(c.chainId), label: c.name })));
|
|
5316
5327
|
}, [supportedChains, networkOptions, connectedWalletKind]);
|
|
5317
|
-
const walletTokenOptions = (0,
|
|
5328
|
+
const walletTokenOptions = (0, import_react6.useMemo)(() => {
|
|
5318
5329
|
const chain = supportedChains == null ? void 0 : supportedChains.find((c) => String(c.chainId) === walletChainId);
|
|
5319
5330
|
if (!chain) return withTokenIcons(DEFAULT_CURRENCY_OPTIONS);
|
|
5320
5331
|
return withTokenIcons(chain.tokens.map((t) => ({ value: t.symbol, label: t.symbol })));
|
|
5321
5332
|
}, [supportedChains, walletChainId]);
|
|
5322
|
-
const sendTokenOptions = (0,
|
|
5333
|
+
const sendTokenOptions = (0, import_react6.useMemo)(() => {
|
|
5323
5334
|
const chain = supportedChains == null ? void 0 : supportedChains.find((c) => String(c.chainId) === sendChainId);
|
|
5324
5335
|
if (!chain) return withTokenIcons(DEFAULT_CURRENCY_OPTIONS);
|
|
5325
5336
|
return withTokenIcons(chain.tokens.map((t) => ({ value: t.symbol, label: t.symbol })));
|
|
5326
5337
|
}, [supportedChains, sendChainId]);
|
|
5327
|
-
(0,
|
|
5338
|
+
(0, import_react6.useEffect)(() => {
|
|
5328
5339
|
if (walletNetworkOptions.length > 0) {
|
|
5329
5340
|
if (!walletChainId || !walletNetworkOptions.some((o) => o.value === walletChainId)) {
|
|
5330
5341
|
const preferred = initialWalletChainId && walletNetworkOptions.some((o) => o.value === initialWalletChainId) ? initialWalletChainId : walletNetworkOptions[0].value;
|
|
@@ -5332,25 +5343,25 @@ function DepositModalControlled({
|
|
|
5332
5343
|
}
|
|
5333
5344
|
}
|
|
5334
5345
|
}, [walletNetworkOptions, walletChainId, initialWalletChainId]);
|
|
5335
|
-
(0,
|
|
5346
|
+
(0, import_react6.useEffect)(() => {
|
|
5336
5347
|
if (networkOptions.length > 0) {
|
|
5337
5348
|
if (!sendChainId || !networkOptions.some((o) => o.value === sendChainId)) {
|
|
5338
5349
|
setSendChainId(networkOptions[0].value);
|
|
5339
5350
|
}
|
|
5340
5351
|
}
|
|
5341
5352
|
}, [networkOptions, sendChainId]);
|
|
5342
|
-
(0,
|
|
5353
|
+
(0, import_react6.useEffect)(() => {
|
|
5343
5354
|
if (walletTokenOptions.length > 0) setWalletToken(walletTokenOptions[0].value);
|
|
5344
5355
|
}, [walletTokenOptions]);
|
|
5345
|
-
(0,
|
|
5356
|
+
(0, import_react6.useEffect)(() => {
|
|
5346
5357
|
if (sendTokenOptions.length > 0) setSendToken(sendTokenOptions[0].value);
|
|
5347
5358
|
}, [sendTokenOptions]);
|
|
5348
|
-
(0,
|
|
5359
|
+
(0, import_react6.useEffect)(() => {
|
|
5349
5360
|
if (walletChainId) {
|
|
5350
5361
|
onWalletNetworkChange == null ? void 0 : onWalletNetworkChange(walletChainId);
|
|
5351
5362
|
}
|
|
5352
5363
|
}, [walletChainId, onWalletNetworkChange]);
|
|
5353
|
-
(0,
|
|
5364
|
+
(0, import_react6.useEffect)(() => {
|
|
5354
5365
|
if (walletToken) {
|
|
5355
5366
|
onWalletTokenChange == null ? void 0 : onWalletTokenChange(walletToken);
|
|
5356
5367
|
}
|
|
@@ -5369,7 +5380,7 @@ function DepositModalControlled({
|
|
|
5369
5380
|
fromWallet: walletFlow.walletLabel,
|
|
5370
5381
|
gasFee: ""
|
|
5371
5382
|
}, walletFlow.successSummary);
|
|
5372
|
-
(0,
|
|
5383
|
+
(0, import_react6.useEffect)(() => {
|
|
5373
5384
|
if (step === "wallet-processing" && !isWalletSubmitting && walletFlow.transactionStatus === "settled") {
|
|
5374
5385
|
setStep("wallet-success");
|
|
5375
5386
|
}
|
|
@@ -5695,7 +5706,7 @@ var DepositModal = (props) => {
|
|
|
5695
5706
|
DepositModal.displayName = "DepositModal";
|
|
5696
5707
|
|
|
5697
5708
|
// src/withdraw/index.tsx
|
|
5698
|
-
var
|
|
5709
|
+
var import_react8 = require("react");
|
|
5699
5710
|
var import_withdraw2 = require("@agg-build/hooks/withdraw");
|
|
5700
5711
|
|
|
5701
5712
|
// src/withdraw/steps/withdraw-method.tsx
|
|
@@ -5885,7 +5896,7 @@ var WithdrawAmountStep = ({
|
|
|
5885
5896
|
};
|
|
5886
5897
|
|
|
5887
5898
|
// src/withdraw/steps/withdraw-success.tsx
|
|
5888
|
-
var
|
|
5899
|
+
var import_react7 = require("react");
|
|
5889
5900
|
var import_hooks27 = require("@agg-build/hooks");
|
|
5890
5901
|
var import_withdraw = require("@agg-build/hooks/withdraw");
|
|
5891
5902
|
|
|
@@ -6019,7 +6030,7 @@ var WithdrawSuccessStep = ({
|
|
|
6019
6030
|
features: { enableAnimations }
|
|
6020
6031
|
} = (0, import_hooks27.useSdkUiConfig)();
|
|
6021
6032
|
const { state } = (0, import_withdraw.useWithdrawalLifecycle)(withdrawalId);
|
|
6022
|
-
const [isTimelineExpanded, setIsTimelineExpanded] = (0,
|
|
6033
|
+
const [isTimelineExpanded, setIsTimelineExpanded] = (0, import_react7.useState)(true);
|
|
6023
6034
|
const walletFlowLabels = labels.withdraw.walletFlow;
|
|
6024
6035
|
const { groups, finalStep, hasDetails } = buildWithdrawalLifecycleSteps({
|
|
6025
6036
|
pending: state.pending,
|
|
@@ -6027,7 +6038,7 @@ var WithdrawSuccessStep = ({
|
|
|
6027
6038
|
legs: state.legs,
|
|
6028
6039
|
walletFlowLabels
|
|
6029
6040
|
});
|
|
6030
|
-
(0,
|
|
6041
|
+
(0, import_react7.useEffect)(() => {
|
|
6031
6042
|
if (!state.terminal) return;
|
|
6032
6043
|
if (state.status !== "completed") return;
|
|
6033
6044
|
const timer = window.setTimeout(() => onClose(), 1500);
|
|
@@ -6219,10 +6230,10 @@ function WithdrawModalControlled({
|
|
|
6219
6230
|
onSelectWithdrawProvider,
|
|
6220
6231
|
onDoneWithdraw
|
|
6221
6232
|
}) {
|
|
6222
|
-
const [step, setStep] = (0,
|
|
6223
|
-
const [isConfirming, setIsConfirming] = (0,
|
|
6224
|
-
const [confirmError, setConfirmError] = (0,
|
|
6225
|
-
(0,
|
|
6233
|
+
const [step, setStep] = (0, import_react8.useState)("method");
|
|
6234
|
+
const [isConfirming, setIsConfirming] = (0, import_react8.useState)(false);
|
|
6235
|
+
const [confirmError, setConfirmError] = (0, import_react8.useState)(null);
|
|
6236
|
+
(0, import_react8.useEffect)(() => {
|
|
6226
6237
|
if (!open) {
|
|
6227
6238
|
setStep("method");
|
|
6228
6239
|
setIsConfirming(false);
|
|
@@ -6305,7 +6316,7 @@ var WithdrawModal = (props) => {
|
|
|
6305
6316
|
WithdrawModal.displayName = "WithdrawModal";
|
|
6306
6317
|
|
|
6307
6318
|
// src/onboarding/index.tsx
|
|
6308
|
-
var
|
|
6319
|
+
var import_react13 = require("react");
|
|
6309
6320
|
var import_hooks34 = require("@agg-build/hooks");
|
|
6310
6321
|
var Dialog4 = __toESM(require("@radix-ui/react-dialog"));
|
|
6311
6322
|
|
|
@@ -6325,7 +6336,7 @@ var ONBOARDING_STEPS = {
|
|
|
6325
6336
|
var ONCHAIN_VENUES = [import_sdk10.Venue.polymarket, import_sdk10.Venue.opinion, import_sdk10.Venue.predict];
|
|
6326
6337
|
|
|
6327
6338
|
// src/onboarding/steps/how-it-works.tsx
|
|
6328
|
-
var
|
|
6339
|
+
var import_react9 = require("react");
|
|
6329
6340
|
var import_hooks28 = require("@agg-build/hooks");
|
|
6330
6341
|
var import_jsx_runtime108 = require("react/jsx-runtime");
|
|
6331
6342
|
var defaultIcons = {
|
|
@@ -6336,10 +6347,10 @@ var defaultIcons = {
|
|
|
6336
6347
|
};
|
|
6337
6348
|
var HowItWorksStep = ({ onContinue, icons }) => {
|
|
6338
6349
|
const labels = (0, import_hooks28.useLabels)();
|
|
6339
|
-
const scrollRef = (0,
|
|
6340
|
-
const [showTopGradient, setShowTopGradient] = (0,
|
|
6341
|
-
const [showBottomGradient, setShowBottomGradient] = (0,
|
|
6342
|
-
const handleScroll = (0,
|
|
6350
|
+
const scrollRef = (0, import_react9.useRef)(null);
|
|
6351
|
+
const [showTopGradient, setShowTopGradient] = (0, import_react9.useState)(false);
|
|
6352
|
+
const [showBottomGradient, setShowBottomGradient] = (0, import_react9.useState)(true);
|
|
6353
|
+
const handleScroll = (0, import_react9.useCallback)(() => {
|
|
6343
6354
|
const el = scrollRef.current;
|
|
6344
6355
|
if (!el) return;
|
|
6345
6356
|
setShowTopGradient(el.scrollTop > 0);
|
|
@@ -6408,7 +6419,7 @@ var HowItWorksStep = ({ onContinue, icons }) => {
|
|
|
6408
6419
|
HowItWorksStep.displayName = "HowItWorksStep";
|
|
6409
6420
|
|
|
6410
6421
|
// src/onboarding/steps/profile-setup.tsx
|
|
6411
|
-
var
|
|
6422
|
+
var import_react10 = require("react");
|
|
6412
6423
|
var import_hooks30 = require("@agg-build/hooks");
|
|
6413
6424
|
|
|
6414
6425
|
// src/primitives/venue-logo/index.tsx
|
|
@@ -6490,15 +6501,15 @@ VenueLogo.displayName = "VenueLogo";
|
|
|
6490
6501
|
var import_jsx_runtime110 = require("react/jsx-runtime");
|
|
6491
6502
|
var ProfileSetupStep = ({ onContinue }) => {
|
|
6492
6503
|
const labels = (0, import_hooks30.useLabels)();
|
|
6493
|
-
const [username, setUsername] = (0,
|
|
6494
|
-
const [avatarFile, setAvatarFile] = (0,
|
|
6495
|
-
const [avatarPreview, setAvatarPreview] = (0,
|
|
6496
|
-
const fileInputRef = (0,
|
|
6497
|
-
const handleAvatarClick = (0,
|
|
6504
|
+
const [username, setUsername] = (0, import_react10.useState)("");
|
|
6505
|
+
const [avatarFile, setAvatarFile] = (0, import_react10.useState)();
|
|
6506
|
+
const [avatarPreview, setAvatarPreview] = (0, import_react10.useState)();
|
|
6507
|
+
const fileInputRef = (0, import_react10.useRef)(null);
|
|
6508
|
+
const handleAvatarClick = (0, import_react10.useCallback)(() => {
|
|
6498
6509
|
var _a;
|
|
6499
6510
|
(_a = fileInputRef.current) == null ? void 0 : _a.click();
|
|
6500
6511
|
}, []);
|
|
6501
|
-
const handleFileChange = (0,
|
|
6512
|
+
const handleFileChange = (0, import_react10.useCallback)((e) => {
|
|
6502
6513
|
var _a;
|
|
6503
6514
|
const file = (_a = e.target.files) == null ? void 0 : _a[0];
|
|
6504
6515
|
if (!file) return;
|
|
@@ -6510,7 +6521,7 @@ var ProfileSetupStep = ({ onContinue }) => {
|
|
|
6510
6521
|
};
|
|
6511
6522
|
reader.readAsDataURL(file);
|
|
6512
6523
|
}, []);
|
|
6513
|
-
const handleContinue = (0,
|
|
6524
|
+
const handleContinue = (0, import_react10.useCallback)(() => {
|
|
6514
6525
|
onContinue({
|
|
6515
6526
|
username,
|
|
6516
6527
|
avatarFile,
|
|
@@ -6752,7 +6763,7 @@ ConnectAccountsStep.displayName = "ConnectAccountsStep";
|
|
|
6752
6763
|
|
|
6753
6764
|
// src/onboarding/steps/connect-kalshi-modal.tsx
|
|
6754
6765
|
var import_sdk12 = require("@agg-build/sdk");
|
|
6755
|
-
var
|
|
6766
|
+
var import_react11 = require("react");
|
|
6756
6767
|
var import_hooks32 = require("@agg-build/hooks");
|
|
6757
6768
|
var Dialog2 = __toESM(require("@radix-ui/react-dialog"));
|
|
6758
6769
|
var import_jsx_runtime112 = require("react/jsx-runtime");
|
|
@@ -6762,15 +6773,15 @@ var ConnectKalshiModal = ({
|
|
|
6762
6773
|
onVerify
|
|
6763
6774
|
}) => {
|
|
6764
6775
|
const labels = (0, import_hooks32.useLabels)();
|
|
6765
|
-
const [apiKeyId, setApiKeyId] = (0,
|
|
6766
|
-
const [privateKey, setPrivateKey] = (0,
|
|
6767
|
-
const [verifying, setVerifying] = (0,
|
|
6768
|
-
const [error, setError] = (0,
|
|
6776
|
+
const [apiKeyId, setApiKeyId] = (0, import_react11.useState)("");
|
|
6777
|
+
const [privateKey, setPrivateKey] = (0, import_react11.useState)("");
|
|
6778
|
+
const [verifying, setVerifying] = (0, import_react11.useState)(false);
|
|
6779
|
+
const [error, setError] = (0, import_react11.useState)();
|
|
6769
6780
|
const canVerify = apiKeyId.trim().length > 0 && privateKey.trim().length > 0;
|
|
6770
|
-
const handleCancel = (0,
|
|
6781
|
+
const handleCancel = (0, import_react11.useCallback)(() => {
|
|
6771
6782
|
onOpenChange(false);
|
|
6772
6783
|
}, [onOpenChange]);
|
|
6773
|
-
const handleVerify = (0,
|
|
6784
|
+
const handleVerify = (0, import_react11.useCallback)(() => __async(null, null, function* () {
|
|
6774
6785
|
if (!canVerify || verifying) return;
|
|
6775
6786
|
setVerifying(true);
|
|
6776
6787
|
setError(void 0);
|
|
@@ -6799,7 +6810,7 @@ var ConnectKalshiModal = ({
|
|
|
6799
6810
|
privateKey,
|
|
6800
6811
|
verifying
|
|
6801
6812
|
]);
|
|
6802
|
-
const handleOpenChange = (0,
|
|
6813
|
+
const handleOpenChange = (0, import_react11.useCallback)(
|
|
6803
6814
|
(value) => {
|
|
6804
6815
|
if (value) {
|
|
6805
6816
|
setApiKeyId("");
|
|
@@ -7002,7 +7013,7 @@ var ConnectKalshiModal = ({
|
|
|
7002
7013
|
ConnectKalshiModal.displayName = "ConnectKalshiModal";
|
|
7003
7014
|
|
|
7004
7015
|
// src/onboarding/steps/connect-onchain-modal.tsx
|
|
7005
|
-
var
|
|
7016
|
+
var import_react12 = require("react");
|
|
7006
7017
|
var import_hooks33 = require("@agg-build/hooks");
|
|
7007
7018
|
var Dialog3 = __toESM(require("@radix-ui/react-dialog"));
|
|
7008
7019
|
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
@@ -7012,12 +7023,12 @@ var ConnectOnchainModal = ({
|
|
|
7012
7023
|
onConnect
|
|
7013
7024
|
}) => {
|
|
7014
7025
|
const labels = (0, import_hooks33.useLabels)();
|
|
7015
|
-
const [connecting, setConnecting] = (0,
|
|
7016
|
-
const [error, setError] = (0,
|
|
7017
|
-
const handleCancel = (0,
|
|
7026
|
+
const [connecting, setConnecting] = (0, import_react12.useState)(false);
|
|
7027
|
+
const [error, setError] = (0, import_react12.useState)();
|
|
7028
|
+
const handleCancel = (0, import_react12.useCallback)(() => {
|
|
7018
7029
|
onOpenChange(false);
|
|
7019
7030
|
}, [onOpenChange]);
|
|
7020
|
-
const handleConnect = (0,
|
|
7031
|
+
const handleConnect = (0, import_react12.useCallback)(() => __async(null, null, function* () {
|
|
7021
7032
|
if (connecting) return;
|
|
7022
7033
|
setConnecting(true);
|
|
7023
7034
|
setError(void 0);
|
|
@@ -7032,7 +7043,7 @@ var ConnectOnchainModal = ({
|
|
|
7032
7043
|
setConnecting(false);
|
|
7033
7044
|
}
|
|
7034
7045
|
}), [connecting, labels.onboarding.connectOnchainModal.fallbackError, onConnect, onOpenChange]);
|
|
7035
|
-
const handleOpenChange = (0,
|
|
7046
|
+
const handleOpenChange = (0, import_react12.useCallback)(
|
|
7036
7047
|
(value) => {
|
|
7037
7048
|
if (value) {
|
|
7038
7049
|
setError(void 0);
|
|
@@ -7124,48 +7135,48 @@ var OnboardingModal = ({
|
|
|
7124
7135
|
}) => {
|
|
7125
7136
|
var _a;
|
|
7126
7137
|
const labels = (0, import_hooks34.useLabels)();
|
|
7127
|
-
const [step, setStep] = (0,
|
|
7138
|
+
const [step, setStep] = (0, import_react13.useState)(ONBOARDING_STEPS.HOW_IT_WORKS);
|
|
7128
7139
|
const stepLabels = {
|
|
7129
7140
|
[ONBOARDING_STEPS.HOW_IT_WORKS]: labels.onboarding.modal.stepHowItWorks,
|
|
7130
7141
|
[ONBOARDING_STEPS.PROFILE_SETUP]: labels.onboarding.modal.stepProfileSetup,
|
|
7131
7142
|
[ONBOARDING_STEPS.CONNECT_ACCOUNTS]: labels.onboarding.modal.stepConnectAccounts
|
|
7132
7143
|
};
|
|
7133
7144
|
const resolvedTitle = (_a = stepLabels[step]) != null ? _a : labels.onboarding.modal.title;
|
|
7134
|
-
const [kalshiModalOpen, setKalshiModalOpen] = (0,
|
|
7135
|
-
const [kalshiConnected, setKalshiConnected] = (0,
|
|
7136
|
-
const [onchainModalOpen, setOnchainModalOpen] = (0,
|
|
7137
|
-
const [onchainConnected, setOnchainConnected] = (0,
|
|
7138
|
-
(0,
|
|
7145
|
+
const [kalshiModalOpen, setKalshiModalOpen] = (0, import_react13.useState)(false);
|
|
7146
|
+
const [kalshiConnected, setKalshiConnected] = (0, import_react13.useState)(false);
|
|
7147
|
+
const [onchainModalOpen, setOnchainModalOpen] = (0, import_react13.useState)(false);
|
|
7148
|
+
const [onchainConnected, setOnchainConnected] = (0, import_react13.useState)(false);
|
|
7149
|
+
(0, import_react13.useEffect)(() => {
|
|
7139
7150
|
if (open) {
|
|
7140
7151
|
setStep(ONBOARDING_STEPS.HOW_IT_WORKS);
|
|
7141
7152
|
setKalshiConnected(false);
|
|
7142
7153
|
setOnchainConnected(false);
|
|
7143
7154
|
}
|
|
7144
7155
|
}, [open]);
|
|
7145
|
-
const handleHowItWorksContinue = (0,
|
|
7156
|
+
const handleHowItWorksContinue = (0, import_react13.useCallback)(() => {
|
|
7146
7157
|
setStep(ONBOARDING_STEPS.PROFILE_SETUP);
|
|
7147
7158
|
}, []);
|
|
7148
|
-
const handleProfileContinue = (0,
|
|
7159
|
+
const handleProfileContinue = (0, import_react13.useCallback)(
|
|
7149
7160
|
(data) => {
|
|
7150
7161
|
onProfileSubmit == null ? void 0 : onProfileSubmit(data);
|
|
7151
7162
|
setStep(ONBOARDING_STEPS.CONNECT_ACCOUNTS);
|
|
7152
7163
|
},
|
|
7153
7164
|
[onProfileSubmit]
|
|
7154
7165
|
);
|
|
7155
|
-
const handleConnectContinue = (0,
|
|
7166
|
+
const handleConnectContinue = (0, import_react13.useCallback)(() => {
|
|
7156
7167
|
onComplete == null ? void 0 : onComplete();
|
|
7157
7168
|
}, [onComplete]);
|
|
7158
|
-
const handleOpenOnchainModal = (0,
|
|
7169
|
+
const handleOpenOnchainModal = (0, import_react13.useCallback)(() => {
|
|
7159
7170
|
setOnchainModalOpen(true);
|
|
7160
7171
|
}, []);
|
|
7161
|
-
const handleOnchainConnect = (0,
|
|
7172
|
+
const handleOnchainConnect = (0, import_react13.useCallback)(() => __async(null, null, function* () {
|
|
7162
7173
|
yield onConnectOnchain == null ? void 0 : onConnectOnchain();
|
|
7163
7174
|
setOnchainConnected(true);
|
|
7164
7175
|
}), [onConnectOnchain]);
|
|
7165
|
-
const handleOpenKalshiModal = (0,
|
|
7176
|
+
const handleOpenKalshiModal = (0, import_react13.useCallback)(() => {
|
|
7166
7177
|
setKalshiModalOpen(true);
|
|
7167
7178
|
}, []);
|
|
7168
|
-
const handleKalshiVerify = (0,
|
|
7179
|
+
const handleKalshiVerify = (0, import_react13.useCallback)(
|
|
7169
7180
|
(credentials) => __async(null, null, function* () {
|
|
7170
7181
|
yield onConnectKalshi == null ? void 0 : onConnectKalshi(credentials);
|
|
7171
7182
|
setKalshiConnected(true);
|
|
@@ -7220,7 +7231,7 @@ OnboardingModal.displayName = "OnboardingModal";
|
|
|
7220
7231
|
|
|
7221
7232
|
// src/profile/index.tsx
|
|
7222
7233
|
var import_sdk13 = require("@agg-build/sdk");
|
|
7223
|
-
var
|
|
7234
|
+
var import_react16 = require("react");
|
|
7224
7235
|
var import_hooks37 = require("@agg-build/hooks");
|
|
7225
7236
|
|
|
7226
7237
|
// src/profile/profile-modal.constants.ts
|
|
@@ -7238,7 +7249,7 @@ var PROFILE_TAB_ITEMS = [
|
|
|
7238
7249
|
];
|
|
7239
7250
|
|
|
7240
7251
|
// src/profile/tabs/about-tab.tsx
|
|
7241
|
-
var
|
|
7252
|
+
var import_react14 = require("react");
|
|
7242
7253
|
var import_hooks35 = require("@agg-build/hooks");
|
|
7243
7254
|
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
7244
7255
|
var AboutTab = ({
|
|
@@ -7251,12 +7262,12 @@ var AboutTab = ({
|
|
|
7251
7262
|
avatarError: _avatarError
|
|
7252
7263
|
}) => {
|
|
7253
7264
|
const labels = (0, import_hooks35.useLabels)();
|
|
7254
|
-
const fileInputRef = (0,
|
|
7255
|
-
const handleAvatarClick = (0,
|
|
7265
|
+
const fileInputRef = (0, import_react14.useRef)(null);
|
|
7266
|
+
const handleAvatarClick = (0, import_react14.useCallback)(() => {
|
|
7256
7267
|
var _a;
|
|
7257
7268
|
(_a = fileInputRef.current) == null ? void 0 : _a.click();
|
|
7258
7269
|
}, []);
|
|
7259
|
-
const handleFileChange = (0,
|
|
7270
|
+
const handleFileChange = (0, import_react14.useCallback)(
|
|
7260
7271
|
(e) => {
|
|
7261
7272
|
var _a;
|
|
7262
7273
|
const file = (_a = e.target.files) == null ? void 0 : _a[0];
|
|
@@ -7370,7 +7381,7 @@ var AboutTab = ({
|
|
|
7370
7381
|
AboutTab.displayName = "AboutTab";
|
|
7371
7382
|
|
|
7372
7383
|
// src/profile/tabs/accounts-wallets-tab.tsx
|
|
7373
|
-
var
|
|
7384
|
+
var import_react15 = require("react");
|
|
7374
7385
|
var import_hooks36 = require("@agg-build/hooks");
|
|
7375
7386
|
var import_jsx_runtime116 = require("react/jsx-runtime");
|
|
7376
7387
|
var SectionTitle = ({ children }) => /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("h3", { className: "text-agg-sm font-agg-bold leading-agg-5 text-agg-foreground", children });
|
|
@@ -7407,13 +7418,13 @@ var DisconnectTextButton = ({ onClick }) => /* @__PURE__ */ (0, import_jsx_runti
|
|
|
7407
7418
|
var TRADING_ACCESS_VENUES = ["kalshi", "polymarket", "opinion", "predict"];
|
|
7408
7419
|
var VerifyIdentityButton = ({ onError }) => {
|
|
7409
7420
|
const client = (0, import_hooks36.useAggClient)();
|
|
7410
|
-
const [isInitiating, setIsInitiating] = (0,
|
|
7411
|
-
const [needsDepositAddress, setNeedsDepositAddress] = (0,
|
|
7421
|
+
const [isInitiating, setIsInitiating] = (0, import_react15.useState)(false);
|
|
7422
|
+
const [needsDepositAddress, setNeedsDepositAddress] = (0, import_react15.useState)(false);
|
|
7412
7423
|
const { isReady, isTimedOut } = (0, import_hooks36.useDepositAddresses)({
|
|
7413
7424
|
enabled: needsDepositAddress,
|
|
7414
7425
|
poll: true
|
|
7415
7426
|
});
|
|
7416
|
-
(0,
|
|
7427
|
+
(0, import_react15.useEffect)(() => {
|
|
7417
7428
|
if (!isInitiating || !isReady) return;
|
|
7418
7429
|
const redirectUri = window.location.href;
|
|
7419
7430
|
client.initiateKyc("kalshi", redirectUri).then((res) => {
|
|
@@ -7427,14 +7438,14 @@ var VerifyIdentityButton = ({ onError }) => {
|
|
|
7427
7438
|
setNeedsDepositAddress(false);
|
|
7428
7439
|
});
|
|
7429
7440
|
}, [isReady, isInitiating, client, onError]);
|
|
7430
|
-
(0,
|
|
7441
|
+
(0, import_react15.useEffect)(() => {
|
|
7431
7442
|
if (isTimedOut && isInitiating) {
|
|
7432
7443
|
setIsInitiating(false);
|
|
7433
7444
|
setNeedsDepositAddress(false);
|
|
7434
7445
|
onError == null ? void 0 : onError(new Error("Deposit address provisioning timed out"));
|
|
7435
7446
|
}
|
|
7436
7447
|
}, [isTimedOut, isInitiating, onError]);
|
|
7437
|
-
const handleClick = (0,
|
|
7448
|
+
const handleClick = (0, import_react15.useCallback)(() => {
|
|
7438
7449
|
setIsInitiating(true);
|
|
7439
7450
|
setNeedsDepositAddress(true);
|
|
7440
7451
|
}, []);
|
|
@@ -7599,18 +7610,18 @@ var ProfileModal = ({
|
|
|
7599
7610
|
var _a, _b, _c, _d, _e, _f, _g, _h, _i;
|
|
7600
7611
|
const client = (0, import_hooks37.useAggClient)();
|
|
7601
7612
|
const { user, startAuth } = (0, import_hooks37.useAggAuthState)();
|
|
7602
|
-
const [activeTab, setActiveTab] = (0,
|
|
7613
|
+
const [activeTab, setActiveTab] = (0, import_react16.useState)(PROFILE_TAB_KEYS.ABOUT);
|
|
7603
7614
|
const resolvedInitialUsername = (_a = username != null ? username : user == null ? void 0 : user.username) != null ? _a : "";
|
|
7604
|
-
const [draftUsername, setDraftUsername] = (0,
|
|
7605
|
-
const [draftAvatarFile, setDraftAvatarFile] = (0,
|
|
7606
|
-
const [draftAvatarPreview, setDraftAvatarPreview] = (0,
|
|
7607
|
-
const [isSaving, setIsSaving] = (0,
|
|
7608
|
-
const [avatarTypeError, setAvatarTypeError] = (0,
|
|
7609
|
-
(0,
|
|
7615
|
+
const [draftUsername, setDraftUsername] = (0, import_react16.useState)(resolvedInitialUsername);
|
|
7616
|
+
const [draftAvatarFile, setDraftAvatarFile] = (0, import_react16.useState)();
|
|
7617
|
+
const [draftAvatarPreview, setDraftAvatarPreview] = (0, import_react16.useState)();
|
|
7618
|
+
const [isSaving, setIsSaving] = (0, import_react16.useState)(false);
|
|
7619
|
+
const [avatarTypeError, setAvatarTypeError] = (0, import_react16.useState)(null);
|
|
7620
|
+
(0, import_react16.useEffect)(() => {
|
|
7610
7621
|
var _a2;
|
|
7611
7622
|
setDraftUsername((_a2 = username != null ? username : user == null ? void 0 : user.username) != null ? _a2 : "");
|
|
7612
7623
|
}, [username, user == null ? void 0 : user.username]);
|
|
7613
|
-
const handleOpenChange = (0,
|
|
7624
|
+
const handleOpenChange = (0, import_react16.useCallback)(
|
|
7614
7625
|
(isOpen) => {
|
|
7615
7626
|
var _a2;
|
|
7616
7627
|
if (!isOpen) {
|
|
@@ -7634,7 +7645,7 @@ var ProfileModal = ({
|
|
|
7634
7645
|
setDraftAvatarPreview
|
|
7635
7646
|
]
|
|
7636
7647
|
);
|
|
7637
|
-
const handleDraftAvatarChange = (0,
|
|
7648
|
+
const handleDraftAvatarChange = (0, import_react16.useCallback)(
|
|
7638
7649
|
(file, preview) => {
|
|
7639
7650
|
const ACCEPTED_AVATAR_TYPES = ["image/jpeg", "image/png", "image/gif", "image/webp"];
|
|
7640
7651
|
if (file && !ACCEPTED_AVATAR_TYPES.includes(file.type)) {
|
|
@@ -7649,7 +7660,7 @@ var ProfileModal = ({
|
|
|
7649
7660
|
);
|
|
7650
7661
|
const originalUsername = (_b = username != null ? username : user == null ? void 0 : user.username) != null ? _b : "";
|
|
7651
7662
|
const hasChanges = draftUsername !== originalUsername || draftAvatarFile !== void 0;
|
|
7652
|
-
const handleSave = (0,
|
|
7663
|
+
const handleSave = (0, import_react16.useCallback)(() => __async(null, null, function* () {
|
|
7653
7664
|
var _a2, _b2;
|
|
7654
7665
|
setIsSaving(true);
|
|
7655
7666
|
try {
|
|
@@ -7694,7 +7705,7 @@ var ProfileModal = ({
|
|
|
7694
7705
|
onSave,
|
|
7695
7706
|
originalUsername
|
|
7696
7707
|
]);
|
|
7697
|
-
const handleCancel = (0,
|
|
7708
|
+
const handleCancel = (0, import_react16.useCallback)(() => {
|
|
7698
7709
|
handleOpenChange(false);
|
|
7699
7710
|
}, [handleOpenChange]);
|
|
7700
7711
|
const isAccountConnected = (providers) => {
|
|
@@ -7738,7 +7749,7 @@ var ProfileModal = ({
|
|
|
7738
7749
|
if (typeof window === "undefined") return;
|
|
7739
7750
|
((_a2 = window.top) != null ? _a2 : window).location.assign(url);
|
|
7740
7751
|
};
|
|
7741
|
-
const handleConnectTwitter = (0,
|
|
7752
|
+
const handleConnectTwitter = (0, import_react16.useCallback)(() => __async(null, null, function* () {
|
|
7742
7753
|
const result = yield startAuth({
|
|
7743
7754
|
provider: "twitter",
|
|
7744
7755
|
redirectUrl: resolveRedirectUrl()
|
|
@@ -7748,7 +7759,7 @@ var ProfileModal = ({
|
|
|
7748
7759
|
navigateTopWindow(result.url);
|
|
7749
7760
|
}
|
|
7750
7761
|
}), [onConnectTwitter, startAuth]);
|
|
7751
|
-
const handleConnectGoogle = (0,
|
|
7762
|
+
const handleConnectGoogle = (0, import_react16.useCallback)(() => __async(null, null, function* () {
|
|
7752
7763
|
const result = yield startAuth({
|
|
7753
7764
|
provider: "google",
|
|
7754
7765
|
redirectUrl: resolveRedirectUrl()
|
|
@@ -7758,7 +7769,7 @@ var ProfileModal = ({
|
|
|
7758
7769
|
navigateTopWindow(result.url);
|
|
7759
7770
|
}
|
|
7760
7771
|
}), [onConnectGoogle, startAuth]);
|
|
7761
|
-
const handleConnectApple = (0,
|
|
7772
|
+
const handleConnectApple = (0, import_react16.useCallback)(() => __async(null, null, function* () {
|
|
7762
7773
|
const result = yield startAuth({
|
|
7763
7774
|
provider: "apple",
|
|
7764
7775
|
redirectUrl: resolveRedirectUrl()
|
|
@@ -7768,22 +7779,22 @@ var ProfileModal = ({
|
|
|
7768
7779
|
navigateTopWindow(result.url);
|
|
7769
7780
|
}
|
|
7770
7781
|
}), [onConnectApple, startAuth]);
|
|
7771
|
-
const handleDisconnectTwitter = (0,
|
|
7782
|
+
const handleDisconnectTwitter = (0, import_react16.useCallback)(() => __async(null, null, function* () {
|
|
7772
7783
|
yield client.disconnectAccount("twitter");
|
|
7773
7784
|
yield client.getCurrentUser();
|
|
7774
7785
|
onDisconnectTwitter == null ? void 0 : onDisconnectTwitter();
|
|
7775
7786
|
}), [client, onDisconnectTwitter]);
|
|
7776
|
-
const handleDisconnectGoogle = (0,
|
|
7787
|
+
const handleDisconnectGoogle = (0, import_react16.useCallback)(() => __async(null, null, function* () {
|
|
7777
7788
|
yield client.disconnectAccount("google");
|
|
7778
7789
|
yield client.getCurrentUser();
|
|
7779
7790
|
onDisconnectGoogle == null ? void 0 : onDisconnectGoogle();
|
|
7780
7791
|
}), [client, onDisconnectGoogle]);
|
|
7781
|
-
const handleDisconnectApple = (0,
|
|
7792
|
+
const handleDisconnectApple = (0, import_react16.useCallback)(() => __async(null, null, function* () {
|
|
7782
7793
|
yield client.disconnectAccount("apple");
|
|
7783
7794
|
yield client.getCurrentUser();
|
|
7784
7795
|
onDisconnectApple == null ? void 0 : onDisconnectApple();
|
|
7785
7796
|
}), [client, onDisconnectApple]);
|
|
7786
|
-
const handleConnectEmail = (0,
|
|
7797
|
+
const handleConnectEmail = (0, import_react16.useCallback)(() => __async(null, null, function* () {
|
|
7787
7798
|
var _a2;
|
|
7788
7799
|
const typedEmail = typeof window !== "undefined" ? (_a2 = window.prompt("Enter your email to receive a magic link")) == null ? void 0 : _a2.trim() : void 0;
|
|
7789
7800
|
if (!typedEmail) return;
|
|
@@ -7794,7 +7805,7 @@ var ProfileModal = ({
|
|
|
7794
7805
|
});
|
|
7795
7806
|
onConnectEmail == null ? void 0 : onConnectEmail();
|
|
7796
7807
|
}), [onConnectEmail, startAuth]);
|
|
7797
|
-
const handleDisconnectWallet = (0,
|
|
7808
|
+
const handleDisconnectWallet = (0, import_react16.useCallback)(
|
|
7798
7809
|
(wallet) => __async(null, null, function* () {
|
|
7799
7810
|
const normalizedChain = wallet.chain.toLowerCase();
|
|
7800
7811
|
const provider = normalizedChain === "solana" || normalizedChain === "svm" ? "solana_wallet" : "wallet";
|
|
@@ -7804,7 +7815,7 @@ var ProfileModal = ({
|
|
|
7804
7815
|
}),
|
|
7805
7816
|
[client, onDisconnectWallet]
|
|
7806
7817
|
);
|
|
7807
|
-
const providerActionMap = (0,
|
|
7818
|
+
const providerActionMap = (0, import_react16.useMemo)(
|
|
7808
7819
|
() => ({
|
|
7809
7820
|
twitter: {
|
|
7810
7821
|
connect: () => {
|
|
@@ -7846,7 +7857,7 @@ var ProfileModal = ({
|
|
|
7846
7857
|
handleDisconnectTwitter
|
|
7847
7858
|
]
|
|
7848
7859
|
);
|
|
7849
|
-
const resolvedWallets = (0,
|
|
7860
|
+
const resolvedWallets = (0, import_react16.useMemo)(() => {
|
|
7850
7861
|
var _a2, _b2;
|
|
7851
7862
|
if (wallets) return wallets;
|
|
7852
7863
|
return (_b2 = (_a2 = user == null ? void 0 : user.wallets) == null ? void 0 : _a2.map((wallet) => {
|
|
@@ -7858,7 +7869,7 @@ var ProfileModal = ({
|
|
|
7858
7869
|
};
|
|
7859
7870
|
})) != null ? _b2 : [];
|
|
7860
7871
|
}, [user == null ? void 0 : user.wallets, wallets]);
|
|
7861
|
-
const resolvedExchanges = (0,
|
|
7872
|
+
const resolvedExchanges = (0, import_react16.useMemo)(() => {
|
|
7862
7873
|
var _a2, _b2;
|
|
7863
7874
|
if (exchanges !== void 0) return exchanges;
|
|
7864
7875
|
const walletAccount = (_a2 = user == null ? void 0 : user.accounts) == null ? void 0 : _a2.find(
|
|
@@ -7869,7 +7880,7 @@ var ProfileModal = ({
|
|
|
7869
7880
|
const displayAddress = (_b2 = shortenAddress(addr)) != null ? _b2 : addr;
|
|
7870
7881
|
return EVM_WALLET_VENUES.map((venue) => ({ venue, displayAddress, verified: false }));
|
|
7871
7882
|
}, [exchanges, user == null ? void 0 : user.accounts]);
|
|
7872
|
-
const handleDisconnectExchange = (0,
|
|
7883
|
+
const handleDisconnectExchange = (0, import_react16.useCallback)(
|
|
7873
7884
|
(venue) => __async(null, null, function* () {
|
|
7874
7885
|
if (exchanges !== void 0) {
|
|
7875
7886
|
onDisconnectExchangeProp == null ? void 0 : onDisconnectExchangeProp(venue);
|
|
@@ -8026,7 +8037,7 @@ ProfileModal.displayName = "ProfileModal";
|
|
|
8026
8037
|
|
|
8027
8038
|
// src/geo-block-modal/index.tsx
|
|
8028
8039
|
var import_hooks38 = require("@agg-build/hooks");
|
|
8029
|
-
var
|
|
8040
|
+
var import_react17 = require("react");
|
|
8030
8041
|
var import_jsx_runtime118 = require("react/jsx-runtime");
|
|
8031
8042
|
var GeoBlockModal = ({
|
|
8032
8043
|
open,
|
|
@@ -8035,7 +8046,7 @@ var GeoBlockModal = ({
|
|
|
8035
8046
|
classNames
|
|
8036
8047
|
}) => {
|
|
8037
8048
|
const labels = (0, import_hooks38.useLabels)();
|
|
8038
|
-
const handleConfirm = (0,
|
|
8049
|
+
const handleConfirm = (0, import_react17.useCallback)(() => {
|
|
8039
8050
|
onConfirm == null ? void 0 : onConfirm();
|
|
8040
8051
|
onOpenChange(false);
|
|
8041
8052
|
}, [onConfirm, onOpenChange]);
|