@agg-market/ui 3.0.1 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/chart.js +18 -5
  2. package/dist/chart.mjs +2 -2
  3. package/dist/{chunk-422MCIXV.mjs → chunk-34IRJYSU.mjs} +15 -11
  4. package/dist/{chunk-KUWTY4EM.mjs → chunk-3W7NBJLU.mjs} +1 -1
  5. package/dist/chunk-4343LYSH.mjs +45 -0
  6. package/dist/{chunk-RKCVOKE3.mjs → chunk-CTYJVVHJ.mjs} +26 -3
  7. package/dist/{chunk-MVJNQN7P.mjs → chunk-DHBHKIJR.mjs} +153 -94
  8. package/dist/{chunk-KRQFVMJE.mjs → chunk-GFBF2J3Y.mjs} +18 -25
  9. package/dist/{chunk-ZJJA4I3I.mjs → chunk-KIYMVWL4.mjs} +1 -1
  10. package/dist/{chunk-CTVMT3VL.mjs → chunk-LCZKSITC.mjs} +2 -2
  11. package/dist/chunk-M4RJHRFT.mjs +445 -0
  12. package/dist/{chunk-KSCSYCEF.mjs → chunk-MJHKBCXQ.mjs} +1 -1
  13. package/dist/{chunk-GHB3GOCW.mjs → chunk-MKVGQ7AS.mjs} +17 -21
  14. package/dist/{chunk-BN5VVHNV.mjs → chunk-OJVTGNIF.mjs} +17 -4
  15. package/dist/{chunk-FF3QYU26.mjs → chunk-Q6DGDBPV.mjs} +87 -26
  16. package/dist/{chunk-DCORNTCY.mjs → chunk-QDMHLRDY.mjs} +31 -62
  17. package/dist/{chunk-RGHA4PZH.mjs → chunk-T7TATHPD.mjs} +34 -10
  18. package/dist/chunk-XUCS575S.mjs +65 -0
  19. package/dist/event-list-item-details.js +1836 -407
  20. package/dist/event-list-item-details.mjs +10 -6
  21. package/dist/event-list-item.js +448 -279
  22. package/dist/event-list-item.mjs +6 -3
  23. package/dist/event-list.js +787 -627
  24. package/dist/event-list.mjs +7 -4
  25. package/dist/event-market-page.d.mts +1 -1
  26. package/dist/event-market-page.d.ts +1 -1
  27. package/dist/event-market-page.js +2684 -2572
  28. package/dist/event-market-page.mjs +12 -11
  29. package/dist/home-page.js +804 -644
  30. package/dist/home-page.mjs +8 -5
  31. package/dist/index.d.mts +3 -2
  32. package/dist/index.d.ts +3 -2
  33. package/dist/index.js +1344 -1177
  34. package/dist/index.mjs +23 -18
  35. package/dist/market-details.js +919 -757
  36. package/dist/market-details.mjs +9 -7
  37. package/dist/place-order.d.mts +1 -1
  38. package/dist/place-order.d.ts +1 -1
  39. package/dist/place-order.js +151 -189
  40. package/dist/place-order.mjs +2 -2
  41. package/dist/search.js +3 -0
  42. package/dist/search.mjs +2 -1
  43. package/dist/settlement.d.mts +1 -1
  44. package/dist/settlement.d.ts +1 -1
  45. package/dist/settlement.js +151 -189
  46. package/dist/settlement.mjs +2 -2
  47. package/dist/skeleton.js +151 -189
  48. package/dist/skeleton.mjs +1 -1
  49. package/dist/state-message.d.mts +16 -0
  50. package/dist/state-message.d.ts +16 -0
  51. package/dist/state-message.js +1629 -0
  52. package/dist/state-message.mjs +14 -0
  53. package/dist/styles.css +1 -1
  54. package/dist/switch-button.js +2 -2
  55. package/dist/switch-button.mjs +1 -1
  56. package/dist/tailwind.css +1 -1
  57. package/package.json +14 -2
  58. package/dist/chunk-V52WSZHQ.mjs +0 -482
  59. package/dist/{types-DkGlbmXq.d.mts → types-BImwqY4o.d.mts} +4 -4
  60. package/dist/{types-DkGlbmXq.d.ts → types-BImwqY4o.d.ts} +4 -4
@@ -320,10 +320,10 @@ var SwitchButton = ({
320
320
  return null;
321
321
  }
322
322
  const handleKeyDown = (event, optionIndex) => {
323
- if (event.key !== "ArrowLeft" && event.key !== "ArrowRight") {
323
+ if ((event == null ? void 0 : event.key) !== "ArrowLeft" && (event == null ? void 0 : event.key) !== "ArrowRight") {
324
324
  return;
325
325
  }
326
- event.preventDefault();
326
+ event == null ? void 0 : event.preventDefault();
327
327
  const nextOptionIndex = resolveNextEnabledIndex(
328
328
  options,
329
329
  optionIndex,
@@ -440,8 +440,18 @@ var normalizeSeries = (series) => {
440
440
  var defaultValueFormatter = (value) => {
441
441
  return `${Math.round(value)}%`;
442
442
  };
443
- var defaultTimeFormatter = (timestamp) => {
444
- return import_dayjs.default.unix(timestamp).format("MMM D");
443
+ var resolveTimeFormatter = (windowSeconds) => {
444
+ return (timestamp) => {
445
+ if (!Number.isFinite(timestamp))
446
+ return "";
447
+ if (windowSeconds <= 48 * 60 * 60) {
448
+ return import_dayjs.default.unix(timestamp).format("HH:mm");
449
+ }
450
+ if (windowSeconds <= 14 * 24 * 60 * 60) {
451
+ return import_dayjs.default.unix(timestamp).format("MMM D HH:mm");
452
+ }
453
+ return import_dayjs.default.unix(timestamp).format("MMM D");
454
+ };
445
455
  };
446
456
  var toLivelinePoints = (points) => {
447
457
  return points.map((point) => ({
@@ -564,6 +574,9 @@ var LineChart = ({
564
574
  const windowSeconds = (0, import_react2.useMemo)(() => {
565
575
  return resolveWindowSeconds(normalizedSeries);
566
576
  }, [normalizedSeries]);
577
+ const timeFormatter = (0, import_react2.useMemo)(() => {
578
+ return resolveTimeFormatter(windowSeconds);
579
+ }, [windowSeconds]);
567
580
  const seriesControls = showSeriesControls && normalizedSeries.length > 0 ? (_a = renderSeriesControls == null ? void 0 : renderSeriesControls({
568
581
  series: normalizedSeries,
569
582
  activeSeriesId,
@@ -602,7 +615,7 @@ var LineChart = ({
602
615
  pulse: false,
603
616
  window: windowSeconds,
604
617
  formatValue: defaultValueFormatter,
605
- formatTime: defaultTimeFormatter,
618
+ formatTime: timeFormatter,
606
619
  padding: {
607
620
  top: 12,
608
621
  right: 80,
@@ -679,6 +692,7 @@ var EventListItemSkeletonView = ({
679
692
  isStandalone = false
680
693
  }) => {
681
694
  const labels = (0, import_hooks7.useLabels)();
695
+ const outcomeTitleWidths = ["w-40", "w-[200px]"];
682
696
  return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
683
697
  Card,
684
698
  {
@@ -688,35 +702,23 @@ var EventListItemSkeletonView = ({
688
702
  "aria-busy": isStandalone || void 0,
689
703
  "aria-hidden": isStandalone ? void 0 : true,
690
704
  children: [
691
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex w-full items-start gap-3", children: [
692
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "h-10 w-10 rounded-agg-lg" }),
693
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex flex-1 flex-col gap-2", children: [
694
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "h-5 w-[82%] rounded-agg-sm" }),
695
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "h-5 w-[68%] rounded-agg-sm" })
696
- ] })
705
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex h-14 w-full items-center gap-3 justify-stretch", children: [
706
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "size-10! rounded-agg-lg" }),
707
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "h-6 w-fit flex-1 rounded-agg-sm" })
697
708
  ] }),
698
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "flex flex-col gap-3", children: [0, 1].map((index) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
699
- "div",
700
- {
701
- className: "grid w-full grid-cols-[minmax(0,1fr)_auto_auto] items-center gap-3",
702
- children: [
703
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "h-4 rounded-agg-sm" }),
704
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "h-4 w-10 rounded-agg-sm" }),
705
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "h-9 w-[101px] rounded-agg-full" })
706
- ]
707
- },
708
- index
709
- )) }),
710
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex items-center justify-between gap-2 text-agg-muted-foreground", children: [
711
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex items-center gap-2", children: [
712
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "h-4 w-36 rounded-agg-sm" }),
709
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "flex flex-col gap-3", children: outcomeTitleWidths.map((outcomeTitleWidth, index) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex w-full items-center justify-between gap-3", children: [
710
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: cn("h-5 rounded-agg-sm", outcomeTitleWidth) }),
711
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "h-9 w-[100px] rounded-agg-full" })
712
+ ] }, index)) }),
713
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex items-center justify-between gap-5 text-agg-muted-foreground", children: [
714
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex min-w-0 flex-1 items-center gap-2", children: [
715
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "h-5 w-[100px] rounded-agg-sm" }),
713
716
  /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex items-center gap-1", children: [
714
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "size-3 rounded-agg-full" }),
715
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "size-3 rounded-agg-full" }),
716
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "size-3 rounded-agg-full" })
717
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "size-[14px] rounded-agg-sm" }),
718
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "size-[14px] rounded-agg-sm" })
717
719
  ] })
718
720
  ] }),
719
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "h-4 w-20 rounded-agg-sm" })
721
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(SkeletonBlock, { className: "h-5 w-[60px] rounded-agg-sm" })
720
722
  ] })
721
723
  ]
722
724
  }
@@ -736,13 +738,9 @@ var EventListSkeletonView = ({ className, ariaLabel }) => {
736
738
  "aria-label": ariaLabel != null ? ariaLabel : labels.eventList.loading("events"),
737
739
  "aria-busy": true,
738
740
  children: [
739
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("header", { className: "flex w-full flex-col items-start justify-between gap-2 md:flex-row md:flex-nowrap md:items-center md:gap-4", children: [
740
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SkeletonBlock, { className: "h-7 w-40 rounded-agg-sm" }),
741
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "flex max-w-full gap-2", children: [
742
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SkeletonBlock, { className: "h-10 w-20 rounded-agg-full" }),
743
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SkeletonBlock, { className: "h-10 w-20 rounded-agg-full" }),
744
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SkeletonBlock, { className: "h-10 w-24 rounded-agg-full" })
745
- ] })
741
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("header", { className: "flex w-full flex-col items-start justify-between gap-3 md:flex-row md:flex-nowrap md:items-center md:gap-5", children: [
742
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SkeletonBlock, { className: "h-7 w-[120px] rounded-agg-md" }),
743
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SkeletonBlock, { className: "h-8 w-full rounded-agg-md md:w-[400px]" })
746
744
  ] }),
747
745
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { className: "grid grid-cols-1 gap-5 md:grid-cols-3", children: Array.from({ length: 3 }).map((_, index) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
748
746
  EventListItemSkeletonView,
@@ -794,30 +792,26 @@ var EventListItemDetailsSkeletonView = ({
794
792
  "aria-label": ariaLabel != null ? ariaLabel : labels.eventItemDetails.loading,
795
793
  "aria-busy": true,
796
794
  children: [
797
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex w-full items-start gap-3 md:gap-4", children: [
798
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "size-10 rounded-agg-lg md:size-[60px]" }),
799
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex flex-1 flex-col gap-2", children: [
800
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-5 w-[82%] rounded-agg-sm md:h-7 md:w-[55%]" }),
801
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex gap-2 overflow-hidden", children: [
802
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-8 w-28 rounded-agg-full" }),
803
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-8 w-28 rounded-agg-full" }),
804
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-8 w-28 rounded-agg-full" })
805
- ] })
806
- ] })
795
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex h-14 w-full items-center gap-3 justify-stretch", children: [
796
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "size-10! rounded-agg-lg" }),
797
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-6 w-fit flex-1 rounded-agg-sm" })
807
798
  ] }),
808
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex flex-col gap-4", children: [
809
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-10 w-full rounded-agg-full md:w-[220px]" }),
810
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex gap-2 overflow-hidden", children: [
811
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-9 w-20 rounded-agg-full" }),
812
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-9 w-20 rounded-agg-full" }),
813
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-9 w-20 rounded-agg-full" }),
814
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-9 w-20 rounded-agg-full" })
799
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex w-full flex-col gap-4 md:gap-6", children: [
800
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex w-full flex-col gap-3 md:flex-row md:items-center md:justify-between", children: [
801
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex max-w-full gap-2 overflow-hidden", children: [
802
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-9 w-[100px] rounded-agg-full" }),
803
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-9 w-[100px] rounded-agg-full" }),
804
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-9 w-[100px] rounded-agg-full" })
805
+ ] }),
806
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-9 w-full max-w-[221px] rounded-agg-full md:w-[221px]" })
807
+ ] }),
808
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex w-full flex-col gap-3", children: [
809
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-[220px] w-full rounded-agg-xl md:h-[240px]" }),
810
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex items-center justify-between", children: [
811
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-5 w-[59px] rounded-agg-sm" }),
812
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-5 w-40 rounded-agg-sm" })
813
+ ] })
815
814
  ] })
816
- ] }),
817
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "h-[300px] w-full rounded-agg-xl", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-full w-full rounded-agg-xl" }) }),
818
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex items-center justify-between", children: [
819
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-5 w-24 rounded-agg-sm" }),
820
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(SkeletonBlock, { className: "h-5 w-40 rounded-agg-sm" })
821
815
  ] })
822
816
  ]
823
817
  }
@@ -833,6 +827,77 @@ var marketDetailsBaseCardClassName = "w-full overflow-hidden rounded-agg-lg bord
833
827
 
834
828
  // src/primitives/skeleton/views/market-details-skeleton-view.tsx
835
829
  var import_jsx_runtime10 = require("react/jsx-runtime");
830
+ var orderBookAskBarWidths = [
831
+ "w-[52px] md:w-[240px]",
832
+ "w-[48px] md:w-[200px]",
833
+ "w-[40px] md:w-[120px]",
834
+ "w-[36px] md:w-[60px]"
835
+ ];
836
+ var orderBookBidBarWidths = [
837
+ "w-[36px] md:w-[60px]",
838
+ "w-[40px] md:w-[120px]",
839
+ "w-[48px] md:w-[200px]",
840
+ "w-[52px] md:w-[240px]"
841
+ ];
842
+ var MarketDetailsHeaderSkeleton = () => {
843
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex flex-wrap items-center justify-between gap-3 px-4 py-3 md:px-5", children: [
844
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex min-w-0 items-center gap-3 md:min-w-52 md:gap-4", children: [
845
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "size-12 rounded-agg-lg md:size-[60px]" }),
846
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex min-w-0 flex-col gap-2", children: [
847
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-6 w-[132px] rounded-agg-sm" }),
848
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-4 w-[141px] rounded-agg-sm" })
849
+ ] })
850
+ ] }),
851
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-9 w-[60px] rounded-agg-md" }),
852
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex w-full gap-2 md:w-auto", children: [
853
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-9 w-full rounded-agg-full md:w-[135px]" }),
854
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-9 w-full rounded-agg-full md:w-[131px]" })
855
+ ] })
856
+ ] });
857
+ };
858
+ var MarketDetailsTabsSkeleton = () => {
859
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex h-14 items-end px-4 md:px-5", children: [
860
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex h-full flex-col items-end justify-end rounded-t-agg-lg", children: [
861
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "px-4 py-3", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-6 w-20 rounded-agg-sm" }) }),
862
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-[3px] w-full rounded-t-agg-sm" })
863
+ ] }),
864
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex h-full flex-col justify-center", children: [
865
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "px-4 py-3", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-6 w-12 rounded-agg-sm" }) }),
866
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "h-[3px] w-full" })
867
+ ] })
868
+ ] });
869
+ };
870
+ var MarketDetailsOrderBookRows = ({
871
+ side,
872
+ barWidths
873
+ }) => {
874
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "flex flex-col gap-2", children: barWidths.map((barWidthClassName, index) => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex flex-col gap-2", children: [
875
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "grid grid-cols-[52px_1fr_1fr_52px] items-center gap-2 md:grid-cols-[88px_1fr_1fr_minmax(120px,220px)] md:gap-6", children: [
876
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex items-center gap-1 md:gap-3", children: [
877
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "size-4 rounded-agg-sm" }),
878
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-5 w-[60px] rounded-agg-sm" })
879
+ ] }),
880
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-5 rounded-agg-sm" }),
881
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-5 rounded-agg-sm" }),
882
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "flex justify-end", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: cn("h-2 rounded-agg-full", barWidthClassName) }) })
883
+ ] }),
884
+ index < barWidths.length - 1 ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "h-px w-full bg-agg-separator" }) : null
885
+ ] }, `${side}-row-${index}`)) });
886
+ };
887
+ var MarketDetailsOderbookSkeleton = ({
888
+ className
889
+ }) => {
890
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: cn("flex flex-col gap-5", className), children: [
891
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex flex-col gap-2", children: [
892
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-4 w-10 rounded-agg-sm" }),
893
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(MarketDetailsOrderBookRows, { side: "ask", barWidths: orderBookAskBarWidths })
894
+ ] }),
895
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex flex-col gap-2", children: [
896
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-4 w-10 rounded-agg-sm" }),
897
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(MarketDetailsOrderBookRows, { side: "bid", barWidths: orderBookBidBarWidths })
898
+ ] })
899
+ ] });
900
+ };
836
901
  var MarketDetailsSkeletonView = ({
837
902
  className,
838
903
  ariaLabel,
@@ -847,254 +912,1520 @@ var MarketDetailsSkeletonView = ({
847
912
  "aria-label": ariaLabel != null ? ariaLabel : labels.marketDetails.loading,
848
913
  "aria-busy": true,
849
914
  children: [
850
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex flex-col gap-3 p-4 md:px-5 md:py-4", children: [
851
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex items-center justify-between gap-4", children: [
852
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex min-w-0 items-center gap-3 md:gap-4", children: [
853
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "size-12 rounded-agg-lg md:size-[60px]" }),
854
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex min-w-0 flex-col gap-2", children: [
855
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-6 w-40 rounded-agg-sm" }),
856
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-4 w-28 rounded-agg-sm" })
857
- ] })
858
- ] }),
859
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-8 w-16 rounded-agg-sm" })
860
- ] }),
861
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex gap-2", children: [
862
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-10 flex-1 rounded-agg-full" }),
863
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-10 flex-1 rounded-agg-full" })
864
- ] })
865
- ] }),
915
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(MarketDetailsHeaderSkeleton, {}),
866
916
  isDetailed ? /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_jsx_runtime10.Fragment, { children: [
867
917
  /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "h-px w-full bg-agg-separator" }),
