@octavius2929-personal/design-system 1.4.1 → 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
  {
@@ -1456,7 +1523,7 @@ function useStyles14({ error, hasStartIcon, hasTrailing, className }) {
1456
1523
  }
1457
1524
 
1458
1525
  // src/components/base-field/index.tsx
1459
- import { jsx as jsx18, jsxs as jsxs10 } from "react/jsx-runtime";
1526
+ import { jsx as jsx18, jsxs as jsxs11 } from "react/jsx-runtime";
1460
1527
  var BaseField = forwardRef14(function BaseField2({ label: label8, help, error, startIcon: StartIcon, trailing: trailing2, id, className, testId, children }, ref) {
1461
1528
  const autoId = useId2();
1462
1529
  const controlId = id ?? autoId;
@@ -1479,9 +1546,9 @@ var BaseField = forwardRef14(function BaseField2({ label: label8, help, error, s
1479
1546
  "aria-invalid": hasError ? true : void 0,
1480
1547
  "data-testid": slot("input")
1481
1548
  };
1482
- 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: [
1483
1550
  label8 != null && /* @__PURE__ */ jsx18("label", { htmlFor: controlId, className: classes.labelText, "data-testid": slot("label"), children: label8 }),
1484
- /* @__PURE__ */ jsxs10("div", { className: classes.field, children: [
1551
+ /* @__PURE__ */ jsxs11("div", { className: classes.field, children: [
1485
1552
  StartIcon != null && /* @__PURE__ */ jsx18("span", { className: classes.startIconSlot, children: /* @__PURE__ */ jsx18(StartIcon, { size: 18 }) }),
1486
1553
  children(control),
1487
1554
  trailing2 != null && /* @__PURE__ */ jsx18("span", { className: classes.trailingSlot, children: trailing2 })
@@ -1562,12 +1629,12 @@ var TextField = forwardRef15(
1562
1629
  );
1563
1630
 
1564
1631
  // src/components/password-field/index.tsx
1565
- import { forwardRef as forwardRef16, useState as useState3 } from "react";
1632
+ import { forwardRef as forwardRef16, useState as useState4 } from "react";
1566
1633
 
1567
1634
  // src/components/icons/eye/index.tsx
1568
- import { jsx as jsx20, jsxs as jsxs11 } from "react/jsx-runtime";
1635
+ import { jsx as jsx20, jsxs as jsxs12 } from "react/jsx-runtime";
1569
1636
  function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1570
- return /* @__PURE__ */ jsxs11(
1637
+ return /* @__PURE__ */ jsxs12(
1571
1638
  "svg",
1572
1639
  {
1573
1640
  xmlns: "http://www.w3.org/2000/svg",
@@ -1590,9 +1657,9 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1590
1657
  }
1591
1658
 
1592
1659
  // src/components/icons/eye-off/index.tsx
1593
- import { jsx as jsx21, jsxs as jsxs12 } from "react/jsx-runtime";
1660
+ import { jsx as jsx21, jsxs as jsxs13 } from "react/jsx-runtime";
1594
1661
  function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1595
- return /* @__PURE__ */ jsxs12(
1662
+ return /* @__PURE__ */ jsxs13(
1596
1663
  "svg",
1597
1664
  {
1598
1665
  xmlns: "http://www.w3.org/2000/svg",
@@ -1631,7 +1698,7 @@ function useStyles15() {
1631
1698
  import { jsx as jsx22 } from "react/jsx-runtime";
1632
1699
  var PasswordField = forwardRef16(
1633
1700
  function PasswordField2({ label: label8, help, error, startIcon, onChange, id, className, ...rest }, ref) {
1634
- const [reveal, setReveal] = useState3(false);
1701
+ const [reveal, setReveal] = useState4(false);
1635
1702
  const classes = useStyles15();
1636
1703
  const handleChange = (e) => {
1637
1704
  onChange?.(e.target.value);
@@ -1677,7 +1744,7 @@ var PasswordField = forwardRef16(
1677
1744
  );
1678
1745
 
1679
1746
  // src/components/money-field/index.tsx
1680
- 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";
1681
1748
  import { jsx as jsx23 } from "react/jsx-runtime";
1682
1749
  function parseAmount(raw) {
1683
1750
  const cleaned = raw.replace(/[^0-9.-]/g, "");
@@ -1700,8 +1767,8 @@ var MoneyField = forwardRef17(function MoneyField2({
1700
1767
  onBlur,
1701
1768
  ...rest
1702
1769
  }, ref) {
1703
- const [focused, setFocused] = useState4(false);
1704
- const [draft, setDraft] = useState4("");
1770
+ const [focused, setFocused] = useState5(false);
1771
+ const [draft, setDraft] = useState5("");
1705
1772
  const formatter = useMemo19(
1706
1773
  () => new Intl.NumberFormat(locale, { style: "currency", currency }),
1707
1774
  [locale, currency]
@@ -1848,9 +1915,9 @@ var Card2 = Object.assign(CardRoot, {
1848
1915
  import { forwardRef as forwardRef20 } from "react";
1849
1916
 
1850
1917
  // src/components/icons/circle-check/index.tsx
1851
- import { jsx as jsx26, jsxs as jsxs13 } from "react/jsx-runtime";
1918
+ import { jsx as jsx26, jsxs as jsxs14 } from "react/jsx-runtime";
1852
1919
  function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1853
- return /* @__PURE__ */ jsxs13(
1920
+ return /* @__PURE__ */ jsxs14(
1854
1921
  "svg",
1855
1922
  {
1856
1923
  xmlns: "http://www.w3.org/2000/svg",
@@ -1873,9 +1940,9 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
1873
1940
  }
1874
1941
 
1875
1942
  // src/components/icons/circle-x/index.tsx
1876
- import { jsx as jsx27, jsxs as jsxs14 } from "react/jsx-runtime";
1943
+ import { jsx as jsx27, jsxs as jsxs15 } from "react/jsx-runtime";
1877
1944
  function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1878
- return /* @__PURE__ */ jsxs14(
1945
+ return /* @__PURE__ */ jsxs15(
1879
1946
  "svg",
1880
1947
  {
1881
1948
  xmlns: "http://www.w3.org/2000/svg",
@@ -1899,9 +1966,9 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1899
1966
  }
1900
1967
 
1901
1968
  // src/components/icons/info/index.tsx
1902
- import { jsx as jsx28, jsxs as jsxs15 } from "react/jsx-runtime";
1969
+ import { jsx as jsx28, jsxs as jsxs16 } from "react/jsx-runtime";
1903
1970
  function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1904
- return /* @__PURE__ */ jsxs15(
1971
+ return /* @__PURE__ */ jsxs16(
1905
1972
  "svg",
1906
1973
  {
1907
1974
  xmlns: "http://www.w3.org/2000/svg",
@@ -1925,9 +1992,9 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1925
1992
  }
1926
1993
 
1927
1994
  // src/components/icons/triangle-alert/index.tsx
1928
- import { jsx as jsx29, jsxs as jsxs16 } from "react/jsx-runtime";
1995
+ import { jsx as jsx29, jsxs as jsxs17 } from "react/jsx-runtime";
1929
1996
  function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1930
- return /* @__PURE__ */ jsxs16(
1997
+ return /* @__PURE__ */ jsxs17(
1931
1998
  "svg",
1932
1999
  {
1933
2000
  xmlns: "http://www.w3.org/2000/svg",
@@ -1977,7 +2044,7 @@ function useStyles18({
1977
2044
  }
1978
2045
 
1979
2046
  // src/components/alert/index.tsx
1980
- import { jsx as jsx30, jsxs as jsxs17 } from "react/jsx-runtime";
2047
+ import { jsx as jsx30, jsxs as jsxs18 } from "react/jsx-runtime";
1981
2048
  var defaultIcons = {
1982
2049
  info: InfoIcon,
1983
2050
  ok: CircleCheckIcon,
@@ -1994,7 +2061,7 @@ var Alert = forwardRef20(function Alert2({ severity: severity2 = "info", title,
1994
2061
  const styles = useStyles18({ severity: severity2, className });
1995
2062
  const { testId: dataTestId, slot } = useTestId("feedback", testId);
1996
2063
  const IconComponent = icon ?? defaultIcons[severity2];
1997
- return /* @__PURE__ */ jsxs17(
2064
+ return /* @__PURE__ */ jsxs18(
1998
2065
  "div",
1999
2066
  {
2000
2067
  ref,
@@ -2004,7 +2071,7 @@ var Alert = forwardRef20(function Alert2({ severity: severity2 = "info", title,
2004
2071
  ...rest,
2005
2072
  children: [
2006
2073
  /* @__PURE__ */ jsx30("span", { className: styles.iconSlot, "data-testid": slot("icon"), children: /* @__PURE__ */ jsx30(IconComponent, {}) }),
2007
- /* @__PURE__ */ jsxs17("div", { className: styles.content, "data-testid": slot("content"), children: [
2074
+ /* @__PURE__ */ jsxs18("div", { className: styles.content, "data-testid": slot("content"), children: [
2008
2075
  title != null && /* @__PURE__ */ jsx30(Typography, { variant: "h4", children: title }),
2009
2076
  children != null && /* @__PURE__ */ jsx30(Typography, { variant: "body", color: "muted", children })
2010
2077
  ] })
@@ -2020,7 +2087,7 @@ import {
2020
2087
  useEffect as useEffect4,
2021
2088
  useId as useId3,
2022
2089
  useRef as useRef4,
2023
- useState as useState5
2090
+ useState as useState6
2024
2091
  } from "react";
2025
2092
 
2026
2093
  // src/components/tooltip/use-styles.ts
@@ -2048,10 +2115,10 @@ function useStyles19({
2048
2115
  }
2049
2116
 
2050
2117
  // src/components/tooltip/index.tsx
2051
- import { jsx as jsx31, jsxs as jsxs18 } from "react/jsx-runtime";
2118
+ import { jsx as jsx31, jsxs as jsxs19 } from "react/jsx-runtime";
2052
2119
  var HIDE_DELAY = 120;
2053
2120
  var Tooltip = forwardRef21(function Tooltip2({ label: label8, children, placement: placement2, testId }, ref) {
2054
- const [open, setOpen] = useState5(false);
2121
+ const [open, setOpen] = useState6(false);
2055
2122
  const tooltipId = useId3();
2056
2123
  const { wrapper: wrapper4, bubble: bubble2 } = useStyles19({ placement: placement2 });
2057
2124
  const { testId: dataTestId, slot } = useTestId("feedback", testId);
@@ -2088,7 +2155,7 @@ var Tooltip = forwardRef21(function Tooltip2({ label: label8, children, placemen
2088
2155
  const previousDescribedBy = children.props["aria-describedby"];
2089
2156
  const describedBy = open ? [previousDescribedBy, tooltipId].filter(Boolean).join(" ") : previousDescribedBy;
2090
2157
  const trigger2 = cloneElement(children, { "aria-describedby": describedBy });
2091
- return /* @__PURE__ */ jsxs18(
2158
+ return /* @__PURE__ */ jsxs19(
2092
2159
  "span",
2093
2160
  {
2094
2161
  ref,
@@ -2119,7 +2186,7 @@ var Tooltip = forwardRef21(function Tooltip2({ label: label8, children, placemen
2119
2186
  });
2120
2187
 
2121
2188
  // src/components/select/index.tsx
2122
- import { forwardRef as forwardRef22, useEffect as useEffect5, useId as useId4, useRef as useRef5, useState as useState6 } from "react";
2189
+ import { forwardRef as forwardRef22, useEffect as useEffect5, useId as useId4, useRef as useRef5, useState as useState7 } from "react";
2123
2190
 
2124
2191
  // src/components/icons/chevron-down/index.tsx
2125
2192
  import { jsx as jsx32 } from "react/jsx-runtime";
@@ -2178,7 +2245,7 @@ function useStyles20({
2178
2245
  }
2179
2246
 
2180
2247
  // src/components/select/index.tsx
2181
- import { jsx as jsx33, jsxs as jsxs19 } from "react/jsx-runtime";
2248
+ import { jsx as jsx33, jsxs as jsxs20 } from "react/jsx-runtime";
2182
2249
  var Select = forwardRef22(function Select2({
2183
2250
  options,
2184
2251
  value,
@@ -2190,8 +2257,8 @@ var Select = forwardRef22(function Select2({
2190
2257
  "aria-labelledby": ariaLabelledBy,
2191
2258
  ...rest
2192
2259
  }, ref) {
2193
- const [open, setOpen] = useState6(false);
2194
- const [activeIndex, setActiveIndex] = useState6(0);
2260
+ const [open, setOpen] = useState7(false);
2261
+ const [activeIndex, setActiveIndex] = useState7(0);
2195
2262
  const rootRef = useRef5(null);
2196
2263
  const setRootRef = (node) => {
2197
2264
  rootRef.current = node;
@@ -2271,9 +2338,9 @@ var Select = forwardRef22(function Select2({
2271
2338
  break;
2272
2339
  }
2273
2340
  };
2274
- return /* @__PURE__ */ jsxs19("div", { ref: setRootRef, className: root25, ...rest, children: [
2341
+ return /* @__PURE__ */ jsxs20("div", { ref: setRootRef, className: root25, ...rest, children: [
2275
2342
  label8 && /* @__PURE__ */ jsx33("span", { id: labelId, className: labelClass, children: label8 }),
2276
- /* @__PURE__ */ jsxs19(
2343
+ /* @__PURE__ */ jsxs20(
2277
2344
  "button",
2278
2345
  {
2279
2346
  type: "button",
@@ -2355,7 +2422,7 @@ function useStyles21() {
2355
2422
  }
2356
2423
 
2357
2424
  // src/components/slider/index.tsx
2358
- import { jsx as jsx34, jsxs as jsxs20 } from "react/jsx-runtime";
2425
+ import { jsx as jsx34, jsxs as jsxs21 } from "react/jsx-runtime";
2359
2426
  var Slider = forwardRef23(function Slider2({ value = 0, onChange, min = 0, max = 100, step: step2 = 1, disabled: disabled4, label: label8, ...rest }, ref) {
2360
2427
  const { wrapper: wrapper4, label: labelClass, root: root25, track: track4, range: range2, thumb: thumb2, input: input6 } = useStyles21();
2361
2428
  const span = max - min;
@@ -2364,9 +2431,9 @@ var Slider = forwardRef23(function Slider2({ value = 0, onChange, min = 0, max =
2364
2431
  const handleChange = (e) => {
2365
2432
  onChange?.(Number(e.target.value));
2366
2433
  };
2367
- return /* @__PURE__ */ jsxs20("span", { className: wrapper4, children: [
2434
+ return /* @__PURE__ */ jsxs21("span", { className: wrapper4, children: [
2368
2435
  label8 ? /* @__PURE__ */ jsx34("span", { className: labelClass, children: label8 }) : null,
2369
- /* @__PURE__ */ jsxs20("span", { className: root25, children: [
2436
+ /* @__PURE__ */ jsxs21("span", { className: root25, children: [
2370
2437
  /* @__PURE__ */ jsx34("span", { className: track4 }),
2371
2438
  /* @__PURE__ */ jsx34("span", { className: range2, style: { width: `${clamped}%` } }),
2372
2439
  /* @__PURE__ */ jsx34(
@@ -2390,7 +2457,7 @@ var Slider = forwardRef23(function Slider2({ value = 0, onChange, min = 0, max =
2390
2457
  });
2391
2458
 
2392
2459
  // src/components/accordion/index.tsx
2393
- import { forwardRef as forwardRef24, useState as useState7 } from "react";
2460
+ import { forwardRef as forwardRef24, useState as useState8 } from "react";
2394
2461
 
2395
2462
  // src/components/accordion/use-styles.ts
2396
2463
  import { useMemo as useMemo26 } from "react";
@@ -2419,9 +2486,9 @@ function useStyles22({ className }) {
2419
2486
  }
2420
2487
 
2421
2488
  // src/components/accordion/index.tsx
2422
- import { jsx as jsx35, jsxs as jsxs21 } from "react/jsx-runtime";
2489
+ import { jsx as jsx35, jsxs as jsxs22 } from "react/jsx-runtime";
2423
2490
  var Accordion = forwardRef24(function Accordion2({ items, multiple = false, defaultOpen = [], className, testId }, ref) {
2424
- const [open, setOpen] = useState7(defaultOpen);
2491
+ const [open, setOpen] = useState8(defaultOpen);
2425
2492
  const { root: root25, item: item3, header: header3, chevronFor, panel: panel3 } = useStyles22({ className });
2426
2493
  const { testId: dataTestId, slot } = useTestId("layout", testId);
2427
2494
  const toggle = (id) => {
@@ -2436,14 +2503,14 @@ var Accordion = forwardRef24(function Accordion2({ items, multiple = false, defa
2436
2503
  const panelId = `accordion-panel-${it.id}`;
2437
2504
  const headerId = `accordion-header-${it.id}`;
2438
2505
  const itemSlot = slot(`item-${it.id}`);
2439
- return /* @__PURE__ */ jsxs21(
2506
+ return /* @__PURE__ */ jsxs22(
2440
2507
  "div",
2441
2508
  {
2442
2509
  className: item3,
2443
2510
  "data-testid": itemSlot,
2444
2511
  "data-state": states({ expanded: isOpen }),
2445
2512
  children: [
2446
- /* @__PURE__ */ jsxs21(
2513
+ /* @__PURE__ */ jsxs22(
2447
2514
  "button",
2448
2515
  {
2449
2516
  type: "button",
@@ -2522,14 +2589,14 @@ function useStyles23({ className }) {
2522
2589
  }
2523
2590
 
2524
2591
  // src/components/breadcrumbs/index.tsx
2525
- import { jsx as jsx37, jsxs as jsxs22 } from "react/jsx-runtime";
2592
+ import { jsx as jsx37, jsxs as jsxs23 } from "react/jsx-runtime";
2526
2593
  var Breadcrumbs = forwardRef25(function Breadcrumbs2({ items, className, testId, ...rest }, ref) {
2527
2594
  const { root: root25, crumb: crumb2, current: current2, separator: separator2 } = useStyles23({ className });
2528
2595
  const { testId: dataTestId, slot } = useTestId("nav", testId);
2529
2596
  return /* @__PURE__ */ jsx37("nav", { ref, "aria-label": "Breadcrumb", className: root25, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
2530
2597
  const isLast = index === items.length - 1;
2531
2598
  const key = index;
2532
- return /* @__PURE__ */ jsxs22(Fragment, { children: [
2599
+ return /* @__PURE__ */ jsxs23(Fragment, { children: [
2533
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 }),
2534
2601
  !isLast && /* @__PURE__ */ jsx37("span", { className: separator2, children: /* @__PURE__ */ jsx37(ChevronRightIcon, { size: 14 }) })
2535
2602
  ] }, key);
@@ -2586,7 +2653,7 @@ function useStyles24() {
2586
2653
  }
2587
2654
 
2588
2655
  // src/components/pagination/index.tsx
2589
- import { jsx as jsx39, jsxs as jsxs23 } from "react/jsx-runtime";
2656
+ import { jsx as jsx39, jsxs as jsxs24 } from "react/jsx-runtime";
2590
2657
  function buildItems(count, page, siblingCount) {
2591
2658
  const total = Math.max(1, count);
2592
2659
  const first = 1;
@@ -2607,7 +2674,7 @@ var Pagination = forwardRef26(function Pagination2({ count, page = 1, onChange,
2607
2674
  const current2 = Math.min(Math.max(1, page), total);
2608
2675
  const items = buildItems(total, current2, siblingCount);
2609
2676
  const go = (n) => onChange?.(Math.min(Math.max(1, n), total));
2610
- 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: [
2611
2678
  /* @__PURE__ */ jsx39(
2612
2679
  "button",
2613
2680
  {
@@ -2689,7 +2756,7 @@ function useStyles25({ className }) {
2689
2756
  }
2690
2757
 
2691
2758
  // src/components/stepper/index.tsx
2692
- import { jsx as jsx40, jsxs as jsxs24 } from "react/jsx-runtime";
2759
+ import { jsx as jsx40, jsxs as jsxs25 } from "react/jsx-runtime";
2693
2760
  var Stepper = forwardRef27(function Stepper2({ steps, active: active2 = 0, className, testId, ...rest }, ref) {
2694
2761
  const { root: root25, step: step2, connector: connector2, markerFor, labelFor } = useStyles25({ className });
2695
2762
  const { testId: dataTestId, slot } = useTestId("nav", testId);
@@ -2698,8 +2765,8 @@ var Stepper = forwardRef27(function Stepper2({ steps, active: active2 = 0, class
2698
2765
  const isActive = state === "active";
2699
2766
  return (
2700
2767
  // biome-ignore lint/suspicious/noArrayIndexKey: steps are a static, ordered list with no stable id.
2701
- /* @__PURE__ */ jsxs24(Fragment2, { children: [
2702
- /* @__PURE__ */ jsxs24(
2768
+ /* @__PURE__ */ jsxs25(Fragment2, { children: [
2769
+ /* @__PURE__ */ jsxs25(
2703
2770
  "div",
2704
2771
  {
2705
2772
  className: step2,
@@ -2741,7 +2808,7 @@ function useStyles26() {
2741
2808
  }
2742
2809
 
2743
2810
  // src/components/tabs/index.tsx
2744
- 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";
2745
2812
  var ICON_SIZE3 = 16;
2746
2813
  var Tabs = forwardRef28(function Tabs2({ items, value, onChange, testId, ...rest }, ref) {
2747
2814
  const { root: root25, tabClass, panel: panel3 } = useStyles26();
@@ -2779,12 +2846,12 @@ var Tabs = forwardRef28(function Tabs2({ items, value, onChange, testId, ...rest
2779
2846
  break;
2780
2847
  }
2781
2848
  };
2782
- return /* @__PURE__ */ jsxs25(Fragment3, { children: [
2849
+ return /* @__PURE__ */ jsxs26(Fragment3, { children: [
2783
2850
  /* @__PURE__ */ jsx41("div", { ref, role: "tablist", className: root25, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
2784
2851
  const active2 = item3.value === value;
2785
2852
  const tabbable = active2 || activeIndex === -1 && index === 0;
2786
2853
  const ItemIcon = item3.icon;
2787
- return /* @__PURE__ */ jsxs25(
2854
+ return /* @__PURE__ */ jsxs26(
2788
2855
  "button",
2789
2856
  {
2790
2857
  ref: (el) => {
@@ -2833,7 +2900,7 @@ import {
2833
2900
  useEffect as useEffect6,
2834
2901
  useLayoutEffect,
2835
2902
  useRef as useRef7,
2836
- useState as useState8
2903
+ useState as useState9
2837
2904
  } from "react";
2838
2905
 
2839
2906
  // src/components/menu/use-styles.ts
@@ -2860,7 +2927,7 @@ function useStyles27() {
2860
2927
  }
2861
2928
 
2862
2929
  // src/components/menu/index.tsx
2863
- import { jsx as jsx42, jsxs as jsxs26 } from "react/jsx-runtime";
2930
+ import { jsx as jsx42, jsxs as jsxs27 } from "react/jsx-runtime";
2864
2931
  var ICON_SIZE4 = 16;
2865
2932
  function assignRef(ref, value) {
2866
2933
  if (typeof ref === "function") ref(value);
@@ -2869,8 +2936,8 @@ function assignRef(ref, value) {
2869
2936
  var Menu = forwardRef29(function Menu2({ trigger: trigger2, items, testId }, ref) {
2870
2937
  const { wrapper: wrapper4, list: list3, item: item3, dangerItem } = useStyles27();
2871
2938
  const { testId: rootTestId, slot } = useTestId("menu", testId);
2872
- const [open, setOpen] = useState8(false);
2873
- const [alignEnd, setAlignEnd] = useState8(false);
2939
+ const [open, setOpen] = useState9(false);
2940
+ const [alignEnd, setAlignEnd] = useState9(false);
2874
2941
  const rootRef = useRef7(null);
2875
2942
  const setRootRef = (node) => {
2876
2943
  rootRef.current = node;
@@ -2966,7 +3033,7 @@ var Menu = forwardRef29(function Menu2({ trigger: trigger2, items, testId }, ref
2966
3033
  setOpen((prev) => !prev);
2967
3034
  }
2968
3035
  });
2969
- return /* @__PURE__ */ jsxs26(
3036
+ return /* @__PURE__ */ jsxs27(
2970
3037
  "div",
2971
3038
  {
2972
3039
  ref: setRootRef,
@@ -2986,7 +3053,7 @@ var Menu = forwardRef29(function Menu2({ trigger: trigger2, items, testId }, ref
2986
3053
  onKeyDown: onMenuKeyDown,
2987
3054
  children: items.map((entry, index) => {
2988
3055
  const ItemIcon = entry.icon;
2989
- return /* @__PURE__ */ jsxs26(
3056
+ return /* @__PURE__ */ jsxs27(
2990
3057
  "button",
2991
3058
  {
2992
3059
  type: "button",
@@ -3046,7 +3113,7 @@ function useStyles28() {
3046
3113
  }
3047
3114
 
3048
3115
  // src/components/dialog/index.tsx
3049
- import { jsx as jsx43, jsxs as jsxs27 } from "react/jsx-runtime";
3116
+ import { jsx as jsx43, jsxs as jsxs28 } from "react/jsx-runtime";
3050
3117
  var FOCUSABLE = 'a[href], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled]), [tabindex]:not([tabindex="-1"])';
3051
3118
  function assignRef2(ref, value) {
3052
3119
  if (typeof ref === "function") ref(value);
@@ -3115,7 +3182,7 @@ var Dialog = forwardRef30(function Dialog2({ open, onClose, title, actions: acti
3115
3182
  };
3116
3183
  return createPortal(
3117
3184
  // biome-ignore lint/a11y/useKeyWithClickEvents: ESC handled by a document keydown listener.
3118
- /* @__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(
3119
3186
  "div",
3120
3187
  {
3121
3188
  ref: setSurfaceRef,
@@ -3169,7 +3236,7 @@ function useStyles29() {
3169
3236
  }
3170
3237
 
3171
3238
  // src/components/snackbar/index.tsx
3172
- import { jsx as jsx44, jsxs as jsxs28 } from "react/jsx-runtime";
3239
+ import { jsx as jsx44, jsxs as jsxs29 } from "react/jsx-runtime";
3173
3240
  var DEFAULT_DURATION = 5e3;
3174
3241
  var Snackbar = forwardRef31(function Snackbar2({
3175
3242
  open,
@@ -3232,7 +3299,7 @@ var Snackbar = forwardRef31(function Snackbar2({
3232
3299
  };
3233
3300
  if (!open || typeof document === "undefined") return null;
3234
3301
  return createPortal2(
3235
- /* @__PURE__ */ jsxs28(
3302
+ /* @__PURE__ */ jsxs29(
3236
3303
  "div",
3237
3304
  {
3238
3305
  ref,
@@ -3295,13 +3362,13 @@ function useStyles30({ className }) {
3295
3362
  }
3296
3363
 
3297
3364
  // src/components/table/index.tsx
3298
- import { jsx as jsx45, jsxs as jsxs29 } from "react/jsx-runtime";
3365
+ import { jsx as jsx45, jsxs as jsxs30 } from "react/jsx-runtime";
3299
3366
  function TableInner({ columns, rows, getRowKey, className, caption: caption2, testId, ...rest }, ref) {
3300
3367
  const { root: root25, th: th2, td: td2, alignRight: alignRight2, caption: captionClass } = useStyles30({ className });
3301
3368
  const { testId: dataTestId, slot } = useTestId("list", testId);
3302
3369
  const headClass = (column) => column.align === "right" ? `${th2} ${alignRight2}` : th2;
3303
3370
  const cellClass = (column) => column.align === "right" ? `${td2} ${alignRight2}` : td2;
3304
- 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: [
3305
3372
  caption2 != null && /* @__PURE__ */ jsx45("caption", { className: captionClass, children: caption2 }),
3306
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)) }) }),
3307
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)) })
@@ -3333,11 +3400,11 @@ function useStyles31({ className }) {
3333
3400
  }
3334
3401
 
3335
3402
  // src/components/app-bar/index.tsx
3336
- import { jsx as jsx46, jsxs as jsxs30 } from "react/jsx-runtime";
3403
+ import { jsx as jsx46, jsxs as jsxs31 } from "react/jsx-runtime";
3337
3404
  var AppBar = forwardRef33(function AppBar2({ brand: brand2, actions: actions3, className, children, testId, ...rest }, ref) {
3338
3405
  const styles = useStyles31({ className });
3339
3406
  const { testId: dataTestId, slot } = useTestId("nav", testId);
3340
- 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: [
3341
3408
  brand2 !== void 0 ? /* @__PURE__ */ jsx46("div", { className: styles.brand, "data-testid": slot("brand"), children: brand2 }) : null,
3342
3409
  children,
3343
3410
  actions3 !== void 0 ? /* @__PURE__ */ jsx46("div", { className: styles.actions, "data-testid": slot("actions"), children: actions3 }) : null
@@ -3371,11 +3438,11 @@ function useStyles32({
3371
3438
  }
3372
3439
 
3373
3440
  // src/components/list-item/index.tsx
3374
- import { jsx as jsx47, jsxs as jsxs31 } from "react/jsx-runtime";
3441
+ import { jsx as jsx47, jsxs as jsxs32 } from "react/jsx-runtime";
3375
3442
  var ListItem = forwardRef34(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected4, className, testId, children, ...rest }, ref) {
3376
3443
  const styles = useStyles32({ selected: selected4, className });
3377
3444
  const { testId: dataTestId, slot } = useTestId("list", testId);
3378
- return /* @__PURE__ */ jsxs31(
3445
+ return /* @__PURE__ */ jsxs32(
3379
3446
  "div",
3380
3447
  {
3381
3448
  ref,
@@ -3393,9 +3460,9 @@ var ListItem = forwardRef34(function ListItem2({ leading: leading2, trailing: tr
3393
3460
  });
3394
3461
 
3395
3462
  // src/components/icons/alert-circle/index.tsx
3396
- import { jsx as jsx48, jsxs as jsxs32 } from "react/jsx-runtime";
3463
+ import { jsx as jsx48, jsxs as jsxs33 } from "react/jsx-runtime";
3397
3464
  function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3398
- return /* @__PURE__ */ jsxs32(
3465
+ return /* @__PURE__ */ jsxs33(
3399
3466
  "svg",
3400
3467
  {
3401
3468
  xmlns: "http://www.w3.org/2000/svg",
@@ -3419,9 +3486,9 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
3419
3486
  }
3420
3487
 
3421
3488
  // src/components/icons/archive/index.tsx
3422
- import { jsx as jsx49, jsxs as jsxs33 } from "react/jsx-runtime";
3489
+ import { jsx as jsx49, jsxs as jsxs34 } from "react/jsx-runtime";
3423
3490
  function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3424
- return /* @__PURE__ */ jsxs33(
3491
+ return /* @__PURE__ */ jsxs34(
3425
3492
  "svg",
3426
3493
  {
3427
3494
  xmlns: "http://www.w3.org/2000/svg",
@@ -3445,9 +3512,9 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3445
3512
  }
3446
3513
 
3447
3514
  // src/components/icons/arrow-down/index.tsx
3448
- import { jsx as jsx50, jsxs as jsxs34 } from "react/jsx-runtime";
3515
+ import { jsx as jsx50, jsxs as jsxs35 } from "react/jsx-runtime";
3449
3516
  function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3450
- return /* @__PURE__ */ jsxs34(
3517
+ return /* @__PURE__ */ jsxs35(
3451
3518
  "svg",
3452
3519
  {
3453
3520
  xmlns: "http://www.w3.org/2000/svg",
@@ -3470,9 +3537,9 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3470
3537
  }
3471
3538
 
3472
3539
  // src/components/icons/arrow-left/index.tsx
3473
- import { jsx as jsx51, jsxs as jsxs35 } from "react/jsx-runtime";
3540
+ import { jsx as jsx51, jsxs as jsxs36 } from "react/jsx-runtime";
3474
3541
  function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3475
- return /* @__PURE__ */ jsxs35(
3542
+ return /* @__PURE__ */ jsxs36(
3476
3543
  "svg",
3477
3544
  {
3478
3545
  xmlns: "http://www.w3.org/2000/svg",
@@ -3495,9 +3562,9 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3495
3562
  }
3496
3563
 
3497
3564
  // src/components/icons/arrow-right/index.tsx
3498
- import { jsx as jsx52, jsxs as jsxs36 } from "react/jsx-runtime";
3565
+ import { jsx as jsx52, jsxs as jsxs37 } from "react/jsx-runtime";
3499
3566
  function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3500
- return /* @__PURE__ */ jsxs36(
3567
+ return /* @__PURE__ */ jsxs37(
3501
3568
  "svg",
3502
3569
  {
3503
3570
  xmlns: "http://www.w3.org/2000/svg",
@@ -3520,9 +3587,9 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
3520
3587
  }
3521
3588
 
3522
3589
  // src/components/icons/arrow-up/index.tsx
3523
- import { jsx as jsx53, jsxs as jsxs37 } from "react/jsx-runtime";
3590
+ import { jsx as jsx53, jsxs as jsxs38 } from "react/jsx-runtime";
3524
3591
  function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3525
- return /* @__PURE__ */ jsxs37(
3592
+ return /* @__PURE__ */ jsxs38(
3526
3593
  "svg",
3527
3594
  {
3528
3595
  xmlns: "http://www.w3.org/2000/svg",
@@ -3545,9 +3612,9 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3545
3612
  }
3546
3613
 
3547
3614
  // src/components/icons/at-sign/index.tsx
3548
- import { jsx as jsx54, jsxs as jsxs38 } from "react/jsx-runtime";
3615
+ import { jsx as jsx54, jsxs as jsxs39 } from "react/jsx-runtime";
3549
3616
  function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3550
- return /* @__PURE__ */ jsxs38(
3617
+ return /* @__PURE__ */ jsxs39(
3551
3618
  "svg",
3552
3619
  {
3553
3620
  xmlns: "http://www.w3.org/2000/svg",
@@ -3570,9 +3637,9 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3570
3637
  }
3571
3638
 
3572
3639
  // src/components/icons/bell/index.tsx
3573
- import { jsx as jsx55, jsxs as jsxs39 } from "react/jsx-runtime";
3640
+ import { jsx as jsx55, jsxs as jsxs40 } from "react/jsx-runtime";
3574
3641
  function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3575
- return /* @__PURE__ */ jsxs39(
3642
+ return /* @__PURE__ */ jsxs40(
3576
3643
  "svg",
3577
3644
  {
3578
3645
  xmlns: "http://www.w3.org/2000/svg",
@@ -3595,9 +3662,9 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3595
3662
  }
3596
3663
 
3597
3664
  // src/components/icons/bell-off/index.tsx
3598
- import { jsx as jsx56, jsxs as jsxs40 } from "react/jsx-runtime";
3665
+ import { jsx as jsx56, jsxs as jsxs41 } from "react/jsx-runtime";
3599
3666
  function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3600
- return /* @__PURE__ */ jsxs40(
3667
+ return /* @__PURE__ */ jsxs41(
3601
3668
  "svg",
3602
3669
  {
3603
3670
  xmlns: "http://www.w3.org/2000/svg",
@@ -3644,9 +3711,9 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3644
3711
  }
3645
3712
 
3646
3713
  // src/components/icons/calendar/index.tsx
3647
- import { jsx as jsx58, jsxs as jsxs41 } from "react/jsx-runtime";
3714
+ import { jsx as jsx58, jsxs as jsxs42 } from "react/jsx-runtime";
3648
3715
  function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3649
- return /* @__PURE__ */ jsxs41(
3716
+ return /* @__PURE__ */ jsxs42(
3650
3717
  "svg",
3651
3718
  {
3652
3719
  xmlns: "http://www.w3.org/2000/svg",
@@ -3671,9 +3738,9 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3671
3738
  }
3672
3739
 
3673
3740
  // src/components/icons/camera/index.tsx
3674
- import { jsx as jsx59, jsxs as jsxs42 } from "react/jsx-runtime";
3741
+ import { jsx as jsx59, jsxs as jsxs43 } from "react/jsx-runtime";
3675
3742
  function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3676
- return /* @__PURE__ */ jsxs42(
3743
+ return /* @__PURE__ */ jsxs43(
3677
3744
  "svg",
3678
3745
  {
3679
3746
  xmlns: "http://www.w3.org/2000/svg",
@@ -3718,9 +3785,9 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3718
3785
  }
3719
3786
 
3720
3787
  // src/components/icons/chevrons-left/index.tsx
3721
- import { jsx as jsx61, jsxs as jsxs43 } from "react/jsx-runtime";
3788
+ import { jsx as jsx61, jsxs as jsxs44 } from "react/jsx-runtime";
3722
3789
  function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3723
- return /* @__PURE__ */ jsxs43(
3790
+ return /* @__PURE__ */ jsxs44(
3724
3791
  "svg",
3725
3792
  {
3726
3793
  xmlns: "http://www.w3.org/2000/svg",
@@ -3743,9 +3810,9 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
3743
3810
  }
3744
3811
 
3745
3812
  // src/components/icons/chevrons-right/index.tsx
3746
- import { jsx as jsx62, jsxs as jsxs44 } from "react/jsx-runtime";
3813
+ import { jsx as jsx62, jsxs as jsxs45 } from "react/jsx-runtime";
3747
3814
  function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3748
- return /* @__PURE__ */ jsxs44(
3815
+ return /* @__PURE__ */ jsxs45(
3749
3816
  "svg",
3750
3817
  {
3751
3818
  xmlns: "http://www.w3.org/2000/svg",
@@ -3768,9 +3835,9 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
3768
3835
  }
3769
3836
 
3770
3837
  // src/components/icons/clipboard/index.tsx
3771
- import { jsx as jsx63, jsxs as jsxs45 } from "react/jsx-runtime";
3838
+ import { jsx as jsx63, jsxs as jsxs46 } from "react/jsx-runtime";
3772
3839
  function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3773
- return /* @__PURE__ */ jsxs45(
3840
+ return /* @__PURE__ */ jsxs46(
3774
3841
  "svg",
3775
3842
  {
3776
3843
  xmlns: "http://www.w3.org/2000/svg",
@@ -3793,9 +3860,9 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3793
3860
  }
3794
3861
 
3795
3862
  // src/components/icons/clock/index.tsx
3796
- import { jsx as jsx64, jsxs as jsxs46 } from "react/jsx-runtime";
3863
+ import { jsx as jsx64, jsxs as jsxs47 } from "react/jsx-runtime";
3797
3864
  function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3798
- return /* @__PURE__ */ jsxs46(
3865
+ return /* @__PURE__ */ jsxs47(
3799
3866
  "svg",
3800
3867
  {
3801
3868
  xmlns: "http://www.w3.org/2000/svg",
@@ -3840,9 +3907,9 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3840
3907
  }
3841
3908
 
3842
3909
  // src/components/icons/copy/index.tsx
3843
- import { jsx as jsx66, jsxs as jsxs47 } from "react/jsx-runtime";
3910
+ import { jsx as jsx66, jsxs as jsxs48 } from "react/jsx-runtime";
3844
3911
  function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3845
- return /* @__PURE__ */ jsxs47(
3912
+ return /* @__PURE__ */ jsxs48(
3846
3913
  "svg",
3847
3914
  {
3848
3915
  xmlns: "http://www.w3.org/2000/svg",
@@ -3865,9 +3932,9 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3865
3932
  }
3866
3933
 
3867
3934
  // src/components/icons/corner-down-right/index.tsx
3868
- import { jsx as jsx67, jsxs as jsxs48 } from "react/jsx-runtime";
3935
+ import { jsx as jsx67, jsxs as jsxs49 } from "react/jsx-runtime";
3869
3936
  function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3870
- return /* @__PURE__ */ jsxs48(
3937
+ return /* @__PURE__ */ jsxs49(
3871
3938
  "svg",
3872
3939
  {
3873
3940
  xmlns: "http://www.w3.org/2000/svg",
@@ -3890,9 +3957,9 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...r
3890
3957
  }
3891
3958
 
3892
3959
  // src/components/icons/credit-card/index.tsx
3893
- import { jsx as jsx68, jsxs as jsxs49 } from "react/jsx-runtime";
3960
+ import { jsx as jsx68, jsxs as jsxs50 } from "react/jsx-runtime";
3894
3961
  function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3895
- return /* @__PURE__ */ jsxs49(
3962
+ return /* @__PURE__ */ jsxs50(
3896
3963
  "svg",
3897
3964
  {
3898
3965
  xmlns: "http://www.w3.org/2000/svg",
@@ -3915,9 +3982,9 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
3915
3982
  }
3916
3983
 
3917
3984
  // src/components/icons/dollar-sign/index.tsx
3918
- import { jsx as jsx69, jsxs as jsxs50 } from "react/jsx-runtime";
3985
+ import { jsx as jsx69, jsxs as jsxs51 } from "react/jsx-runtime";
3919
3986
  function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3920
- return /* @__PURE__ */ jsxs50(
3987
+ return /* @__PURE__ */ jsxs51(
3921
3988
  "svg",
3922
3989
  {
3923
3990
  xmlns: "http://www.w3.org/2000/svg",
@@ -3940,9 +4007,9 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
3940
4007
  }
3941
4008
 
3942
4009
  // src/components/icons/download/index.tsx
3943
- import { jsx as jsx70, jsxs as jsxs51 } from "react/jsx-runtime";
4010
+ import { jsx as jsx70, jsxs as jsxs52 } from "react/jsx-runtime";
3944
4011
  function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3945
- return /* @__PURE__ */ jsxs51(
4012
+ return /* @__PURE__ */ jsxs52(
3946
4013
  "svg",
3947
4014
  {
3948
4015
  xmlns: "http://www.w3.org/2000/svg",
@@ -3966,9 +4033,9 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3966
4033
  }
3967
4034
 
3968
4035
  // src/components/icons/external-link/index.tsx
3969
- import { jsx as jsx71, jsxs as jsxs52 } from "react/jsx-runtime";
4036
+ import { jsx as jsx71, jsxs as jsxs53 } from "react/jsx-runtime";
3970
4037
  function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3971
- return /* @__PURE__ */ jsxs52(
4038
+ return /* @__PURE__ */ jsxs53(
3972
4039
  "svg",
3973
4040
  {
3974
4041
  xmlns: "http://www.w3.org/2000/svg",
@@ -3992,9 +4059,9 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
3992
4059
  }
3993
4060
 
3994
4061
  // src/components/icons/file/index.tsx
3995
- import { jsx as jsx72, jsxs as jsxs53 } from "react/jsx-runtime";
4062
+ import { jsx as jsx72, jsxs as jsxs54 } from "react/jsx-runtime";
3996
4063
  function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3997
- return /* @__PURE__ */ jsxs53(
4064
+ return /* @__PURE__ */ jsxs54(
3998
4065
  "svg",
3999
4066
  {
4000
4067
  xmlns: "http://www.w3.org/2000/svg",
@@ -4017,9 +4084,9 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4017
4084
  }
4018
4085
 
4019
4086
  // src/components/icons/file-text/index.tsx
4020
- import { jsx as jsx73, jsxs as jsxs54 } from "react/jsx-runtime";
4087
+ import { jsx as jsx73, jsxs as jsxs55 } from "react/jsx-runtime";
4021
4088
  function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4022
- return /* @__PURE__ */ jsxs54(
4089
+ return /* @__PURE__ */ jsxs55(
4023
4090
  "svg",
4024
4091
  {
4025
4092
  xmlns: "http://www.w3.org/2000/svg",
@@ -4067,9 +4134,9 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4067
4134
  }
4068
4135
 
4069
4136
  // src/components/icons/fingerprint/index.tsx
4070
- import { jsx as jsx75, jsxs as jsxs55 } from "react/jsx-runtime";
4137
+ import { jsx as jsx75, jsxs as jsxs56 } from "react/jsx-runtime";
4071
4138
  function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4072
- return /* @__PURE__ */ jsxs55(
4139
+ return /* @__PURE__ */ jsxs56(
4073
4140
  "svg",
4074
4141
  {
4075
4142
  xmlns: "http://www.w3.org/2000/svg",
@@ -4143,9 +4210,9 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
4143
4210
  }
4144
4211
 
4145
4212
  // src/components/icons/gift/index.tsx
4146
- import { jsx as jsx78, jsxs as jsxs56 } from "react/jsx-runtime";
4213
+ import { jsx as jsx78, jsxs as jsxs57 } from "react/jsx-runtime";
4147
4214
  function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4148
- return /* @__PURE__ */ jsxs56(
4215
+ return /* @__PURE__ */ jsxs57(
4149
4216
  "svg",
4150
4217
  {
4151
4218
  xmlns: "http://www.w3.org/2000/svg",
@@ -4192,9 +4259,9 @@ function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4192
4259
  }
4193
4260
 
4194
4261
  // src/components/icons/globe/index.tsx
4195
- import { jsx as jsx80, jsxs as jsxs57 } from "react/jsx-runtime";
4262
+ import { jsx as jsx80, jsxs as jsxs58 } from "react/jsx-runtime";
4196
4263
  function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4197
- return /* @__PURE__ */ jsxs57(
4264
+ return /* @__PURE__ */ jsxs58(
4198
4265
  "svg",
4199
4266
  {
4200
4267
  xmlns: "http://www.w3.org/2000/svg",
@@ -4218,9 +4285,9 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4218
4285
  }
4219
4286
 
4220
4287
  // src/components/icons/grid/index.tsx
4221
- import { jsx as jsx81, jsxs as jsxs58 } from "react/jsx-runtime";
4288
+ import { jsx as jsx81, jsxs as jsxs59 } from "react/jsx-runtime";
4222
4289
  function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4223
- return /* @__PURE__ */ jsxs58(
4290
+ return /* @__PURE__ */ jsxs59(
4224
4291
  "svg",
4225
4292
  {
4226
4293
  xmlns: "http://www.w3.org/2000/svg",
@@ -4268,9 +4335,9 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4268
4335
  }
4269
4336
 
4270
4337
  // src/components/icons/help-circle/index.tsx
4271
- import { jsx as jsx83, jsxs as jsxs59 } from "react/jsx-runtime";
4338
+ import { jsx as jsx83, jsxs as jsxs60 } from "react/jsx-runtime";
4272
4339
  function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4273
- return /* @__PURE__ */ jsxs59(
4340
+ return /* @__PURE__ */ jsxs60(
4274
4341
  "svg",
4275
4342
  {
4276
4343
  xmlns: "http://www.w3.org/2000/svg",
@@ -4294,9 +4361,9 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
4294
4361
  }
4295
4362
 
4296
4363
  // src/components/icons/home/index.tsx
4297
- import { jsx as jsx84, jsxs as jsxs60 } from "react/jsx-runtime";
4364
+ import { jsx as jsx84, jsxs as jsxs61 } from "react/jsx-runtime";
4298
4365
  function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4299
- return /* @__PURE__ */ jsxs60(
4366
+ return /* @__PURE__ */ jsxs61(
4300
4367
  "svg",
4301
4368
  {
4302
4369
  xmlns: "http://www.w3.org/2000/svg",
@@ -4319,9 +4386,9 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4319
4386
  }
4320
4387
 
4321
4388
  // src/components/icons/image/index.tsx
4322
- import { jsx as jsx85, jsxs as jsxs61 } from "react/jsx-runtime";
4389
+ import { jsx as jsx85, jsxs as jsxs62 } from "react/jsx-runtime";
4323
4390
  function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4324
- return /* @__PURE__ */ jsxs61(
4391
+ return /* @__PURE__ */ jsxs62(
4325
4392
  "svg",
4326
4393
  {
4327
4394
  xmlns: "http://www.w3.org/2000/svg",
@@ -4345,9 +4412,9 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4345
4412
  }
4346
4413
 
4347
4414
  // src/components/icons/inbox/index.tsx
4348
- import { jsx as jsx86, jsxs as jsxs62 } from "react/jsx-runtime";
4415
+ import { jsx as jsx86, jsxs as jsxs63 } from "react/jsx-runtime";
4349
4416
  function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4350
- return /* @__PURE__ */ jsxs62(
4417
+ return /* @__PURE__ */ jsxs63(
4351
4418
  "svg",
4352
4419
  {
4353
4420
  xmlns: "http://www.w3.org/2000/svg",
@@ -4370,9 +4437,9 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4370
4437
  }
4371
4438
 
4372
4439
  // src/components/icons/key/index.tsx
4373
- import { jsx as jsx87, jsxs as jsxs63 } from "react/jsx-runtime";
4440
+ import { jsx as jsx87, jsxs as jsxs64 } from "react/jsx-runtime";
4374
4441
  function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4375
- return /* @__PURE__ */ jsxs63(
4442
+ return /* @__PURE__ */ jsxs64(
4376
4443
  "svg",
4377
4444
  {
4378
4445
  xmlns: "http://www.w3.org/2000/svg",
@@ -4396,9 +4463,9 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4396
4463
  }
4397
4464
 
4398
4465
  // src/components/icons/layout/index.tsx
4399
- import { jsx as jsx88, jsxs as jsxs64 } from "react/jsx-runtime";
4466
+ import { jsx as jsx88, jsxs as jsxs65 } from "react/jsx-runtime";
4400
4467
  function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4401
- return /* @__PURE__ */ jsxs64(
4468
+ return /* @__PURE__ */ jsxs65(
4402
4469
  "svg",
4403
4470
  {
4404
4471
  xmlns: "http://www.w3.org/2000/svg",
@@ -4423,9 +4490,9 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4423
4490
  }
4424
4491
 
4425
4492
  // src/components/icons/link/index.tsx
4426
- import { jsx as jsx89, jsxs as jsxs65 } from "react/jsx-runtime";
4493
+ import { jsx as jsx89, jsxs as jsxs66 } from "react/jsx-runtime";
4427
4494
  function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4428
- return /* @__PURE__ */ jsxs65(
4495
+ return /* @__PURE__ */ jsxs66(
4429
4496
  "svg",
4430
4497
  {
4431
4498
  xmlns: "http://www.w3.org/2000/svg",
@@ -4448,9 +4515,9 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4448
4515
  }
4449
4516
 
4450
4517
  // src/components/icons/list/index.tsx
4451
- import { jsx as jsx90, jsxs as jsxs66 } from "react/jsx-runtime";
4518
+ import { jsx as jsx90, jsxs as jsxs67 } from "react/jsx-runtime";
4452
4519
  function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4453
- return /* @__PURE__ */ jsxs66(
4520
+ return /* @__PURE__ */ jsxs67(
4454
4521
  "svg",
4455
4522
  {
4456
4523
  xmlns: "http://www.w3.org/2000/svg",
@@ -4477,9 +4544,9 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4477
4544
  }
4478
4545
 
4479
4546
  // src/components/icons/loader/index.tsx
4480
- import { jsx as jsx91, jsxs as jsxs67 } from "react/jsx-runtime";
4547
+ import { jsx as jsx91, jsxs as jsxs68 } from "react/jsx-runtime";
4481
4548
  function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4482
- return /* @__PURE__ */ jsxs67(
4549
+ return /* @__PURE__ */ jsxs68(
4483
4550
  "svg",
4484
4551
  {
4485
4552
  xmlns: "http://www.w3.org/2000/svg",
@@ -4508,9 +4575,9 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4508
4575
  }
4509
4576
 
4510
4577
  // src/components/icons/lock/index.tsx
4511
- import { jsx as jsx92, jsxs as jsxs68 } from "react/jsx-runtime";
4578
+ import { jsx as jsx92, jsxs as jsxs69 } from "react/jsx-runtime";
4512
4579
  function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4513
- return /* @__PURE__ */ jsxs68(
4580
+ return /* @__PURE__ */ jsxs69(
4514
4581
  "svg",
4515
4582
  {
4516
4583
  xmlns: "http://www.w3.org/2000/svg",
@@ -4533,9 +4600,9 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4533
4600
  }
4534
4601
 
4535
4602
  // src/components/icons/log-in/index.tsx
4536
- import { jsx as jsx93, jsxs as jsxs69 } from "react/jsx-runtime";
4603
+ import { jsx as jsx93, jsxs as jsxs70 } from "react/jsx-runtime";
4537
4604
  function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4538
- return /* @__PURE__ */ jsxs69(
4605
+ return /* @__PURE__ */ jsxs70(
4539
4606
  "svg",
4540
4607
  {
4541
4608
  xmlns: "http://www.w3.org/2000/svg",
@@ -4559,9 +4626,9 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4559
4626
  }
4560
4627
 
4561
4628
  // src/components/icons/log-out/index.tsx
4562
- import { jsx as jsx94, jsxs as jsxs70 } from "react/jsx-runtime";
4629
+ import { jsx as jsx94, jsxs as jsxs71 } from "react/jsx-runtime";
4563
4630
  function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4564
- return /* @__PURE__ */ jsxs70(
4631
+ return /* @__PURE__ */ jsxs71(
4565
4632
  "svg",
4566
4633
  {
4567
4634
  xmlns: "http://www.w3.org/2000/svg",
@@ -4585,9 +4652,9 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4585
4652
  }
4586
4653
 
4587
4654
  // src/components/icons/mail/index.tsx
4588
- import { jsx as jsx95, jsxs as jsxs71 } from "react/jsx-runtime";
4655
+ import { jsx as jsx95, jsxs as jsxs72 } from "react/jsx-runtime";
4589
4656
  function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4590
- return /* @__PURE__ */ jsxs71(
4657
+ return /* @__PURE__ */ jsxs72(
4591
4658
  "svg",
4592
4659
  {
4593
4660
  xmlns: "http://www.w3.org/2000/svg",
@@ -4610,9 +4677,9 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4610
4677
  }
4611
4678
 
4612
4679
  // src/components/icons/map-pin/index.tsx
4613
- import { jsx as jsx96, jsxs as jsxs72 } from "react/jsx-runtime";
4680
+ import { jsx as jsx96, jsxs as jsxs73 } from "react/jsx-runtime";
4614
4681
  function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4615
- return /* @__PURE__ */ jsxs72(
4682
+ return /* @__PURE__ */ jsxs73(
4616
4683
  "svg",
4617
4684
  {
4618
4685
  xmlns: "http://www.w3.org/2000/svg",
@@ -4635,9 +4702,9 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4635
4702
  }
4636
4703
 
4637
4704
  // src/components/icons/maximize/index.tsx
4638
- import { jsx as jsx97, jsxs as jsxs73 } from "react/jsx-runtime";
4705
+ import { jsx as jsx97, jsxs as jsxs74 } from "react/jsx-runtime";
4639
4706
  function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4640
- return /* @__PURE__ */ jsxs73(
4707
+ return /* @__PURE__ */ jsxs74(
4641
4708
  "svg",
4642
4709
  {
4643
4710
  xmlns: "http://www.w3.org/2000/svg",
@@ -4662,9 +4729,9 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
4662
4729
  }
4663
4730
 
4664
4731
  // src/components/icons/menu/index.tsx
4665
- import { jsx as jsx98, jsxs as jsxs74 } from "react/jsx-runtime";
4732
+ import { jsx as jsx98, jsxs as jsxs75 } from "react/jsx-runtime";
4666
4733
  function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4667
- return /* @__PURE__ */ jsxs74(
4734
+ return /* @__PURE__ */ jsxs75(
4668
4735
  "svg",
4669
4736
  {
4670
4737
  xmlns: "http://www.w3.org/2000/svg",
@@ -4732,9 +4799,9 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
4732
4799
  }
4733
4800
 
4734
4801
  // src/components/icons/mic/index.tsx
4735
- import { jsx as jsx101, jsxs as jsxs75 } from "react/jsx-runtime";
4802
+ import { jsx as jsx101, jsxs as jsxs76 } from "react/jsx-runtime";
4736
4803
  function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4737
- return /* @__PURE__ */ jsxs75(
4804
+ return /* @__PURE__ */ jsxs76(
4738
4805
  "svg",
4739
4806
  {
4740
4807
  xmlns: "http://www.w3.org/2000/svg",
@@ -4758,9 +4825,9 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4758
4825
  }
4759
4826
 
4760
4827
  // src/components/icons/minimize/index.tsx
4761
- import { jsx as jsx102, jsxs as jsxs76 } from "react/jsx-runtime";
4828
+ import { jsx as jsx102, jsxs as jsxs77 } from "react/jsx-runtime";
4762
4829
  function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4763
- return /* @__PURE__ */ jsxs76(
4830
+ return /* @__PURE__ */ jsxs77(
4764
4831
  "svg",
4765
4832
  {
4766
4833
  xmlns: "http://www.w3.org/2000/svg",
@@ -4829,9 +4896,9 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4829
4896
  }
4830
4897
 
4831
4898
  // src/components/icons/more-horizontal/index.tsx
4832
- import { jsx as jsx105, jsxs as jsxs77 } from "react/jsx-runtime";
4899
+ import { jsx as jsx105, jsxs as jsxs78 } from "react/jsx-runtime";
4833
4900
  function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4834
- return /* @__PURE__ */ jsxs77(
4901
+ return /* @__PURE__ */ jsxs78(
4835
4902
  "svg",
4836
4903
  {
4837
4904
  xmlns: "http://www.w3.org/2000/svg",
@@ -4855,9 +4922,9 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...re
4855
4922
  }
4856
4923
 
4857
4924
  // src/components/icons/more-vertical/index.tsx
4858
- import { jsx as jsx106, jsxs as jsxs78 } from "react/jsx-runtime";
4925
+ import { jsx as jsx106, jsxs as jsxs79 } from "react/jsx-runtime";
4859
4926
  function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4860
- return /* @__PURE__ */ jsxs78(
4927
+ return /* @__PURE__ */ jsxs79(
4861
4928
  "svg",
4862
4929
  {
4863
4930
  xmlns: "http://www.w3.org/2000/svg",
@@ -4881,9 +4948,9 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
4881
4948
  }
4882
4949
 
4883
4950
  // src/components/icons/package/index.tsx
4884
- import { jsx as jsx107, jsxs as jsxs79 } from "react/jsx-runtime";
4951
+ import { jsx as jsx107, jsxs as jsxs80 } from "react/jsx-runtime";
4885
4952
  function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4886
- return /* @__PURE__ */ jsxs79(
4953
+ return /* @__PURE__ */ jsxs80(
4887
4954
  "svg",
4888
4955
  {
4889
4956
  xmlns: "http://www.w3.org/2000/svg",
@@ -4929,9 +4996,9 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
4929
4996
  }
4930
4997
 
4931
4998
  // src/components/icons/pause/index.tsx
4932
- import { jsx as jsx109, jsxs as jsxs80 } from "react/jsx-runtime";
4999
+ import { jsx as jsx109, jsxs as jsxs81 } from "react/jsx-runtime";
4933
5000
  function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4934
- return /* @__PURE__ */ jsxs80(
5001
+ return /* @__PURE__ */ jsxs81(
4935
5002
  "svg",
4936
5003
  {
4937
5004
  xmlns: "http://www.w3.org/2000/svg",
@@ -4954,9 +5021,9 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4954
5021
  }
4955
5022
 
4956
5023
  // src/components/icons/pencil/index.tsx
4957
- import { jsx as jsx110, jsxs as jsxs81 } from "react/jsx-runtime";
5024
+ import { jsx as jsx110, jsxs as jsxs82 } from "react/jsx-runtime";
4958
5025
  function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4959
- return /* @__PURE__ */ jsxs81(
5026
+ return /* @__PURE__ */ jsxs82(
4960
5027
  "svg",
4961
5028
  {
4962
5029
  xmlns: "http://www.w3.org/2000/svg",
@@ -5023,9 +5090,9 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5023
5090
  }
5024
5091
 
5025
5092
  // src/components/icons/plus/index.tsx
5026
- import { jsx as jsx113, jsxs as jsxs82 } from "react/jsx-runtime";
5093
+ import { jsx as jsx113, jsxs as jsxs83 } from "react/jsx-runtime";
5027
5094
  function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5028
- return /* @__PURE__ */ jsxs82(
5095
+ return /* @__PURE__ */ jsxs83(
5029
5096
  "svg",
5030
5097
  {
5031
5098
  xmlns: "http://www.w3.org/2000/svg",
@@ -5048,9 +5115,9 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5048
5115
  }
5049
5116
 
5050
5117
  // src/components/icons/printer/index.tsx
5051
- import { jsx as jsx114, jsxs as jsxs83 } from "react/jsx-runtime";
5118
+ import { jsx as jsx114, jsxs as jsxs84 } from "react/jsx-runtime";
5052
5119
  function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5053
- return /* @__PURE__ */ jsxs83(
5120
+ return /* @__PURE__ */ jsxs84(
5054
5121
  "svg",
5055
5122
  {
5056
5123
  xmlns: "http://www.w3.org/2000/svg",
@@ -5074,9 +5141,9 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5074
5141
  }
5075
5142
 
5076
5143
  // src/components/icons/redo/index.tsx
5077
- import { jsx as jsx115, jsxs as jsxs84 } from "react/jsx-runtime";
5144
+ import { jsx as jsx115, jsxs as jsxs85 } from "react/jsx-runtime";
5078
5145
  function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5079
- return /* @__PURE__ */ jsxs84(
5146
+ return /* @__PURE__ */ jsxs85(
5080
5147
  "svg",
5081
5148
  {
5082
5149
  xmlns: "http://www.w3.org/2000/svg",
@@ -5099,9 +5166,9 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5099
5166
  }
5100
5167
 
5101
5168
  // src/components/icons/refresh-cw/index.tsx
5102
- import { jsx as jsx116, jsxs as jsxs85 } from "react/jsx-runtime";
5169
+ import { jsx as jsx116, jsxs as jsxs86 } from "react/jsx-runtime";
5103
5170
  function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5104
- return /* @__PURE__ */ jsxs85(
5171
+ return /* @__PURE__ */ jsxs86(
5105
5172
  "svg",
5106
5173
  {
5107
5174
  xmlns: "http://www.w3.org/2000/svg",
@@ -5126,9 +5193,9 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5126
5193
  }
5127
5194
 
5128
5195
  // src/components/icons/save/index.tsx
5129
- import { jsx as jsx117, jsxs as jsxs86 } from "react/jsx-runtime";
5196
+ import { jsx as jsx117, jsxs as jsxs87 } from "react/jsx-runtime";
5130
5197
  function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5131
- return /* @__PURE__ */ jsxs86(
5198
+ return /* @__PURE__ */ jsxs87(
5132
5199
  "svg",
5133
5200
  {
5134
5201
  xmlns: "http://www.w3.org/2000/svg",
@@ -5152,9 +5219,9 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5152
5219
  }
5153
5220
 
5154
5221
  // src/components/icons/search/index.tsx
5155
- import { jsx as jsx118, jsxs as jsxs87 } from "react/jsx-runtime";
5222
+ import { jsx as jsx118, jsxs as jsxs88 } from "react/jsx-runtime";
5156
5223
  function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5157
- return /* @__PURE__ */ jsxs87(
5224
+ return /* @__PURE__ */ jsxs88(
5158
5225
  "svg",
5159
5226
  {
5160
5227
  xmlns: "http://www.w3.org/2000/svg",
@@ -5177,9 +5244,9 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5177
5244
  }
5178
5245
 
5179
5246
  // src/components/icons/send/index.tsx
5180
- import { jsx as jsx119, jsxs as jsxs88 } from "react/jsx-runtime";
5247
+ import { jsx as jsx119, jsxs as jsxs89 } from "react/jsx-runtime";
5181
5248
  function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5182
- return /* @__PURE__ */ jsxs88(
5249
+ return /* @__PURE__ */ jsxs89(
5183
5250
  "svg",
5184
5251
  {
5185
5252
  xmlns: "http://www.w3.org/2000/svg",
@@ -5202,9 +5269,9 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5202
5269
  }
5203
5270
 
5204
5271
  // src/components/icons/settings/index.tsx
5205
- import { jsx as jsx120, jsxs as jsxs89 } from "react/jsx-runtime";
5272
+ import { jsx as jsx120, jsxs as jsxs90 } from "react/jsx-runtime";
5206
5273
  function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5207
- return /* @__PURE__ */ jsxs89(
5274
+ return /* @__PURE__ */ jsxs90(
5208
5275
  "svg",
5209
5276
  {
5210
5277
  xmlns: "http://www.w3.org/2000/svg",
@@ -5227,9 +5294,9 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5227
5294
  }
5228
5295
 
5229
5296
  // src/components/icons/share/index.tsx
5230
- import { jsx as jsx121, jsxs as jsxs90 } from "react/jsx-runtime";
5297
+ import { jsx as jsx121, jsxs as jsxs91 } from "react/jsx-runtime";
5231
5298
  function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5232
- return /* @__PURE__ */ jsxs90(
5299
+ return /* @__PURE__ */ jsxs91(
5233
5300
  "svg",
5234
5301
  {
5235
5302
  xmlns: "http://www.w3.org/2000/svg",
@@ -5275,9 +5342,9 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5275
5342
  }
5276
5343
 
5277
5344
  // src/components/icons/shield-check/index.tsx
5278
- import { jsx as jsx123, jsxs as jsxs91 } from "react/jsx-runtime";
5345
+ import { jsx as jsx123, jsxs as jsxs92 } from "react/jsx-runtime";
5279
5346
  function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5280
- return /* @__PURE__ */ jsxs91(
5347
+ return /* @__PURE__ */ jsxs92(
5281
5348
  "svg",
5282
5349
  {
5283
5350
  xmlns: "http://www.w3.org/2000/svg",
@@ -5300,9 +5367,9 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
5300
5367
  }
5301
5368
 
5302
5369
  // src/components/icons/shopping-bag/index.tsx
5303
- import { jsx as jsx124, jsxs as jsxs92 } from "react/jsx-runtime";
5370
+ import { jsx as jsx124, jsxs as jsxs93 } from "react/jsx-runtime";
5304
5371
  function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5305
- return /* @__PURE__ */ jsxs92(
5372
+ return /* @__PURE__ */ jsxs93(
5306
5373
  "svg",
5307
5374
  {
5308
5375
  xmlns: "http://www.w3.org/2000/svg",
@@ -5326,9 +5393,9 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
5326
5393
  }
5327
5394
 
5328
5395
  // src/components/icons/shopping-cart/index.tsx
5329
- import { jsx as jsx125, jsxs as jsxs93 } from "react/jsx-runtime";
5396
+ import { jsx as jsx125, jsxs as jsxs94 } from "react/jsx-runtime";
5330
5397
  function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5331
- return /* @__PURE__ */ jsxs93(
5398
+ return /* @__PURE__ */ jsxs94(
5332
5399
  "svg",
5333
5400
  {
5334
5401
  xmlns: "http://www.w3.org/2000/svg",
@@ -5352,9 +5419,9 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
5352
5419
  }
5353
5420
 
5354
5421
  // src/components/icons/sidebar/index.tsx
5355
- import { jsx as jsx126, jsxs as jsxs94 } from "react/jsx-runtime";
5422
+ import { jsx as jsx126, jsxs as jsxs95 } from "react/jsx-runtime";
5356
5423
  function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5357
- return /* @__PURE__ */ jsxs94(
5424
+ return /* @__PURE__ */ jsxs95(
5358
5425
  "svg",
5359
5426
  {
5360
5427
  xmlns: "http://www.w3.org/2000/svg",
@@ -5377,9 +5444,9 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5377
5444
  }
5378
5445
 
5379
5446
  // src/components/icons/skip-back/index.tsx
5380
- import { jsx as jsx127, jsxs as jsxs95 } from "react/jsx-runtime";
5447
+ import { jsx as jsx127, jsxs as jsxs96 } from "react/jsx-runtime";
5381
5448
  function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5382
- return /* @__PURE__ */ jsxs95(
5449
+ return /* @__PURE__ */ jsxs96(
5383
5450
  "svg",
5384
5451
  {
5385
5452
  xmlns: "http://www.w3.org/2000/svg",
@@ -5402,9 +5469,9 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5402
5469
  }
5403
5470
 
5404
5471
  // src/components/icons/skip-forward/index.tsx
5405
- import { jsx as jsx128, jsxs as jsxs96 } from "react/jsx-runtime";
5472
+ import { jsx as jsx128, jsxs as jsxs97 } from "react/jsx-runtime";
5406
5473
  function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5407
- return /* @__PURE__ */ jsxs96(
5474
+ return /* @__PURE__ */ jsxs97(
5408
5475
  "svg",
5409
5476
  {
5410
5477
  xmlns: "http://www.w3.org/2000/svg",
@@ -5427,9 +5494,9 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
5427
5494
  }
5428
5495
 
5429
5496
  // src/components/icons/sliders/index.tsx
5430
- import { jsx as jsx129, jsxs as jsxs97 } from "react/jsx-runtime";
5497
+ import { jsx as jsx129, jsxs as jsxs98 } from "react/jsx-runtime";
5431
5498
  function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5432
- return /* @__PURE__ */ jsxs97(
5499
+ return /* @__PURE__ */ jsxs98(
5433
5500
  "svg",
5434
5501
  {
5435
5502
  xmlns: "http://www.w3.org/2000/svg",
@@ -5459,9 +5526,9 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5459
5526
  }
5460
5527
 
5461
5528
  // src/components/icons/smile/index.tsx
5462
- import { jsx as jsx130, jsxs as jsxs98 } from "react/jsx-runtime";
5529
+ import { jsx as jsx130, jsxs as jsxs99 } from "react/jsx-runtime";
5463
5530
  function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5464
- return /* @__PURE__ */ jsxs98(
5531
+ return /* @__PURE__ */ jsxs99(
5465
5532
  "svg",
5466
5533
  {
5467
5534
  xmlns: "http://www.w3.org/2000/svg",
@@ -5508,9 +5575,9 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5508
5575
  }
5509
5576
 
5510
5577
  // src/components/icons/sun/index.tsx
5511
- import { jsx as jsx132, jsxs as jsxs99 } from "react/jsx-runtime";
5578
+ import { jsx as jsx132, jsxs as jsxs100 } from "react/jsx-runtime";
5512
5579
  function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5513
- return /* @__PURE__ */ jsxs99(
5580
+ return /* @__PURE__ */ jsxs100(
5514
5581
  "svg",
5515
5582
  {
5516
5583
  xmlns: "http://www.w3.org/2000/svg",
@@ -5540,9 +5607,9 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5540
5607
  }
5541
5608
 
5542
5609
  // src/components/icons/tag/index.tsx
5543
- import { jsx as jsx133, jsxs as jsxs100 } from "react/jsx-runtime";
5610
+ import { jsx as jsx133, jsxs as jsxs101 } from "react/jsx-runtime";
5544
5611
  function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5545
- return /* @__PURE__ */ jsxs100(
5612
+ return /* @__PURE__ */ jsxs101(
5546
5613
  "svg",
5547
5614
  {
5548
5615
  xmlns: "http://www.w3.org/2000/svg",
@@ -5565,9 +5632,9 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5565
5632
  }
5566
5633
 
5567
5634
  // src/components/icons/thumbs-down/index.tsx
5568
- import { jsx as jsx134, jsxs as jsxs101 } from "react/jsx-runtime";
5635
+ import { jsx as jsx134, jsxs as jsxs102 } from "react/jsx-runtime";
5569
5636
  function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5570
- return /* @__PURE__ */ jsxs101(
5637
+ return /* @__PURE__ */ jsxs102(
5571
5638
  "svg",
5572
5639
  {
5573
5640
  xmlns: "http://www.w3.org/2000/svg",
@@ -5590,9 +5657,9 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
5590
5657
  }
5591
5658
 
5592
5659
  // src/components/icons/thumbs-up/index.tsx
5593
- import { jsx as jsx135, jsxs as jsxs102 } from "react/jsx-runtime";
5660
+ import { jsx as jsx135, jsxs as jsxs103 } from "react/jsx-runtime";
5594
5661
  function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5595
- return /* @__PURE__ */ jsxs102(
5662
+ return /* @__PURE__ */ jsxs103(
5596
5663
  "svg",
5597
5664
  {
5598
5665
  xmlns: "http://www.w3.org/2000/svg",
@@ -5615,9 +5682,9 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5615
5682
  }
5616
5683
 
5617
5684
  // src/components/icons/trash/index.tsx
5618
- import { jsx as jsx136, jsxs as jsxs103 } from "react/jsx-runtime";
5685
+ import { jsx as jsx136, jsxs as jsxs104 } from "react/jsx-runtime";
5619
5686
  function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5620
- return /* @__PURE__ */ jsxs103(
5687
+ return /* @__PURE__ */ jsxs104(
5621
5688
  "svg",
5622
5689
  {
5623
5690
  xmlns: "http://www.w3.org/2000/svg",
@@ -5641,9 +5708,9 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5641
5708
  }
5642
5709
 
5643
5710
  // src/components/icons/undo/index.tsx
5644
- import { jsx as jsx137, jsxs as jsxs104 } from "react/jsx-runtime";
5711
+ import { jsx as jsx137, jsxs as jsxs105 } from "react/jsx-runtime";
5645
5712
  function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5646
- return /* @__PURE__ */ jsxs104(
5713
+ return /* @__PURE__ */ jsxs105(
5647
5714
  "svg",
5648
5715
  {
5649
5716
  xmlns: "http://www.w3.org/2000/svg",
@@ -5666,9 +5733,9 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5666
5733
  }
5667
5734
 
5668
5735
  // src/components/icons/unlock/index.tsx
5669
- import { jsx as jsx138, jsxs as jsxs105 } from "react/jsx-runtime";
5736
+ import { jsx as jsx138, jsxs as jsxs106 } from "react/jsx-runtime";
5670
5737
  function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5671
- return /* @__PURE__ */ jsxs105(
5738
+ return /* @__PURE__ */ jsxs106(
5672
5739
  "svg",
5673
5740
  {
5674
5741
  xmlns: "http://www.w3.org/2000/svg",
@@ -5691,9 +5758,9 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5691
5758
  }
5692
5759
 
5693
5760
  // src/components/icons/upload/index.tsx
5694
- import { jsx as jsx139, jsxs as jsxs106 } from "react/jsx-runtime";
5761
+ import { jsx as jsx139, jsxs as jsxs107 } from "react/jsx-runtime";
5695
5762
  function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5696
- return /* @__PURE__ */ jsxs106(
5763
+ return /* @__PURE__ */ jsxs107(
5697
5764
  "svg",
5698
5765
  {
5699
5766
  xmlns: "http://www.w3.org/2000/svg",
@@ -5717,9 +5784,9 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5717
5784
  }
5718
5785
 
5719
5786
  // src/components/icons/user/index.tsx
5720
- import { jsx as jsx140, jsxs as jsxs107 } from "react/jsx-runtime";
5787
+ import { jsx as jsx140, jsxs as jsxs108 } from "react/jsx-runtime";
5721
5788
  function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5722
- return /* @__PURE__ */ jsxs107(
5789
+ return /* @__PURE__ */ jsxs108(
5723
5790
  "svg",
5724
5791
  {
5725
5792
  xmlns: "http://www.w3.org/2000/svg",
@@ -5742,9 +5809,9 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5742
5809
  }
5743
5810
 
5744
5811
  // src/components/icons/user-check/index.tsx
5745
- import { jsx as jsx141, jsxs as jsxs108 } from "react/jsx-runtime";
5812
+ import { jsx as jsx141, jsxs as jsxs109 } from "react/jsx-runtime";
5746
5813
  function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5747
- return /* @__PURE__ */ jsxs108(
5814
+ return /* @__PURE__ */ jsxs109(
5748
5815
  "svg",
5749
5816
  {
5750
5817
  xmlns: "http://www.w3.org/2000/svg",
@@ -5768,9 +5835,9 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5768
5835
  }
5769
5836
 
5770
5837
  // src/components/icons/user-plus/index.tsx
5771
- import { jsx as jsx142, jsxs as jsxs109 } from "react/jsx-runtime";
5838
+ import { jsx as jsx142, jsxs as jsxs110 } from "react/jsx-runtime";
5772
5839
  function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5773
- return /* @__PURE__ */ jsxs109(
5840
+ return /* @__PURE__ */ jsxs110(
5774
5841
  "svg",
5775
5842
  {
5776
5843
  xmlns: "http://www.w3.org/2000/svg",
@@ -5795,9 +5862,9 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5795
5862
  }
5796
5863
 
5797
5864
  // src/components/icons/users/index.tsx
5798
- import { jsx as jsx143, jsxs as jsxs110 } from "react/jsx-runtime";
5865
+ import { jsx as jsx143, jsxs as jsxs111 } from "react/jsx-runtime";
5799
5866
  function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5800
- return /* @__PURE__ */ jsxs110(
5867
+ return /* @__PURE__ */ jsxs111(
5801
5868
  "svg",
5802
5869
  {
5803
5870
  xmlns: "http://www.w3.org/2000/svg",
@@ -5822,9 +5889,9 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5822
5889
  }
5823
5890
 
5824
5891
  // src/components/icons/volume-2/index.tsx
5825
- import { jsx as jsx144, jsxs as jsxs111 } from "react/jsx-runtime";
5892
+ import { jsx as jsx144, jsxs as jsxs112 } from "react/jsx-runtime";
5826
5893
  function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5827
- return /* @__PURE__ */ jsxs111(
5894
+ return /* @__PURE__ */ jsxs112(
5828
5895
  "svg",
5829
5896
  {
5830
5897
  xmlns: "http://www.w3.org/2000/svg",
@@ -5848,9 +5915,9 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5848
5915
  }
5849
5916
 
5850
5917
  // src/components/icons/volume-x/index.tsx
5851
- import { jsx as jsx145, jsxs as jsxs112 } from "react/jsx-runtime";
5918
+ import { jsx as jsx145, jsxs as jsxs113 } from "react/jsx-runtime";
5852
5919
  function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5853
- return /* @__PURE__ */ jsxs112(
5920
+ return /* @__PURE__ */ jsxs113(
5854
5921
  "svg",
5855
5922
  {
5856
5923
  xmlns: "http://www.w3.org/2000/svg",
@@ -5874,9 +5941,9 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5874
5941
  }
5875
5942
 
5876
5943
  // src/components/icons/wifi/index.tsx
5877
- import { jsx as jsx146, jsxs as jsxs113 } from "react/jsx-runtime";
5944
+ import { jsx as jsx146, jsxs as jsxs114 } from "react/jsx-runtime";
5878
5945
  function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5879
- return /* @__PURE__ */ jsxs113(
5946
+ return /* @__PURE__ */ jsxs114(
5880
5947
  "svg",
5881
5948
  {
5882
5949
  xmlns: "http://www.w3.org/2000/svg",