@octavius2929-personal/design-system 1.4.0 → 1.5.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.
package/dist/index.js CHANGED
@@ -813,42 +813,109 @@ var Divider = forwardRef5(function Divider2({ vertical: vertical2, label: label8
813
813
  });
814
814
 
815
815
  // src/components/avatar/index.tsx
816
- import { forwardRef as forwardRef6 } from "react";
816
+ import { forwardRef as forwardRef6, useState as useState3 } from "react";
817
817
 
818
818
  // src/components/avatar/use-styles.ts
819
819
  import { useMemo as useMemo9 } from "react";
820
820
 
821
821
  // src/components/avatar/use-styles.css.ts
822
+ var dot = "use-styles_dot__1mn1rmu8";
823
+ var dotSize = { sm: "use-styles_dotSize_sm__1mn1rmu9", md: "use-styles_dotSize_md__1mn1rmua", lg: "use-styles_dotSize_lg__1mn1rmub" };
824
+ var dotTone = { online: "use-styles_dotTone_online__1mn1rmuc", away: "use-styles_dotTone_away__1mn1rmud", busy: "use-styles_dotTone_busy__1mn1rmue", offline: "use-styles_dotTone_offline__1mn1rmuf" };
825
+ var image = "use-styles_image__1mn1rmu2";
826
+ var mark = "use-styles_mark__1mn1rmug";
827
+ var markShape = { online: "use-styles_markShape_online__1mn1rmuh", busy: "use-styles_markShape_busy__1mn1rmui", away: "use-styles_markShape_away__1mn1rmuj", offline: "use-styles_markShape_offline__1mn1rmuk" };
822
828
  var root3 = "use-styles_root__1mn1rmu0";
823
- var size2 = { sm: "use-styles_size_sm__1mn1rmu1", md: "use-styles_size_md__1mn1rmu2", lg: "use-styles_size_lg__1mn1rmu3" };
824
- var variant = { "default": "use-styles_variant_default__1mn1rmu4", filled: "use-styles_variant_filled__1mn1rmu5" };
829
+ var size2 = { sm: "use-styles_size_sm__1mn1rmu3", md: "use-styles_size_md__1mn1rmu4", lg: "use-styles_size_lg__1mn1rmu5" };
830
+ var statusText = "surfaces_srOnly__1qa7atn0";
831
+ var variant = { "default": "use-styles_variant_default__1mn1rmu6", filled: "use-styles_variant_filled__1mn1rmu7" };
832
+ var visual = "use-styles_visual__1mn1rmu1";
825
833
 
826
834
  // src/components/avatar/use-styles.ts
827
- function useStyles6({
828
- size: size3 = "md",
829
- filled,
830
- className
831
- }) {
835
+ function useStyles6({ size: size3 = "md", filled, status, className }) {
832
836
  const { themeClass } = useTheme();
833
837
  const root25 = useMemo9(
834
- () => [
835
- themeClass,
836
- root3,
837
- size2[size3],
838
- filled ? variant.filled : variant.default,
839
- className
840
- ].filter(Boolean).join(" "),
841
- [themeClass, size3, filled, className]
838
+ () => [themeClass, root3, size2[size3]].filter(Boolean).join(" "),
839
+ [themeClass, size3]
842
840
  );
843
- return { root: root25 };
841
+ const visual2 = useMemo9(
842
+ () => [visual, filled ? variant.filled : variant.default, className].filter(Boolean).join(" "),
843
+ [filled, className]
844
+ );
845
+ const dot4 = useMemo9(
846
+ () => status ? [dot, dotSize[size3], dotTone[status]].filter(Boolean).join(" ") : "",
847
+ [status, size3]
848
+ );
849
+ const mark2 = useMemo9(
850
+ () => status ? [mark, markShape[status]].filter(Boolean).join(" ") : "",
851
+ [status]
852
+ );
853
+ return { root: root25, visual: visual2, image, dot: dot4, mark: mark2, statusText };
844
854
  }
845
855
 
846
856
  // src/components/avatar/index.tsx
847
- import { jsx as jsx8 } from "react/jsx-runtime";
848
- var Avatar = forwardRef6(function Avatar2({ size: size3, filled, className, children, testId, ...rest }, ref) {
849
- const { root: root25 } = useStyles6({ size: size3, filled, className });
850
- const { testId: dataTestId } = useTestId("media", testId);
851
- return /* @__PURE__ */ jsx8("span", { ref, className: root25, "data-testid": dataTestId, ...rest, children });
857
+ import { jsx as jsx8, jsxs as jsxs3 } from "react/jsx-runtime";
858
+ function getInitials(name) {
859
+ const words = name?.trim().split(/\s+/).filter(Boolean) ?? [];
860
+ if (words.length === 0) return "";
861
+ const firstWord = words[0] ?? "";
862
+ const firstLetter = Array.from(firstWord)[0] ?? "";
863
+ if (words.length === 1) return firstLetter.toLocaleUpperCase();
864
+ const secondWord = words[1] ?? "";
865
+ const secondLetter = Array.from(secondWord)[0] ?? "";
866
+ return (firstLetter + secondLetter).toLocaleUpperCase();
867
+ }
868
+ var statusLabel = {
869
+ online: "Online",
870
+ away: "Away",
871
+ busy: "Busy",
872
+ offline: "Offline"
873
+ };
874
+ var Avatar = forwardRef6(function Avatar2({
875
+ size: size3,
876
+ filled,
877
+ src,
878
+ alt,
879
+ name,
880
+ status,
881
+ decorative = false,
882
+ className,
883
+ children,
884
+ testId,
885
+ ...rest
886
+ }, ref) {
887
+ const [imgFailed, setImgFailed] = useState3(false);
888
+ const [lastSrc, setLastSrc] = useState3(src);
889
+ if (src !== lastSrc) {
890
+ setLastSrc(src);
891
+ setImgFailed(false);
892
+ }
893
+ const { root: root25, visual: visual2, image: image2, dot: dot4, mark: mark2, statusText: statusText2 } = useStyles6({
894
+ size: size3,
895
+ filled,
896
+ status,
897
+ className
898
+ });
899
+ const { testId: dataTestId, slot } = useTestId("media", testId);
900
+ const showImage = Boolean(src) && !imgFailed;
901
+ const accessibleName = alt?.trim() || name?.trim() || void 0;
902
+ const fallback = children ?? getInitials(name);
903
+ const visualA11yProps = decorative ? { "aria-hidden": true } : showImage ? {} : accessibleName ? { role: "img", "aria-label": accessibleName } : {};
904
+ return /* @__PURE__ */ jsxs3("span", { ref, className: root25, "data-testid": dataTestId, ...rest, children: [
905
+ /* @__PURE__ */ jsx8("span", { className: visual2, "data-testid": slot("visual"), ...visualA11yProps, children: showImage ? /* @__PURE__ */ jsx8(
906
+ "img",
907
+ {
908
+ src,
909
+ alt: decorative ? "" : accessibleName ?? "",
910
+ className: image2,
911
+ onError: () => setImgFailed(true)
912
+ }
913
+ ) : fallback }),
914
+ status && /* @__PURE__ */ jsxs3("span", { className: dot4, "data-testid": slot("status"), "data-status": status, children: [
915
+ /* @__PURE__ */ jsx8("span", { className: mark2, "aria-hidden": "true" }),
916
+ /* @__PURE__ */ jsx8("span", { className: statusText2, children: statusLabel[status] })
917
+ ] })
918
+ ] });
852
919
  });
853
920
 
854
921
  // src/components/badge/index.tsx
@@ -858,7 +925,7 @@ import { forwardRef as forwardRef7 } from "react";
858
925
  import { useMemo as useMemo10 } from "react";
859
926
 
860
927
  // src/components/badge/use-styles.css.ts
861
- var dot = "use-styles_dot__1wpei6p1";
928
+ var dot2 = "use-styles_dot__1wpei6p1";
862
929
  var root4 = "use-styles_root__1wpei6p0";
863
930
  var tone2 = { ink: "use-styles_tone_ink__1wpei6p2", accent: "use-styles_tone_accent__1wpei6p3" };
864
931
 
@@ -872,18 +939,18 @@ function useStyles7({
872
939
  () => [themeClass, root4, className].filter(Boolean).join(" "),
873
940
  [themeClass, className]
874
941
  );
875
- const dot3 = useMemo10(() => [dot, tone2[tone4]].join(" "), [tone4]);
876
- return { root: root25, dot: dot3 };
942
+ const dot4 = useMemo10(() => [dot2, tone2[tone4]].join(" "), [tone4]);
943
+ return { root: root25, dot: dot4 };
877
944
  }
878
945
 
879
946
  // src/components/badge/index.tsx
880
- import { jsx as jsx9, jsxs as jsxs3 } from "react/jsx-runtime";
947
+ import { jsx as jsx9, jsxs as jsxs4 } from "react/jsx-runtime";
881
948
  var Badge = forwardRef7(function Badge2({ count, tone: tone4, className, children, testId, ...rest }, ref) {
882
- const { root: root25, dot: dot3 } = useStyles7({ tone: tone4, className });
949
+ const { root: root25, dot: dot4 } = useStyles7({ tone: tone4, className });
883
950
  const { testId: dataTestId, slot } = useTestId("media", testId);
884
- return /* @__PURE__ */ jsxs3("span", { ref, className: root25, "data-testid": dataTestId, ...rest, children: [
951
+ return /* @__PURE__ */ jsxs4("span", { ref, className: root25, "data-testid": dataTestId, ...rest, children: [
885
952
  children,
886
- count != null && /* @__PURE__ */ jsx9("span", { className: dot3, "data-testid": slot("dot"), children: count })
953
+ count != null && /* @__PURE__ */ jsx9("span", { className: dot4, "data-testid": slot("dot"), children: count })
887
954
  ] });
888
955
  });
889
956
 
@@ -971,9 +1038,9 @@ var Progress = forwardRef8(function Progress2({ variant: variant2 = "linear", va
971
1038
  import { forwardRef as forwardRef9 } from "react";
972
1039
 
973
1040
  // src/components/icons/x/index.tsx
974
- import { jsx as jsx11, jsxs as jsxs4 } from "react/jsx-runtime";
1041
+ import { jsx as jsx11, jsxs as jsxs5 } from "react/jsx-runtime";
975
1042
  function XIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
976
- return /* @__PURE__ */ jsxs4(
1043
+ return /* @__PURE__ */ jsxs5(
977
1044
  "svg",
978
1045
  {
979
1046
  xmlns: "http://www.w3.org/2000/svg",
@@ -1025,7 +1092,7 @@ function useStyles9({
1025
1092
  }
1026
1093
 
1027
1094
  // src/components/chip/index.tsx
1028
- import { jsx as jsx12, jsxs as jsxs5 } from "react/jsx-runtime";
1095
+ import { jsx as jsx12, jsxs as jsxs6 } from "react/jsx-runtime";
1029
1096
  var ICON_SIZE2 = 13;
1030
1097
  var Chip = forwardRef9(function Chip2({ selected: selected4, tone: tone4, onDelete, onClick, startIcon: StartIcon, children, testId, ...rest }, ref) {
1031
1098
  const clickable2 = Boolean(onClick);
@@ -1035,7 +1102,7 @@ var Chip = forwardRef9(function Chip2({ selected: selected4, tone: tone4, onDele
1035
1102
  event.stopPropagation();
1036
1103
  onDelete?.();
1037
1104
  };
1038
- return /* @__PURE__ */ jsxs5(
1105
+ return /* @__PURE__ */ jsxs6(
1039
1106
  "span",
1040
1107
  {
1041
1108
  ref,
@@ -1114,7 +1181,7 @@ function useStyles10({ checked, disabled: disabled4 }) {
1114
1181
  }
1115
1182
 
1116
1183
  // src/components/checkbox/index.tsx
1117
- import { jsx as jsx14, jsxs as jsxs6 } from "react/jsx-runtime";
1184
+ import { jsx as jsx14, jsxs as jsxs7 } from "react/jsx-runtime";
1118
1185
  var Checkbox = forwardRef10(function Checkbox2({ checked = false, onChange, label: label8, disabled: disabled4 = false, id, testId, ...rest }, ref) {
1119
1186
  const { root: root25, input: input6, box: box2, check: check2 } = useStyles10({ checked, disabled: disabled4 });
1120
1187
  const { testId: dataTestId } = useTestId("toggle", testId);
@@ -1122,7 +1189,7 @@ var Checkbox = forwardRef10(function Checkbox2({ checked = false, onChange, labe
1122
1189
  if (disabled4) return;
1123
1190
  onChange?.(e.target.checked);
1124
1191
  };
1125
- return /* @__PURE__ */ jsxs6("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
1192
+ return /* @__PURE__ */ jsxs7("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
1126
1193
  /* @__PURE__ */ jsx14(
1127
1194
  "input",
1128
1195
  {
@@ -1150,7 +1217,7 @@ import { useMemo as useMemo14 } from "react";
1150
1217
  // src/components/radio/use-styles.css.ts
1151
1218
  var circle = "use-styles_circle__vy61b42";
1152
1219
  var disabled2 = "use-styles_disabled__vy61b41";
1153
- var dot2 = "use-styles_dot__vy61b43";
1220
+ var dot3 = "use-styles_dot__vy61b43";
1154
1221
  var input2 = "surfaces_srOnly__1qa7atn0";
1155
1222
  var label2 = "use-styles_label__vy61b44";
1156
1223
  var root7 = "use-styles_root__vy61b40";
@@ -1169,17 +1236,17 @@ function useStyles11({
1169
1236
  root: root25,
1170
1237
  input: input2,
1171
1238
  circle,
1172
- dot: dot2,
1239
+ dot: dot3,
1173
1240
  label: label2
1174
1241
  };
1175
1242
  }
1176
1243
 
1177
1244
  // src/components/radio/index.tsx
1178
- import { jsx as jsx15, jsxs as jsxs7 } from "react/jsx-runtime";
1245
+ import { jsx as jsx15, jsxs as jsxs8 } from "react/jsx-runtime";
1179
1246
  var Radio = forwardRef11(function Radio2({ checked, onChange, label: label8, name, value, disabled: disabled4, testId, ...rest }, ref) {
1180
- const { root: root25, input: input6, circle: circle2, dot: dot3, label: labelClass } = useStyles11({ disabled: disabled4 });
1247
+ const { root: root25, input: input6, circle: circle2, dot: dot4, label: labelClass } = useStyles11({ disabled: disabled4 });
1181
1248
  const { testId: dataTestId } = useTestId("toggle", testId);
1182
- return /* @__PURE__ */ jsxs7("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
1249
+ return /* @__PURE__ */ jsxs8("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
1183
1250
  /* @__PURE__ */ jsx15(
1184
1251
  "input",
1185
1252
  {
@@ -1194,7 +1261,7 @@ var Radio = forwardRef11(function Radio2({ checked, onChange, label: label8, nam
1194
1261
  ...rest
1195
1262
  }
1196
1263
  ),
1197
- /* @__PURE__ */ jsx15("span", { className: circle2, children: checked && /* @__PURE__ */ jsx15("span", { className: dot3 }) }),
1264
+ /* @__PURE__ */ jsx15("span", { className: circle2, children: checked && /* @__PURE__ */ jsx15("span", { className: dot4 }) }),
1198
1265
  label8 != null && /* @__PURE__ */ jsx15("span", { className: labelClass, children: label8 })
1199
1266
  ] });
1200
1267
  });
@@ -1226,7 +1293,7 @@ function useStyles12({
1226
1293
  }
1227
1294
 
1228
1295
  // src/components/radio-group/index.tsx
1229
- import { jsx as jsx16, jsxs as jsxs8 } from "react/jsx-runtime";
1296
+ import { jsx as jsx16, jsxs as jsxs9 } from "react/jsx-runtime";
1230
1297
  var RadioGroup = forwardRef12(function RadioGroup2({
1231
1298
  options,
1232
1299
  value,
@@ -1299,7 +1366,7 @@ var RadioGroup = forwardRef12(function RadioGroup2({
1299
1366
  break;
1300
1367
  }
1301
1368
  };
1302
- return /* @__PURE__ */ jsxs8(
1369
+ return /* @__PURE__ */ jsxs9(
1303
1370
  "div",
1304
1371
  {
1305
1372
  ref,
@@ -1375,11 +1442,11 @@ function useStyles13({ checked }) {
1375
1442
  }
1376
1443
 
1377
1444
  // src/components/switch/index.tsx
1378
- import { jsx as jsx17, jsxs as jsxs9 } from "react/jsx-runtime";
1445
+ import { jsx as jsx17, jsxs as jsxs10 } from "react/jsx-runtime";
1379
1446
  var Switch = forwardRef13(function Switch2({ checked = false, onChange, label: label8, disabled: disabled4, testId, ...rest }, ref) {
1380
1447
  const { root: root25, input: input6, track: track4, knob: knob2, label: labelClass } = useStyles13({ checked });
1381
1448
  const { testId: dataTestId } = useTestId("toggle", testId);
1382
- return /* @__PURE__ */ jsxs9("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
1449
+ return /* @__PURE__ */ jsxs10("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
1383
1450
  /* @__PURE__ */ jsx17(
1384
1451
  "input",
1385
1452
  {
@@ -1403,7 +1470,11 @@ var Switch = forwardRef13(function Switch2({ checked = false, onChange, label: l
1403
1470
  });
1404
1471
 
1405
1472
  // src/components/text-field/index.tsx
1406
- import { forwardRef as forwardRef15 } from "react";
1473
+ import {
1474
+ forwardRef as forwardRef15,
1475
+ useImperativeHandle,
1476
+ useRef as useRef3
1477
+ } from "react";
1407
1478
 
1408
1479
  // src/components/base-field/index.tsx
1409
1480
  import { forwardRef as forwardRef14, useId as useId2 } from "react";
@@ -1452,7 +1523,7 @@ function useStyles14({ error, hasStartIcon, hasTrailing, className }) {
1452
1523
  }
1453
1524
 
1454
1525
  // src/components/base-field/index.tsx
1455
- import { jsx as jsx18, jsxs as jsxs10 } from "react/jsx-runtime";
1526
+ import { jsx as jsx18, jsxs as jsxs11 } from "react/jsx-runtime";
1456
1527
  var BaseField = forwardRef14(function BaseField2({ label: label8, help, error, startIcon: StartIcon, trailing: trailing2, id, className, testId, children }, ref) {
1457
1528
  const autoId = useId2();
1458
1529
  const controlId = id ?? autoId;
@@ -1475,9 +1546,9 @@ var BaseField = forwardRef14(function BaseField2({ label: label8, help, error, s
1475
1546
  "aria-invalid": hasError ? true : void 0,
1476
1547
  "data-testid": slot("input")
1477
1548
  };
1478
- return /* @__PURE__ */ jsxs10("div", { className: classes.root, "data-testid": rootTestId, "data-state": states({ error: hasError }), children: [
1549
+ return /* @__PURE__ */ jsxs11("div", { className: classes.root, "data-testid": rootTestId, "data-state": states({ error: hasError }), children: [
1479
1550
  label8 != null && /* @__PURE__ */ jsx18("label", { htmlFor: controlId, className: classes.labelText, "data-testid": slot("label"), children: label8 }),
1480
- /* @__PURE__ */ jsxs10("div", { className: classes.field, children: [
1551
+ /* @__PURE__ */ jsxs11("div", { className: classes.field, children: [
1481
1552
  StartIcon != null && /* @__PURE__ */ jsx18("span", { className: classes.startIconSlot, children: /* @__PURE__ */ jsx18(StartIcon, { size: 18 }) }),
1482
1553
  children(control),
1483
1554
  trailing2 != null && /* @__PURE__ */ jsx18("span", { className: classes.trailingSlot, children: trailing2 })
@@ -1498,67 +1569,72 @@ var BaseField = forwardRef14(function BaseField2({ label: label8, help, error, s
1498
1569
 
1499
1570
  // src/components/text-field/index.tsx
1500
1571
  import { jsx as jsx19 } from "react/jsx-runtime";
1501
- var TextField = forwardRef15(function TextField2({
1502
- label: label8,
1503
- help,
1504
- error,
1505
- startIcon,
1506
- multiline,
1507
- rows,
1508
- type = "text",
1509
- onChange,
1510
- className,
1511
- id,
1512
- testId,
1513
- ...rest
1514
- }, ref) {
1515
- const rawTestId = rest["data-testid"];
1516
- return /* @__PURE__ */ jsx19(
1517
- BaseField,
1518
- {
1572
+ var TextField = forwardRef15(
1573
+ function TextField2({
1574
+ label: label8,
1575
+ help,
1576
+ error,
1577
+ startIcon,
1578
+ multiline,
1579
+ rows,
1580
+ type = "text",
1581
+ onChange,
1582
+ className,
1583
+ id,
1584
+ testId,
1585
+ ...rest
1586
+ }, ref) {
1587
+ const inputRef = useRef3(null);
1588
+ const textareaRef = useRef3(null);
1589
+ useImperativeHandle(
1519
1590
  ref,
1520
- label: label8,
1521
- help,
1522
- error,
1523
- startIcon,
1524
- id,
1525
- className,
1526
- testId,
1527
- children: ({ ref: controlRef, ...control }) => multiline ? (
1528
- // En multiline el control es un <textarea>: no reenviamos `controlRef` porque el
1529
- // tipo público de la ref es HTMLInputElement (la ref aplica solo a la rama <input>).
1530
- /* @__PURE__ */ jsx19(
1591
+ () => multiline ? textareaRef.current : inputRef.current,
1592
+ [multiline]
1593
+ );
1594
+ const rawTestId = rest["data-testid"];
1595
+ return /* @__PURE__ */ jsx19(
1596
+ BaseField,
1597
+ {
1598
+ label: label8,
1599
+ help,
1600
+ error,
1601
+ startIcon,
1602
+ id,
1603
+ className,
1604
+ testId,
1605
+ children: (control) => multiline ? /* @__PURE__ */ jsx19(
1531
1606
  "textarea",
1532
1607
  {
1533
1608
  ...rest,
1534
1609
  ...control,
1535
1610
  "data-testid": rawTestId ?? control["data-testid"],
1611
+ ref: textareaRef,
1536
1612
  rows: rows ?? 4,
1537
1613
  onChange: (e) => onChange?.(e.target.value)
1538
1614
  }
1615
+ ) : /* @__PURE__ */ jsx19(
1616
+ "input",
1617
+ {
1618
+ ...rest,
1619
+ ...control,
1620
+ "data-testid": rawTestId ?? control["data-testid"],
1621
+ ref: inputRef,
1622
+ type,
1623
+ onChange: (e) => onChange?.(e.target.value)
1624
+ }
1539
1625
  )
1540
- ) : /* @__PURE__ */ jsx19(
1541
- "input",
1542
- {
1543
- ...rest,
1544
- ...control,
1545
- "data-testid": rawTestId ?? control["data-testid"],
1546
- ref: controlRef,
1547
- type,
1548
- onChange: (e) => onChange?.(e.target.value)
1549
- }
1550
- )
1551
- }
1552
- );
1553
- });
1626
+ }
1627
+ );
1628
+ }
1629
+ );
1554
1630
 
1555
1631
  // src/components/password-field/index.tsx
1556
- import { forwardRef as forwardRef16, useState as useState3 } from "react";
1632
+ import { forwardRef as forwardRef16, useState as useState4 } from "react";
1557
1633
 
1558
1634
  // src/components/icons/eye/index.tsx
1559
- import { jsx as jsx20, jsxs as jsxs11 } from "react/jsx-runtime";
1635
+ import { jsx as jsx20, jsxs as jsxs12 } from "react/jsx-runtime";
1560
1636
  function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1561
- return /* @__PURE__ */ jsxs11(
1637
+ return /* @__PURE__ */ jsxs12(
1562
1638
  "svg",
1563
1639
  {
1564
1640
  xmlns: "http://www.w3.org/2000/svg",
@@ -1581,9 +1657,9 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1581
1657
  }
1582
1658
 
1583
1659
  // src/components/icons/eye-off/index.tsx
1584
- import { jsx as jsx21, jsxs as jsxs12 } from "react/jsx-runtime";
1660
+ import { jsx as jsx21, jsxs as jsxs13 } from "react/jsx-runtime";
1585
1661
  function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1586
- return /* @__PURE__ */ jsxs12(
1662
+ return /* @__PURE__ */ jsxs13(
1587
1663
  "svg",
1588
1664
  {
1589
1665
  xmlns: "http://www.w3.org/2000/svg",
@@ -1622,7 +1698,7 @@ function useStyles15() {
1622
1698
  import { jsx as jsx22 } from "react/jsx-runtime";
1623
1699
  var PasswordField = forwardRef16(
1624
1700
  function PasswordField2({ label: label8, help, error, startIcon, onChange, id, className, ...rest }, ref) {
1625
- const [reveal, setReveal] = useState3(false);
1701
+ const [reveal, setReveal] = useState4(false);
1626
1702
  const classes = useStyles15();
1627
1703
  const handleChange = (e) => {
1628
1704
  onChange?.(e.target.value);
@@ -1668,7 +1744,7 @@ var PasswordField = forwardRef16(
1668
1744
  );
1669
1745
 
1670
1746
  // src/components/money-field/index.tsx
1671
- import { forwardRef as forwardRef17, useMemo as useMemo19, useState as useState4 } from "react";
1747
+ import { forwardRef as forwardRef17, useMemo as useMemo19, useState as useState5 } from "react";
1672
1748
  import { jsx as jsx23 } from "react/jsx-runtime";
1673
1749
  function parseAmount(raw) {
1674
1750
  const cleaned = raw.replace(/[^0-9.-]/g, "");
@@ -1691,8 +1767,8 @@ var MoneyField = forwardRef17(function MoneyField2({
1691
1767
  onBlur,
1692
1768
  ...rest
1693
1769
  }, ref) {
1694
- const [focused, setFocused] = useState4(false);
1695
- const [draft, setDraft] = useState4("");
1770
+ const [focused, setFocused] = useState5(false);
1771
+ const [draft, setDraft] = useState5("");
1696
1772
  const formatter = useMemo19(
1697
1773
  () => new Intl.NumberFormat(locale, { style: "currency", currency }),
1698
1774
  [locale, currency]
@@ -1839,9 +1915,9 @@ var Card2 = Object.assign(CardRoot, {
1839
1915
  import { forwardRef as forwardRef20 } from "react";
1840
1916
 
1841
1917
  // src/components/icons/circle-check/index.tsx
1842
- import { jsx as jsx26, jsxs as jsxs13 } from "react/jsx-runtime";
1918
+ import { jsx as jsx26, jsxs as jsxs14 } from "react/jsx-runtime";
1843
1919
  function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1844
- return /* @__PURE__ */ jsxs13(
1920
+ return /* @__PURE__ */ jsxs14(
1845
1921
  "svg",
1846
1922
  {
1847
1923
  xmlns: "http://www.w3.org/2000/svg",
@@ -1864,9 +1940,9 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
1864
1940
  }
1865
1941
 
1866
1942
  // src/components/icons/circle-x/index.tsx
1867
- import { jsx as jsx27, jsxs as jsxs14 } from "react/jsx-runtime";
1943
+ import { jsx as jsx27, jsxs as jsxs15 } from "react/jsx-runtime";
1868
1944
  function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1869
- return /* @__PURE__ */ jsxs14(
1945
+ return /* @__PURE__ */ jsxs15(
1870
1946
  "svg",
1871
1947
  {
1872
1948
  xmlns: "http://www.w3.org/2000/svg",
@@ -1890,9 +1966,9 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1890
1966
  }
1891
1967
 
1892
1968
  // src/components/icons/info/index.tsx
1893
- import { jsx as jsx28, jsxs as jsxs15 } from "react/jsx-runtime";
1969
+ import { jsx as jsx28, jsxs as jsxs16 } from "react/jsx-runtime";
1894
1970
  function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1895
- return /* @__PURE__ */ jsxs15(
1971
+ return /* @__PURE__ */ jsxs16(
1896
1972
  "svg",
1897
1973
  {
1898
1974
  xmlns: "http://www.w3.org/2000/svg",
@@ -1916,9 +1992,9 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1916
1992
  }
1917
1993
 
1918
1994
  // src/components/icons/triangle-alert/index.tsx
1919
- import { jsx as jsx29, jsxs as jsxs16 } from "react/jsx-runtime";
1995
+ import { jsx as jsx29, jsxs as jsxs17 } from "react/jsx-runtime";
1920
1996
  function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1921
- return /* @__PURE__ */ jsxs16(
1997
+ return /* @__PURE__ */ jsxs17(
1922
1998
  "svg",
1923
1999
  {
1924
2000
  xmlns: "http://www.w3.org/2000/svg",
@@ -1968,7 +2044,7 @@ function useStyles18({
1968
2044
  }
1969
2045
 
1970
2046
  // src/components/alert/index.tsx
1971
- import { jsx as jsx30, jsxs as jsxs17 } from "react/jsx-runtime";
2047
+ import { jsx as jsx30, jsxs as jsxs18 } from "react/jsx-runtime";
1972
2048
  var defaultIcons = {
1973
2049
  info: InfoIcon,
1974
2050
  ok: CircleCheckIcon,
@@ -1985,7 +2061,7 @@ var Alert = forwardRef20(function Alert2({ severity: severity2 = "info", title,
1985
2061
  const styles = useStyles18({ severity: severity2, className });
1986
2062
  const { testId: dataTestId, slot } = useTestId("feedback", testId);
1987
2063
  const IconComponent = icon ?? defaultIcons[severity2];
1988
- return /* @__PURE__ */ jsxs17(
2064
+ return /* @__PURE__ */ jsxs18(
1989
2065
  "div",
1990
2066
  {
1991
2067
  ref,
@@ -1995,7 +2071,7 @@ var Alert = forwardRef20(function Alert2({ severity: severity2 = "info", title,
1995
2071
  ...rest,
1996
2072
  children: [
1997
2073
  /* @__PURE__ */ jsx30("span", { className: styles.iconSlot, "data-testid": slot("icon"), children: /* @__PURE__ */ jsx30(IconComponent, {}) }),
1998
- /* @__PURE__ */ jsxs17("div", { className: styles.content, "data-testid": slot("content"), children: [
2074
+ /* @__PURE__ */ jsxs18("div", { className: styles.content, "data-testid": slot("content"), children: [
1999
2075
  title != null && /* @__PURE__ */ jsx30(Typography, { variant: "h4", children: title }),
2000
2076
  children != null && /* @__PURE__ */ jsx30(Typography, { variant: "body", color: "muted", children })
2001
2077
  ] })
@@ -2010,8 +2086,8 @@ import {
2010
2086
  forwardRef as forwardRef21,
2011
2087
  useEffect as useEffect4,
2012
2088
  useId as useId3,
2013
- useRef as useRef3,
2014
- useState as useState5
2089
+ useRef as useRef4,
2090
+ useState as useState6
2015
2091
  } from "react";
2016
2092
 
2017
2093
  // src/components/tooltip/use-styles.ts
@@ -2039,14 +2115,14 @@ function useStyles19({
2039
2115
  }
2040
2116
 
2041
2117
  // src/components/tooltip/index.tsx
2042
- import { jsx as jsx31, jsxs as jsxs18 } from "react/jsx-runtime";
2118
+ import { jsx as jsx31, jsxs as jsxs19 } from "react/jsx-runtime";
2043
2119
  var HIDE_DELAY = 120;
2044
2120
  var Tooltip = forwardRef21(function Tooltip2({ label: label8, children, placement: placement2, testId }, ref) {
2045
- const [open, setOpen] = useState5(false);
2121
+ const [open, setOpen] = useState6(false);
2046
2122
  const tooltipId = useId3();
2047
2123
  const { wrapper: wrapper4, bubble: bubble2 } = useStyles19({ placement: placement2 });
2048
2124
  const { testId: dataTestId, slot } = useTestId("feedback", testId);
2049
- const hideTimer = useRef3(null);
2125
+ const hideTimer = useRef4(null);
2050
2126
  const clearHide = () => {
2051
2127
  if (hideTimer.current) {
2052
2128
  clearTimeout(hideTimer.current);
@@ -2079,7 +2155,7 @@ var Tooltip = forwardRef21(function Tooltip2({ label: label8, children, placemen
2079
2155
  const previousDescribedBy = children.props["aria-describedby"];
2080
2156
  const describedBy = open ? [previousDescribedBy, tooltipId].filter(Boolean).join(" ") : previousDescribedBy;
2081
2157
  const trigger2 = cloneElement(children, { "aria-describedby": describedBy });
2082
- return /* @__PURE__ */ jsxs18(
2158
+ return /* @__PURE__ */ jsxs19(
2083
2159
  "span",
2084
2160
  {
2085
2161
  ref,
@@ -2110,7 +2186,7 @@ var Tooltip = forwardRef21(function Tooltip2({ label: label8, children, placemen
2110
2186
  });
2111
2187
 
2112
2188
  // src/components/select/index.tsx
2113
- import { forwardRef as forwardRef22, useEffect as useEffect5, useId as useId4, useRef as useRef4, useState as useState6 } from "react";
2189
+ import { forwardRef as forwardRef22, useEffect as useEffect5, useId as useId4, useRef as useRef5, useState as useState7 } from "react";
2114
2190
 
2115
2191
  // src/components/icons/chevron-down/index.tsx
2116
2192
  import { jsx as jsx32 } from "react/jsx-runtime";
@@ -2169,7 +2245,7 @@ function useStyles20({
2169
2245
  }
2170
2246
 
2171
2247
  // src/components/select/index.tsx
2172
- import { jsx as jsx33, jsxs as jsxs19 } from "react/jsx-runtime";
2248
+ import { jsx as jsx33, jsxs as jsxs20 } from "react/jsx-runtime";
2173
2249
  var Select = forwardRef22(function Select2({
2174
2250
  options,
2175
2251
  value,
@@ -2181,9 +2257,9 @@ var Select = forwardRef22(function Select2({
2181
2257
  "aria-labelledby": ariaLabelledBy,
2182
2258
  ...rest
2183
2259
  }, ref) {
2184
- const [open, setOpen] = useState6(false);
2185
- const [activeIndex, setActiveIndex] = useState6(0);
2186
- const rootRef = useRef4(null);
2260
+ const [open, setOpen] = useState7(false);
2261
+ const [activeIndex, setActiveIndex] = useState7(0);
2262
+ const rootRef = useRef5(null);
2187
2263
  const setRootRef = (node) => {
2188
2264
  rootRef.current = node;
2189
2265
  if (typeof ref === "function") ref(node);
@@ -2262,9 +2338,9 @@ var Select = forwardRef22(function Select2({
2262
2338
  break;
2263
2339
  }
2264
2340
  };
2265
- return /* @__PURE__ */ jsxs19("div", { ref: setRootRef, className: root25, ...rest, children: [
2341
+ return /* @__PURE__ */ jsxs20("div", { ref: setRootRef, className: root25, ...rest, children: [
2266
2342
  label8 && /* @__PURE__ */ jsx33("span", { id: labelId, className: labelClass, children: label8 }),
2267
- /* @__PURE__ */ jsxs19(
2343
+ /* @__PURE__ */ jsxs20(
2268
2344
  "button",
2269
2345
  {
2270
2346
  type: "button",
@@ -2346,7 +2422,7 @@ function useStyles21() {
2346
2422
  }
2347
2423
 
2348
2424
  // src/components/slider/index.tsx
2349
- import { jsx as jsx34, jsxs as jsxs20 } from "react/jsx-runtime";
2425
+ import { jsx as jsx34, jsxs as jsxs21 } from "react/jsx-runtime";
2350
2426
  var Slider = forwardRef23(function Slider2({ value = 0, onChange, min = 0, max = 100, step: step2 = 1, disabled: disabled4, label: label8, ...rest }, ref) {
2351
2427
  const { wrapper: wrapper4, label: labelClass, root: root25, track: track4, range: range2, thumb: thumb2, input: input6 } = useStyles21();
2352
2428
  const span = max - min;
@@ -2355,9 +2431,9 @@ var Slider = forwardRef23(function Slider2({ value = 0, onChange, min = 0, max =
2355
2431
  const handleChange = (e) => {
2356
2432
  onChange?.(Number(e.target.value));
2357
2433
  };
2358
- return /* @__PURE__ */ jsxs20("span", { className: wrapper4, children: [
2434
+ return /* @__PURE__ */ jsxs21("span", { className: wrapper4, children: [
2359
2435
  label8 ? /* @__PURE__ */ jsx34("span", { className: labelClass, children: label8 }) : null,
2360
- /* @__PURE__ */ jsxs20("span", { className: root25, children: [
2436
+ /* @__PURE__ */ jsxs21("span", { className: root25, children: [
2361
2437
  /* @__PURE__ */ jsx34("span", { className: track4 }),
2362
2438
  /* @__PURE__ */ jsx34("span", { className: range2, style: { width: `${clamped}%` } }),
2363
2439
  /* @__PURE__ */ jsx34(
@@ -2381,7 +2457,7 @@ var Slider = forwardRef23(function Slider2({ value = 0, onChange, min = 0, max =
2381
2457
  });
2382
2458
 
2383
2459
  // src/components/accordion/index.tsx
2384
- import { forwardRef as forwardRef24, useState as useState7 } from "react";
2460
+ import { forwardRef as forwardRef24, useState as useState8 } from "react";
2385
2461
 
2386
2462
  // src/components/accordion/use-styles.ts
2387
2463
  import { useMemo as useMemo26 } from "react";
@@ -2410,9 +2486,9 @@ function useStyles22({ className }) {
2410
2486
  }
2411
2487
 
2412
2488
  // src/components/accordion/index.tsx
2413
- import { jsx as jsx35, jsxs as jsxs21 } from "react/jsx-runtime";
2489
+ import { jsx as jsx35, jsxs as jsxs22 } from "react/jsx-runtime";
2414
2490
  var Accordion = forwardRef24(function Accordion2({ items, multiple = false, defaultOpen = [], className, testId }, ref) {
2415
- const [open, setOpen] = useState7(defaultOpen);
2491
+ const [open, setOpen] = useState8(defaultOpen);
2416
2492
  const { root: root25, item: item3, header: header3, chevronFor, panel: panel3 } = useStyles22({ className });
2417
2493
  const { testId: dataTestId, slot } = useTestId("layout", testId);
2418
2494
  const toggle = (id) => {
@@ -2427,14 +2503,14 @@ var Accordion = forwardRef24(function Accordion2({ items, multiple = false, defa
2427
2503
  const panelId = `accordion-panel-${it.id}`;
2428
2504
  const headerId = `accordion-header-${it.id}`;
2429
2505
  const itemSlot = slot(`item-${it.id}`);
2430
- return /* @__PURE__ */ jsxs21(
2506
+ return /* @__PURE__ */ jsxs22(
2431
2507
  "div",
2432
2508
  {
2433
2509
  className: item3,
2434
2510
  "data-testid": itemSlot,
2435
2511
  "data-state": states({ expanded: isOpen }),
2436
2512
  children: [
2437
- /* @__PURE__ */ jsxs21(
2513
+ /* @__PURE__ */ jsxs22(
2438
2514
  "button",
2439
2515
  {
2440
2516
  type: "button",
@@ -2513,14 +2589,14 @@ function useStyles23({ className }) {
2513
2589
  }
2514
2590
 
2515
2591
  // src/components/breadcrumbs/index.tsx
2516
- import { jsx as jsx37, jsxs as jsxs22 } from "react/jsx-runtime";
2592
+ import { jsx as jsx37, jsxs as jsxs23 } from "react/jsx-runtime";
2517
2593
  var Breadcrumbs = forwardRef25(function Breadcrumbs2({ items, className, testId, ...rest }, ref) {
2518
2594
  const { root: root25, crumb: crumb2, current: current2, separator: separator2 } = useStyles23({ className });
2519
2595
  const { testId: dataTestId, slot } = useTestId("nav", testId);
2520
2596
  return /* @__PURE__ */ jsx37("nav", { ref, "aria-label": "Breadcrumb", className: root25, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
2521
2597
  const isLast = index === items.length - 1;
2522
2598
  const key = index;
2523
- return /* @__PURE__ */ jsxs22(Fragment, { children: [
2599
+ return /* @__PURE__ */ jsxs23(Fragment, { children: [
2524
2600
  isLast ? /* @__PURE__ */ jsx37("span", { className: current2, "aria-current": "page", "data-testid": slot(`crumb-${index}`), children: item3.label }) : item3.href ? /* @__PURE__ */ jsx37("a", { className: crumb2, href: item3.href, "data-testid": slot(`crumb-${index}`), children: item3.label }) : /* @__PURE__ */ jsx37("span", { className: crumb2, "data-testid": slot(`crumb-${index}`), children: item3.label }),
2525
2601
  !isLast && /* @__PURE__ */ jsx37("span", { className: separator2, children: /* @__PURE__ */ jsx37(ChevronRightIcon, { size: 14 }) })
2526
2602
  ] }, key);
@@ -2577,7 +2653,7 @@ function useStyles24() {
2577
2653
  }
2578
2654
 
2579
2655
  // src/components/pagination/index.tsx
2580
- import { jsx as jsx39, jsxs as jsxs23 } from "react/jsx-runtime";
2656
+ import { jsx as jsx39, jsxs as jsxs24 } from "react/jsx-runtime";
2581
2657
  function buildItems(count, page, siblingCount) {
2582
2658
  const total = Math.max(1, count);
2583
2659
  const first = 1;
@@ -2598,7 +2674,7 @@ var Pagination = forwardRef26(function Pagination2({ count, page = 1, onChange,
2598
2674
  const current2 = Math.min(Math.max(1, page), total);
2599
2675
  const items = buildItems(total, current2, siblingCount);
2600
2676
  const go = (n) => onChange?.(Math.min(Math.max(1, n), total));
2601
- return /* @__PURE__ */ jsxs23("nav", { ref, className: root25, "aria-label": "Pagination", "data-testid": dataTestId, ...rest, children: [
2677
+ return /* @__PURE__ */ jsxs24("nav", { ref, className: root25, "aria-label": "Pagination", "data-testid": dataTestId, ...rest, children: [
2602
2678
  /* @__PURE__ */ jsx39(
2603
2679
  "button",
2604
2680
  {
@@ -2680,7 +2756,7 @@ function useStyles25({ className }) {
2680
2756
  }
2681
2757
 
2682
2758
  // src/components/stepper/index.tsx
2683
- import { jsx as jsx40, jsxs as jsxs24 } from "react/jsx-runtime";
2759
+ import { jsx as jsx40, jsxs as jsxs25 } from "react/jsx-runtime";
2684
2760
  var Stepper = forwardRef27(function Stepper2({ steps, active: active2 = 0, className, testId, ...rest }, ref) {
2685
2761
  const { root: root25, step: step2, connector: connector2, markerFor, labelFor } = useStyles25({ className });
2686
2762
  const { testId: dataTestId, slot } = useTestId("nav", testId);
@@ -2689,8 +2765,8 @@ var Stepper = forwardRef27(function Stepper2({ steps, active: active2 = 0, class
2689
2765
  const isActive = state === "active";
2690
2766
  return (
2691
2767
  // biome-ignore lint/suspicious/noArrayIndexKey: steps are a static, ordered list with no stable id.
2692
- /* @__PURE__ */ jsxs24(Fragment2, { children: [
2693
- /* @__PURE__ */ jsxs24(
2768
+ /* @__PURE__ */ jsxs25(Fragment2, { children: [
2769
+ /* @__PURE__ */ jsxs25(
2694
2770
  "div",
2695
2771
  {
2696
2772
  className: step2,
@@ -2710,7 +2786,7 @@ var Stepper = forwardRef27(function Stepper2({ steps, active: active2 = 0, class
2710
2786
  });
2711
2787
 
2712
2788
  // src/components/tabs/index.tsx
2713
- import { forwardRef as forwardRef28, useId as useId5, useRef as useRef5 } from "react";
2789
+ import { forwardRef as forwardRef28, useId as useId5, useRef as useRef6 } from "react";
2714
2790
 
2715
2791
  // src/components/tabs/use-styles.ts
2716
2792
  import { useMemo as useMemo30 } from "react";
@@ -2732,13 +2808,13 @@ function useStyles26() {
2732
2808
  }
2733
2809
 
2734
2810
  // src/components/tabs/index.tsx
2735
- import { Fragment as Fragment3, jsx as jsx41, jsxs as jsxs25 } from "react/jsx-runtime";
2811
+ import { Fragment as Fragment3, jsx as jsx41, jsxs as jsxs26 } from "react/jsx-runtime";
2736
2812
  var ICON_SIZE3 = 16;
2737
2813
  var Tabs = forwardRef28(function Tabs2({ items, value, onChange, testId, ...rest }, ref) {
2738
2814
  const { root: root25, tabClass, panel: panel3 } = useStyles26();
2739
2815
  const { testId: dataTestId, slot } = useTestId("nav", testId);
2740
2816
  const baseId = useId5();
2741
- const tabRefs = useRef5([]);
2817
+ const tabRefs = useRef6([]);
2742
2818
  const hasPanels = items.some((item3) => item3.content !== void 0);
2743
2819
  const activeIndex = items.findIndex((item3) => item3.value === value);
2744
2820
  const tabId = (v) => `${baseId}-tab-${v}`;
@@ -2770,12 +2846,12 @@ var Tabs = forwardRef28(function Tabs2({ items, value, onChange, testId, ...rest
2770
2846
  break;
2771
2847
  }
2772
2848
  };
2773
- return /* @__PURE__ */ jsxs25(Fragment3, { children: [
2849
+ return /* @__PURE__ */ jsxs26(Fragment3, { children: [
2774
2850
  /* @__PURE__ */ jsx41("div", { ref, role: "tablist", className: root25, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
2775
2851
  const active2 = item3.value === value;
2776
2852
  const tabbable = active2 || activeIndex === -1 && index === 0;
2777
2853
  const ItemIcon = item3.icon;
2778
- return /* @__PURE__ */ jsxs25(
2854
+ return /* @__PURE__ */ jsxs26(
2779
2855
  "button",
2780
2856
  {
2781
2857
  ref: (el) => {
@@ -2823,8 +2899,8 @@ import {
2823
2899
  forwardRef as forwardRef29,
2824
2900
  useEffect as useEffect6,
2825
2901
  useLayoutEffect,
2826
- useRef as useRef6,
2827
- useState as useState8
2902
+ useRef as useRef7,
2903
+ useState as useState9
2828
2904
  } from "react";
2829
2905
 
2830
2906
  // src/components/menu/use-styles.ts
@@ -2851,7 +2927,7 @@ function useStyles27() {
2851
2927
  }
2852
2928
 
2853
2929
  // src/components/menu/index.tsx
2854
- import { jsx as jsx42, jsxs as jsxs26 } from "react/jsx-runtime";
2930
+ import { jsx as jsx42, jsxs as jsxs27 } from "react/jsx-runtime";
2855
2931
  var ICON_SIZE4 = 16;
2856
2932
  function assignRef(ref, value) {
2857
2933
  if (typeof ref === "function") ref(value);
@@ -2860,15 +2936,15 @@ function assignRef(ref, value) {
2860
2936
  var Menu = forwardRef29(function Menu2({ trigger: trigger2, items, testId }, ref) {
2861
2937
  const { wrapper: wrapper4, list: list3, item: item3, dangerItem } = useStyles27();
2862
2938
  const { testId: rootTestId, slot } = useTestId("menu", testId);
2863
- const [open, setOpen] = useState8(false);
2864
- const [alignEnd, setAlignEnd] = useState8(false);
2865
- const rootRef = useRef6(null);
2939
+ const [open, setOpen] = useState9(false);
2940
+ const [alignEnd, setAlignEnd] = useState9(false);
2941
+ const rootRef = useRef7(null);
2866
2942
  const setRootRef = (node) => {
2867
2943
  rootRef.current = node;
2868
2944
  assignRef(ref, node);
2869
2945
  };
2870
- const listRef = useRef6(null);
2871
- const triggerRef = useRef6(null);
2946
+ const listRef = useRef7(null);
2947
+ const triggerRef = useRef7(null);
2872
2948
  const getMenuItems = () => Array.from(listRef.current?.querySelectorAll('[role="menuitem"]') ?? []);
2873
2949
  const focusItemAt = (index) => {
2874
2950
  const menuItems = getMenuItems();
@@ -2957,7 +3033,7 @@ var Menu = forwardRef29(function Menu2({ trigger: trigger2, items, testId }, ref
2957
3033
  setOpen((prev) => !prev);
2958
3034
  }
2959
3035
  });
2960
- return /* @__PURE__ */ jsxs26(
3036
+ return /* @__PURE__ */ jsxs27(
2961
3037
  "div",
2962
3038
  {
2963
3039
  ref: setRootRef,
@@ -2977,7 +3053,7 @@ var Menu = forwardRef29(function Menu2({ trigger: trigger2, items, testId }, ref
2977
3053
  onKeyDown: onMenuKeyDown,
2978
3054
  children: items.map((entry, index) => {
2979
3055
  const ItemIcon = entry.icon;
2980
- return /* @__PURE__ */ jsxs26(
3056
+ return /* @__PURE__ */ jsxs27(
2981
3057
  "button",
2982
3058
  {
2983
3059
  type: "button",
@@ -3009,7 +3085,7 @@ import {
3009
3085
  forwardRef as forwardRef30,
3010
3086
  useEffect as useEffect7,
3011
3087
  useId as useId6,
3012
- useRef as useRef7
3088
+ useRef as useRef8
3013
3089
  } from "react";
3014
3090
  import { createPortal } from "react-dom";
3015
3091
 
@@ -3037,7 +3113,7 @@ function useStyles28() {
3037
3113
  }
3038
3114
 
3039
3115
  // src/components/dialog/index.tsx
3040
- import { jsx as jsx43, jsxs as jsxs27 } from "react/jsx-runtime";
3116
+ import { jsx as jsx43, jsxs as jsxs28 } from "react/jsx-runtime";
3041
3117
  var FOCUSABLE = 'a[href], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled]), [tabindex]:not([tabindex="-1"])';
3042
3118
  function assignRef2(ref, value) {
3043
3119
  if (typeof ref === "function") ref(value);
@@ -3046,12 +3122,12 @@ function assignRef2(ref, value) {
3046
3122
  var Dialog = forwardRef30(function Dialog2({ open, onClose, title, actions: actions3, children, testId }, ref) {
3047
3123
  const { overlay: overlay2, surface: surface3, body: body3, actions: actionsClass } = useStyles28();
3048
3124
  const { testId: rootTestId, slot } = useTestId("dialog", testId);
3049
- const surfaceRef = useRef7(null);
3125
+ const surfaceRef = useRef8(null);
3050
3126
  const setSurfaceRef = (node) => {
3051
3127
  surfaceRef.current = node;
3052
3128
  assignRef2(ref, node);
3053
3129
  };
3054
- const previouslyFocused = useRef7(null);
3130
+ const previouslyFocused = useRef8(null);
3055
3131
  const generatedId = useId6();
3056
3132
  const titleId = title != null ? generatedId : void 0;
3057
3133
  useEffect7(() => {
@@ -3106,7 +3182,7 @@ var Dialog = forwardRef30(function Dialog2({ open, onClose, title, actions: acti
3106
3182
  };
3107
3183
  return createPortal(
3108
3184
  // biome-ignore lint/a11y/useKeyWithClickEvents: ESC handled by a document keydown listener.
3109
- /* @__PURE__ */ jsx43("div", { className: overlay2, "data-testid": slot("overlay"), onClick: onClose, children: /* @__PURE__ */ jsxs27(
3185
+ /* @__PURE__ */ jsx43("div", { className: overlay2, "data-testid": slot("overlay"), onClick: onClose, children: /* @__PURE__ */ jsxs28(
3110
3186
  "div",
3111
3187
  {
3112
3188
  ref: setSurfaceRef,
@@ -3130,7 +3206,12 @@ var Dialog = forwardRef30(function Dialog2({ open, onClose, title, actions: acti
3130
3206
  });
3131
3207
 
3132
3208
  // src/components/snackbar/index.tsx
3133
- import { forwardRef as forwardRef31, useCallback as useCallback2, useEffect as useEffect8, useRef as useRef8 } from "react";
3209
+ import {
3210
+ forwardRef as forwardRef31,
3211
+ useCallback as useCallback2,
3212
+ useEffect as useEffect8,
3213
+ useRef as useRef9
3214
+ } from "react";
3134
3215
  import { createPortal as createPortal2 } from "react-dom";
3135
3216
 
3136
3217
  // src/components/snackbar/use-styles.ts
@@ -3155,17 +3236,29 @@ function useStyles29() {
3155
3236
  }
3156
3237
 
3157
3238
  // src/components/snackbar/index.tsx
3158
- import { jsx as jsx44, jsxs as jsxs28 } from "react/jsx-runtime";
3239
+ import { jsx as jsx44, jsxs as jsxs29 } from "react/jsx-runtime";
3159
3240
  var DEFAULT_DURATION = 5e3;
3160
- var Snackbar = forwardRef31(function Snackbar2({ open, message: message2, action, onClose, duration = DEFAULT_DURATION, testId }, ref) {
3241
+ var Snackbar = forwardRef31(function Snackbar2({
3242
+ open,
3243
+ message: message2,
3244
+ action,
3245
+ onClose,
3246
+ duration = DEFAULT_DURATION,
3247
+ testId,
3248
+ onMouseEnter,
3249
+ onMouseLeave,
3250
+ onFocus,
3251
+ onBlur,
3252
+ ...rest
3253
+ }, ref) {
3161
3254
  const { root: root25, message: messageClass, closeBtn: closeBtn2 } = useStyles29();
3162
3255
  const { testId: dataTestId, slot } = useTestId("feedback", testId);
3163
- const onCloseRef = useRef8(onClose);
3256
+ const onCloseRef = useRef9(onClose);
3164
3257
  useEffect8(() => {
3165
3258
  onCloseRef.current = onClose;
3166
3259
  }, [onClose]);
3167
- const interactingRef = useRef8({ hover: false, focus: false });
3168
- const timeoutRef = useRef8();
3260
+ const interactingRef = useRef9({ hover: false, focus: false });
3261
+ const timeoutRef = useRef9();
3169
3262
  const clearTimer = useCallback2(() => {
3170
3263
  if (timeoutRef.current !== void 0) {
3171
3264
  clearTimeout(timeoutRef.current);
@@ -3184,35 +3277,40 @@ var Snackbar = forwardRef31(function Snackbar2({ open, message: message2, action
3184
3277
  scheduleTimer();
3185
3278
  return clearTimer;
3186
3279
  }, [scheduleTimer, clearTimer]);
3187
- const handleMouseEnter = () => {
3280
+ const handleMouseEnter = (event) => {
3188
3281
  interactingRef.current.hover = true;
3189
3282
  clearTimer();
3283
+ onMouseEnter?.(event);
3190
3284
  };
3191
- const handleMouseLeave = () => {
3285
+ const handleMouseLeave = (event) => {
3192
3286
  interactingRef.current.hover = false;
3193
3287
  scheduleTimer();
3288
+ onMouseLeave?.(event);
3194
3289
  };
3195
- const handleFocus = () => {
3290
+ const handleFocus = (event) => {
3196
3291
  interactingRef.current.focus = true;
3197
3292
  clearTimer();
3293
+ onFocus?.(event);
3198
3294
  };
3199
- const handleBlur = () => {
3295
+ const handleBlur = (event) => {
3200
3296
  interactingRef.current.focus = false;
3201
3297
  scheduleTimer();
3298
+ onBlur?.(event);
3202
3299
  };
3203
3300
  if (!open || typeof document === "undefined") return null;
3204
3301
  return createPortal2(
3205
- /* @__PURE__ */ jsxs28(
3302
+ /* @__PURE__ */ jsxs29(
3206
3303
  "div",
3207
3304
  {
3208
3305
  ref,
3209
3306
  role: "status",
3210
- className: root25,
3211
3307
  "data-testid": dataTestId,
3212
3308
  onMouseEnter: handleMouseEnter,
3213
3309
  onMouseLeave: handleMouseLeave,
3214
3310
  onFocus: handleFocus,
3215
3311
  onBlur: handleBlur,
3312
+ ...rest,
3313
+ className: root25,
3216
3314
  children: [
3217
3315
  /* @__PURE__ */ jsx44("span", { className: messageClass, "data-testid": slot("message"), children: message2 }),
3218
3316
  action,
@@ -3264,13 +3362,13 @@ function useStyles30({ className }) {
3264
3362
  }
3265
3363
 
3266
3364
  // src/components/table/index.tsx
3267
- import { jsx as jsx45, jsxs as jsxs29 } from "react/jsx-runtime";
3365
+ import { jsx as jsx45, jsxs as jsxs30 } from "react/jsx-runtime";
3268
3366
  function TableInner({ columns, rows, getRowKey, className, caption: caption2, testId, ...rest }, ref) {
3269
3367
  const { root: root25, th: th2, td: td2, alignRight: alignRight2, caption: captionClass } = useStyles30({ className });
3270
3368
  const { testId: dataTestId, slot } = useTestId("list", testId);
3271
3369
  const headClass = (column) => column.align === "right" ? `${th2} ${alignRight2}` : th2;
3272
3370
  const cellClass = (column) => column.align === "right" ? `${td2} ${alignRight2}` : td2;
3273
- return /* @__PURE__ */ jsxs29("table", { ref, className: root25, "data-testid": dataTestId, ...rest, children: [
3371
+ return /* @__PURE__ */ jsxs30("table", { ref, className: root25, "data-testid": dataTestId, ...rest, children: [
3274
3372
  caption2 != null && /* @__PURE__ */ jsx45("caption", { className: captionClass, children: caption2 }),
3275
3373
  /* @__PURE__ */ jsx45("thead", { children: /* @__PURE__ */ jsx45("tr", { children: columns.map((column) => /* @__PURE__ */ jsx45("th", { scope: "col", className: headClass(column), children: column.header }, column.key)) }) }),
3276
3374
  /* @__PURE__ */ jsx45("tbody", { children: rows.map((row, index) => /* @__PURE__ */ jsx45("tr", { "data-testid": slot(`row-${index}`), children: columns.map((column) => /* @__PURE__ */ jsx45("td", { className: cellClass(column), children: column.render ? column.render(row) : String(row[column.key]) }, column.key)) }, getRowKey ? getRowKey(row, index) : index)) })
@@ -3302,11 +3400,11 @@ function useStyles31({ className }) {
3302
3400
  }
3303
3401
 
3304
3402
  // src/components/app-bar/index.tsx
3305
- import { jsx as jsx46, jsxs as jsxs30 } from "react/jsx-runtime";
3403
+ import { jsx as jsx46, jsxs as jsxs31 } from "react/jsx-runtime";
3306
3404
  var AppBar = forwardRef33(function AppBar2({ brand: brand2, actions: actions3, className, children, testId, ...rest }, ref) {
3307
3405
  const styles = useStyles31({ className });
3308
3406
  const { testId: dataTestId, slot } = useTestId("nav", testId);
3309
- return /* @__PURE__ */ jsxs30("header", { ref, className: styles.root, "data-testid": dataTestId, ...rest, children: [
3407
+ return /* @__PURE__ */ jsxs31("header", { ref, className: styles.root, "data-testid": dataTestId, ...rest, children: [
3310
3408
  brand2 !== void 0 ? /* @__PURE__ */ jsx46("div", { className: styles.brand, "data-testid": slot("brand"), children: brand2 }) : null,
3311
3409
  children,
3312
3410
  actions3 !== void 0 ? /* @__PURE__ */ jsx46("div", { className: styles.actions, "data-testid": slot("actions"), children: actions3 }) : null
@@ -3340,11 +3438,11 @@ function useStyles32({
3340
3438
  }
3341
3439
 
3342
3440
  // src/components/list-item/index.tsx
3343
- import { jsx as jsx47, jsxs as jsxs31 } from "react/jsx-runtime";
3441
+ import { jsx as jsx47, jsxs as jsxs32 } from "react/jsx-runtime";
3344
3442
  var ListItem = forwardRef34(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected4, className, testId, children, ...rest }, ref) {
3345
3443
  const styles = useStyles32({ selected: selected4, className });
3346
3444
  const { testId: dataTestId, slot } = useTestId("list", testId);
3347
- return /* @__PURE__ */ jsxs31(
3445
+ return /* @__PURE__ */ jsxs32(
3348
3446
  "div",
3349
3447
  {
3350
3448
  ref,
@@ -3362,9 +3460,9 @@ var ListItem = forwardRef34(function ListItem2({ leading: leading2, trailing: tr
3362
3460
  });
3363
3461
 
3364
3462
  // src/components/icons/alert-circle/index.tsx
3365
- import { jsx as jsx48, jsxs as jsxs32 } from "react/jsx-runtime";
3463
+ import { jsx as jsx48, jsxs as jsxs33 } from "react/jsx-runtime";
3366
3464
  function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3367
- return /* @__PURE__ */ jsxs32(
3465
+ return /* @__PURE__ */ jsxs33(
3368
3466
  "svg",
3369
3467
  {
3370
3468
  xmlns: "http://www.w3.org/2000/svg",
@@ -3388,9 +3486,9 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
3388
3486
  }
3389
3487
 
3390
3488
  // src/components/icons/archive/index.tsx
3391
- import { jsx as jsx49, jsxs as jsxs33 } from "react/jsx-runtime";
3489
+ import { jsx as jsx49, jsxs as jsxs34 } from "react/jsx-runtime";
3392
3490
  function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3393
- return /* @__PURE__ */ jsxs33(
3491
+ return /* @__PURE__ */ jsxs34(
3394
3492
  "svg",
3395
3493
  {
3396
3494
  xmlns: "http://www.w3.org/2000/svg",
@@ -3414,9 +3512,9 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3414
3512
  }
3415
3513
 
3416
3514
  // src/components/icons/arrow-down/index.tsx
3417
- import { jsx as jsx50, jsxs as jsxs34 } from "react/jsx-runtime";
3515
+ import { jsx as jsx50, jsxs as jsxs35 } from "react/jsx-runtime";
3418
3516
  function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3419
- return /* @__PURE__ */ jsxs34(
3517
+ return /* @__PURE__ */ jsxs35(
3420
3518
  "svg",
3421
3519
  {
3422
3520
  xmlns: "http://www.w3.org/2000/svg",
@@ -3439,9 +3537,9 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3439
3537
  }
3440
3538
 
3441
3539
  // src/components/icons/arrow-left/index.tsx
3442
- import { jsx as jsx51, jsxs as jsxs35 } from "react/jsx-runtime";
3540
+ import { jsx as jsx51, jsxs as jsxs36 } from "react/jsx-runtime";
3443
3541
  function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3444
- return /* @__PURE__ */ jsxs35(
3542
+ return /* @__PURE__ */ jsxs36(
3445
3543
  "svg",
3446
3544
  {
3447
3545
  xmlns: "http://www.w3.org/2000/svg",
@@ -3464,9 +3562,9 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3464
3562
  }
3465
3563
 
3466
3564
  // src/components/icons/arrow-right/index.tsx
3467
- import { jsx as jsx52, jsxs as jsxs36 } from "react/jsx-runtime";
3565
+ import { jsx as jsx52, jsxs as jsxs37 } from "react/jsx-runtime";
3468
3566
  function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3469
- return /* @__PURE__ */ jsxs36(
3567
+ return /* @__PURE__ */ jsxs37(
3470
3568
  "svg",
3471
3569
  {
3472
3570
  xmlns: "http://www.w3.org/2000/svg",
@@ -3489,9 +3587,9 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
3489
3587
  }
3490
3588
 
3491
3589
  // src/components/icons/arrow-up/index.tsx
3492
- import { jsx as jsx53, jsxs as jsxs37 } from "react/jsx-runtime";
3590
+ import { jsx as jsx53, jsxs as jsxs38 } from "react/jsx-runtime";
3493
3591
  function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3494
- return /* @__PURE__ */ jsxs37(
3592
+ return /* @__PURE__ */ jsxs38(
3495
3593
  "svg",
3496
3594
  {
3497
3595
  xmlns: "http://www.w3.org/2000/svg",
@@ -3514,9 +3612,9 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3514
3612
  }
3515
3613
 
3516
3614
  // src/components/icons/at-sign/index.tsx
3517
- import { jsx as jsx54, jsxs as jsxs38 } from "react/jsx-runtime";
3615
+ import { jsx as jsx54, jsxs as jsxs39 } from "react/jsx-runtime";
3518
3616
  function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3519
- return /* @__PURE__ */ jsxs38(
3617
+ return /* @__PURE__ */ jsxs39(
3520
3618
  "svg",
3521
3619
  {
3522
3620
  xmlns: "http://www.w3.org/2000/svg",
@@ -3539,9 +3637,9 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3539
3637
  }
3540
3638
 
3541
3639
  // src/components/icons/bell/index.tsx
3542
- import { jsx as jsx55, jsxs as jsxs39 } from "react/jsx-runtime";
3640
+ import { jsx as jsx55, jsxs as jsxs40 } from "react/jsx-runtime";
3543
3641
  function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3544
- return /* @__PURE__ */ jsxs39(
3642
+ return /* @__PURE__ */ jsxs40(
3545
3643
  "svg",
3546
3644
  {
3547
3645
  xmlns: "http://www.w3.org/2000/svg",
@@ -3564,9 +3662,9 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3564
3662
  }
3565
3663
 
3566
3664
  // src/components/icons/bell-off/index.tsx
3567
- import { jsx as jsx56, jsxs as jsxs40 } from "react/jsx-runtime";
3665
+ import { jsx as jsx56, jsxs as jsxs41 } from "react/jsx-runtime";
3568
3666
  function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3569
- return /* @__PURE__ */ jsxs40(
3667
+ return /* @__PURE__ */ jsxs41(
3570
3668
  "svg",
3571
3669
  {
3572
3670
  xmlns: "http://www.w3.org/2000/svg",
@@ -3613,9 +3711,9 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3613
3711
  }
3614
3712
 
3615
3713
  // src/components/icons/calendar/index.tsx
3616
- import { jsx as jsx58, jsxs as jsxs41 } from "react/jsx-runtime";
3714
+ import { jsx as jsx58, jsxs as jsxs42 } from "react/jsx-runtime";
3617
3715
  function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3618
- return /* @__PURE__ */ jsxs41(
3716
+ return /* @__PURE__ */ jsxs42(
3619
3717
  "svg",
3620
3718
  {
3621
3719
  xmlns: "http://www.w3.org/2000/svg",
@@ -3640,9 +3738,9 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3640
3738
  }
3641
3739
 
3642
3740
  // src/components/icons/camera/index.tsx
3643
- import { jsx as jsx59, jsxs as jsxs42 } from "react/jsx-runtime";
3741
+ import { jsx as jsx59, jsxs as jsxs43 } from "react/jsx-runtime";
3644
3742
  function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3645
- return /* @__PURE__ */ jsxs42(
3743
+ return /* @__PURE__ */ jsxs43(
3646
3744
  "svg",
3647
3745
  {
3648
3746
  xmlns: "http://www.w3.org/2000/svg",
@@ -3687,9 +3785,9 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3687
3785
  }
3688
3786
 
3689
3787
  // src/components/icons/chevrons-left/index.tsx
3690
- import { jsx as jsx61, jsxs as jsxs43 } from "react/jsx-runtime";
3788
+ import { jsx as jsx61, jsxs as jsxs44 } from "react/jsx-runtime";
3691
3789
  function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3692
- return /* @__PURE__ */ jsxs43(
3790
+ return /* @__PURE__ */ jsxs44(
3693
3791
  "svg",
3694
3792
  {
3695
3793
  xmlns: "http://www.w3.org/2000/svg",
@@ -3712,9 +3810,9 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
3712
3810
  }
3713
3811
 
3714
3812
  // src/components/icons/chevrons-right/index.tsx
3715
- import { jsx as jsx62, jsxs as jsxs44 } from "react/jsx-runtime";
3813
+ import { jsx as jsx62, jsxs as jsxs45 } from "react/jsx-runtime";
3716
3814
  function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3717
- return /* @__PURE__ */ jsxs44(
3815
+ return /* @__PURE__ */ jsxs45(
3718
3816
  "svg",
3719
3817
  {
3720
3818
  xmlns: "http://www.w3.org/2000/svg",
@@ -3737,9 +3835,9 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
3737
3835
  }
3738
3836
 
3739
3837
  // src/components/icons/clipboard/index.tsx
3740
- import { jsx as jsx63, jsxs as jsxs45 } from "react/jsx-runtime";
3838
+ import { jsx as jsx63, jsxs as jsxs46 } from "react/jsx-runtime";
3741
3839
  function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3742
- return /* @__PURE__ */ jsxs45(
3840
+ return /* @__PURE__ */ jsxs46(
3743
3841
  "svg",
3744
3842
  {
3745
3843
  xmlns: "http://www.w3.org/2000/svg",
@@ -3762,9 +3860,9 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3762
3860
  }
3763
3861
 
3764
3862
  // src/components/icons/clock/index.tsx
3765
- import { jsx as jsx64, jsxs as jsxs46 } from "react/jsx-runtime";
3863
+ import { jsx as jsx64, jsxs as jsxs47 } from "react/jsx-runtime";
3766
3864
  function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3767
- return /* @__PURE__ */ jsxs46(
3865
+ return /* @__PURE__ */ jsxs47(
3768
3866
  "svg",
3769
3867
  {
3770
3868
  xmlns: "http://www.w3.org/2000/svg",
@@ -3809,9 +3907,9 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3809
3907
  }
3810
3908
 
3811
3909
  // src/components/icons/copy/index.tsx
3812
- import { jsx as jsx66, jsxs as jsxs47 } from "react/jsx-runtime";
3910
+ import { jsx as jsx66, jsxs as jsxs48 } from "react/jsx-runtime";
3813
3911
  function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3814
- return /* @__PURE__ */ jsxs47(
3912
+ return /* @__PURE__ */ jsxs48(
3815
3913
  "svg",
3816
3914
  {
3817
3915
  xmlns: "http://www.w3.org/2000/svg",
@@ -3834,9 +3932,9 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3834
3932
  }
3835
3933
 
3836
3934
  // src/components/icons/corner-down-right/index.tsx
3837
- import { jsx as jsx67, jsxs as jsxs48 } from "react/jsx-runtime";
3935
+ import { jsx as jsx67, jsxs as jsxs49 } from "react/jsx-runtime";
3838
3936
  function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3839
- return /* @__PURE__ */ jsxs48(
3937
+ return /* @__PURE__ */ jsxs49(
3840
3938
  "svg",
3841
3939
  {
3842
3940
  xmlns: "http://www.w3.org/2000/svg",
@@ -3859,9 +3957,9 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...r
3859
3957
  }
3860
3958
 
3861
3959
  // src/components/icons/credit-card/index.tsx
3862
- import { jsx as jsx68, jsxs as jsxs49 } from "react/jsx-runtime";
3960
+ import { jsx as jsx68, jsxs as jsxs50 } from "react/jsx-runtime";
3863
3961
  function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3864
- return /* @__PURE__ */ jsxs49(
3962
+ return /* @__PURE__ */ jsxs50(
3865
3963
  "svg",
3866
3964
  {
3867
3965
  xmlns: "http://www.w3.org/2000/svg",
@@ -3884,9 +3982,9 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
3884
3982
  }
3885
3983
 
3886
3984
  // src/components/icons/dollar-sign/index.tsx
3887
- import { jsx as jsx69, jsxs as jsxs50 } from "react/jsx-runtime";
3985
+ import { jsx as jsx69, jsxs as jsxs51 } from "react/jsx-runtime";
3888
3986
  function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3889
- return /* @__PURE__ */ jsxs50(
3987
+ return /* @__PURE__ */ jsxs51(
3890
3988
  "svg",
3891
3989
  {
3892
3990
  xmlns: "http://www.w3.org/2000/svg",
@@ -3909,9 +4007,9 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
3909
4007
  }
3910
4008
 
3911
4009
  // src/components/icons/download/index.tsx
3912
- import { jsx as jsx70, jsxs as jsxs51 } from "react/jsx-runtime";
4010
+ import { jsx as jsx70, jsxs as jsxs52 } from "react/jsx-runtime";
3913
4011
  function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3914
- return /* @__PURE__ */ jsxs51(
4012
+ return /* @__PURE__ */ jsxs52(
3915
4013
  "svg",
3916
4014
  {
3917
4015
  xmlns: "http://www.w3.org/2000/svg",
@@ -3935,9 +4033,9 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3935
4033
  }
3936
4034
 
3937
4035
  // src/components/icons/external-link/index.tsx
3938
- import { jsx as jsx71, jsxs as jsxs52 } from "react/jsx-runtime";
4036
+ import { jsx as jsx71, jsxs as jsxs53 } from "react/jsx-runtime";
3939
4037
  function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3940
- return /* @__PURE__ */ jsxs52(
4038
+ return /* @__PURE__ */ jsxs53(
3941
4039
  "svg",
3942
4040
  {
3943
4041
  xmlns: "http://www.w3.org/2000/svg",
@@ -3961,9 +4059,9 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
3961
4059
  }
3962
4060
 
3963
4061
  // src/components/icons/file/index.tsx
3964
- import { jsx as jsx72, jsxs as jsxs53 } from "react/jsx-runtime";
4062
+ import { jsx as jsx72, jsxs as jsxs54 } from "react/jsx-runtime";
3965
4063
  function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3966
- return /* @__PURE__ */ jsxs53(
4064
+ return /* @__PURE__ */ jsxs54(
3967
4065
  "svg",
3968
4066
  {
3969
4067
  xmlns: "http://www.w3.org/2000/svg",
@@ -3986,9 +4084,9 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3986
4084
  }
3987
4085
 
3988
4086
  // src/components/icons/file-text/index.tsx
3989
- import { jsx as jsx73, jsxs as jsxs54 } from "react/jsx-runtime";
4087
+ import { jsx as jsx73, jsxs as jsxs55 } from "react/jsx-runtime";
3990
4088
  function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3991
- return /* @__PURE__ */ jsxs54(
4089
+ return /* @__PURE__ */ jsxs55(
3992
4090
  "svg",
3993
4091
  {
3994
4092
  xmlns: "http://www.w3.org/2000/svg",
@@ -4036,9 +4134,9 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4036
4134
  }
4037
4135
 
4038
4136
  // src/components/icons/fingerprint/index.tsx
4039
- import { jsx as jsx75, jsxs as jsxs55 } from "react/jsx-runtime";
4137
+ import { jsx as jsx75, jsxs as jsxs56 } from "react/jsx-runtime";
4040
4138
  function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4041
- return /* @__PURE__ */ jsxs55(
4139
+ return /* @__PURE__ */ jsxs56(
4042
4140
  "svg",
4043
4141
  {
4044
4142
  xmlns: "http://www.w3.org/2000/svg",
@@ -4112,9 +4210,9 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
4112
4210
  }
4113
4211
 
4114
4212
  // src/components/icons/gift/index.tsx
4115
- import { jsx as jsx78, jsxs as jsxs56 } from "react/jsx-runtime";
4213
+ import { jsx as jsx78, jsxs as jsxs57 } from "react/jsx-runtime";
4116
4214
  function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4117
- return /* @__PURE__ */ jsxs56(
4215
+ return /* @__PURE__ */ jsxs57(
4118
4216
  "svg",
4119
4217
  {
4120
4218
  xmlns: "http://www.w3.org/2000/svg",
@@ -4161,9 +4259,9 @@ function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4161
4259
  }
4162
4260
 
4163
4261
  // src/components/icons/globe/index.tsx
4164
- import { jsx as jsx80, jsxs as jsxs57 } from "react/jsx-runtime";
4262
+ import { jsx as jsx80, jsxs as jsxs58 } from "react/jsx-runtime";
4165
4263
  function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4166
- return /* @__PURE__ */ jsxs57(
4264
+ return /* @__PURE__ */ jsxs58(
4167
4265
  "svg",
4168
4266
  {
4169
4267
  xmlns: "http://www.w3.org/2000/svg",
@@ -4187,9 +4285,9 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4187
4285
  }
4188
4286
 
4189
4287
  // src/components/icons/grid/index.tsx
4190
- import { jsx as jsx81, jsxs as jsxs58 } from "react/jsx-runtime";
4288
+ import { jsx as jsx81, jsxs as jsxs59 } from "react/jsx-runtime";
4191
4289
  function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4192
- return /* @__PURE__ */ jsxs58(
4290
+ return /* @__PURE__ */ jsxs59(
4193
4291
  "svg",
4194
4292
  {
4195
4293
  xmlns: "http://www.w3.org/2000/svg",
@@ -4237,9 +4335,9 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4237
4335
  }
4238
4336
 
4239
4337
  // src/components/icons/help-circle/index.tsx
4240
- import { jsx as jsx83, jsxs as jsxs59 } from "react/jsx-runtime";
4338
+ import { jsx as jsx83, jsxs as jsxs60 } from "react/jsx-runtime";
4241
4339
  function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4242
- return /* @__PURE__ */ jsxs59(
4340
+ return /* @__PURE__ */ jsxs60(
4243
4341
  "svg",
4244
4342
  {
4245
4343
  xmlns: "http://www.w3.org/2000/svg",
@@ -4263,9 +4361,9 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
4263
4361
  }
4264
4362
 
4265
4363
  // src/components/icons/home/index.tsx
4266
- import { jsx as jsx84, jsxs as jsxs60 } from "react/jsx-runtime";
4364
+ import { jsx as jsx84, jsxs as jsxs61 } from "react/jsx-runtime";
4267
4365
  function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4268
- return /* @__PURE__ */ jsxs60(
4366
+ return /* @__PURE__ */ jsxs61(
4269
4367
  "svg",
4270
4368
  {
4271
4369
  xmlns: "http://www.w3.org/2000/svg",
@@ -4288,9 +4386,9 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4288
4386
  }
4289
4387
 
4290
4388
  // src/components/icons/image/index.tsx
4291
- import { jsx as jsx85, jsxs as jsxs61 } from "react/jsx-runtime";
4389
+ import { jsx as jsx85, jsxs as jsxs62 } from "react/jsx-runtime";
4292
4390
  function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4293
- return /* @__PURE__ */ jsxs61(
4391
+ return /* @__PURE__ */ jsxs62(
4294
4392
  "svg",
4295
4393
  {
4296
4394
  xmlns: "http://www.w3.org/2000/svg",
@@ -4314,9 +4412,9 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4314
4412
  }
4315
4413
 
4316
4414
  // src/components/icons/inbox/index.tsx
4317
- import { jsx as jsx86, jsxs as jsxs62 } from "react/jsx-runtime";
4415
+ import { jsx as jsx86, jsxs as jsxs63 } from "react/jsx-runtime";
4318
4416
  function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4319
- return /* @__PURE__ */ jsxs62(
4417
+ return /* @__PURE__ */ jsxs63(
4320
4418
  "svg",
4321
4419
  {
4322
4420
  xmlns: "http://www.w3.org/2000/svg",
@@ -4339,9 +4437,9 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4339
4437
  }
4340
4438
 
4341
4439
  // src/components/icons/key/index.tsx
4342
- import { jsx as jsx87, jsxs as jsxs63 } from "react/jsx-runtime";
4440
+ import { jsx as jsx87, jsxs as jsxs64 } from "react/jsx-runtime";
4343
4441
  function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4344
- return /* @__PURE__ */ jsxs63(
4442
+ return /* @__PURE__ */ jsxs64(
4345
4443
  "svg",
4346
4444
  {
4347
4445
  xmlns: "http://www.w3.org/2000/svg",
@@ -4365,9 +4463,9 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4365
4463
  }
4366
4464
 
4367
4465
  // src/components/icons/layout/index.tsx
4368
- import { jsx as jsx88, jsxs as jsxs64 } from "react/jsx-runtime";
4466
+ import { jsx as jsx88, jsxs as jsxs65 } from "react/jsx-runtime";
4369
4467
  function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4370
- return /* @__PURE__ */ jsxs64(
4468
+ return /* @__PURE__ */ jsxs65(
4371
4469
  "svg",
4372
4470
  {
4373
4471
  xmlns: "http://www.w3.org/2000/svg",
@@ -4392,9 +4490,9 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4392
4490
  }
4393
4491
 
4394
4492
  // src/components/icons/link/index.tsx
4395
- import { jsx as jsx89, jsxs as jsxs65 } from "react/jsx-runtime";
4493
+ import { jsx as jsx89, jsxs as jsxs66 } from "react/jsx-runtime";
4396
4494
  function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4397
- return /* @__PURE__ */ jsxs65(
4495
+ return /* @__PURE__ */ jsxs66(
4398
4496
  "svg",
4399
4497
  {
4400
4498
  xmlns: "http://www.w3.org/2000/svg",
@@ -4417,9 +4515,9 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4417
4515
  }
4418
4516
 
4419
4517
  // src/components/icons/list/index.tsx
4420
- import { jsx as jsx90, jsxs as jsxs66 } from "react/jsx-runtime";
4518
+ import { jsx as jsx90, jsxs as jsxs67 } from "react/jsx-runtime";
4421
4519
  function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4422
- return /* @__PURE__ */ jsxs66(
4520
+ return /* @__PURE__ */ jsxs67(
4423
4521
  "svg",
4424
4522
  {
4425
4523
  xmlns: "http://www.w3.org/2000/svg",
@@ -4446,9 +4544,9 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4446
4544
  }
4447
4545
 
4448
4546
  // src/components/icons/loader/index.tsx
4449
- import { jsx as jsx91, jsxs as jsxs67 } from "react/jsx-runtime";
4547
+ import { jsx as jsx91, jsxs as jsxs68 } from "react/jsx-runtime";
4450
4548
  function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4451
- return /* @__PURE__ */ jsxs67(
4549
+ return /* @__PURE__ */ jsxs68(
4452
4550
  "svg",
4453
4551
  {
4454
4552
  xmlns: "http://www.w3.org/2000/svg",
@@ -4477,9 +4575,9 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4477
4575
  }
4478
4576
 
4479
4577
  // src/components/icons/lock/index.tsx
4480
- import { jsx as jsx92, jsxs as jsxs68 } from "react/jsx-runtime";
4578
+ import { jsx as jsx92, jsxs as jsxs69 } from "react/jsx-runtime";
4481
4579
  function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4482
- return /* @__PURE__ */ jsxs68(
4580
+ return /* @__PURE__ */ jsxs69(
4483
4581
  "svg",
4484
4582
  {
4485
4583
  xmlns: "http://www.w3.org/2000/svg",
@@ -4502,9 +4600,9 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4502
4600
  }
4503
4601
 
4504
4602
  // src/components/icons/log-in/index.tsx
4505
- import { jsx as jsx93, jsxs as jsxs69 } from "react/jsx-runtime";
4603
+ import { jsx as jsx93, jsxs as jsxs70 } from "react/jsx-runtime";
4506
4604
  function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4507
- return /* @__PURE__ */ jsxs69(
4605
+ return /* @__PURE__ */ jsxs70(
4508
4606
  "svg",
4509
4607
  {
4510
4608
  xmlns: "http://www.w3.org/2000/svg",
@@ -4528,9 +4626,9 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4528
4626
  }
4529
4627
 
4530
4628
  // src/components/icons/log-out/index.tsx
4531
- import { jsx as jsx94, jsxs as jsxs70 } from "react/jsx-runtime";
4629
+ import { jsx as jsx94, jsxs as jsxs71 } from "react/jsx-runtime";
4532
4630
  function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4533
- return /* @__PURE__ */ jsxs70(
4631
+ return /* @__PURE__ */ jsxs71(
4534
4632
  "svg",
4535
4633
  {
4536
4634
  xmlns: "http://www.w3.org/2000/svg",
@@ -4554,9 +4652,9 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4554
4652
  }
4555
4653
 
4556
4654
  // src/components/icons/mail/index.tsx
4557
- import { jsx as jsx95, jsxs as jsxs71 } from "react/jsx-runtime";
4655
+ import { jsx as jsx95, jsxs as jsxs72 } from "react/jsx-runtime";
4558
4656
  function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4559
- return /* @__PURE__ */ jsxs71(
4657
+ return /* @__PURE__ */ jsxs72(
4560
4658
  "svg",
4561
4659
  {
4562
4660
  xmlns: "http://www.w3.org/2000/svg",
@@ -4579,9 +4677,9 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4579
4677
  }
4580
4678
 
4581
4679
  // src/components/icons/map-pin/index.tsx
4582
- import { jsx as jsx96, jsxs as jsxs72 } from "react/jsx-runtime";
4680
+ import { jsx as jsx96, jsxs as jsxs73 } from "react/jsx-runtime";
4583
4681
  function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4584
- return /* @__PURE__ */ jsxs72(
4682
+ return /* @__PURE__ */ jsxs73(
4585
4683
  "svg",
4586
4684
  {
4587
4685
  xmlns: "http://www.w3.org/2000/svg",
@@ -4604,9 +4702,9 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4604
4702
  }
4605
4703
 
4606
4704
  // src/components/icons/maximize/index.tsx
4607
- import { jsx as jsx97, jsxs as jsxs73 } from "react/jsx-runtime";
4705
+ import { jsx as jsx97, jsxs as jsxs74 } from "react/jsx-runtime";
4608
4706
  function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4609
- return /* @__PURE__ */ jsxs73(
4707
+ return /* @__PURE__ */ jsxs74(
4610
4708
  "svg",
4611
4709
  {
4612
4710
  xmlns: "http://www.w3.org/2000/svg",
@@ -4631,9 +4729,9 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
4631
4729
  }
4632
4730
 
4633
4731
  // src/components/icons/menu/index.tsx
4634
- import { jsx as jsx98, jsxs as jsxs74 } from "react/jsx-runtime";
4732
+ import { jsx as jsx98, jsxs as jsxs75 } from "react/jsx-runtime";
4635
4733
  function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4636
- return /* @__PURE__ */ jsxs74(
4734
+ return /* @__PURE__ */ jsxs75(
4637
4735
  "svg",
4638
4736
  {
4639
4737
  xmlns: "http://www.w3.org/2000/svg",
@@ -4701,9 +4799,9 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
4701
4799
  }
4702
4800
 
4703
4801
  // src/components/icons/mic/index.tsx
4704
- import { jsx as jsx101, jsxs as jsxs75 } from "react/jsx-runtime";
4802
+ import { jsx as jsx101, jsxs as jsxs76 } from "react/jsx-runtime";
4705
4803
  function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4706
- return /* @__PURE__ */ jsxs75(
4804
+ return /* @__PURE__ */ jsxs76(
4707
4805
  "svg",
4708
4806
  {
4709
4807
  xmlns: "http://www.w3.org/2000/svg",
@@ -4727,9 +4825,9 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4727
4825
  }
4728
4826
 
4729
4827
  // src/components/icons/minimize/index.tsx
4730
- import { jsx as jsx102, jsxs as jsxs76 } from "react/jsx-runtime";
4828
+ import { jsx as jsx102, jsxs as jsxs77 } from "react/jsx-runtime";
4731
4829
  function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4732
- return /* @__PURE__ */ jsxs76(
4830
+ return /* @__PURE__ */ jsxs77(
4733
4831
  "svg",
4734
4832
  {
4735
4833
  xmlns: "http://www.w3.org/2000/svg",
@@ -4798,9 +4896,9 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4798
4896
  }
4799
4897
 
4800
4898
  // src/components/icons/more-horizontal/index.tsx
4801
- import { jsx as jsx105, jsxs as jsxs77 } from "react/jsx-runtime";
4899
+ import { jsx as jsx105, jsxs as jsxs78 } from "react/jsx-runtime";
4802
4900
  function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4803
- return /* @__PURE__ */ jsxs77(
4901
+ return /* @__PURE__ */ jsxs78(
4804
4902
  "svg",
4805
4903
  {
4806
4904
  xmlns: "http://www.w3.org/2000/svg",
@@ -4824,9 +4922,9 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...re
4824
4922
  }
4825
4923
 
4826
4924
  // src/components/icons/more-vertical/index.tsx
4827
- import { jsx as jsx106, jsxs as jsxs78 } from "react/jsx-runtime";
4925
+ import { jsx as jsx106, jsxs as jsxs79 } from "react/jsx-runtime";
4828
4926
  function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4829
- return /* @__PURE__ */ jsxs78(
4927
+ return /* @__PURE__ */ jsxs79(
4830
4928
  "svg",
4831
4929
  {
4832
4930
  xmlns: "http://www.w3.org/2000/svg",
@@ -4850,9 +4948,9 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
4850
4948
  }
4851
4949
 
4852
4950
  // src/components/icons/package/index.tsx
4853
- import { jsx as jsx107, jsxs as jsxs79 } from "react/jsx-runtime";
4951
+ import { jsx as jsx107, jsxs as jsxs80 } from "react/jsx-runtime";
4854
4952
  function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4855
- return /* @__PURE__ */ jsxs79(
4953
+ return /* @__PURE__ */ jsxs80(
4856
4954
  "svg",
4857
4955
  {
4858
4956
  xmlns: "http://www.w3.org/2000/svg",
@@ -4898,9 +4996,9 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
4898
4996
  }
4899
4997
 
4900
4998
  // src/components/icons/pause/index.tsx
4901
- import { jsx as jsx109, jsxs as jsxs80 } from "react/jsx-runtime";
4999
+ import { jsx as jsx109, jsxs as jsxs81 } from "react/jsx-runtime";
4902
5000
  function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4903
- return /* @__PURE__ */ jsxs80(
5001
+ return /* @__PURE__ */ jsxs81(
4904
5002
  "svg",
4905
5003
  {
4906
5004
  xmlns: "http://www.w3.org/2000/svg",
@@ -4923,9 +5021,9 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4923
5021
  }
4924
5022
 
4925
5023
  // src/components/icons/pencil/index.tsx
4926
- import { jsx as jsx110, jsxs as jsxs81 } from "react/jsx-runtime";
5024
+ import { jsx as jsx110, jsxs as jsxs82 } from "react/jsx-runtime";
4927
5025
  function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4928
- return /* @__PURE__ */ jsxs81(
5026
+ return /* @__PURE__ */ jsxs82(
4929
5027
  "svg",
4930
5028
  {
4931
5029
  xmlns: "http://www.w3.org/2000/svg",
@@ -4992,9 +5090,9 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4992
5090
  }
4993
5091
 
4994
5092
  // src/components/icons/plus/index.tsx
4995
- import { jsx as jsx113, jsxs as jsxs82 } from "react/jsx-runtime";
5093
+ import { jsx as jsx113, jsxs as jsxs83 } from "react/jsx-runtime";
4996
5094
  function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4997
- return /* @__PURE__ */ jsxs82(
5095
+ return /* @__PURE__ */ jsxs83(
4998
5096
  "svg",
4999
5097
  {
5000
5098
  xmlns: "http://www.w3.org/2000/svg",
@@ -5017,9 +5115,9 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5017
5115
  }
5018
5116
 
5019
5117
  // src/components/icons/printer/index.tsx
5020
- import { jsx as jsx114, jsxs as jsxs83 } from "react/jsx-runtime";
5118
+ import { jsx as jsx114, jsxs as jsxs84 } from "react/jsx-runtime";
5021
5119
  function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5022
- return /* @__PURE__ */ jsxs83(
5120
+ return /* @__PURE__ */ jsxs84(
5023
5121
  "svg",
5024
5122
  {
5025
5123
  xmlns: "http://www.w3.org/2000/svg",
@@ -5043,9 +5141,9 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5043
5141
  }
5044
5142
 
5045
5143
  // src/components/icons/redo/index.tsx
5046
- import { jsx as jsx115, jsxs as jsxs84 } from "react/jsx-runtime";
5144
+ import { jsx as jsx115, jsxs as jsxs85 } from "react/jsx-runtime";
5047
5145
  function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5048
- return /* @__PURE__ */ jsxs84(
5146
+ return /* @__PURE__ */ jsxs85(
5049
5147
  "svg",
5050
5148
  {
5051
5149
  xmlns: "http://www.w3.org/2000/svg",
@@ -5068,9 +5166,9 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5068
5166
  }
5069
5167
 
5070
5168
  // src/components/icons/refresh-cw/index.tsx
5071
- import { jsx as jsx116, jsxs as jsxs85 } from "react/jsx-runtime";
5169
+ import { jsx as jsx116, jsxs as jsxs86 } from "react/jsx-runtime";
5072
5170
  function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5073
- return /* @__PURE__ */ jsxs85(
5171
+ return /* @__PURE__ */ jsxs86(
5074
5172
  "svg",
5075
5173
  {
5076
5174
  xmlns: "http://www.w3.org/2000/svg",
@@ -5095,9 +5193,9 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5095
5193
  }
5096
5194
 
5097
5195
  // src/components/icons/save/index.tsx
5098
- import { jsx as jsx117, jsxs as jsxs86 } from "react/jsx-runtime";
5196
+ import { jsx as jsx117, jsxs as jsxs87 } from "react/jsx-runtime";
5099
5197
  function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5100
- return /* @__PURE__ */ jsxs86(
5198
+ return /* @__PURE__ */ jsxs87(
5101
5199
  "svg",
5102
5200
  {
5103
5201
  xmlns: "http://www.w3.org/2000/svg",
@@ -5121,9 +5219,9 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5121
5219
  }
5122
5220
 
5123
5221
  // src/components/icons/search/index.tsx
5124
- import { jsx as jsx118, jsxs as jsxs87 } from "react/jsx-runtime";
5222
+ import { jsx as jsx118, jsxs as jsxs88 } from "react/jsx-runtime";
5125
5223
  function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5126
- return /* @__PURE__ */ jsxs87(
5224
+ return /* @__PURE__ */ jsxs88(
5127
5225
  "svg",
5128
5226
  {
5129
5227
  xmlns: "http://www.w3.org/2000/svg",
@@ -5146,9 +5244,9 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5146
5244
  }
5147
5245
 
5148
5246
  // src/components/icons/send/index.tsx
5149
- import { jsx as jsx119, jsxs as jsxs88 } from "react/jsx-runtime";
5247
+ import { jsx as jsx119, jsxs as jsxs89 } from "react/jsx-runtime";
5150
5248
  function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5151
- return /* @__PURE__ */ jsxs88(
5249
+ return /* @__PURE__ */ jsxs89(
5152
5250
  "svg",
5153
5251
  {
5154
5252
  xmlns: "http://www.w3.org/2000/svg",
@@ -5171,9 +5269,9 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5171
5269
  }
5172
5270
 
5173
5271
  // src/components/icons/settings/index.tsx
5174
- import { jsx as jsx120, jsxs as jsxs89 } from "react/jsx-runtime";
5272
+ import { jsx as jsx120, jsxs as jsxs90 } from "react/jsx-runtime";
5175
5273
  function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5176
- return /* @__PURE__ */ jsxs89(
5274
+ return /* @__PURE__ */ jsxs90(
5177
5275
  "svg",
5178
5276
  {
5179
5277
  xmlns: "http://www.w3.org/2000/svg",
@@ -5196,9 +5294,9 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5196
5294
  }
5197
5295
 
5198
5296
  // src/components/icons/share/index.tsx
5199
- import { jsx as jsx121, jsxs as jsxs90 } from "react/jsx-runtime";
5297
+ import { jsx as jsx121, jsxs as jsxs91 } from "react/jsx-runtime";
5200
5298
  function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5201
- return /* @__PURE__ */ jsxs90(
5299
+ return /* @__PURE__ */ jsxs91(
5202
5300
  "svg",
5203
5301
  {
5204
5302
  xmlns: "http://www.w3.org/2000/svg",
@@ -5244,9 +5342,9 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5244
5342
  }
5245
5343
 
5246
5344
  // src/components/icons/shield-check/index.tsx
5247
- import { jsx as jsx123, jsxs as jsxs91 } from "react/jsx-runtime";
5345
+ import { jsx as jsx123, jsxs as jsxs92 } from "react/jsx-runtime";
5248
5346
  function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5249
- return /* @__PURE__ */ jsxs91(
5347
+ return /* @__PURE__ */ jsxs92(
5250
5348
  "svg",
5251
5349
  {
5252
5350
  xmlns: "http://www.w3.org/2000/svg",
@@ -5269,9 +5367,9 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
5269
5367
  }
5270
5368
 
5271
5369
  // src/components/icons/shopping-bag/index.tsx
5272
- import { jsx as jsx124, jsxs as jsxs92 } from "react/jsx-runtime";
5370
+ import { jsx as jsx124, jsxs as jsxs93 } from "react/jsx-runtime";
5273
5371
  function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5274
- return /* @__PURE__ */ jsxs92(
5372
+ return /* @__PURE__ */ jsxs93(
5275
5373
  "svg",
5276
5374
  {
5277
5375
  xmlns: "http://www.w3.org/2000/svg",
@@ -5295,9 +5393,9 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
5295
5393
  }
5296
5394
 
5297
5395
  // src/components/icons/shopping-cart/index.tsx
5298
- import { jsx as jsx125, jsxs as jsxs93 } from "react/jsx-runtime";
5396
+ import { jsx as jsx125, jsxs as jsxs94 } from "react/jsx-runtime";
5299
5397
  function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5300
- return /* @__PURE__ */ jsxs93(
5398
+ return /* @__PURE__ */ jsxs94(
5301
5399
  "svg",
5302
5400
  {
5303
5401
  xmlns: "http://www.w3.org/2000/svg",
@@ -5321,9 +5419,9 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
5321
5419
  }
5322
5420
 
5323
5421
  // src/components/icons/sidebar/index.tsx
5324
- import { jsx as jsx126, jsxs as jsxs94 } from "react/jsx-runtime";
5422
+ import { jsx as jsx126, jsxs as jsxs95 } from "react/jsx-runtime";
5325
5423
  function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5326
- return /* @__PURE__ */ jsxs94(
5424
+ return /* @__PURE__ */ jsxs95(
5327
5425
  "svg",
5328
5426
  {
5329
5427
  xmlns: "http://www.w3.org/2000/svg",
@@ -5346,9 +5444,9 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5346
5444
  }
5347
5445
 
5348
5446
  // src/components/icons/skip-back/index.tsx
5349
- import { jsx as jsx127, jsxs as jsxs95 } from "react/jsx-runtime";
5447
+ import { jsx as jsx127, jsxs as jsxs96 } from "react/jsx-runtime";
5350
5448
  function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5351
- return /* @__PURE__ */ jsxs95(
5449
+ return /* @__PURE__ */ jsxs96(
5352
5450
  "svg",
5353
5451
  {
5354
5452
  xmlns: "http://www.w3.org/2000/svg",
@@ -5371,9 +5469,9 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5371
5469
  }
5372
5470
 
5373
5471
  // src/components/icons/skip-forward/index.tsx
5374
- import { jsx as jsx128, jsxs as jsxs96 } from "react/jsx-runtime";
5472
+ import { jsx as jsx128, jsxs as jsxs97 } from "react/jsx-runtime";
5375
5473
  function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5376
- return /* @__PURE__ */ jsxs96(
5474
+ return /* @__PURE__ */ jsxs97(
5377
5475
  "svg",
5378
5476
  {
5379
5477
  xmlns: "http://www.w3.org/2000/svg",
@@ -5396,9 +5494,9 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
5396
5494
  }
5397
5495
 
5398
5496
  // src/components/icons/sliders/index.tsx
5399
- import { jsx as jsx129, jsxs as jsxs97 } from "react/jsx-runtime";
5497
+ import { jsx as jsx129, jsxs as jsxs98 } from "react/jsx-runtime";
5400
5498
  function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5401
- return /* @__PURE__ */ jsxs97(
5499
+ return /* @__PURE__ */ jsxs98(
5402
5500
  "svg",
5403
5501
  {
5404
5502
  xmlns: "http://www.w3.org/2000/svg",
@@ -5428,9 +5526,9 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5428
5526
  }
5429
5527
 
5430
5528
  // src/components/icons/smile/index.tsx
5431
- import { jsx as jsx130, jsxs as jsxs98 } from "react/jsx-runtime";
5529
+ import { jsx as jsx130, jsxs as jsxs99 } from "react/jsx-runtime";
5432
5530
  function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5433
- return /* @__PURE__ */ jsxs98(
5531
+ return /* @__PURE__ */ jsxs99(
5434
5532
  "svg",
5435
5533
  {
5436
5534
  xmlns: "http://www.w3.org/2000/svg",
@@ -5477,9 +5575,9 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5477
5575
  }
5478
5576
 
5479
5577
  // src/components/icons/sun/index.tsx
5480
- import { jsx as jsx132, jsxs as jsxs99 } from "react/jsx-runtime";
5578
+ import { jsx as jsx132, jsxs as jsxs100 } from "react/jsx-runtime";
5481
5579
  function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5482
- return /* @__PURE__ */ jsxs99(
5580
+ return /* @__PURE__ */ jsxs100(
5483
5581
  "svg",
5484
5582
  {
5485
5583
  xmlns: "http://www.w3.org/2000/svg",
@@ -5509,9 +5607,9 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5509
5607
  }
5510
5608
 
5511
5609
  // src/components/icons/tag/index.tsx
5512
- import { jsx as jsx133, jsxs as jsxs100 } from "react/jsx-runtime";
5610
+ import { jsx as jsx133, jsxs as jsxs101 } from "react/jsx-runtime";
5513
5611
  function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5514
- return /* @__PURE__ */ jsxs100(
5612
+ return /* @__PURE__ */ jsxs101(
5515
5613
  "svg",
5516
5614
  {
5517
5615
  xmlns: "http://www.w3.org/2000/svg",
@@ -5534,9 +5632,9 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5534
5632
  }
5535
5633
 
5536
5634
  // src/components/icons/thumbs-down/index.tsx
5537
- import { jsx as jsx134, jsxs as jsxs101 } from "react/jsx-runtime";
5635
+ import { jsx as jsx134, jsxs as jsxs102 } from "react/jsx-runtime";
5538
5636
  function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5539
- return /* @__PURE__ */ jsxs101(
5637
+ return /* @__PURE__ */ jsxs102(
5540
5638
  "svg",
5541
5639
  {
5542
5640
  xmlns: "http://www.w3.org/2000/svg",
@@ -5559,9 +5657,9 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
5559
5657
  }
5560
5658
 
5561
5659
  // src/components/icons/thumbs-up/index.tsx
5562
- import { jsx as jsx135, jsxs as jsxs102 } from "react/jsx-runtime";
5660
+ import { jsx as jsx135, jsxs as jsxs103 } from "react/jsx-runtime";
5563
5661
  function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5564
- return /* @__PURE__ */ jsxs102(
5662
+ return /* @__PURE__ */ jsxs103(
5565
5663
  "svg",
5566
5664
  {
5567
5665
  xmlns: "http://www.w3.org/2000/svg",
@@ -5584,9 +5682,9 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5584
5682
  }
5585
5683
 
5586
5684
  // src/components/icons/trash/index.tsx
5587
- import { jsx as jsx136, jsxs as jsxs103 } from "react/jsx-runtime";
5685
+ import { jsx as jsx136, jsxs as jsxs104 } from "react/jsx-runtime";
5588
5686
  function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5589
- return /* @__PURE__ */ jsxs103(
5687
+ return /* @__PURE__ */ jsxs104(
5590
5688
  "svg",
5591
5689
  {
5592
5690
  xmlns: "http://www.w3.org/2000/svg",
@@ -5610,9 +5708,9 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5610
5708
  }
5611
5709
 
5612
5710
  // src/components/icons/undo/index.tsx
5613
- import { jsx as jsx137, jsxs as jsxs104 } from "react/jsx-runtime";
5711
+ import { jsx as jsx137, jsxs as jsxs105 } from "react/jsx-runtime";
5614
5712
  function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5615
- return /* @__PURE__ */ jsxs104(
5713
+ return /* @__PURE__ */ jsxs105(
5616
5714
  "svg",
5617
5715
  {
5618
5716
  xmlns: "http://www.w3.org/2000/svg",
@@ -5635,9 +5733,9 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5635
5733
  }
5636
5734
 
5637
5735
  // src/components/icons/unlock/index.tsx
5638
- import { jsx as jsx138, jsxs as jsxs105 } from "react/jsx-runtime";
5736
+ import { jsx as jsx138, jsxs as jsxs106 } from "react/jsx-runtime";
5639
5737
  function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5640
- return /* @__PURE__ */ jsxs105(
5738
+ return /* @__PURE__ */ jsxs106(
5641
5739
  "svg",
5642
5740
  {
5643
5741
  xmlns: "http://www.w3.org/2000/svg",
@@ -5660,9 +5758,9 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5660
5758
  }
5661
5759
 
5662
5760
  // src/components/icons/upload/index.tsx
5663
- import { jsx as jsx139, jsxs as jsxs106 } from "react/jsx-runtime";
5761
+ import { jsx as jsx139, jsxs as jsxs107 } from "react/jsx-runtime";
5664
5762
  function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5665
- return /* @__PURE__ */ jsxs106(
5763
+ return /* @__PURE__ */ jsxs107(
5666
5764
  "svg",
5667
5765
  {
5668
5766
  xmlns: "http://www.w3.org/2000/svg",
@@ -5686,9 +5784,9 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5686
5784
  }
5687
5785
 
5688
5786
  // src/components/icons/user/index.tsx
5689
- import { jsx as jsx140, jsxs as jsxs107 } from "react/jsx-runtime";
5787
+ import { jsx as jsx140, jsxs as jsxs108 } from "react/jsx-runtime";
5690
5788
  function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5691
- return /* @__PURE__ */ jsxs107(
5789
+ return /* @__PURE__ */ jsxs108(
5692
5790
  "svg",
5693
5791
  {
5694
5792
  xmlns: "http://www.w3.org/2000/svg",
@@ -5711,9 +5809,9 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5711
5809
  }
5712
5810
 
5713
5811
  // src/components/icons/user-check/index.tsx
5714
- import { jsx as jsx141, jsxs as jsxs108 } from "react/jsx-runtime";
5812
+ import { jsx as jsx141, jsxs as jsxs109 } from "react/jsx-runtime";
5715
5813
  function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5716
- return /* @__PURE__ */ jsxs108(
5814
+ return /* @__PURE__ */ jsxs109(
5717
5815
  "svg",
5718
5816
  {
5719
5817
  xmlns: "http://www.w3.org/2000/svg",
@@ -5737,9 +5835,9 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5737
5835
  }
5738
5836
 
5739
5837
  // src/components/icons/user-plus/index.tsx
5740
- import { jsx as jsx142, jsxs as jsxs109 } from "react/jsx-runtime";
5838
+ import { jsx as jsx142, jsxs as jsxs110 } from "react/jsx-runtime";
5741
5839
  function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5742
- return /* @__PURE__ */ jsxs109(
5840
+ return /* @__PURE__ */ jsxs110(
5743
5841
  "svg",
5744
5842
  {
5745
5843
  xmlns: "http://www.w3.org/2000/svg",
@@ -5764,9 +5862,9 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5764
5862
  }
5765
5863
 
5766
5864
  // src/components/icons/users/index.tsx
5767
- import { jsx as jsx143, jsxs as jsxs110 } from "react/jsx-runtime";
5865
+ import { jsx as jsx143, jsxs as jsxs111 } from "react/jsx-runtime";
5768
5866
  function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5769
- return /* @__PURE__ */ jsxs110(
5867
+ return /* @__PURE__ */ jsxs111(
5770
5868
  "svg",
5771
5869
  {
5772
5870
  xmlns: "http://www.w3.org/2000/svg",
@@ -5791,9 +5889,9 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5791
5889
  }
5792
5890
 
5793
5891
  // src/components/icons/volume-2/index.tsx
5794
- import { jsx as jsx144, jsxs as jsxs111 } from "react/jsx-runtime";
5892
+ import { jsx as jsx144, jsxs as jsxs112 } from "react/jsx-runtime";
5795
5893
  function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5796
- return /* @__PURE__ */ jsxs111(
5894
+ return /* @__PURE__ */ jsxs112(
5797
5895
  "svg",
5798
5896
  {
5799
5897
  xmlns: "http://www.w3.org/2000/svg",
@@ -5817,9 +5915,9 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5817
5915
  }
5818
5916
 
5819
5917
  // src/components/icons/volume-x/index.tsx
5820
- import { jsx as jsx145, jsxs as jsxs112 } from "react/jsx-runtime";
5918
+ import { jsx as jsx145, jsxs as jsxs113 } from "react/jsx-runtime";
5821
5919
  function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5822
- return /* @__PURE__ */ jsxs112(
5920
+ return /* @__PURE__ */ jsxs113(
5823
5921
  "svg",
5824
5922
  {
5825
5923
  xmlns: "http://www.w3.org/2000/svg",
@@ -5843,9 +5941,9 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5843
5941
  }
5844
5942
 
5845
5943
  // src/components/icons/wifi/index.tsx
5846
- import { jsx as jsx146, jsxs as jsxs113 } from "react/jsx-runtime";
5944
+ import { jsx as jsx146, jsxs as jsxs114 } from "react/jsx-runtime";
5847
5945
  function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5848
- return /* @__PURE__ */ jsxs113(
5946
+ return /* @__PURE__ */ jsxs114(
5849
5947
  "svg",
5850
5948
  {
5851
5949
  xmlns: "http://www.w3.org/2000/svg",