868
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "flex h-14 items-end", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-full w-full rounded-none" }) }),
918
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(MarketDetailsTabsSkeleton, {}),
869
919
  /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "h-px w-full bg-agg-separator" }),
870
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex flex-col gap-4 p-5", children: [
871
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex flex-col gap-3", children: [
872
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-4 w-12 rounded-agg-sm" }),
873
- [0, 1, 2, 3].map((index) => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
874
- "div",
875
- {
876
- className: "grid grid-cols-[52px_1fr_1fr_52px] items-center gap-2",
877
- children: [
878
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-4 rounded-agg-sm" }),
879
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-4 rounded-agg-sm" }),
880
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-4 rounded-agg-sm" }),
881
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-2 rounded-agg-full" })
882
- ]
883
- },
884
- `ask-${index}`
885
- ))
886
- ] }),
887
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex flex-col gap-3", children: [
888
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-4 w-12 rounded-agg-sm" }),
889
- [0, 1, 2, 3].map((index) => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
890
- "div",
891
- {
892
- className: "grid grid-cols-[52px_1fr_1fr_52px] items-center gap-2",
893
- children: [
894
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-4 rounded-agg-sm" }),
895
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-4 rounded-agg-sm" }),
896
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-4 rounded-agg-sm" }),
897
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(SkeletonBlock, { className: "h-2 rounded-agg-full" })
898
- ]
899
- },
900
- `bid-${index}`
901
- ))
902
- ] })
903
- ] })
920
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(MarketDetailsOderbookSkeleton, { className: "p-5" })
904
921
  ] }) : null
905
922
  ]
906
- }
923
+ }
924
+ );
925
+ };
926
+ MarketDetailsSkeletonView.displayName = "MarketDetailsSkeletonView";
927
+
928
+ // src/primitives/skeleton/views/place-order-skeleton-view.tsx
929
+ var import_jsx_runtime11 = require("react/jsx-runtime");
930
+ var placeOrderCardClassName = "overflow-hidden rounded-agg-xl border border-agg-border bg-agg-secondary shadow-none hover:shadow-none";
931
+ var TabsSkeletonBar = () => {
932
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex w-full items-end border-b border-agg-border", children: [
933
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col rounded-t-agg-lg", children: [
934
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "px-5 py-2", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-6 w-10 rounded-agg-sm" }) }),
935
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-[3px] w-full rounded-t-agg-sm" })
936
+ ] }),
937
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col", children: [
938
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "px-5 py-2", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-6 w-10 rounded-agg-sm" }) }),
939
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "h-[3px] w-full" })
940
+ ] })
941
+ ] });
942
+ };
943
+ var ContentBody = () => {
944
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: cn("flex flex-col gap-6 p-5"), children: [
945
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col gap-2", children: [
946
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex min-w-0 items-center gap-3", children: [
947
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "size-12 shrink-0 rounded-agg-lg" }),
948
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex min-w-0 flex-1 flex-col gap-2", children: [
949
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-4 w-[92%] max-w-[240px] rounded-agg-sm" }),
950
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-4 w-[64%] max-w-[160px] rounded-agg-sm" })
951
+ ] })
952
+ ] }),
953
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-6 w-[92px] rounded-agg-sm" }),
954
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(TabsSkeletonBar, {})
955
+ ] }),
956
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col gap-4", children: [
957
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex w-full gap-2", children: [
958
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-11 flex-1 rounded-agg-full" }),
959
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-11 flex-1 rounded-agg-full" })
960
+ ] }),
961
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex items-center justify-between gap-4", children: [
962
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col gap-2", children: [
963
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-5 w-[63px] rounded-agg-sm" }),
964
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-4 w-[118px] rounded-agg-sm" })
965
+ ] }),
966
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: cn("text-agg-3xl font-agg-bold leading-agg-9 text-agg-separator"), children: "$0" })
967
+ ] })
968
+ ] }),
969
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-12 w-full rounded-agg-full" }),
970
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-4 w-full max-w-[240px] self-center rounded-agg-sm" })
971
+ ] });
972
+ };
973
+ var PlaceOrderSkeletonView = ({
974
+ className,
975
+ ariaLabel
976
+ }) => {
977
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
978
+ "div",
979
+ {
980
+ className: cn("group/agg-skeleton", "w-full", className),
981
+ role: "status",
982
+ "aria-label": ariaLabel != null ? ariaLabel : "Loading place order",
983
+ "aria-busy": true,
984
+ children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "flex w-full items-end justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(Card, { className: cn(placeOrderCardClassName, "w-full"), children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(ContentBody, {}) }) })
985
+ }
986
+ );
987
+ };
988
+ PlaceOrderSkeletonView.displayName = "PlaceOrderSkeletonView";
989
+
990
+ // src/primitives/skeleton/views/settlement-skeleton-view.tsx
991
+ var import_hooks11 = require("@agg-market/hooks");
992
+ var import_jsx_runtime12 = require("react/jsx-runtime");
993
+ var SettlementSkeletonView = ({
994
+ className,
995
+ ariaLabel
996
+ }) => {
997
+ const labels = (0, import_hooks11.useLabels)();
998
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
999
+ Card,
1000
+ {
1001
+ className: cn(
1002
+ "group/agg-skeleton",
1003
+ "flex flex-col w-full gap-5 rounded-agg-xl border border-agg-separator bg-agg-secondary p-5 shadow-none hover:shadow-none",
1004
+ className
1005
+ ),
1006
+ role: "status",
1007
+ "aria-label": ariaLabel != null ? ariaLabel : labels.trading.settlementLoading,
1008
+ "aria-busy": true,
1009
+ children: [
1010
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex w-full items-center justify-between gap-4", children: [
1011
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-[81px] rounded-agg-sm" }),
1012
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-5 w-full max-w-[240px] rounded-agg-sm" })
1013
+ ] }),
1014
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex w-full flex-col gap-3", children: [
1015
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-5 w-[200px] rounded-agg-sm" }),
1016
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex flex-col gap-2", children: [
1017
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-full max-w-[320px] rounded-agg-sm" }),
1018
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-full max-w-[280px] rounded-agg-sm" })
1019
+ ] })
1020
+ ] }),
1021
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "h-px w-full bg-agg-separator" }),
1022
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex w-full flex-col gap-3", children: [
1023
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex items-center gap-2", children: [
1024
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "size-4 rounded-agg-sm" }),
1025
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-5 w-[100px] rounded-agg-sm" })
1026
+ ] }),
1027
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex items-center gap-2", children: [
1028
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "size-4 rounded-agg-sm" }),
1029
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-5 w-[60px] rounded-agg-sm" })
1030
+ ] })
1031
+ ] })
1032
+ ]
1033
+ }
1034
+ );
1035
+ };
1036
+ SettlementSkeletonView.displayName = "SettlementSkeletonView";
1037
+
1038
+ // src/primitives/skeleton/skeleton.types.ts
1039
+ var skeletonViews = {
1040
+ eventListItem: "event-list-item",
1041
+ eventListItemDetails: "event-list-item-details",
1042
+ marketDetailsMinified: "market-details-minified",
1043
+ marketDetailsDetailed: "market-details-detailed",
1044
+ eventList: "event-list",
1045
+ settlement: "settlement",
1046
+ placeOrder: "place-order"
1047
+ };
1048
+
1049
+ // src/primitives/skeleton/index.tsx
1050
+ var import_jsx_runtime13 = require("react/jsx-runtime");
1051
+ var Skeleton = ({ view, className, ariaLabel }) => {
1052
+ if (view === skeletonViews.eventListItem) {
1053
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(EventListItemSkeletonView, { className, ariaLabel, isStandalone: true });
1054
+ }
1055
+ if (view === skeletonViews.eventListItemDetails) {
1056
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(EventListItemDetailsSkeletonView, { className, ariaLabel });
1057
+ }
1058
+ if (view === skeletonViews.marketDetailsMinified) {
1059
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(MarketDetailsSkeletonView, { className, ariaLabel, isDetailed: false });
1060
+ }
1061
+ if (view === skeletonViews.marketDetailsDetailed) {
1062
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(MarketDetailsSkeletonView, { className, ariaLabel, isDetailed: true });
1063
+ }
1064
+ if (view === skeletonViews.settlement) {
1065
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(SettlementSkeletonView, { className, ariaLabel });
1066
+ }
1067
+ if (view === skeletonViews.placeOrder) {
1068
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(PlaceOrderSkeletonView, { className, ariaLabel });
1069
+ }
1070
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(EventListSkeletonView, { className, ariaLabel });
1071
+ };
1072
+ Skeleton.displayName = "Skeleton";
1073
+
1074
+ // src/primitives/icon/types.ts
1075
+ var getIconA11yProps = (title) => ({
1076
+ role: title ? "img" : "presentation",
1077
+ "aria-hidden": title ? void 0 : true
1078
+ });
1079
+
1080
+ // src/primitives/icon/svg/arrow-trend-up.tsx
1081
+ var import_jsx_runtime14 = require("react/jsx-runtime");
1082
+ var ArrowTrendUpIcon = (_a) => {
1083
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1084
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1085
+ "svg",
1086
+ __spreadProps(__spreadValues(__spreadValues({
1087
+ viewBox: "0 0 16 16",
1088
+ className,
1089
+ fill: "none"
1090
+ }, getIconA11yProps(title)), props), {
1091
+ children: [
1092
+ title ? /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("title", { children: title }) : null,
1093
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1094
+ "path",
1095
+ {
1096
+ d: "M2 11.5L6.5 7L9.5 10L14 5.5",
1097
+ stroke: "currentColor",
1098
+ strokeWidth: "1.5",
1099
+ strokeLinecap: "round",
1100
+ strokeLinejoin: "round"
1101
+ }
1102
+ ),
1103
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1104
+ "path",
1105
+ {
1106
+ d: "M10.5 5.5H14V9",
1107
+ stroke: "currentColor",
1108
+ strokeWidth: "1.5",
1109
+ strokeLinecap: "round",
1110
+ strokeLinejoin: "round"
1111
+ }
1112
+ )
1113
+ ]
1114
+ })
1115
+ );
1116
+ };
1117
+ ArrowTrendUpIcon.displayName = "ArrowTrendUpIcon";
1118
+
1119
+ // src/primitives/icon/svg/arrows-to-dot.tsx
1120
+ var import_jsx_runtime15 = require("react/jsx-runtime");
1121
+ var ArrowsToDotIcon = (_a) => {
1122
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1123
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
1124
+ "svg",
1125
+ __spreadProps(__spreadValues(__spreadValues({
1126
+ viewBox: "0 0 16 16",
1127
+ className,
1128
+ fill: "none"
1129
+ }, getIconA11yProps(title)), props), {
1130
+ children: [
1131
+ title ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("title", { children: title }) : null,
1132
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1133
+ "path",
1134
+ {
1135
+ 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",
1136
+ fill: "currentColor"
1137
+ }
1138
+ )
1139
+ ]
1140
+ })
1141
+ );
1142
+ };
1143
+ ArrowsToDotIcon.displayName = "ArrowsToDotIcon";
1144
+
1145
+ // src/primitives/icon/svg/bank.tsx
1146
+ var import_jsx_runtime16 = require("react/jsx-runtime");
1147
+ var BankIcon = (_a) => {
1148
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1149
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
1150
+ "svg",
1151
+ __spreadProps(__spreadValues(__spreadValues({
1152
+ viewBox: "0 0 24 24",
1153
+ className,
1154
+ fill: "none"
1155
+ }, getIconA11yProps(title)), props), {
1156
+ children: [
1157
+ title ? /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("title", { children: title }) : null,
1158
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1159
+ "path",
1160
+ {
1161
+ 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",
1162
+ fill: "currentColor"
1163
+ }
1164
+ )
1165
+ ]
1166
+ })
1167
+ );
1168
+ };
1169
+ BankIcon.displayName = "BankIcon";
1170
+
1171
+ // src/primitives/icon/svg/best-prices.tsx
1172
+ var import_jsx_runtime17 = require("react/jsx-runtime");
1173
+ var BestPricesIcon = (_a) => {
1174
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1175
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
1176
+ "svg",
1177
+ __spreadProps(__spreadValues(__spreadValues({
1178
+ width: "28",
1179
+ height: "28",
1180
+ viewBox: "0 0 28 28",
1181
+ fill: "none",
1182
+ xmlns: "http://www.w3.org/2000/svg",
1183
+ className
1184
+ }, getIconA11yProps(title)), props), {
1185
+ children: [
1186
+ title ? /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("title", { children: title }) : null,
1187
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { clipPath: "url(#clip0_best_prices)", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1188
+ "path",
1189
+ {
1190
+ 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",
1191
+ fill: "currentColor"
1192
+ }
1193
+ ) }),
1194
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("clipPath", { id: "clip0_best_prices", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("rect", { width: "28", height: "28", fill: "white" }) }) })
1195
+ ]
1196
+ })
1197
+ );
1198
+ };
1199
+ BestPricesIcon.displayName = "BestPricesIcon";
1200
+
1201
+ // src/primitives/icon/svg/bolt.tsx
1202
+ var import_jsx_runtime18 = require("react/jsx-runtime");
1203
+ var BoltIcon = (_a) => {
1204
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1205
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
1206
+ "svg",
1207
+ __spreadProps(__spreadValues(__spreadValues({
1208
+ viewBox: "0 0 24 24",
1209
+ className,
1210
+ fill: "none"
1211
+ }, getIconA11yProps(title)), props), {
1212
+ children: [
1213
+ title ? /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("title", { children: title }) : null,
1214
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { clipPath: "url(#bolt-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1215
+ "path",
1216
+ {
1217
+ 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",
1218
+ fill: "currentColor"
1219
+ }
1220
+ ) }),
1221
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("clipPath", { id: "bolt-clip", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("rect", { width: "24", height: "24", fill: "white" }) }) })
1222
+ ]
1223
+ })
1224
+ );
1225
+ };
1226
+ BoltIcon.displayName = "BoltIcon";
1227
+
1228
+ // src/primitives/icon/svg/check-circle.tsx
1229
+ var import_jsx_runtime19 = require("react/jsx-runtime");
1230
+ var CheckCircleIcon = (_a) => {
1231
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1232
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
1233
+ "svg",
1234
+ __spreadProps(__spreadValues(__spreadValues({
1235
+ width: "24",
1236
+ height: "24",
1237
+ viewBox: "0 0 24 24",
1238
+ fill: "none",
1239
+ xmlns: "http://www.w3.org/2000/svg",
1240
+ className
1241
+ }, getIconA11yProps(title)), props), {
1242
+ children: [
1243
+ title ? /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("title", { children: title }) : null,
1244
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("g", { clipPath: "url(#clip0_check_circle)", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1245
+ "path",
1246
+ {
1247
+ d: "M12 0C5.383 0 0 5.383 0 12C0 18.617 5.383 24 12 24C18.617 24 24 18.617 24 12C24 5.383 18.617 0 12 0ZM18.2 10.512L13.774 14.857C12.991 15.625 11.983 16.008 10.974 16.008C9.976 16.008 8.978 15.632 8.198 14.879L6.299 13.012C5.905 12.625 5.9 11.992 6.287 11.598C6.673 11.203 7.308 11.198 7.701 11.586L9.594 13.447C10.37 14.197 11.595 14.193 12.375 13.429L16.8 9.085C17.193 8.697 17.824 8.704 18.214 9.098C18.601 9.492 18.595 10.125 18.2 10.512Z",
1248
+ fill: "currentColor"
1249
+ }
1250
+ ) }),
1251
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("clipPath", { id: "clip0_check_circle", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("rect", { width: "24", height: "24", fill: "white" }) }) })
1252
+ ]
1253
+ })
1254
+ );
1255
+ };
1256
+ CheckCircleIcon.displayName = "CheckCircleIcon";
1257
+
1258
+ // src/primitives/icon/svg/chevron-down.tsx
1259
+ var import_jsx_runtime20 = require("react/jsx-runtime");
1260
+ var ChevronDownIcon = (_a) => {
1261
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1262
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
1263
+ "svg",
1264
+ __spreadProps(__spreadValues(__spreadValues({
1265
+ viewBox: "0 0 14 14",
1266
+ className,
1267
+ fill: "none"
1268
+ }, getIconA11yProps(title)), props), {
1269
+ children: [
1270
+ title ? /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("title", { children: title }) : null,
1271
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1272
+ "path",
1273
+ {
1274
+ d: "M3.25 5.25L7 9L10.75 5.25",
1275
+ stroke: "currentColor",
1276
+ strokeWidth: "1.5",
1277
+ strokeLinecap: "round",
1278
+ strokeLinejoin: "round"
1279
+ }
1280
+ )
1281
+ ]
1282
+ })
1283
+ );
1284
+ };
1285
+ ChevronDownIcon.displayName = "ChevronDownIcon";
1286
+
1287
+ // src/primitives/icon/svg/chevron-left.tsx
1288
+ var import_jsx_runtime21 = require("react/jsx-runtime");
1289
+ var ChevronLeftIcon = (_a) => {
1290
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1291
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
1292
+ "svg",
1293
+ __spreadProps(__spreadValues(__spreadValues({
1294
+ viewBox: "0 0 24 24",
1295
+ className,
1296
+ fill: "none"
1297
+ }, getIconA11yProps(title)), props), {
1298
+ children: [
1299
+ title ? /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("title", { children: title }) : null,
1300
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1301
+ "path",
1302
+ {
1303
+ 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",
1304
+ fill: "currentColor"
1305
+ }
1306
+ )
1307
+ ]
1308
+ })
1309
+ );
1310
+ };
1311
+ ChevronLeftIcon.displayName = "ChevronLeftIcon";
1312
+
1313
+ // src/primitives/icon/svg/chevron-right.tsx
1314
+ var import_jsx_runtime22 = require("react/jsx-runtime");
1315
+ var ChevronRightIcon = (_a) => {
1316
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1317
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
1318
+ "svg",
1319
+ __spreadProps(__spreadValues(__spreadValues({
1320
+ viewBox: "0 0 16 16",
1321
+ className,
1322
+ fill: "none"
1323
+ }, getIconA11yProps(title)), props), {
1324
+ children: [
1325
+ title ? /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("title", { children: title }) : null,
1326
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1327
+ "path",
1328
+ {
1329
+ 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",
1330
+ fill: "currentColor"
1331
+ }
1332
+ )
1333
+ ]
1334
+ })
1335
+ );
1336
+ };
1337
+ ChevronRightIcon.displayName = "ChevronRightIcon";
1338
+
1339
+ // src/primitives/icon/svg/chevron-up.tsx
1340
+ var import_jsx_runtime23 = require("react/jsx-runtime");
1341
+ var ChevronUpIcon = (_a) => {
1342
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1343
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
1344
+ "svg",
1345
+ __spreadProps(__spreadValues(__spreadValues({
1346
+ viewBox: "0 0 14 14",
1347
+ className,
1348
+ fill: "none"
1349
+ }, getIconA11yProps(title)), props), {
1350
+ children: [
1351
+ title ? /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("title", { children: title }) : null,
1352
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1353
+ "path",
1354
+ {
1355
+ d: "M3.25 8.75L7 5L10.75 8.75",
1356
+ stroke: "currentColor",
1357
+ strokeWidth: "1.5",
1358
+ strokeLinecap: "round",
1359
+ strokeLinejoin: "round"
1360
+ }
1361
+ )
1362
+ ]
1363
+ })
1364
+ );
1365
+ };
1366
+ ChevronUpIcon.displayName = "ChevronUpIcon";
1367
+
1368
+ // src/primitives/icon/svg/close.tsx
1369
+ var import_jsx_runtime24 = require("react/jsx-runtime");
1370
+ var CloseIcon = (_a) => {
1371
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1372
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
1373
+ "svg",
1374
+ __spreadProps(__spreadValues(__spreadValues({
1375
+ width: "16",
1376
+ height: "16",
1377
+ viewBox: "0 0 16 16",
1378
+ fill: "none",
1379
+ xmlns: "http://www.w3.org/2000/svg",
1380
+ className
1381
+ }, getIconA11yProps(title)), props), {
1382
+ children: [
1383
+ title ? /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("title", { children: title }) : null,
1384
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1385
+ "path",
1386
+ {
1387
+ d: "M12 4L4 12M4 4l8 8",
1388
+ stroke: "currentColor",
1389
+ strokeWidth: "2",
1390
+ strokeLinecap: "round",
1391
+ strokeLinejoin: "round"
1392
+ }
1393
+ )
1394
+ ]
1395
+ })
1396
+ );
1397
+ };
1398
+ CloseIcon.displayName = "CloseIcon";
1399
+
1400
+ // src/primitives/icon/svg/copy.tsx
1401
+ var import_jsx_runtime25 = require("react/jsx-runtime");
1402
+ var CopyIcon = (_a) => {
1403
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1404
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
1405
+ "svg",
1406
+ __spreadProps(__spreadValues(__spreadValues({
1407
+ viewBox: "0 0 16 16",
1408
+ className,
1409
+ fill: "none"
1410
+ }, getIconA11yProps(title)), props), {
1411
+ children: [
1412
+ title ? /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("title", { children: title }) : null,
1413
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("g", { clipPath: "url(#clip0_copy)", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1414
+ "path",
1415
+ {
1416
+ 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",
1417
+ fill: "currentColor"
1418
+ }
1419
+ ) }),
1420
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("clipPath", { id: "clip0_copy", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
1421
+ ]
1422
+ })
1423
+ );
1424
+ };
1425
+ CopyIcon.displayName = "CopyIcon";
1426
+
1427
+ // src/primitives/icon/svg/create-account.tsx
1428
+ var import_jsx_runtime26 = require("react/jsx-runtime");
1429
+ var CreateAccountIcon = (_a) => {
1430
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1431
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
1432
+ "svg",
1433
+ __spreadProps(__spreadValues(__spreadValues({
1434
+ width: "28",
1435
+ height: "28",
1436
+ viewBox: "0 0 28 28",
1437
+ fill: "none",
1438
+ xmlns: "http://www.w3.org/2000/svg",
1439
+ className
1440
+ }, getIconA11yProps(title)), props), {
1441
+ children: [
1442
+ title ? /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("title", { children: title }) : null,
1443
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("g", { clipPath: "url(#clip0_create_account)", children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1444
+ "path",
1445
+ {
1446
+ 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",
1447
+ fill: "currentColor"
1448
+ }
1449
+ ) }),
1450
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("clipPath", { id: "clip0_create_account", children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("rect", { width: "28", height: "28", fill: "white" }) }) })
1451
+ ]
1452
+ })
1453
+ );
1454
+ };
1455
+ CreateAccountIcon.displayName = "CreateAccountIcon";
1456
+
1457
+ // src/primitives/icon/svg/credit-card.tsx
1458
+ var import_jsx_runtime27 = require("react/jsx-runtime");
1459
+ var CreditCardIcon = (_a) => {
1460
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1461
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
1462
+ "svg",
1463
+ __spreadProps(__spreadValues(__spreadValues({
1464
+ viewBox: "0 0 24 24",
1465
+ className,
1466
+ fill: "none"
1467
+ }, getIconA11yProps(title)), props), {
1468
+ children: [
1469
+ title ? /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("title", { children: title }) : null,
1470
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1471
+ "path",
1472
+ {
1473
+ 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",
1474
+ fill: "currentColor"
1475
+ }
1476
+ )
1477
+ ]
1478
+ })
1479
+ );
1480
+ };
1481
+ CreditCardIcon.displayName = "CreditCardIcon";
1482
+
1483
+ // src/primitives/icon/svg/disconnect.tsx
1484
+ var import_jsx_runtime28 = require("react/jsx-runtime");
1485
+ var DisconnectIcon = (_a) => {
1486
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1487
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
1488
+ "svg",
1489
+ __spreadProps(__spreadValues(__spreadValues({
1490
+ viewBox: "0 0 16 16",
1491
+ className,
1492
+ fill: "none"
1493
+ }, getIconA11yProps(title)), props), {
1494
+ children: [
1495
+ title ? /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("title", { children: title }) : null,
1496
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1497
+ "path",
1498
+ {
1499
+ d: "M6.5 3H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h2.5",
1500
+ stroke: "currentColor",
1501
+ strokeWidth: "1.5",
1502
+ strokeLinecap: "round"
1503
+ }
1504
+ ),
1505
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1506
+ "path",
1507
+ {
1508
+ d: "M9.5 5.5 12 8m0 0-2.5 2.5M12 8H6",
1509
+ stroke: "currentColor",
1510
+ strokeWidth: "1.5",
1511
+ strokeLinecap: "round",
1512
+ strokeLinejoin: "round"
1513
+ }
1514
+ )
1515
+ ]
1516
+ })
1517
+ );
1518
+ };
1519
+ DisconnectIcon.displayName = "DisconnectIcon";
1520
+
1521
+ // src/primitives/icon/svg/dots-horizontal.tsx
1522
+ var import_jsx_runtime29 = require("react/jsx-runtime");
1523
+ var DotsHorizontalIcon = (_a) => {
1524
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1525
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
1526
+ "svg",
1527
+ __spreadProps(__spreadValues(__spreadValues({
1528
+ viewBox: "0 0 16 16",
1529
+ className,
1530
+ fill: "none"
1531
+ }, getIconA11yProps(title)), props), {
1532
+ children: [
1533
+ title ? /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("title", { children: title }) : null,
1534
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("circle", { cx: "3.5", cy: "8", r: "1.25", fill: "currentColor" }),
1535
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("circle", { cx: "8", cy: "8", r: "1.25", fill: "currentColor" }),
1536
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("circle", { cx: "12.5", cy: "8", r: "1.25", fill: "currentColor" })
1537
+ ]
1538
+ })
1539
+ );
1540
+ };
1541
+ DotsHorizontalIcon.displayName = "DotsHorizontalIcon";
1542
+
1543
+ // src/primitives/icon/svg/document.tsx
1544
+ var import_jsx_runtime30 = require("react/jsx-runtime");
1545
+ var DocumentIcon = (_a) => {
1546
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1547
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
1548
+ "svg",
1549
+ __spreadProps(__spreadValues(__spreadValues({
1550
+ viewBox: "0 0 16 16",
1551
+ className,
1552
+ fill: "none"
1553
+ }, getIconA11yProps(title)), props), {
1554
+ children: [
1555
+ title ? /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("title", { children: title }) : null,
1556
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("g", { clipPath: "url(#document-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1557
+ "path",
1558
+ {
1559
+ 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",
1560
+ fill: "currentColor"
1561
+ }
1562
+ ) }),
1563
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("clipPath", { id: "document-clip", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
1564
+ ]
1565
+ })
1566
+ );
1567
+ };
1568
+ DocumentIcon.displayName = "DocumentIcon";
1569
+
1570
+ // src/primitives/icon/svg/download.tsx
1571
+ var import_jsx_runtime31 = require("react/jsx-runtime");
1572
+ var DownloadIcon = (_a) => {
1573
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1574
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
1575
+ "svg",
1576
+ __spreadProps(__spreadValues(__spreadValues({
1577
+ viewBox: "0 0 16 16",
1578
+ className,
1579
+ fill: "none"
1580
+ }, getIconA11yProps(title)), props), {
1581
+ children: [
1582
+ title ? /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("title", { children: title }) : null,
1583
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1584
+ "path",
1585
+ {
1586
+ d: "M8 2.5v7m0 0 2.5-2.5M8 9.5 5.5 7",
1587
+ stroke: "currentColor",
1588
+ strokeWidth: "1.5",
1589
+ strokeLinecap: "round",
1590
+ strokeLinejoin: "round"
1591
+ }
1592
+ ),
1593
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M2.5 12.5h11", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" })
1594
+ ]
1595
+ })
1596
+ );
1597
+ };
1598
+ DownloadIcon.displayName = "DownloadIcon";
1599
+
1600
+ // src/primitives/icon/svg/external-link.tsx
1601
+ var import_jsx_runtime32 = require("react/jsx-runtime");
1602
+ var ExternalLinkIcon = (_a) => {
1603
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1604
+ return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
1605
+ "svg",
1606
+ __spreadProps(__spreadValues(__spreadValues({
1607
+ viewBox: "0 0 14 14",
1608
+ className,
1609
+ fill: "none"
1610
+ }, getIconA11yProps(title)), props), {
1611
+ children: [
1612
+ title ? /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("title", { children: title }) : null,
1613
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("g", { clipPath: "url(#clip0_422_235)", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1614
+ "path",
1615
+ {
1616
+ 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",
1617
+ fill: "currentColor"
1618
+ }
1619
+ ) }),
1620
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("clipPath", { id: "clip0_422_235", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
1621
+ ]
1622
+ })
1623
+ );
1624
+ };
1625
+ ExternalLinkIcon.displayName = "ExternalLinkIcon";
1626
+
1627
+ // src/primitives/icon/svg/info.tsx
1628
+ var import_jsx_runtime33 = require("react/jsx-runtime");
1629
+ var InfoIcon = (_a) => {
1630
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1631
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
1632
+ "svg",
1633
+ __spreadProps(__spreadValues(__spreadValues({
1634
+ viewBox: "0 0 12 12",
1635
+ className,
1636
+ fill: "none"
1637
+ }, getIconA11yProps(title)), props), {
1638
+ children: [
1639
+ title ? /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("title", { children: title }) : null,
1640
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("g", { clipPath: "url(#info_clip)", children: [
1641
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1642
+ "path",
1643
+ {
1644
+ 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",
1645
+ fill: "currentColor"
1646
+ }
1647
+ ),
1648
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1649
+ "path",
1650
+ {
1651
+ 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",
1652
+ fill: "currentColor"
1653
+ }
1654
+ ),
1655
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1656
+ "path",
1657
+ {
1658
+ 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",
1659
+ fill: "currentColor"
1660
+ }
1661
+ )
1662
+ ] }),
1663
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("clipPath", { id: "info_clip", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("rect", { width: "12", height: "12", fill: "white" }) }) })
1664
+ ]
1665
+ })
1666
+ );
1667
+ };
1668
+ InfoIcon.displayName = "InfoIcon";
1669
+
1670
+ // src/primitives/icon/svg/check-badge.tsx
1671
+ var import_jsx_runtime34 = require("react/jsx-runtime");
1672
+ var CheckBadgeIcon = (_a) => {
1673
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1674
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
1675
+ "svg",
1676
+ __spreadProps(__spreadValues(__spreadValues({
1677
+ viewBox: "0 0 16 16",
1678
+ className,
1679
+ fill: "none"
1680
+ }, getIconA11yProps(title)), props), {
1681
+ children: [
1682
+ title ? /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("title", { children: title }) : null,
1683
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("g", { clipPath: "url(#check-badge-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1684
+ "path",
1685
+ {
1686
+ 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",
1687
+ fill: "currentColor"
1688
+ }
1689
+ ) }),
1690
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("clipPath", { id: "check-badge-clip", children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
1691
+ ]
1692
+ })
1693
+ );
1694
+ };
1695
+ CheckBadgeIcon.displayName = "CheckBadgeIcon";
1696
+
1697
+ // src/primitives/icon/svg/discord.tsx
1698
+ var import_jsx_runtime35 = require("react/jsx-runtime");
1699
+ var DiscordIcon = (_a) => {
1700
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1701
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
1702
+ "svg",
1703
+ __spreadProps(__spreadValues(__spreadValues({
1704
+ viewBox: "0 0 20 20",
1705
+ className,
1706
+ fill: "none"
1707
+ }, getIconA11yProps(title)), props), {
1708
+ children: [
1709
+ title ? /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("title", { children: title }) : null,
1710
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1711
+ "path",
1712
+ {
1713
+ 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",
1714
+ fill: "currentColor"
1715
+ }
1716
+ )
1717
+ ]
1718
+ })
1719
+ );
1720
+ };
1721
+ DiscordIcon.displayName = "DiscordIcon";
1722
+
1723
+ // src/primitives/icon/svg/email.tsx
1724
+ var import_jsx_runtime36 = require("react/jsx-runtime");
1725
+ var EmailIcon = (_a) => {
1726
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1727
+ return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
1728
+ "svg",
1729
+ __spreadProps(__spreadValues(__spreadValues({
1730
+ viewBox: "0 0 20 20",
1731
+ className,
1732
+ fill: "none"
1733
+ }, getIconA11yProps(title)), props), {
1734
+ children: [
1735
+ title ? /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("title", { children: title }) : null,
1736
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
1737
+ "path",
1738
+ {
1739
+ 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",
1740
+ stroke: "currentColor",
1741
+ strokeWidth: "1.5",
1742
+ strokeLinecap: "round",
1743
+ strokeLinejoin: "round"
1744
+ }
1745
+ ),
1746
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
1747
+ "path",
1748
+ {
1749
+ d: "M18.3333 5L10 10.8333L1.66667 5",
1750
+ stroke: "currentColor",
1751
+ strokeWidth: "1.5",
1752
+ strokeLinecap: "round",
1753
+ strokeLinejoin: "round"
1754
+ }
1755
+ )
1756
+ ]
1757
+ })
1758
+ );
1759
+ };
1760
+ EmailIcon.displayName = "EmailIcon";
1761
+
1762
+ // src/primitives/icon/svg/link-accounts.tsx
1763
+ var import_jsx_runtime37 = require("react/jsx-runtime");
1764
+ var LinkAccountsIcon = (_a) => {
1765
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1766
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
1767
+ "svg",
1768
+ __spreadProps(__spreadValues(__spreadValues({
1769
+ width: "28",
1770
+ height: "28",
1771
+ viewBox: "0 0 28 28",
1772
+ fill: "none",
1773
+ xmlns: "http://www.w3.org/2000/svg",
1774
+ className
1775
+ }, getIconA11yProps(title)), props), {
1776
+ children: [
1777
+ title ? /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("title", { children: title }) : null,
1778
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("g", { clipPath: "url(#clip0_link_accounts)", children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
1779
+ "path",
1780
+ {
1781
+ 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",
1782
+ fill: "currentColor"
1783
+ }
1784
+ ) }),
1785
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("clipPath", { id: "clip0_link_accounts", children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("rect", { width: "28", height: "28", fill: "white" }) }) })
1786
+ ]
1787
+ })
1788
+ );
1789
+ };
1790
+ LinkAccountsIcon.displayName = "LinkAccountsIcon";
1791
+
1792
+ // src/primitives/icon/svg/pencil.tsx
1793
+ var import_jsx_runtime38 = require("react/jsx-runtime");
1794
+ var PencilIcon = (_a) => {
1795
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1796
+ return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
1797
+ "svg",
1798
+ __spreadProps(__spreadValues(__spreadValues({
1799
+ viewBox: "0 0 16 16",
1800
+ className,
1801
+ fill: "none"
1802
+ }, getIconA11yProps(title)), props), {
1803
+ children: [
1804
+ title ? /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("title", { children: title }) : null,
1805
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("g", { clipPath: "url(#pencil_clip)", children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
1806
+ "path",
1807
+ {
1808
+ 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",
1809
+ fill: "currentColor"
1810
+ }
1811
+ ) }),
1812
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("clipPath", { id: "pencil_clip", children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
1813
+ ]
1814
+ })
1815
+ );
1816
+ };
1817
+ PencilIcon.displayName = "PencilIcon";
1818
+
1819
+ // src/primitives/icon/svg/play-square.tsx
1820
+ var import_jsx_runtime39 = require("react/jsx-runtime");
1821
+ var PlaySquareIcon = (_a) => {
1822
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1823
+ return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
1824
+ "svg",
1825
+ __spreadProps(__spreadValues(__spreadValues({
1826
+ viewBox: "0 0 16 16",
1827
+ className,
1828
+ fill: "none"
1829
+ }, getIconA11yProps(title)), props), {
1830
+ children: [
1831
+ title ? /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("title", { children: title }) : null,
1832
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("g", { clipPath: "url(#play-square-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
1833
+ "path",
1834
+ {
1835
+ 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",
1836
+ fill: "currentColor"
1837
+ }
1838
+ ) }),
1839
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("clipPath", { id: "play-square-clip", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
1840
+ ]
1841
+ })
1842
+ );
1843
+ };
1844
+ PlaySquareIcon.displayName = "PlaySquareIcon";
1845
+
1846
+ // src/primitives/icon/svg/profile.tsx
1847
+ var import_jsx_runtime40 = require("react/jsx-runtime");
1848
+ var ProfileIcon = (_a) => {
1849
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1850
+ return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
1851
+ "svg",
1852
+ __spreadProps(__spreadValues(__spreadValues({
1853
+ viewBox: "0 0 21 28",
1854
+ className,
1855
+ fill: "none"
1856
+ }, getIconA11yProps(title)), props), {
1857
+ children: [
1858
+ title ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("title", { children: title }) : null,
1859
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
1860
+ "path",
1861
+ {
1862
+ d: "M10.5 14C14.3605 14 17.5 10.8605 17.5 7C17.5 3.1395 14.3605 0 10.5 0C6.6395 0 3.5 3.1395 3.5 7C3.5 10.8605 6.6395 14 10.5 14ZM10.5 1.16667C13.7165 1.16667 16.3333 3.7835 16.3333 7C16.3333 10.2165 13.7165 12.8333 10.5 12.8333C7.2835 12.8333 4.66667 10.2165 4.66667 7C4.66667 3.7835 7.2835 1.16667 10.5 1.16667ZM21 26.8333V27.4167C21 27.7387 20.7387 28 20.4167 28C20.0947 28 19.8333 27.7387 19.8333 27.4167V26.8333C19.8333 21.6872 15.6462 17.5 10.5 17.5C5.35383 17.5 1.16667 21.6872 1.16667 26.8333V27.4167C1.16667 27.7387 0.905333 28 0.583333 28C0.261333 28 0 27.7387 0 27.4167V26.8333C0 21.0443 4.711 16.3333 10.5 16.3333C16.289 16.3333 21 21.0443 21 26.8333Z",
1863
+ fill: "currentColor"
1864
+ }
1865
+ )
1866
+ ]
1867
+ })
1868
+ );
1869
+ };
1870
+ ProfileIcon.displayName = "ProfileIcon";
1871
+
1872
+ // src/primitives/icon/svg/revenue-alt.tsx
1873
+ var import_jsx_runtime41 = require("react/jsx-runtime");
1874
+ var RevenueAltIcon = (_a) => {
1875
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1876
+ return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
1877
+ "svg",
1878
+ __spreadProps(__spreadValues(__spreadValues({
1879
+ viewBox: "0 0 20 20",
1880
+ className,
1881
+ fill: "none"
1882
+ }, getIconA11yProps(title)), props), {
1883
+ children: [
1884
+ title ? /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("title", { children: title }) : null,
1885
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
1886
+ "path",
1887
+ {
1888
+ d: "M3 14V6M3 6L1.5 7.5M3 6L4.5 7.5M17 6V14M17 14L15.5 12.5M17 14L18.5 12.5",
1889
+ stroke: "currentColor",
1890
+ strokeWidth: "1.5",
1891
+ strokeLinecap: "round",
1892
+ strokeLinejoin: "round"
1893
+ }
1894
+ ),
1895
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
1896
+ "path",
1897
+ {
1898
+ 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",
1899
+ stroke: "currentColor",
1900
+ strokeWidth: "1.5",
1901
+ strokeLinecap: "round",
1902
+ strokeLinejoin: "round"
1903
+ }
1904
+ )
1905
+ ]
1906
+ })
1907
+ );
1908
+ };
1909
+ RevenueAltIcon.displayName = "RevenueAltIcon";
1910
+
1911
+ // src/primitives/icon/svg/search.tsx
1912
+ var import_jsx_runtime42 = require("react/jsx-runtime");
1913
+ var SearchIcon = (_a) => {
1914
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1915
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
1916
+ "svg",
1917
+ __spreadProps(__spreadValues(__spreadValues({
1918
+ viewBox: "0 0 16 16",
1919
+ fill: "none",
1920
+ xmlns: "http://www.w3.org/2000/svg",
1921
+ className
1922
+ }, getIconA11yProps(title)), props), {
1923
+ children: [
1924
+ title ? /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("title", { children: title }) : null,
1925
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
1926
+ "path",
1927
+ {
1928
+ 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",
1929
+ stroke: "currentColor",
1930
+ strokeWidth: "1.3",
1931
+ strokeLinecap: "round",
1932
+ strokeLinejoin: "round"
1933
+ }
1934
+ ),
1935
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
1936
+ "path",
1937
+ {
1938
+ d: "M13.6668 13.6666L11.1667 11.1666",
1939
+ stroke: "currentColor",
1940
+ strokeWidth: "1.3",
1941
+ strokeLinecap: "round",
1942
+ strokeLinejoin: "round"
1943
+ }
1944
+ )
1945
+ ]
1946
+ })
1947
+ );
1948
+ };
1949
+ SearchIcon.displayName = "SearchIcon";
1950
+
1951
+ // src/primitives/icon/svg/shield-trust.tsx
1952
+ var import_jsx_runtime43 = require("react/jsx-runtime");
1953
+ var ShieldTrustIcon = (_a) => {
1954
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1955
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
1956
+ "svg",
1957
+ __spreadProps(__spreadValues(__spreadValues({
1958
+ viewBox: "0 0 16 16",
1959
+ className,
1960
+ fill: "none"
1961
+ }, getIconA11yProps(title)), props), {
1962
+ children: [
1963
+ title ? /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("title", { children: title }) : null,
1964
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
1965
+ "path",
1966
+ {
1967
+ d: "M8 1.25L13.5 3.25V7.08C13.5 10.09 11.62 12.74 8 14.75C4.38 12.74 2.5 10.09 2.5 7.08V3.25L8 1.25Z",
1968
+ fill: "currentColor"
1969
+ }
1970
+ ),
1971
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
1972
+ "path",
1973
+ {
1974
+ d: "M5.5 8.2L7.2 9.9L10.8 6.3",
1975
+ stroke: "white",
1976
+ strokeWidth: "1.4",
1977
+ strokeLinecap: "round",
1978
+ strokeLinejoin: "round"
1979
+ }
1980
+ )
1981
+ ]
1982
+ })
1983
+ );
1984
+ };
1985
+ ShieldTrustIcon.displayName = "ShieldTrustIcon";
1986
+
1987
+ // src/primitives/icon/svg/stay-in-control.tsx
1988
+ var import_jsx_runtime44 = require("react/jsx-runtime");
1989
+ var StayInControlIcon = (_a) => {
1990
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
1991
+ return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
1992
+ "svg",
1993
+ __spreadProps(__spreadValues(__spreadValues({
1994
+ width: "28",
1995
+ height: "28",
1996
+ viewBox: "0 0 28 28",
1997
+ fill: "none",
1998
+ xmlns: "http://www.w3.org/2000/svg",
1999
+ className
2000
+ }, getIconA11yProps(title)), props), {
2001
+ children: [
2002
+ title ? /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("title", { children: title }) : null,
2003
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)("g", { clipPath: "url(#clip0_stay_in_control)", children: [
2004
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
2005
+ "path",
2006
+ {
2007
+ d: "M14 27.9406C13.9102 27.9406 13.8215 27.9196 13.7387 27.8788L13.2428 27.6314C10.6832 26.3504 2.32983 21.5753 2.32983 13.8648L2.33217 7.62776C2.33217 5.36093 3.77767 3.35776 5.93017 2.64493L13.8168 0.0292617C13.9358 -0.010405 14.0653 -0.010405 14.1832 0.0292617L22.0687 2.64376C24.2212 3.35776 25.6667 5.36093 25.6667 7.6266L25.6632 13.8636C25.6632 22.6113 17.2958 26.6584 14.7315 27.6909L14.217 27.8974C14.147 27.9254 14.0723 27.9394 13.9988 27.9394L14 27.9406ZM14 1.19826L6.29767 3.7521C4.6235 4.30743 3.5 5.86493 3.5 7.62776L3.49767 13.8648C3.49767 20.9056 11.3563 25.3844 13.7655 26.5884L14.0268 26.7191L14.2975 26.6106C16.6903 25.6481 24.4977 21.8833 24.4977 13.8659L24.5012 7.62893C24.5012 5.8661 23.3765 4.3086 21.7035 3.75326L14 1.19826Z",
2008
+ fill: "currentColor"
2009
+ }
2010
+ ),
2011
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
2012
+ "path",
2013
+ {
2014
+ d: "M12.8112 17.5001C12.0633 17.5001 11.3155 17.2154 10.7462 16.6461L7.18083 13.2569C6.94749 13.0352 6.93816 12.6654 7.15983 12.4321C7.38149 12.1999 7.75016 12.1894 7.98466 12.4111L11.5605 15.8107C12.2535 16.5026 13.363 16.5037 14.0455 15.8212L20.5928 9.49791C20.8262 9.27508 21.196 9.28208 21.4177 9.51308C21.6417 9.74408 21.6358 10.1139 21.4037 10.3379L14.8622 16.6542C14.2987 17.2177 13.5543 17.5012 12.81 17.5012L12.8112 17.5001Z",
2015
+ fill: "currentColor"
2016
+ }
2017
+ )
2018
+ ] }),
2019
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("clipPath", { id: "clip0_stay_in_control", children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("rect", { width: "28", height: "28", fill: "white" }) }) })
2020
+ ]
2021
+ })
2022
+ );
2023
+ };
2024
+ StayInControlIcon.displayName = "StayInControlIcon";
2025
+
2026
+ // src/primitives/icon/svg/telegram.tsx
2027
+ var import_jsx_runtime45 = require("react/jsx-runtime");
2028
+ var TelegramIcon = (_a) => {
2029
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
2030
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
2031
+ "svg",
2032
+ __spreadProps(__spreadValues(__spreadValues({
2033
+ viewBox: "0 0 20 20",
2034
+ className,
2035
+ fill: "none"
2036
+ }, getIconA11yProps(title)), props), {
2037
+ children: [
2038
+ title ? /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("title", { children: title }) : null,
2039
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("g", { clipPath: "url(#clip0_telegram)", children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2040
+ "path",
2041
+ {
2042
+ fillRule: "evenodd",
2043
+ clipRule: "evenodd",
2044
+ d: "M9.99992 0.833984C4.93763 0.833984 0.833252 4.93836 0.833252 10.0007C0.833252 15.0629 4.93763 19.1673 9.99992 19.1673C15.0622 19.1673 19.1666 15.0629 19.1666 10.0007C19.1666 4.93836 15.0622 0.833984 9.99992 0.833984ZM14.2487 7.06808C14.1112 8.51718 13.5112 12.1296 13.2062 13.7896C13.0762 14.4846 12.8212 14.7146 12.5737 14.7396C12.0362 14.7846 11.6312 14.3846 11.1162 14.0446C10.3162 13.5146 9.86117 13.1896 9.08367 12.6746C8.18367 12.0746 8.77367 11.7446 9.29117 11.2096C9.42867 11.0671 11.7662 8.93464 11.8112 8.73964C11.8168 8.71424 11.8218 8.62214 11.7668 8.57464C11.7118 8.52714 11.6318 8.54464 11.5718 8.55964C11.4868 8.57964 10.1018 9.49464 7.41617 11.3046C7.04867 11.5546 6.71617 11.6771 6.41867 11.6721C6.08867 11.6671 5.45617 11.4846 4.98117 11.3296C4.40117 11.1396 3.94117 11.0396 3.98117 10.7196C4.00117 10.5521 4.23117 10.3821 4.67117 10.2071C7.55617 8.95214 9.44367 8.14214 10.3337 7.77714C13.0812 6.63964 13.6462 6.44464 14.0162 6.43964C14.0962 6.43964 14.2787 6.45964 14.3962 6.55714C14.4937 6.63714 14.5212 6.74464 14.5337 6.81964C14.5212 6.87464 14.5387 7.04964 14.5262 7.06808H14.2487Z",
2045
+ fill: "currentColor"
2046
+ }
2047
+ ) }),
2048
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("clipPath", { id: "clip0_telegram", children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("rect", { width: "20", height: "20", fill: "white" }) }) })
2049
+ ]
2050
+ })
2051
+ );
2052
+ };
2053
+ TelegramIcon.displayName = "TelegramIcon";
2054
+
2055
+ // src/primitives/icon/svg/triangle-down.tsx
2056
+ var import_jsx_runtime46 = require("react/jsx-runtime");
2057
+ var TriangleDownIcon = (_a) => {
2058
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
2059
+ return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
2060
+ "svg",
2061
+ __spreadProps(__spreadValues(__spreadValues({
2062
+ viewBox: "0 0 8 8",
2063
+ className,
2064
+ fill: "none"
2065
+ }, getIconA11yProps(title)), props), {
2066
+ children: [
2067
+ title ? /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("title", { children: title }) : null,
2068
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("g", { transform: "scale(1,-1) translate(0,-8)", clipPath: "url(#triangle_up)", children: [
2069
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2070
+ "path",
2071
+ {
2072
+ d: "M3.99989 1.6805L6.23917 6.72896H1.76061L3.99989 1.6805ZM3.99989 0.366097C3.87788 0.36535 3.75832 0.400347 3.65596 0.466768C3.55361 0.53319 3.47295 0.628129 3.42393 0.739866L0.362237 7.63838H7.63755L4.57737 0.739866C4.52825 0.62789 4.44735 0.532789 4.3447 0.46635C4.24205 0.39991 4.12216 0.365052 3.99989 0.366097Z",
2073
+ fill: "currentColor"
2074
+ }
2075
+ ),
2076
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2077
+ "path",
2078
+ {
2079
+ d: "M4.00167 0.00284122C4.19344 0.00214978 4.38147 0.0566837 4.54252 0.160923C4.70445 0.265758 4.83154 0.416026 4.90931 0.592539L7.9697 7.4913L8.19705 8.00195H-0.197266L3.09048 0.593427C3.16804 0.41669 3.29625 0.26688 3.45815 0.161811C3.61872 0.0576301 3.80589 0.00261591 3.99723 0.00284122H3.99989L4.00256 0.00195312L4.00167 0.00284122ZM3.99989 0.366097C3.87788 0.36535 3.75832 0.400347 3.65596 0.466768L3.58337 0.521491C3.51516 0.581467 3.46071 0.656022 3.42393 0.739866L0.362237 7.63838H7.63755L4.57737 0.739866C4.54053 0.655873 4.48567 0.581521 4.4173 0.521491L4.3447 0.46635C4.24205 0.39991 4.12216 0.365052 3.99989 0.366097ZM6.23917 6.72896H1.76061L3.99989 1.6805L6.23917 6.72896ZM2.31961 6.36519H5.68018L3.99989 2.57655L2.31961 6.36519Z",
2080
+ fill: "currentColor"
2081
+ }
2082
+ )
2083
+ ] }),
2084
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("clipPath", { id: "triangle_up", children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("rect", { width: "8", height: "8", fill: "white" }) }) })
2085
+ ]
2086
+ })
2087
+ );
2088
+ };
2089
+ TriangleDownIcon.displayName = "TriangleDownIcon";
2090
+
2091
+ // src/primitives/icon/svg/triangle-up-filled.tsx
2092
+ var import_jsx_runtime47 = require("react/jsx-runtime");
2093
+ var TriangleUpFilledIcon = (_a) => {
2094
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
2095
+ return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
2096
+ "svg",
2097
+ __spreadProps(__spreadValues(__spreadValues({
2098
+ viewBox: "0 0 8 8",
2099
+ className,
2100
+ fill: "none"
2101
+ }, getIconA11yProps(title)), props), {
2102
+ children: [
2103
+ title ? /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("title", { children: title }) : null,
2104
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2105
+ "path",
2106
+ {
2107
+ d: "M6.67873 8.00001H1.3214C1.09613 8.00053 0.874481 7.94332 0.677605 7.83384C0.480728 7.72435 0.315192 7.56625 0.196788 7.3746C0.0783848 7.18296 0.0110649 6.96417 0.00125164 6.73911C-0.0085616 6.51405 0.0394592 6.29023 0.140732 6.08901L2.81973 0.729677C2.92186 0.523193 3.0766 0.347273 3.26837 0.219641C3.46014 0.0920097 3.68216 0.0171748 3.91207 0.00267686C4.17147 -0.013831 4.43 0.0462826 4.6555 0.175542C4.88101 0.3048 5.06354 0.497501 5.1804 0.729677L7.8594 6.08901C7.96008 6.2903 8.00764 6.51398 7.99756 6.73881C7.98748 6.96365 7.92009 7.18218 7.8018 7.37365C7.68351 7.56512 7.51823 7.72317 7.32167 7.83279C7.12511 7.94242 6.90379 7.99998 6.67873 8.00001Z",
2108
+ fill: "currentColor"
2109
+ }
2110
+ )
2111
+ ]
2112
+ })
2113
+ );
2114
+ };
2115
+ TriangleUpFilledIcon.displayName = "TriangleUpFilledIcon";
2116
+
2117
+ // src/primitives/icon/svg/triangle-up.tsx
2118
+ var import_jsx_runtime48 = require("react/jsx-runtime");
2119
+ var TriangleUpIcon = (_a) => {
2120
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
2121
+ return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
2122
+ "svg",
2123
+ __spreadProps(__spreadValues(__spreadValues({
2124
+ viewBox: "0 0 8 8",
2125
+ className,
2126
+ fill: "none"
2127
+ }, getIconA11yProps(title)), props), {
2128
+ children: [
2129
+ title ? /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("title", { children: title }) : null,
2130
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("g", { clipPath: "url(#triangle_up)", children: [
2131
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2132
+ "path",
2133
+ {
2134
+ d: "M3.99989 1.6805L6.23917 6.72896H1.76061L3.99989 1.6805ZM3.99989 0.366097C3.87788 0.36535 3.75832 0.400347 3.65596 0.466768C3.55361 0.53319 3.47295 0.628129 3.42393 0.739866L0.362237 7.63838H7.63755L4.57737 0.739866C4.52825 0.62789 4.44735 0.532789 4.3447 0.46635C4.24205 0.39991 4.12216 0.365052 3.99989 0.366097Z",
2135
+ fill: "currentColor"
2136
+ }
2137
+ ),
2138
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2139
+ "path",
2140
+ {
2141
+ d: "M4.00167 0.00284122C4.19344 0.00214978 4.38147 0.0566837 4.54252 0.160923C4.70445 0.265758 4.83154 0.416026 4.90931 0.592539L7.9697 7.4913L8.19705 8.00195H-0.197266L3.09048 0.593427C3.16804 0.41669 3.29625 0.26688 3.45815 0.161811C3.61872 0.0576301 3.80589 0.00261591 3.99723 0.00284122H3.99989L4.00256 0.00195312L4.00167 0.00284122ZM3.99989 0.366097C3.87788 0.36535 3.75832 0.400347 3.65596 0.466768L3.58337 0.521491C3.51516 0.581467 3.46071 0.656022 3.42393 0.739866L0.362237 7.63838H7.63755L4.57737 0.739866C4.54053 0.655873 4.48567 0.581521 4.4173 0.521491L4.3447 0.46635C4.24205 0.39991 4.12216 0.365052 3.99989 0.366097ZM6.23917 6.72896H1.76061L3.99989 1.6805L6.23917 6.72896ZM2.31961 6.36519H5.68018L3.99989 2.57655L2.31961 6.36519Z",
2142
+ fill: "currentColor"
2143
+ }
2144
+ )
2145
+ ] }),
2146
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("clipPath", { id: "triangle_up", children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("rect", { width: "8", height: "8", fill: "white" }) }) })
2147
+ ]
2148
+ })
2149
+ );
2150
+ };
2151
+ TriangleUpIcon.displayName = "TriangleUpIcon";
2152
+
2153
+ // src/primitives/icon/svg/twitter.tsx
2154
+ var import_jsx_runtime49 = require("react/jsx-runtime");
2155
+ var TwitterIcon = (_a) => {
2156
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
2157
+ return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
2158
+ "svg",
2159
+ __spreadProps(__spreadValues(__spreadValues({
2160
+ viewBox: "0 0 20 20",
2161
+ className,
2162
+ fill: "none"
2163
+ }, getIconA11yProps(title)), props), {
2164
+ children: [
2165
+ title ? /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("title", { children: title }) : null,
2166
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2167
+ "path",
2168
+ {
2169
+ d: "M15.2708 1.66602H18.0834L11.9402 8.68539L19.1666 18.2386H13.51L9.07638 12.446L4.00874 18.2386H1.19152L7.76096 10.7288L0.833252 1.66602H6.63346L10.637 6.96053L15.2708 1.66602ZM14.283 16.5573H15.8406L5.78478 3.25949H4.11186L14.283 16.5573Z",
2170
+ fill: "currentColor"
2171
+ }
2172
+ )
2173
+ ]
2174
+ })
2175
+ );
2176
+ };
2177
+ TwitterIcon.displayName = "TwitterIcon";
2178
+
2179
+ // src/primitives/icon/svg/upload.tsx
2180
+ var import_jsx_runtime50 = require("react/jsx-runtime");
2181
+ var UploadIcon = (_a) => {
2182
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
2183
+ return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
2184
+ "svg",
2185
+ __spreadProps(__spreadValues(__spreadValues({
2186
+ viewBox: "0 0 16 16",
2187
+ className,
2188
+ fill: "none"
2189
+ }, getIconA11yProps(title)), props), {
2190
+ children: [
2191
+ title ? /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("title", { children: title }) : null,
2192
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2193
+ "path",
2194
+ {
2195
+ d: "M8 13.5v-7m0 0 2.5 2.5M8 6.5 5.5 9",
2196
+ stroke: "currentColor",
2197
+ strokeWidth: "1.5",
2198
+ strokeLinecap: "round",
2199
+ strokeLinejoin: "round"
2200
+ }
2201
+ ),
2202
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M2.5 3.5h11", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" })
2203
+ ]
2204
+ })
2205
+ );
2206
+ };
2207
+ UploadIcon.displayName = "UploadIcon";
2208
+
2209
+ // src/primitives/icon/svg/wallet-avatar.tsx
2210
+ var import_jsx_runtime51 = require("react/jsx-runtime");
2211
+ function WalletAvatarIcon(_a) {
2212
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
2213
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
2214
+ "svg",
2215
+ __spreadProps(__spreadValues(__spreadValues({
2216
+ fill: "none",
2217
+ className,
2218
+ viewBox: "0 0 16 16"
2219
+ }, getIconA11yProps(title)), props), {
2220
+ children: [
2221
+ title ? /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("title", { children: title }) : null,
2222
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "8", cy: "5.25", r: "2.25", fill: "currentColor" }),
2223
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M3.75 12.75a4.25 4.25 0 0 1 8.5 0v.25h-8.5v-.25Z", fill: "currentColor" })
2224
+ ]
2225
+ })
907
2226
  );
908
- };
909
- MarketDetailsSkeletonView.displayName = "MarketDetailsSkeletonView";
2227
+ }
2228
+ WalletAvatarIcon.displayName = "WalletAvatarIcon";
910
2229
 
911
- // src/primitives/skeleton/views/place-order-skeleton-view.tsx
912
- var import_jsx_runtime11 = require("react/jsx-runtime");
913
- var placeOrderCardClassName = "overflow-hidden rounded-agg-xl border border-agg-border bg-agg-secondary shadow-none hover:shadow-none";
914
- var ContentBody = () => {
915
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: cn("flex flex-col gap-6 p-5"), children: [
916
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col gap-2", children: [
917
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex items-start justify-between gap-5", children: [
918
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex min-w-0 flex-1 items-center gap-3", children: [
919
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-12 w-12 shrink-0 rounded-agg-lg" }),
920
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex min-w-0 flex-1 flex-col gap-2", children: [
921
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-5 w-[92%] rounded-agg-sm" }),
922
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-5 w-[80%] rounded-agg-sm" })
923
- ] })
924
- ] }),
925
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-6 w-6 rounded-agg-sm" })
926
- ] }),
927
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-5 w-28 rounded-agg-sm" })
928
- ] }),
929
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "flex h-11 items-end border-b border-agg-separator", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex items-center gap-8", children: [
930
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col gap-2", children: [
931
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-5 w-10 rounded-agg-sm" }),
932
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-[3px] w-12 rounded-t-agg-sm" })
933
- ] }),
934
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-5 w-10 rounded-agg-sm" })
935
- ] }) }),
936
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col gap-4", children: [
937
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex gap-2", children: [
938
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-11 flex-1 rounded-agg-full" }),
939
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-11 flex-1 rounded-agg-full" })
940
- ] }),
941
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex items-center justify-between gap-4", children: [
942
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col gap-2", children: [
943
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-6 w-20 rounded-agg-sm" }),
944
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-4 w-28 rounded-agg-sm" })
945
- ] }),
946
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-9 w-28 rounded-agg-sm" })
947
- ] })
948
- ] }),
949
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col gap-2", children: [
950
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "rounded-agg-lg border border-agg-trade-highlight-border bg-agg-trade-highlight-surface p-3", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col gap-3", children: [
951
- [0, 1].map((index) => /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col gap-3", children: [
952
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex items-center justify-between gap-4", children: [
953
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex items-center gap-2", children: [
954
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "size-4 rounded-agg-full" }),
955
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-5 w-24 rounded-agg-sm" })
956
- ] }),
957
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-5 w-10 rounded-agg-sm" })
958
- ] }),
959
- index === 0 ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "h-px w-full bg-agg-trade-highlight-border" }) : null
960
- ] }, `place-order-route-${index}`)),
961
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "mx-auto h-5 w-40 rounded-agg-sm" })
962
- ] }) }),
963
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-4 w-36 rounded-agg-sm" })
964
- ] }),
965
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex items-center justify-between gap-4", children: [
966
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex flex-col gap-2", children: [
967
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-6 w-20 rounded-agg-sm" }),
968
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-4 w-24 rounded-agg-sm" })
969
- ] }),
970
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-9 w-36 rounded-agg-sm" })
971
- ] }),
972
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-4 w-[88%] self-center rounded-agg-sm" })
973
- ] });
2230
+ // src/primitives/icon/svg/wallet.tsx
2231
+ var import_jsx_runtime52 = require("react/jsx-runtime");
2232
+ var WalletIcon = (_a) => {
2233
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
2234
+ return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
2235
+ "svg",
2236
+ __spreadProps(__spreadValues(__spreadValues({
2237
+ viewBox: "0 0 24 24",
2238
+ className,
2239
+ fill: "none"
2240
+ }, getIconA11yProps(title)), props), {
2241
+ children: [
2242
+ title ? /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("title", { children: title }) : null,
2243
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
2244
+ "path",
2245
+ {
2246
+ d: "M19.5 6H5.25C4.836 6 4.5 5.664 4.5 5.25C4.5 4.836 4.836 4.5 5.25 4.5H19.5C19.914 4.5 20.25 4.164 20.25 3.75C20.25 2.508 19.242 1.5 18 1.5H4.5C2.843 1.5 1.5 2.843 1.5 4.5V19.5C1.5 21.157 2.843 22.5 4.5 22.5H19.5C21.157 22.5 22.5 21.157 22.5 19.5V9C22.5 7.343 21.157 6 19.5 6ZM2.5 4.5C2.5 3.395 3.395 2.5 4.5 2.5H18C18.552 2.5 19.026 2.834 19.199 3.318C19.176 3.312 19.153 3.5 18 3.5H5.25C4.284 3.5 3.5 4.284 3.5 5.25C3.5 5.388 3.519 5.522 3.555 5.649C2.936 5.369 2.5 4.972 2.5 4.5ZM21.5 19.5C21.5 20.605 20.605 21.5 19.5 21.5H4.5C3.395 21.5 2.5 20.605 2.5 19.5V7.04C3.09 7.336 3.771 7 5.25 7H19.5C20.605 7 21.5 7.895 21.5 9V12H18C16.343 12 15 13.343 15 15C15 16.657 16.343 18 18 18H21.5V19.5ZM21.5 17H18C16.895 17 16 16.105 16 15C16 13.895 16.895 13 18 13H21.5V17ZM18 15.75C18.414 15.75 18.75 15.414 18.75 15C18.75 14.586 18.414 14.25 18 14.25C17.586 14.25 17.25 14.586 17.25 15C17.25 15.414 17.586 15.75 18 15.75Z",
2247
+ fill: "currentColor"
2248
+ }
2249
+ )
2250
+ ]
2251
+ })
2252
+ );
974
2253
  };
975
- var PlaceOrderSkeletonView = ({
976
- className,
977
- ariaLabel
978
- }) => {
979
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
980
- "div",
981
- {
982
- className: cn("group/agg-skeleton", "w-full", className),
983
- role: "status",
984
- "aria-label": ariaLabel != null ? ariaLabel : "Loading place order",
985
- "aria-busy": true,
986
- children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "flex w-full items-end justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
987
- Card,
988
- {
989
- className: cn(
990
- placeOrderCardClassName,
991
- "w-full max-w-[400px] rounded-t-agg-xl rounded-b-none border-b-0"
992
- ),
993
- children: [
994
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(ContentBody, {}),
995
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "border-t border-agg-separator bg-agg-secondary p-4", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SkeletonBlock, { className: "h-12 w-full rounded-agg-full" }) })
996
- ]
997
- }
998
- ) })
999
- }
2254
+ WalletIcon.displayName = "WalletIcon";
2255
+
2256
+ // src/primitives/icon/svg/warning-filled.tsx
2257
+ var import_jsx_runtime53 = require("react/jsx-runtime");
2258
+ var WarningFilledIcon = (_a) => {
2259
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
2260
+ return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
2261
+ "svg",
2262
+ __spreadProps(__spreadValues(__spreadValues({
2263
+ viewBox: "0 0 16 16",
2264
+ className,
2265
+ fill: "none"
2266
+ }, getIconA11yProps(title)), props), {
2267
+ children: [
2268
+ title ? /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("title", { children: title }) : null,
2269
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2270
+ "path",
2271
+ {
2272
+ d: "M15.3869 10.22L10.0002 1.71332C9.5469 1.05999 8.79356 0.666656 8.00023 0.666656C7.20689 0.666656 6.45356 1.05332 5.98023 1.73332L0.620227 10.2067C-0.0597729 11.18 -0.18644 12.3467 0.286894 13.2467C0.75356 14.1467 1.73356 14.66 2.96023 14.66H13.0402C14.2736 14.66 15.2469 14.1467 15.7136 13.2467C16.1802 12.3467 16.0536 11.1867 15.3869 10.22ZM7.33356 4.66666C7.33356 4.29999 7.63356 3.99999 8.00023 3.99999C8.36689 3.99999 8.66689 4.29999 8.66689 4.66666V8.66666C8.66689 9.03332 8.36689 9.33332 8.00023 9.33332C7.63356 9.33332 7.33356 9.03332 7.33356 8.66666V4.66666ZM8.00023 12.6667C7.44689 12.6667 7.00023 12.22 7.00023 11.6667C7.00023 11.1133 7.44689 10.6667 8.00023 10.6667C8.55356 10.6667 9.00023 11.1133 9.00023 11.6667C9.00023 12.22 8.55356 12.6667 8.00023 12.6667Z",
2273
+ fill: "currentColor"
2274
+ }
2275
+ )
2276
+ ]
2277
+ })
1000
2278
  );
1001
2279
  };
1002
- PlaceOrderSkeletonView.displayName = "PlaceOrderSkeletonView";
2280
+ WarningFilledIcon.displayName = "WarningFilledIcon";
1003
2281
 
1004
- // src/primitives/skeleton/views/settlement-skeleton-view.tsx
1005
- var import_hooks11 = require("@agg-market/hooks");
1006
- var import_jsx_runtime12 = require("react/jsx-runtime");
1007
- var SettlementSkeletonView = ({
1008
- className,
1009
- ariaLabel
1010
- }) => {
1011
- const labels = (0, import_hooks11.useLabels)();
1012
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
1013
- Card,
1014
- {
1015
- className: cn(
1016
- "group/agg-skeleton",
1017
- "flex flex-col w-full gap-5 rounded-agg-xl border border-agg-separator bg-agg-secondary p-5 shadow-none hover:shadow-none",
1018
- className
1019
- ),
1020
- role: "status",
1021
- "aria-label": ariaLabel != null ? ariaLabel : labels.trading.settlementLoading,
1022
- "aria-busy": true,
2282
+ // src/primitives/icon/svg/warning.tsx
2283
+ var import_jsx_runtime54 = require("react/jsx-runtime");
2284
+ var WarningIcon = (_a) => {
2285
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
2286
+ return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
2287
+ "svg",
2288
+ __spreadProps(__spreadValues(__spreadValues({
2289
+ width: "14",
2290
+ height: "14",
2291
+ viewBox: "0 0 14 14",
2292
+ fill: "none",
2293
+ xmlns: "http://www.w3.org/2000/svg",
2294
+ className
2295
+ }, getIconA11yProps(title)), props), {
1023
2296
  children: [
1024
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex flex-col gap-1 md:flex-row md:items-center md:justify-between md:gap-4", children: [
1025
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-20 rounded-agg-sm" }),
1026
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-5 w-full max-w-80 rounded-agg-sm" })
1027
- ] }),
1028
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex flex-col gap-2", children: [
1029
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-5 w-52 rounded-agg-sm" }),
1030
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex flex-col gap-2", children: [
1031
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-[88%] rounded-agg-sm" }),
1032
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-[84%] rounded-agg-sm" }),
1033
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-[80%] rounded-agg-sm" }),
1034
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-[74%] rounded-agg-sm" })
1035
- ] })
1036
- ] }),
1037
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "h-px w-full bg-agg-separator" }),
1038
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex flex-col gap-3", children: [
1039
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex flex-col gap-2", children: [
1040
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex items-center gap-2", children: [
1041
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "size-4 rounded-agg-full" }),
1042
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-5 w-24 rounded-agg-sm" }),
1043
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-4 rounded-agg-sm" })
1044
- ] }),
1045
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex flex-col gap-2 pl-6", children: [
1046
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-full rounded-agg-sm" }),
1047
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-[92%] rounded-agg-sm" }),
1048
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-[34%] rounded-agg-sm" })
1049
- ] })
1050
- ] }),
1051
- [0, 1, 2].map((index) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex items-center gap-2", children: [
1052
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "size-4 rounded-agg-full" }),
1053
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-5 w-20 rounded-agg-sm" }),
1054
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(SkeletonBlock, { className: "h-4 w-4 rounded-agg-sm" })
1055
- ] }, `settlement-venue-${index}`))
1056
- ] })
2297
+ title ? /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("title", { children: title }) : null,
2298
+ /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("g", { clipPath: "url(#clip0_warning)", children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2299
+ "path",
2300
+ {
2301
+ d: "M6.41665 8.16675V4.66675C6.41665 4.34591 6.67915 4.08341 6.99998 4.08341C7.32082 4.08341 7.58332 4.34591 7.58332 4.66675V8.16675C7.58332 8.48758 7.32082 8.75008 6.99998 8.75008C6.67915 8.75008 6.41665 8.48758 6.41665 8.16675ZM6.99998 9.33341C6.51582 9.33341 6.12498 9.72425 6.12498 10.2084C6.12498 10.6926 6.51582 11.0834 6.99998 11.0834C7.48415 11.0834 7.87498 10.6926 7.87498 10.2084C7.87498 9.72425 7.48415 9.33341 6.99998 9.33341ZM13.755 12.1801C13.3467 12.9676 12.4892 13.4167 11.4158 13.4167H2.58998C1.51082 13.4167 0.659151 12.9676 0.250818 12.1801C-0.163348 11.3867 -0.0466818 10.3717 0.542485 9.52008L5.23248 2.10008C5.64665 1.50508 6.29998 1.16675 6.99998 1.16675C7.69999 1.16675 8.35332 1.50508 8.74998 2.08258L13.4633 9.53175C14.0525 10.3834 14.1633 11.3926 13.7492 12.1801H13.755ZM12.5008 10.1851C12.5008 10.1851 12.4892 10.1734 12.4892 10.1617L7.78165 2.72425C7.61248 2.48508 7.32082 2.33341 6.99998 2.33341C6.67915 2.33341 6.38749 2.48508 6.20665 2.74758L1.51082 10.1617C1.14915 10.6751 1.06748 11.2351 1.27748 11.6376C1.48165 12.0342 1.94832 12.2501 2.58415 12.2501H11.4042C12.04 12.2501 12.5067 12.0342 12.7108 11.6376C12.9208 11.2351 12.8392 10.6751 12.495 10.1851H12.5008Z",
2302
+ fill: "currentColor"
2303
+ }
2304
+ ) }),
2305
+ /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("clipPath", { id: "clip0_warning", children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
1057
2306
  ]
1058
- }
2307
+ })
1059
2308
  );
1060
2309
  };
1061
- SettlementSkeletonView.displayName = "SettlementSkeletonView";
2310
+ WarningIcon.displayName = "WarningIcon";
1062
2311
 
1063
- // src/primitives/skeleton/skeleton.types.ts
1064
- var skeletonViews = {
1065
- eventListItem: "event-list-item",
1066
- eventListItemDetails: "event-list-item-details",
1067
- marketDetailsMinified: "market-details-minified",
1068
- marketDetailsDetailed: "market-details-detailed",
1069
- eventList: "event-list",
1070
- settlement: "settlement",
1071
- placeOrder: "place-order"
2312
+ // src/primitives/icon/registry.ts
2313
+ var iconRegistry = {
2314
+ "arrow-trend-up": ArrowTrendUpIcon,
2315
+ "arrows-to-dot": ArrowsToDotIcon,
2316
+ bank: BankIcon,
2317
+ "best-prices": BestPricesIcon,
2318
+ bolt: BoltIcon,
2319
+ "check-badge": CheckBadgeIcon,
2320
+ "check-circle": CheckCircleIcon,
2321
+ "chevron-down": ChevronDownIcon,
2322
+ "chevron-left": ChevronLeftIcon,
2323
+ "chevron-right": ChevronRightIcon,
2324
+ "chevron-up": ChevronUpIcon,
2325
+ close: CloseIcon,
2326
+ copy: CopyIcon,
2327
+ "create-account": CreateAccountIcon,
2328
+ "credit-card": CreditCardIcon,
2329
+ discord: DiscordIcon,
2330
+ disconnect: DisconnectIcon,
2331
+ document: DocumentIcon,
2332
+ download: DownloadIcon,
2333
+ "dots-horizontal": DotsHorizontalIcon,
2334
+ email: EmailIcon,
2335
+ "external-link": ExternalLinkIcon,
2336
+ info: InfoIcon,
2337
+ "link-accounts": LinkAccountsIcon,
2338
+ pencil: PencilIcon,
2339
+ "play-square": PlaySquareIcon,
2340
+ profile: ProfileIcon,
2341
+ "revenue-alt": RevenueAltIcon,
2342
+ search: SearchIcon,
2343
+ "shield-trust": ShieldTrustIcon,
2344
+ "stay-in-control": StayInControlIcon,
2345
+ telegram: TelegramIcon,
2346
+ "triangle-down": TriangleDownIcon,
2347
+ "triangle-up": TriangleUpIcon,
2348
+ "triangle-up-filled": TriangleUpFilledIcon,
2349
+ twitter: TwitterIcon,
2350
+ upload: UploadIcon,
2351
+ wallet: WalletIcon,
2352
+ "wallet-avatar": WalletAvatarIcon,
2353
+ "warning-filled": WarningFilledIcon,
2354
+ warning: WarningIcon
2355
+ };
2356
+ var iconNames = Object.keys(iconRegistry);
2357
+
2358
+ // src/primitives/icon/icon.utils.ts
2359
+ var resolveIconStyle = (color, style) => {
2360
+ if (!color)
2361
+ return style;
2362
+ return __spreadProps(__spreadValues({}, style), {
2363
+ color
2364
+ });
1072
2365
  };
1073
2366
 
1074
- // src/primitives/skeleton/index.tsx
1075
- var import_jsx_runtime13 = require("react/jsx-runtime");
1076
- var Skeleton = ({ view, className, ariaLabel }) => {
1077
- if (view === skeletonViews.eventListItem) {
1078
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(EventListItemSkeletonView, { className, ariaLabel, isStandalone: true });
1079
- }
1080
- if (view === skeletonViews.eventListItemDetails) {
1081
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(EventListItemDetailsSkeletonView, { className, ariaLabel });
1082
- }
1083
- if (view === skeletonViews.marketDetailsMinified) {
1084
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(MarketDetailsSkeletonView, { className, ariaLabel, isDetailed: false });
1085
- }
1086
- if (view === skeletonViews.marketDetailsDetailed) {
1087
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(MarketDetailsSkeletonView, { className, ariaLabel, isDetailed: true });
1088
- }
1089
- if (view === skeletonViews.settlement) {
1090
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(SettlementSkeletonView, { className, ariaLabel });
1091
- }
1092
- if (view === skeletonViews.placeOrder) {
1093
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(PlaceOrderSkeletonView, { className, ariaLabel });
1094
- }
1095
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(EventListSkeletonView, { className, ariaLabel });
2367
+ // src/primitives/icon/index.tsx
2368
+ var import_jsx_runtime55 = require("react/jsx-runtime");
2369
+ var Icon = (_a) => {
2370
+ var _b = _a, {
2371
+ name,
2372
+ color,
2373
+ size = "medium",
2374
+ className = "text-agg-primary",
2375
+ style
2376
+ } = _b, props = __objRest(_b, [
2377
+ "name",
2378
+ "color",
2379
+ "size",
2380
+ "className",
2381
+ "style"
2382
+ ]);
2383
+ const Component = iconRegistry[name];
2384
+ const resolvedStyle = resolveIconStyle(color, style);
2385
+ const resolvedClassName = cn(iconSizeClasses[size], className);
2386
+ return /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2387
+ Component,
2388
+ __spreadValues({
2389
+ color,
2390
+ className: cn("group/agg-icon", resolvedClassName),
2391
+ style: resolvedStyle
2392
+ }, props)
2393
+ );
1096
2394
  };
1097
- Skeleton.displayName = "Skeleton";
2395
+ Icon.displayName = "Icon";
2396
+
2397
+ // src/primitives/search/search-empty-icon.tsx
2398
+ var import_jsx_runtime56 = require("react/jsx-runtime");
2399
+ var SearchEmptyIcon = (_a) => {
2400
+ var _b = _a, { title, className } = _b, props = __objRest(_b, ["title", "className"]);
2401
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
2402
+ "svg",
2403
+ __spreadProps(__spreadValues(__spreadValues({
2404
+ viewBox: "0 0 40 40",
2405
+ fill: "none",
2406
+ xmlns: "http://www.w3.org/2000/svg",
2407
+ className
2408
+ }, getIconA11yProps(title)), props), {
2409
+ children: [
2410
+ title ? /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("title", { children: title }) : null,
2411
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("circle", { cx: "19.9987", cy: "20.0013", r: "9.2", stroke: "currentColor", strokeWidth: "1.6" }),
2412
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2413
+ "ellipse",
2414
+ {
2415
+ cx: "19.9987",
2416
+ cy: "20.0012",
2417
+ rx: "17.2",
2418
+ ry: "6.6",
2419
+ transform: "rotate(-35 19.9987 20.0012)",
2420
+ stroke: "currentColor",
2421
+ strokeWidth: "1.6"
2422
+ }
2423
+ )
2424
+ ]
2425
+ })
2426
+ );
2427
+ };
2428
+ SearchEmptyIcon.displayName = "SearchEmptyIcon";
1098
2429
 
1099
2430
  // src/primitives/typography/typography.constants.ts
1100
2431
  var typographyVariantClasses = {
@@ -1116,14 +2447,14 @@ var typographyVariantClasses = {
1116
2447
  };
1117
2448
 
1118
2449
  // src/primitives/typography/index.tsx
1119
- var import_jsx_runtime14 = require("react/jsx-runtime");
2450
+ var import_jsx_runtime57 = require("react/jsx-runtime");
1120
2451
  var Typography = ({
1121
2452
  as: Component = "p",
1122
2453
  variant = "body",
1123
2454
  className,
1124
2455
  children
1125
2456
  }) => {
1126
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2457
+ return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
1127
2458
  Component,
1128
2459
  {
1129
2460
  className: cn(
@@ -1138,15 +2469,55 @@ var Typography = ({
1138
2469
  };
1139
2470
  Typography.displayName = "Typography";
1140
2471
 
2472
+ // src/primitives/state-message/index.tsx
2473
+ var import_jsx_runtime58 = require("react/jsx-runtime");
2474
+ var iconClassName = "h-9 w-9 text-agg-muted-foreground";
2475
+ var StateMessage = ({
2476
+ ariaLabel,
2477
+ tone = "empty",
2478
+ title,
2479
+ description,
2480
+ actionLabel,
2481
+ onAction,
2482
+ className
2483
+ }) => {
2484
+ const icon = tone === "warning" ? /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(WarningIcon, { className: iconClassName, "aria-hidden": true }) : /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(SearchEmptyIcon, { className: iconClassName, "aria-hidden": true });
2485
+ return /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2486
+ "div",
2487
+ {
2488
+ className: cn(
2489
+ "flex min-h-[240px] w-full flex-col items-center justify-center px-5 py-10 text-center md:px-10",
2490
+ className
2491
+ ),
2492
+ role: "status",
2493
+ "aria-live": "polite",
2494
+ "aria-label": ariaLabel,
2495
+ children: /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: "flex max-w-[360px] flex-col items-center gap-6", children: [
2496
+ icon,
2497
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: "flex flex-col items-center gap-2", children: [
2498
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(Typography, { variant: "body-large-strong", children: title }),
2499
+ description ? /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(Typography, { variant: "body", className: "whitespace-pre-line text-agg-muted-foreground", children: description }) : null
2500
+ ] }),
2501
+ actionLabel && onAction ? /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2502
+ Button,
2503
+ {
2504
+ variant: "tertiary",
2505
+ size: "large",
2506
+ className: "text-agg-base leading-agg-6",
2507
+ "aria-label": actionLabel,
2508
+ onClick: onAction,
2509
+ children: actionLabel
2510
+ }
2511
+ ) : null
2512
+ ] })
2513
+ }
2514
+ );
2515
+ };
2516
+ StateMessage.displayName = "StateMessage";
2517
+
1141
2518
  // src/primitives/venue-logo/index.tsx
1142
2519
  var import_hooks12 = require("@agg-market/hooks");
1143
2520
 
1144
- // src/primitives/icon/types.ts
1145
- var getIconA11yProps = (title) => ({
1146
- role: title ? "img" : "presentation",
1147
- "aria-hidden": title ? void 0 : true
1148
- });
1149
-
1150
2521
  // src/primitives/venue-logo/logo-props.ts
1151
2522
  var DEFAULT_MONOCHROME_COLOR = "currentColor";
1152
2523
  var resolveLogoPrimaryColor = ({
@@ -1162,7 +2533,7 @@ var resolveLogoPrimaryColor = ({
1162
2533
  };
1163
2534
 
1164
2535
  // src/primitives/venue-logo/svg/logo-kalshi.tsx
1165
- var import_jsx_runtime15 = require("react/jsx-runtime");
2536
+ var import_jsx_runtime59 = require("react/jsx-runtime");
1166
2537
  var KALSHI_GREEN = "#18C590";
1167
2538
  var LogoKalshiIcon = (_a) => {
1168
2539
  var _b = _a, {
@@ -1181,7 +2552,7 @@ var LogoKalshiIcon = (_a) => {
1181
2552
  isColor,
1182
2553
  color
1183
2554
  });
1184
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
2555
+ return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(
1185
2556
  "svg",
1186
2557
  __spreadProps(__spreadValues(__spreadValues({
1187
2558
  viewBox: "0 0 100 100",
@@ -1189,8 +2560,8 @@ var LogoKalshiIcon = (_a) => {
1189
2560
  fill: "none"
1190
2561
  }, getIconA11yProps(title)), props), {
1191
2562
  children: [
1192
- title ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("title", { children: title }) : null,
1193
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
2563
+ title ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("title", { children: title }) : null,
2564
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
1194
2565
  "path",
1195
2566
  {
1196
2567
  d: "M54.9798 47.579L79.4249 85.9995H58.2273L38.2531 52.9344V85.9995H20.4189V13.9995H38.2531V45.4356L59.6547 13.9995H78.7119L54.9798 47.579Z",
@@ -1204,7 +2575,7 @@ var LogoKalshiIcon = (_a) => {
1204
2575
  LogoKalshiIcon.displayName = "LogoKalshiIcon";
1205
2576
 
1206
2577
  // src/primitives/venue-logo/svg/logo-opinion.tsx
1207
- var import_jsx_runtime16 = require("react/jsx-runtime");
2578
+ var import_jsx_runtime60 = require("react/jsx-runtime");
1208
2579
  var OPINION_BLACK = "#000000";
1209
2580
  var LogoOpinionIcon = (_a) => {
1210
2581
  var _b = _a, {
@@ -1223,7 +2594,7 @@ var LogoOpinionIcon = (_a) => {
1223
2594
  isColor,
1224
2595
  color
1225
2596
  });
1226
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
2597
+ return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
1227
2598
  "svg",
1228
2599
  __spreadProps(__spreadValues(__spreadValues({
1229
2600
  viewBox: "0 0 100 100",
@@ -1231,8 +2602,8 @@ var LogoOpinionIcon = (_a) => {
1231
2602
  fill: "none"
1232
2603
  }, getIconA11yProps(title)), props), {
1233
2604
  children: [
1234
- title ? /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("title", { children: title }) : null,
1235
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
2605
+ title ? /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("title", { children: title }) : null,
2606
+ /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
1236
2607
  "path",
1237
2608
  {
1238
2609
  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",
@@ -1246,7 +2617,7 @@ var LogoOpinionIcon = (_a) => {
1246
2617
  LogoOpinionIcon.displayName = "LogoOpinionIcon";
1247
2618
 
1248
2619
  // src/primitives/venue-logo/svg/logo-polymarket.tsx
1249
- var import_jsx_runtime17 = require("react/jsx-runtime");
2620
+ var import_jsx_runtime61 = require("react/jsx-runtime");
1250
2621
  var POLYMARKET_BLUE = "#2E5CFF";
1251
2622
  var LogoPolymarketIcon = (_a) => {
1252
2623
  var _b = _a, {
@@ -1265,7 +2636,7 @@ var LogoPolymarketIcon = (_a) => {
1265
2636
  isColor,
1266
2637
  color
1267
2638
  });
1268
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
2639
+ return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
1269
2640
  "svg",
1270
2641
  __spreadProps(__spreadValues(__spreadValues({
1271
2642
  viewBox: "0 0 100 100",
@@ -1273,8 +2644,8 @@ var LogoPolymarketIcon = (_a) => {
1273
2644
  fill: "none"
1274
2645
  }, getIconA11yProps(title)), props), {
1275
2646
  children: [
1276
- title ? /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("title", { children: title }) : null,
1277
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
2647
+ title ? /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("title", { children: title }) : null,
2648
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
1278
2649
  "path",
1279
2650
  {
1280
2651
  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",
@@ -1288,7 +2659,7 @@ var LogoPolymarketIcon = (_a) => {
1288
2659
  LogoPolymarketIcon.displayName = "LogoPolymarketIcon";
1289
2660
 
1290
2661
  // src/primitives/venue-logo/svg/logo-probable.tsx
1291
- var import_jsx_runtime18 = require("react/jsx-runtime");
2662
+ var import_jsx_runtime62 = require("react/jsx-runtime");
1292
2663
  var PROBABLE_ORANGE = "#F05923";
1293
2664
  var LogoProbableIcon = (_a) => {
1294
2665
  var _b = _a, {
@@ -1307,7 +2678,7 @@ var LogoProbableIcon = (_a) => {
1307
2678
  isColor,
1308
2679
  color
1309
2680
  });
1310
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2681
+ return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
1311
2682
  "svg",
1312
2683
  __spreadProps(__spreadValues(__spreadValues({
1313
2684
  viewBox: "0 0 100 100",
@@ -1315,16 +2686,16 @@ var LogoProbableIcon = (_a) => {
1315
2686
  fill: "none"
1316
2687
  }, getIconA11yProps(title)), props), {
1317
2688
  children: [
1318
- title ? /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("title", { children: title }) : null,
1319
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2689
+ title ? /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("title", { children: title }) : null,
2690
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
1320
2691
  "path",
1321
2692
  {
1322
2693
  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",
1323
2694
  fill: primaryColor
1324
2695
  }
1325
2696
  ),
1326
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M90.9329 15.4546V30.4546H8.90234V15.4546H90.9329Z", fill: primaryColor }),
1327
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2697
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("path", { d: "M90.9329 15.4546V30.4546H8.90234V15.4546H90.9329Z", fill: primaryColor }),
2698
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
1328
2699
  "path",
1329
2700
  {
1330
2701
  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",
@@ -1359,7 +2730,7 @@ var sizeClasses2 = {
1359
2730
  };
1360
2731
 
1361
2732
  // src/primitives/venue-logo/index.tsx
1362
- var import_jsx_runtime19 = require("react/jsx-runtime");
2733
+ var import_jsx_runtime63 = require("react/jsx-runtime");
1363
2734
  var VenueLogo = ({
1364
2735
  venue,
1365
2736
  variant = "icon",
@@ -1375,7 +2746,7 @@ var VenueLogo = ({
1375
2746
  const sizeClass = sizeClasses2[size];
1376
2747
  const resolvedLabel = ariaLabel != null ? ariaLabel : labels.venues[venue];
1377
2748
  if (variant === "logo") {
1378
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2749
+ return /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
1379
2750
  "img",
1380
2751
  {
1381
2752
  src: venueLogoUrlRegistry[venue],
@@ -1387,7 +2758,7 @@ var VenueLogo = ({
1387
2758
  }
1388
2759
  const Component = venueLogoRegistry[venue];
1389
2760
  const resolvedIsColor = isMonochromatic ? false : isColor;
1390
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2761
+ return /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
1391
2762
  Component,
1392
2763
  {
1393
2764
  className: cn("group/agg-venue-logo", "shrink-0", sizeClass, className),
@@ -1400,29 +2771,27 @@ var VenueLogo = ({
1400
2771
  };
1401
2772
  VenueLogo.displayName = "VenueLogo";
1402
2773
 
2774
+ // src/shared/query-error.ts
2775
+ var getErrorStatus = (error) => {
2776
+ if (!error || typeof error !== "object")
2777
+ return null;
2778
+ const status = error.status;
2779
+ return typeof status === "number" ? status : null;
2780
+ };
2781
+ var isErrorWithStatus = (error, status) => {
2782
+ return getErrorStatus(error) === status;
2783
+ };
2784
+
1403
2785
  // src/events/item/event-list-item.utils.ts
1404
2786
  var resolveEventListItemEvent = (fetchedEvent) => {
1405
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
1406
2787
  if (!fetchedEvent)
1407
2788
  return void 0;
1408
- const fallbackVenueEvent = fetchedEvent.venueEvents[0];
1409
- if (!fallbackVenueEvent)
1410
- return void 0;
1411
2789
  const mergedVenueMarkets = fetchedEvent.markets.flatMap(
1412
- (venueEvent) => venueEvent.venueMarkets
2790
+ (market) => market.venueMarkets
1413
2791
  );
1414
- const venueMarkets = mergedVenueMarkets.length > 0 ? mergedVenueMarkets : [];
1415
- if ((venueMarkets == null ? void 0 : venueMarkets.length) === 0)
2792
+ if (mergedVenueMarkets.length === 0)
1416
2793
  return void 0;
1417
- return __spreadProps(__spreadValues({}, fetchedEvent), {
1418
- id: fetchedEvent.id,
1419
- title: fetchedEvent.title || fallbackVenueEvent.title,
1420
- description: (_b = (_a = fetchedEvent.description) != null ? _a : fallbackVenueEvent.description) != null ? _b : null,
1421
- volume: (_d = (_c = fetchedEvent.volume) != null ? _c : fallbackVenueEvent.volume) != null ? _d : null,
1422
- startDate: (_f = (_e = fetchedEvent.startDate) != null ? _e : fallbackVenueEvent.startDate) != null ? _f : null,
1423
- endDate: (_h = (_g = fetchedEvent.endDate) != null ? _g : fallbackVenueEvent.endDate) != null ? _h : null,
1424
- creationDate: (_j = (_i = fetchedEvent.creationDate) != null ? _i : fallbackVenueEvent.creationDate) != null ? _j : null
1425
- });
2794
+ return fetchedEvent;
1426
2795
  };
1427
2796
  var normalizeProbability = (value) => {
1428
2797
  if (typeof value !== "number" || !Number.isFinite(value))
@@ -1481,15 +2850,14 @@ var resolveTileTitle = (event, primaryVenueMarket, titleOverride) => {
1481
2850
  return event.title;
1482
2851
  };
1483
2852
  var resolveTileImage = (event, primaryVenueMarket, imageOverride) => {
1484
- var _a, _b, _c, _d, _e, _f;
1485
2853
  if (typeof imageOverride === "string" && imageOverride.trim()) {
1486
2854
  return imageOverride;
1487
2855
  }
1488
2856
  if (typeof (primaryVenueMarket == null ? void 0 : primaryVenueMarket.image) === "string" && primaryVenueMarket.image.trim()) {
1489
2857
  return primaryVenueMarket.image;
1490
2858
  }
1491
- if (typeof ((_b = (_a = event.venueEvents) == null ? void 0 : _a[0]) == null ? void 0 : _b.image) === "string" && ((_d = (_c = event.venueEvents) == null ? void 0 : _c[0]) == null ? void 0 : _d.image.trim())) {
1492
- return (_f = (_e = event.venueEvents) == null ? void 0 : _e[0]) == null ? void 0 : _f.image;
2859
+ if (typeof event.image === "string" && event.image.trim()) {
2860
+ return event.image;
1493
2861
  }
1494
2862
  return void 0;
1495
2863
  };
@@ -1599,18 +2967,22 @@ var resolveOutcomesByVenue = (venueMarkets, selectedOutcomeLabel) => {
1599
2967
  };
1600
2968
  }).filter((item) => item != null);
1601
2969
  };
1602
- var buildPriceHistoryGroups = (selectedOutcomes) => {
1603
- const venueMarketOutcomeIdsByVenue = /* @__PURE__ */ new Map();
1604
- selectedOutcomes.forEach(({ venue, outcome }) => {
1605
- var _a;
1606
- if (!venueMarketOutcomeIdsByVenue.has(venue)) {
1607
- venueMarketOutcomeIdsByVenue.set(venue, []);
2970
+ var buildPriceHistoryGroups = (selectedOutcomes, fallbackMarketId) => {
2971
+ const marketIdByVenue = /* @__PURE__ */ new Map();
2972
+ selectedOutcomes.forEach(({ venue, market }) => {
2973
+ var _a, _b;
2974
+ const marketWithCanonicalId = market;
2975
+ const canonicalMarketId = (_a = marketWithCanonicalId.marketId) != null ? _a : fallbackMarketId;
2976
+ if (!canonicalMarketId)
2977
+ return;
2978
+ if (!marketIdByVenue.has(venue)) {
2979
+ marketIdByVenue.set(venue, /* @__PURE__ */ new Set());
1608
2980
  }
1609
- (_a = venueMarketOutcomeIdsByVenue.get(venue)) == null ? void 0 : _a.push(outcome.id);
2981
+ (_b = marketIdByVenue.get(venue)) == null ? void 0 : _b.add(canonicalMarketId);
1610
2982
  });
1611
- return [...venueMarketOutcomeIdsByVenue.entries()].map(([venue, venueMarketOutcomeIds]) => ({
2983
+ return [...marketIdByVenue.entries()].map(([venue, marketIds]) => ({
1612
2984
  venue,
1613
- venueMarketOutcomeIds
2985
+ venueMarketOutcomeIds: [...marketIds]
1614
2986
  })).filter((group) => group.venueMarketOutcomeIds.length > 0);
1615
2987
  };
1616
2988
  var resolveSeriesColor = (venue, index) => {
@@ -1622,13 +2994,13 @@ var resolveSeriesColor = (venue, index) => {
1622
2994
  };
1623
2995
 
1624
2996
  // src/events/item-details/index.tsx
1625
- var import_jsx_runtime20 = require("react/jsx-runtime");
2997
+ var import_jsx_runtime64 = require("react/jsx-runtime");
1626
2998
  var EventListItemDetailsLoadingState = ({
1627
2999
  classNames,
1628
3000
  ariaLabel
1629
3001
  }) => {
1630
3002
  const labels = (0, import_hooks13.useLabels)();
1631
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3003
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
1632
3004
  Skeleton,
1633
3005
  {
1634
3006
  view: "event-list-item-details",
@@ -1642,19 +3014,34 @@ var EventListItemDetailsUnavailableState = ({
1642
3014
  ariaLabel
1643
3015
  }) => {
1644
3016
  const labels = (0, import_hooks13.useLabels)();
1645
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3017
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
1646
3018
  Card,
1647
3019
  {
1648
3020
  className: cn(detailsBaseCardClassName, classNames == null ? void 0 : classNames.root),
1649
3021
  role: "status",
1650
3022
  "aria-label": ariaLabel != null ? ariaLabel : labels.eventItemDetails.unavailableAria,
1651
- children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: cn("flex flex-col gap-1", classNames == null ? void 0 : classNames.header), children: [
1652
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(Typography, { variant: "body-large-strong", className: cn("truncate", classNames == null ? void 0 : classNames.title), children: labels.eventItemDetails.unavailableTitle }),
1653
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(Typography, { variant: "body", className: "text-agg-muted-foreground", children: labels.eventItemDetails.unavailableDescription })
3023
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: cn("flex flex-col gap-1", classNames == null ? void 0 : classNames.header), children: [
3024
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(Typography, { variant: "body-large-strong", className: cn("truncate", classNames == null ? void 0 : classNames.title), children: labels.eventItemDetails.unavailableTitle }),
3025
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(Typography, { variant: "body", className: "text-agg-muted-foreground", children: labels.eventItemDetails.unavailableDescription })
1654
3026
  ] })
1655
3027
  }
1656
3028
  );
1657
3029
  };
3030
+ var EventListItemDetailsNotFoundState = ({
3031
+ classNames,
3032
+ ariaLabel
3033
+ }) => {
3034
+ const labels = (0, import_hooks13.useLabels)();
3035
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(Card, { className: cn(detailsBaseCardClassName, classNames == null ? void 0 : classNames.root), children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3036
+ StateMessage,
3037
+ {
3038
+ ariaLabel: ariaLabel != null ? ariaLabel : labels.eventItemDetails.notFoundAria,
3039
+ title: labels.eventItemDetails.notFoundTitle,
3040
+ description: labels.eventItemDetails.notFoundDescription,
3041
+ className: "min-h-[280px] md:min-h-[320px]"
3042
+ }
3043
+ ) });
3044
+ };
1658
3045
  var probabilityModeOrder = ["yes", "no"];
1659
3046
  var clampProbability = (value) => {
1660
3047
  if (value < 0)
@@ -1670,13 +3057,18 @@ var resolveAverageProbability = (values) => {
1670
3057
  return validValues.reduce((sum, value) => sum + value, 0) / validValues.length;
1671
3058
  };
1672
3059
  var resolveOutcomeCandidateIds = (market, outcome) => {
1673
- var _a;
1674
- return [outcome.id, (_a = outcome.externalIdentifier) != null ? _a : void 0, market.externalIdentifier].filter(
1675
- (value) => typeof value === "string" && value.trim().length > 0
1676
- );
3060
+ var _a, _b;
3061
+ const marketWithCanonicalId = market;
3062
+ return [
3063
+ outcome.id,
3064
+ (_a = outcome.externalIdentifier) != null ? _a : void 0,
3065
+ market.externalIdentifier,
3066
+ (_b = marketWithCanonicalId.marketId) != null ? _b : void 0
3067
+ ].filter((value) => typeof value === "string" && value.trim().length > 0);
1677
3068
  };
1678
3069
  var EventListItemDetailsGraphSection = ({
1679
3070
  venueMarkets,
3071
+ canonicalMarketId,
1680
3072
  selectedOutcomeLabel,
1681
3073
  onSelectedOutcomeLabelChange,
1682
3074
  switchLabels,
@@ -1769,12 +3161,17 @@ var EventListItemDetailsGraphSection = ({
1769
3161
  return [...outcomeByModeAndId.values()];
1770
3162
  }, [selectedOutcomesByMode]);
1771
3163
  const priceHistoryGroups = (0, import_react3.useMemo)(() => {
1772
- return buildPriceHistoryGroups(allOutcomesForHistory);
1773
- }, [allOutcomesForHistory]);
3164
+ return buildPriceHistoryGroups(allOutcomesForHistory, canonicalMarketId);
3165
+ }, [allOutcomesForHistory, canonicalMarketId]);
1774
3166
  const timeWindow = (0, import_react3.useMemo)(() => {
1775
3167
  return getTimeWindowByRange(selectedTimeRange);
1776
3168
  }, [selectedTimeRange]);
1777
- const { data: priceHistoryData, isLoading: isPriceHistoryLoading } = (0, import_hooks13.usePriceHistory)(__spreadProps(__spreadValues({
3169
+ const {
3170
+ data: priceHistoryData,
3171
+ isLoading: isPriceHistoryLoading,
3172
+ error: priceHistoryError,
3173
+ results: priceHistoryResults
3174
+ } = (0, import_hooks13.usePriceHistory)(__spreadProps(__spreadValues({
1778
3175
  groups: priceHistoryGroups
1779
3176
  }, timeWindow), {
1780
3177
  enabled: priceHistoryGroups.length > 0
@@ -1878,7 +3275,33 @@ var EventListItemDetailsGraphSection = ({
1878
3275
  return venue;
1879
3276
  });
1880
3277
  };
1881
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3278
+ const handleRetryPriceHistory = () => {
3279
+ void Promise.all(priceHistoryResults.map((result) => result.refetch()));
3280
+ };
3281
+ if (priceHistoryError) {
3282
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3283
+ "div",
3284
+ {
3285
+ className: cn(
3286
+ "w-full rounded-agg-xl border border-agg-separator bg-agg-secondary",
3287
+ classNames == null ? void 0 : classNames.chart
3288
+ ),
3289
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3290
+ StateMessage,
3291
+ {
3292
+ ariaLabel: labels.eventItemDetails.chartUnavailableAria,
3293
+ tone: "warning",
3294
+ title: labels.eventItemDetails.chartUnavailableTitle,
3295
+ description: labels.eventItemDetails.chartUnavailableDescription,
3296
+ actionLabel: labels.common.retry,
3297
+ onAction: handleRetryPriceHistory,
3298
+ className: "min-h-[300px] px-5 py-10 md:px-10"
3299
+ }
3300
+ )
3301
+ }
3302
+ );
3303
+ }
3304
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
1882
3305
  LineChart,
1883
3306
  {
1884
3307
  classNames: { root: classNames == null ? void 0 : classNames.chart },
@@ -1887,12 +3310,12 @@ var EventListItemDetailsGraphSection = ({
1887
3310
  isLoading: isPriceHistoryLoading,
1888
3311
  showSeriesControls: activeModeVenueData.length > 0 || segmentedDisplayItems.length > 0,
1889
3312
  renderSeriesControls: () => {
1890
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
3313
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
1891
3314
  "div",
1892
3315
  {
1893
3316
  className: cn("flex flex-row items-center justify-between gap-4", classNames == null ? void 0 : classNames.summary),
1894
3317
  children: [
1895
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3318
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
1896
3319
  "div",
1897
3320
  {
1898
3321
  className: cn(
@@ -1903,7 +3326,7 @@ var EventListItemDetailsGraphSection = ({
1903
3326
  var _a;
1904
3327
  const text = venueData.probability == null ? "-" : formatPercent(venueData.probability);
1905
3328
  const isActiveVenue = selectedVenue === venueData.venue;
1906
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3329
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
1907
3330
  "button",
1908
3331
  {
1909
3332
  type: "button",
@@ -1912,12 +3335,12 @@ var EventListItemDetailsGraphSection = ({
1912
3335
  className: cn(
1913
3336
  "rounded-agg-full focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-agg-primary focus-visible:ring-offset-2 focus-visible:ring-offset-agg-secondary-hover"
1914
3337
  ),
1915
- children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3338
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
1916
3339
  Badge,
1917
3340
  {
1918
3341
  text,
1919
3342
  size: "large",
1920
- prefix: showVenueLogo ? /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3343
+ prefix: showVenueLogo ? /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
1921
3344
  VenueLogo,
1922
3345
  {
1923
3346
  venue: venueData.venue,
@@ -1942,7 +3365,7 @@ var EventListItemDetailsGraphSection = ({
1942
3365
  })
1943
3366
  }
1944
3367
  ),
1945
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3368
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
1946
3369
  SwitchButton,
1947
3370
  {
1948
3371
  ariaLabel: labels.eventItemDetails.outcomeSelectorAria,
@@ -1974,11 +3397,12 @@ var EventListItemDetailsContent = ({
1974
3397
  ariaLabel,
1975
3398
  defaultTimeRange
1976
3399
  }) => {
3400
+ var _a, _b;
1977
3401
  const config = (0, import_hooks13.useSdkUiConfig)();
1978
3402
  const labels = (0, import_hooks13.useLabels)();
1979
3403
  const venueMarkets = (0, import_react3.useMemo)(() => {
1980
- var _a, _b, _c;
1981
- return (_c = (_b = (_a = event.markets) == null ? void 0 : _a[0]) == null ? void 0 : _b.venueMarkets) != null ? _c : [];
3404
+ var _a2, _b2, _c;
3405
+ return (_c = (_b2 = (_a2 = event.markets) == null ? void 0 : _a2[0]) == null ? void 0 : _b2.venueMarkets) != null ? _c : [];
1982
3406
  }, [event.markets]);
1983
3407
  const primaryVenueMarket = (0, import_react3.useMemo)(() => {
1984
3408
  return selectPrimaryVenueMarket(venueMarkets);
@@ -2016,9 +3440,9 @@ var EventListItemDetailsContent = ({
2016
3440
  if (outcomeLabels.length === 0)
2017
3441
  return void 0;
2018
3442
  return [...outcomeLabels].sort((left, right) => {
2019
- var _a, _b;
2020
- const leftProbability = (_a = probabilityByLabel.get(left)) != null ? _a : -1;
2021
- const rightProbability = (_b = probabilityByLabel.get(right)) != null ? _b : -1;
3443
+ var _a2, _b2;
3444
+ const leftProbability = (_a2 = probabilityByLabel.get(left)) != null ? _a2 : -1;
3445
+ const rightProbability = (_b2 = probabilityByLabel.get(right)) != null ? _b2 : -1;
2022
3446
  return rightProbability - leftProbability;
2023
3447
  })[0];
2024
3448
  }, [outcomeLabels, probabilityByLabel]);
@@ -2034,18 +3458,18 @@ var EventListItemDetailsContent = ({
2034
3458
  setSelectedOutcomeLabel(fallbackOutcomeLabel);
2035
3459
  }, [isDateOutcomeMarket, mainOutcomeLabel, outcomeLabels, selectedOutcomeLabel]);
2036
3460
  const switchLabels = (0, import_react3.useMemo)(() => {
2037
- var _a, _b;
3461
+ var _a2, _b2;
2038
3462
  if (isDateOutcomeMarket) {
2039
3463
  return [labels.eventItemDetails.yes, labels.eventItemDetails.no];
2040
3464
  }
2041
3465
  const sortedOutcomeLabels = [...outcomeLabels].sort((left, right) => {
2042
- var _a2, _b2;
2043
- const leftProbability = (_a2 = probabilityByLabel.get(left)) != null ? _a2 : -1;
2044
- const rightProbability = (_b2 = probabilityByLabel.get(right)) != null ? _b2 : -1;
3466
+ var _a3, _b3;
3467
+ const leftProbability = (_a3 = probabilityByLabel.get(left)) != null ? _a3 : -1;
3468
+ const rightProbability = (_b3 = probabilityByLabel.get(right)) != null ? _b3 : -1;
2045
3469
  return rightProbability - leftProbability;
2046
3470
  });
2047
- const firstLabel = (_a = sortedOutcomeLabels[0]) != null ? _a : labels.eventItemDetails.yes;
2048
- const secondLabel = (_b = sortedOutcomeLabels.find((label) => label !== firstLabel)) != null ? _b : firstLabel;
3471
+ const firstLabel = (_a2 = sortedOutcomeLabels[0]) != null ? _a2 : labels.eventItemDetails.yes;
3472
+ const secondLabel = (_b2 = sortedOutcomeLabels.find((label) => label !== firstLabel)) != null ? _b2 : firstLabel;
2049
3473
  return [firstLabel, secondLabel];
2050
3474
  }, [
2051
3475
  isDateOutcomeMarket,
@@ -2055,22 +3479,22 @@ var EventListItemDetailsContent = ({
2055
3479
  probabilityByLabel
2056
3480
  ]);
2057
3481
  const volumeLabel = (0, import_react3.useMemo)(() => {
2058
- var _a;
2059
- const resolvedVolume = typeof event.volume === "number" ? event.volume : (_a = primaryVenueMarket == null ? void 0 : primaryVenueMarket.volume) != null ? _a : void 0;
3482
+ var _a2;
3483
+ const resolvedVolume = typeof event.volume === "number" ? event.volume : (_a2 = primaryVenueMarket == null ? void 0 : primaryVenueMarket.volume) != null ? _a2 : void 0;
2060
3484
  if (typeof resolvedVolume !== "number")
2061
3485
  return "";
2062
3486
  return `${config.formatCompactCurrency(resolvedVolume)} ${labels.eventItemDetails.volumeSuffix}`;
2063
3487
  }, [config, event.volume, labels.eventItemDetails.volumeSuffix, primaryVenueMarket == null ? void 0 : primaryVenueMarket.volume]);
2064
3488
  if (!primaryVenueMarket || !selectedOutcomeLabel) {
2065
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(EventListItemDetailsUnavailableState, { classNames, ariaLabel });
3489
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(EventListItemDetailsUnavailableState, { classNames, ariaLabel });
2066
3490
  }
2067
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
3491
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
2068
3492
  Card,
2069
3493
  {
2070
3494
  className: cn(detailsBaseCardClassName, classNames == null ? void 0 : classNames.root),
2071
3495
  "aria-label": ariaLabel != null ? ariaLabel : resolvedTitle,
2072
3496
  children: [
2073
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
3497
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
2074
3498
  "div",
2075
3499
  {
2076
3500
  className: cn(
@@ -2079,7 +3503,7 @@ var EventListItemDetailsContent = ({
2079
3503
  classNames == null ? void 0 : classNames.header
2080
3504
  ),
2081
3505
  children: [
2082
- resolvedImage ? /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3506
+ resolvedImage ? /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2083
3507
  "img",
2084
3508
  {
2085
3509
  src: resolvedImage,
@@ -2087,8 +3511,8 @@ var EventListItemDetailsContent = ({
2087
3511
  className: "size-10 rounded-agg-lg object-cover md:size-[60px]"
2088
3512
  }
2089
3513
  ) : null,
2090
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "flex min-w-0 flex-1 flex-col gap-3", children: [
2091
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3514
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: "flex min-w-0 flex-1 flex-col gap-3", children: [
3515
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2092
3516
  Typography,
2093
3517
  {
2094
3518
  variant: "body-strong",
@@ -2100,7 +3524,7 @@ var EventListItemDetailsContent = ({
2100
3524
  children: resolvedTitle
2101
3525
  }
2102
3526
  ),
2103
- outcomeSelectorLabels.length > 2 ? /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3527
+ outcomeSelectorLabels.length > 2 ? /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2104
3528
  "div",
2105
3529
  {
2106
3530
  className: cn(
@@ -2110,7 +3534,7 @@ var EventListItemDetailsContent = ({
2110
3534
  children: outcomeSelectorLabels.map((outcomeSelectorLabel) => {
2111
3535
  const isActive = outcomeSelectorLabel === selectedOutcomeLabel;
2112
3536
  const displayLabel = isDateLikeLabel(outcomeSelectorLabel) ? formatDateLabel(outcomeSelectorLabel) : outcomeSelectorLabel;
2113
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3537
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2114
3538
  Button,
2115
3539
  {
2116
3540
  size: "small",
@@ -2133,12 +3557,12 @@ var EventListItemDetailsContent = ({
2133
3557
  ]
2134
3558
  }
2135
3559
  ),
2136
- detailsStats && detailsStats.length > 0 ? /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: cn("flex flex-wrap items-start gap-4 md:gap-6", classNames == null ? void 0 : classNames.headerStats), children: detailsStats.map((statItem) => {
3560
+ detailsStats && detailsStats.length > 0 ? /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: cn("flex flex-wrap items-start gap-4 md:gap-6", classNames == null ? void 0 : classNames.headerStats), children: detailsStats.map((statItem) => {
2137
3561
  const deltaClassName = statItem.deltaTone === "positive" ? "text-agg-success!" : statItem.deltaTone === "negative" ? "text-agg-error!" : "text-agg-muted-foreground";
2138
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "flex flex-col gap-1", children: [
2139
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(Typography, { variant: "caption-caps", className: "text-agg-muted-foreground", children: statItem.label }),
2140
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "flex items-baseline gap-1", children: [
2141
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3562
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: "flex flex-col gap-1", children: [
3563
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(Typography, { variant: "caption-caps", className: "text-agg-muted-foreground", children: statItem.label }),
3564
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: "flex items-baseline gap-1", children: [
3565
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2142
3566
  Typography,
2143
3567
  {
2144
3568
  variant: "body",
@@ -2146,14 +3570,15 @@ var EventListItemDetailsContent = ({
2146
3570
  children: statItem.value
2147
3571
  }
2148
3572
  ),
2149
- statItem.delta ? /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(Typography, { variant: "label", className: cn(deltaClassName), children: statItem.delta }) : null
3573
+ statItem.delta ? /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(Typography, { variant: "label", className: cn(deltaClassName), children: statItem.delta }) : null
2150
3574
  ] })
2151
3575
  ] }, `${statItem.label}-${statItem.value}`);
2152
3576
  }) }) : null,
2153
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3577
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2154
3578
  EventListItemDetailsGraphSection,
2155
3579
  {
2156
3580
  venueMarkets,
3581
+ canonicalMarketId: (_b = (_a = event.markets) == null ? void 0 : _a[0]) == null ? void 0 : _b.id,
2157
3582
  selectedOutcomeLabel,
2158
3583
  onSelectedOutcomeLabelChange: setSelectedOutcomeLabel,
2159
3584
  switchLabels,
@@ -2165,11 +3590,11 @@ var EventListItemDetailsContent = ({
2165
3590
  selectedTimeRange
2166
3591
  }
2167
3592
  ),
2168
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: cn("flex flex-wrap items-center justify-between gap-4", classNames == null ? void 0 : classNames.footer), children: [
2169
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(Typography, { variant: "label", className: "text-agg-muted-foreground", children: volumeLabel || "-" }),
2170
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: cn("flex items-center gap-2 md:gap-3", classNames == null ? void 0 : classNames.timeRange), children: eventListItemDetailsTimeRanges.map((timeRange) => {
3593
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: cn("flex flex-wrap items-center justify-between gap-4", classNames == null ? void 0 : classNames.footer), children: [
3594
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(Typography, { variant: "label", className: "text-agg-muted-foreground", children: volumeLabel || "-" }),
3595
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: cn("flex items-center gap-2 md:gap-3", classNames == null ? void 0 : classNames.timeRange), children: eventListItemDetailsTimeRanges.map((timeRange) => {
2171
3596
  const isActive = timeRange === selectedTimeRange;
2172
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3597
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2173
3598
  Button,
2174
3599
  {
2175
3600
  size: "small",
@@ -2200,6 +3625,7 @@ var EventListItemDetailsByEventId = (_a) => {
2200
3625
  ]);
2201
3626
  const {
2202
3627
  event: fetchedEvent,
3628
+ error,
2203
3629
  isError,
2204
3630
  isLoading
2205
3631
  } = (0, import_hooks13.useEvent)(eventId, {
@@ -2209,7 +3635,7 @@ var EventListItemDetailsByEventId = (_a) => {
2209
3635
  return resolveEventListItemEvent(fetchedEvent);
2210
3636
  }, [fetchedEvent]);
2211
3637
  if (!eventId) {
2212
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3638
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2213
3639
  EventListItemDetailsUnavailableState,
2214
3640
  {
2215
3641
  classNames: rest.classNames,
@@ -2218,13 +3644,16 @@ var EventListItemDetailsByEventId = (_a) => {
2218
3644
  );
2219
3645
  }
2220
3646
  if (isLoading) {
2221
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(EventListItemDetailsLoadingState, { classNames: rest.classNames, ariaLabel: rest.ariaLabel });
3647
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(EventListItemDetailsLoadingState, { classNames: rest.classNames, ariaLabel: rest.ariaLabel });
3648
+ }
3649
+ if (isErrorWithStatus(error, 404)) {
3650
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(EventListItemDetailsNotFoundState, { classNames: rest.classNames, ariaLabel: rest.ariaLabel });
2222
3651
  }
2223
- if (!resolvedEvent && !isError) {
2224
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(EventListItemDetailsLoadingState, { classNames: rest.classNames, ariaLabel: rest.ariaLabel });
3652
+ if (!fetchedEvent && !isError) {
3653
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(EventListItemDetailsLoadingState, { classNames: rest.classNames, ariaLabel: rest.ariaLabel });
2225
3654
  }
2226
3655
  if (!resolvedEvent) {
2227
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3656
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2228
3657
  EventListItemDetailsUnavailableState,
2229
3658
  {
2230
3659
  classNames: rest.classNames,
@@ -2232,15 +3661,15 @@ var EventListItemDetailsByEventId = (_a) => {
2232
3661
  }
2233
3662
  );
2234
3663
  }
2235
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(EventListItemDetailsContent, __spreadValues({ event: resolvedEvent }, rest));
3664
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(EventListItemDetailsContent, __spreadValues({ event: resolvedEvent }, rest));
2236
3665
  };
2237
3666
  var EventListItemDetails = (props) => {
2238
3667
  if (props.isLoading) {
2239
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(EventListItemDetailsLoadingState, { classNames: props.classNames, ariaLabel: props.ariaLabel });
3668
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(EventListItemDetailsLoadingState, { classNames: props.classNames, ariaLabel: props.ariaLabel });
2240
3669
  }
2241
3670
  if ("event" in props && props.event) {
2242
3671
  const _a = props, { event } = _a, rest = __objRest(_a, ["event"]);
2243
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(EventListItemDetailsContent, __spreadValues({ event }, rest));
3672
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(EventListItemDetailsContent, __spreadValues({ event }, rest));
2244
3673
  }
2245
3674
  if ("eventId" in props && typeof props.eventId === "string") {
2246
3675
  const {
@@ -2265,9 +3694,9 @@ var EventListItemDetails = (props) => {
2265
3694
  ariaLabel: ariaLabelOverride,
2266
3695
  defaultTimeRange: defaultTimeRangeOverride
2267
3696
  };
2268
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(EventListItemDetailsByEventId, __spreadValues({}, byEventIdProps));
3697
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(EventListItemDetailsByEventId, __spreadValues({}, byEventIdProps));
2269
3698
  }
2270
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
3699
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2271
3700
  EventListItemDetailsUnavailableState,
2272
3701
  {
2273
3702
  classNames: props.classNames,