@octavius2929-personal/design-system 1.3.0 → 1.4.1

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.cjs CHANGED
@@ -117,6 +117,7 @@ __export(index_exports, {
117
117
  PrinterIcon: () => PrinterIcon,
118
118
  Progress: () => Progress,
119
119
  Radio: () => Radio,
120
+ RadioGroup: () => RadioGroup,
120
121
  RedoIcon: () => RedoIcon,
121
122
  RefreshCwIcon: () => RefreshCwIcon,
122
123
  SaveIcon: () => SaveIcon,
@@ -965,7 +966,7 @@ var vertical = "use-styles_vertical__1n7v7yj2";
965
966
  // src/components/divider/use-styles.ts
966
967
  function useStyles5({ vertical: vertical2, hasLabel }) {
967
968
  const { themeClass } = useTheme();
968
- const root24 = (0, import_react14.useMemo)(
969
+ const root25 = (0, import_react14.useMemo)(
969
970
  () => [
970
971
  themeClass,
971
972
  root2,
@@ -973,23 +974,23 @@ function useStyles5({ vertical: vertical2, hasLabel }) {
973
974
  ].filter(Boolean).join(" "),
974
975
  [themeClass, vertical2, hasLabel]
975
976
  );
976
- return { root: root24, line, label };
977
+ return { root: root25, line, label };
977
978
  }
978
979
 
979
980
  // src/components/divider/index.tsx
980
981
  var import_jsx_runtime7 = require("react/jsx-runtime");
981
- var Divider = (0, import_react15.forwardRef)(function Divider2({ vertical: vertical2, label: label7, testId, ...rest }, ref) {
982
- const hasLabel = label7 != null;
983
- const { root: root24, line: line2, label: labelClass } = useStyles5({ vertical: vertical2, hasLabel });
982
+ var Divider = (0, import_react15.forwardRef)(function Divider2({ vertical: vertical2, label: label8, testId, ...rest }, ref) {
983
+ const hasLabel = label8 != null;
984
+ const { root: root25, line: line2, label: labelClass } = useStyles5({ vertical: vertical2, hasLabel });
984
985
  const { testId: dataTestId, slot } = useTestId("layout", testId);
985
986
  if (hasLabel) {
986
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { ref, role: "separator", className: root24, "data-testid": dataTestId, ...rest, children: [
987
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { ref, role: "separator", className: root25, "data-testid": dataTestId, ...rest, children: [
987
988
  /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: line2 }),
988
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: labelClass, "data-testid": slot("label"), children: label7 }),
989
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: labelClass, "data-testid": slot("label"), children: label8 }),
989
990
  /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: line2 })
990
991
  ] });
991
992
  }
992
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { ref, role: "separator", className: root24, "data-testid": dataTestId, ...rest });
993
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { ref, role: "separator", className: root25, "data-testid": dataTestId, ...rest });
993
994
  });
994
995
 
995
996
  // src/components/avatar/index.tsx
@@ -1010,7 +1011,7 @@ function useStyles6({
1010
1011
  className
1011
1012
  }) {
1012
1013
  const { themeClass } = useTheme();
1013
- const root24 = (0, import_react16.useMemo)(
1014
+ const root25 = (0, import_react16.useMemo)(
1014
1015
  () => [
1015
1016
  themeClass,
1016
1017
  root3,
@@ -1020,15 +1021,15 @@ function useStyles6({
1020
1021
  ].filter(Boolean).join(" "),
1021
1022
  [themeClass, size3, filled, className]
1022
1023
  );
1023
- return { root: root24 };
1024
+ return { root: root25 };
1024
1025
  }
1025
1026
 
1026
1027
  // src/components/avatar/index.tsx
1027
1028
  var import_jsx_runtime8 = require("react/jsx-runtime");
1028
1029
  var Avatar = (0, import_react17.forwardRef)(function Avatar2({ size: size3, filled, className, children, testId, ...rest }, ref) {
1029
- const { root: root24 } = useStyles6({ size: size3, filled, className });
1030
+ const { root: root25 } = useStyles6({ size: size3, filled, className });
1030
1031
  const { testId: dataTestId } = useTestId("media", testId);
1031
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { ref, className: root24, "data-testid": dataTestId, ...rest, children });
1032
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { ref, className: root25, "data-testid": dataTestId, ...rest, children });
1032
1033
  });
1033
1034
 
1034
1035
  // src/components/badge/index.tsx
@@ -1048,20 +1049,20 @@ function useStyles7({
1048
1049
  className
1049
1050
  }) {
1050
1051
  const { themeClass } = useTheme();
1051
- const root24 = (0, import_react18.useMemo)(
1052
+ const root25 = (0, import_react18.useMemo)(
1052
1053
  () => [themeClass, root4, className].filter(Boolean).join(" "),
1053
1054
  [themeClass, className]
1054
1055
  );
1055
1056
  const dot3 = (0, import_react18.useMemo)(() => [dot, tone2[tone4]].join(" "), [tone4]);
1056
- return { root: root24, dot: dot3 };
1057
+ return { root: root25, dot: dot3 };
1057
1058
  }
1058
1059
 
1059
1060
  // src/components/badge/index.tsx
1060
1061
  var import_jsx_runtime9 = require("react/jsx-runtime");
1061
1062
  var Badge = (0, import_react19.forwardRef)(function Badge2({ count, tone: tone4, className, children, testId, ...rest }, ref) {
1062
- const { root: root24, dot: dot3 } = useStyles7({ tone: tone4, className });
1063
+ const { root: root25, dot: dot3 } = useStyles7({ tone: tone4, className });
1063
1064
  const { testId: dataTestId, slot } = useTestId("media", testId);
1064
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { ref, className: root24, "data-testid": dataTestId, ...rest, children: [
1065
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { ref, className: root25, "data-testid": dataTestId, ...rest, children: [
1065
1066
  children,
1066
1067
  count != null && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: dot3, "data-testid": slot("dot"), children: count })
1067
1068
  ] });
@@ -1088,12 +1089,12 @@ function useStyles8({
1088
1089
  const { themeClass } = useTheme();
1089
1090
  const indeterminate2 = value === void 0;
1090
1091
  return (0, import_react20.useMemo)(() => {
1091
- const root24 = (...classes) => [themeClass, ...classes, className].filter(Boolean).join(" ");
1092
+ const root25 = (...classes) => [themeClass, ...classes, className].filter(Boolean).join(" ");
1092
1093
  if (variant2 === "circular") {
1093
- return { track: "", bar: "", spinner: root24(spinner2) };
1094
+ return { track: "", bar: "", spinner: root25(spinner2) };
1094
1095
  }
1095
1096
  return {
1096
- track: root24(track),
1097
+ track: root25(track),
1097
1098
  bar: [bar, indeterminate2 && indeterminate].filter(Boolean).join(" "),
1098
1099
  spinner: ""
1099
1100
  };
@@ -1192,7 +1193,7 @@ function useStyles9({
1192
1193
  clickable: clickable2
1193
1194
  }) {
1194
1195
  const { themeClass } = useTheme();
1195
- const root24 = (0, import_react22.useMemo)(
1196
+ const root25 = (0, import_react22.useMemo)(
1196
1197
  () => [
1197
1198
  themeClass,
1198
1199
  root5,
@@ -1201,7 +1202,7 @@ function useStyles9({
1201
1202
  ].filter(Boolean).join(" "),
1202
1203
  [themeClass, selected4, tone4, clickable2]
1203
1204
  );
1204
- return { root: root24, deleteBtn };
1205
+ return { root: root25, deleteBtn };
1205
1206
  }
1206
1207
 
1207
1208
  // src/components/chip/index.tsx
@@ -1209,7 +1210,7 @@ var import_jsx_runtime12 = require("react/jsx-runtime");
1209
1210
  var ICON_SIZE2 = 13;
1210
1211
  var Chip = (0, import_react23.forwardRef)(function Chip2({ selected: selected4, tone: tone4, onDelete, onClick, startIcon: StartIcon, children, testId, ...rest }, ref) {
1211
1212
  const clickable2 = Boolean(onClick);
1212
- const { root: root24, deleteBtn: deleteBtn2 } = useStyles9({ selected: selected4, tone: tone4, clickable: clickable2 });
1213
+ const { root: root25, deleteBtn: deleteBtn2 } = useStyles9({ selected: selected4, tone: tone4, clickable: clickable2 });
1213
1214
  const { testId: dataTestId, slot } = useTestId("media", testId);
1214
1215
  const handleDelete = (event) => {
1215
1216
  event.stopPropagation();
@@ -1219,7 +1220,7 @@ var Chip = (0, import_react23.forwardRef)(function Chip2({ selected: selected4,
1219
1220
  "span",
1220
1221
  {
1221
1222
  ref,
1222
- className: root24,
1223
+ className: root25,
1223
1224
  onClick,
1224
1225
  "data-testid": dataTestId,
1225
1226
  "data-state": states({ selected: selected4 }),
@@ -1280,29 +1281,29 @@ var input = "surfaces_srOnly__1qa7atn0";
1280
1281
  var root6 = "use-styles_root__9zoga90";
1281
1282
 
1282
1283
  // src/components/checkbox/use-styles.ts
1283
- function useStyles10({ checked, disabled: disabled3 }) {
1284
+ function useStyles10({ checked, disabled: disabled4 }) {
1284
1285
  const { themeClass } = useTheme();
1285
- const root24 = (0, import_react24.useMemo)(
1286
- () => [themeClass, root6, disabled3 && disabled].filter(Boolean).join(" "),
1287
- [themeClass, disabled3]
1286
+ const root25 = (0, import_react24.useMemo)(
1287
+ () => [themeClass, root6, disabled4 && disabled].filter(Boolean).join(" "),
1288
+ [themeClass, disabled4]
1288
1289
  );
1289
1290
  const box2 = (0, import_react24.useMemo)(
1290
1291
  () => [box, checked && boxChecked].filter(Boolean).join(" "),
1291
1292
  [checked]
1292
1293
  );
1293
- return { root: root24, input, box: box2, check };
1294
+ return { root: root25, input, box: box2, check };
1294
1295
  }
1295
1296
 
1296
1297
  // src/components/checkbox/index.tsx
1297
1298
  var import_jsx_runtime14 = require("react/jsx-runtime");
1298
- var Checkbox = (0, import_react25.forwardRef)(function Checkbox2({ checked = false, onChange, label: label7, disabled: disabled3 = false, id, testId, ...rest }, ref) {
1299
- const { root: root24, input: input6, box: box2, check: check2 } = useStyles10({ checked, disabled: disabled3 });
1299
+ var Checkbox = (0, import_react25.forwardRef)(function Checkbox2({ checked = false, onChange, label: label8, disabled: disabled4 = false, id, testId, ...rest }, ref) {
1300
+ const { root: root25, input: input6, box: box2, check: check2 } = useStyles10({ checked, disabled: disabled4 });
1300
1301
  const { testId: dataTestId } = useTestId("toggle", testId);
1301
1302
  const handleChange = (e) => {
1302
- if (disabled3) return;
1303
+ if (disabled4) return;
1303
1304
  onChange?.(e.target.checked);
1304
1305
  };
1305
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("label", { className: root24, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled3 }), children: [
1306
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
1306
1307
  /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1307
1308
  "input",
1308
1309
  {
@@ -1311,13 +1312,13 @@ var Checkbox = (0, import_react25.forwardRef)(function Checkbox2({ checked = fal
1311
1312
  className: input6,
1312
1313
  id,
1313
1314
  checked,
1314
- disabled: disabled3,
1315
+ disabled: disabled4,
1315
1316
  onChange: handleChange,
1316
1317
  ...rest
1317
1318
  }
1318
1319
  ),
1319
1320
  /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: box2, children: checked && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(CheckIcon, { size: 12, className: check2 }) }),
1320
- label7
1321
+ label8
1321
1322
  ] });
1322
1323
  });
1323
1324
 
@@ -1337,16 +1338,16 @@ var root7 = "use-styles_root__vy61b40";
1337
1338
 
1338
1339
  // src/components/radio/use-styles.ts
1339
1340
  function useStyles11({
1340
- disabled: disabled3,
1341
+ disabled: disabled4,
1341
1342
  className
1342
1343
  }) {
1343
1344
  const { themeClass } = useTheme();
1344
- const root24 = (0, import_react26.useMemo)(
1345
- () => [themeClass, root7, disabled3 && disabled2, className].filter(Boolean).join(" "),
1346
- [themeClass, disabled3, className]
1345
+ const root25 = (0, import_react26.useMemo)(
1346
+ () => [themeClass, root7, disabled4 && disabled2, className].filter(Boolean).join(" "),
1347
+ [themeClass, disabled4, className]
1347
1348
  );
1348
1349
  return {
1349
- root: root24,
1350
+ root: root25,
1350
1351
  input: input2,
1351
1352
  circle,
1352
1353
  dot: dot2,
@@ -1356,10 +1357,10 @@ function useStyles11({
1356
1357
 
1357
1358
  // src/components/radio/index.tsx
1358
1359
  var import_jsx_runtime15 = require("react/jsx-runtime");
1359
- var Radio = (0, import_react27.forwardRef)(function Radio2({ checked, onChange, label: label7, name, value, disabled: disabled3, testId, ...rest }, ref) {
1360
- const { root: root24, input: input6, circle: circle2, dot: dot3, label: labelClass } = useStyles11({ disabled: disabled3 });
1360
+ var Radio = (0, import_react27.forwardRef)(function Radio2({ checked, onChange, label: label8, name, value, disabled: disabled4, testId, ...rest }, ref) {
1361
+ const { root: root25, input: input6, circle: circle2, dot: dot3, label: labelClass } = useStyles11({ disabled: disabled4 });
1361
1362
  const { testId: dataTestId } = useTestId("toggle", testId);
1362
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("label", { className: root24, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled3 }), children: [
1363
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
1363
1364
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1364
1365
  "input",
1365
1366
  {
@@ -1369,53 +1370,198 @@ var Radio = (0, import_react27.forwardRef)(function Radio2({ checked, onChange,
1369
1370
  name,
1370
1371
  value,
1371
1372
  checked,
1372
- disabled: disabled3,
1373
+ disabled: disabled4,
1373
1374
  onChange,
1374
1375
  ...rest
1375
1376
  }
1376
1377
  ),
1377
1378
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: circle2, children: checked && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: dot3 }) }),
1378
- label7 != null && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: labelClass, children: label7 })
1379
+ label8 != null && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: labelClass, children: label8 })
1379
1380
  ] });
1380
1381
  });
1381
1382
 
1382
- // src/components/switch/index.tsx
1383
+ // src/components/radio-group/index.tsx
1383
1384
  var import_react29 = require("react");
1384
1385
 
1385
- // src/components/switch/use-styles.ts
1386
+ // src/components/radio-group/use-styles.ts
1386
1387
  var import_react28 = require("react");
1387
1388
 
1389
+ // src/components/radio-group/use-styles.css.ts
1390
+ var disabled3 = "use-styles_disabled__nfghri4";
1391
+ var label3 = "use-styles_label__nfghri1";
1392
+ var list = "use-styles_list__nfghri2";
1393
+ var listHorizontal = "use-styles_listHorizontal__nfghri3";
1394
+ var root8 = "use-styles_root__nfghri0";
1395
+
1396
+ // src/components/radio-group/use-styles.ts
1397
+ function useStyles12({
1398
+ disabled: disabled4,
1399
+ orientation = "vertical"
1400
+ }) {
1401
+ const { themeClass } = useTheme();
1402
+ return (0, import_react28.useMemo)(() => {
1403
+ const root25 = [themeClass, root8, disabled4 && disabled3].filter(Boolean).join(" ");
1404
+ const list3 = [list, orientation === "horizontal" && listHorizontal].filter(Boolean).join(" ");
1405
+ return { root: root25, label: label3, list: list3 };
1406
+ }, [themeClass, disabled4, orientation]);
1407
+ }
1408
+
1409
+ // src/components/radio-group/index.tsx
1410
+ var import_jsx_runtime16 = require("react/jsx-runtime");
1411
+ var RadioGroup = (0, import_react29.forwardRef)(function RadioGroup2({
1412
+ options,
1413
+ value,
1414
+ onChange,
1415
+ name,
1416
+ label: label8,
1417
+ disabled: disabled4,
1418
+ orientation = "vertical",
1419
+ testId,
1420
+ "aria-label": ariaLabel,
1421
+ "aria-labelledby": ariaLabelledBy,
1422
+ ...rest
1423
+ }, ref) {
1424
+ const { root: root25, label: labelClass, list: list3 } = useStyles12({ disabled: disabled4, orientation });
1425
+ const { testId: dataTestId } = useTestId("field", testId);
1426
+ const baseId = (0, import_react29.useId)();
1427
+ const labelId = `${baseId}-label`;
1428
+ const groupLabelledBy = [label8 ? labelId : null, ariaLabelledBy].filter(Boolean).join(" ") || void 0;
1429
+ const radioRefs = (0, import_react29.useRef)([]);
1430
+ const optionTestId = (index) => [testId, `option-${index}`].filter(Boolean).join("-");
1431
+ const selectedIndex = options.findIndex((option2) => option2.value === value);
1432
+ const isEnabled = (index) => !disabled4 && !options[index]?.disabled;
1433
+ const enabledIndexes = options.reduce((acc, _option, index) => {
1434
+ if (isEnabled(index)) acc.push(index);
1435
+ return acc;
1436
+ }, []);
1437
+ const firstEnabled = enabledIndexes[0];
1438
+ const lastEnabled = enabledIndexes[enabledIndexes.length - 1];
1439
+ const step2 = (from, delta) => {
1440
+ if (enabledIndexes.length === 0) return from;
1441
+ let index = from;
1442
+ for (let i = 0; i < options.length; i++) {
1443
+ index = (index + delta + options.length) % options.length;
1444
+ if (isEnabled(index)) return index;
1445
+ }
1446
+ return from;
1447
+ };
1448
+ const selectOption = (index) => {
1449
+ const option2 = options[index];
1450
+ if (!option2 || !isEnabled(index)) return;
1451
+ onChange?.(option2.value);
1452
+ radioRefs.current[index]?.focus();
1453
+ };
1454
+ const onKeyDown = (event, index) => {
1455
+ if (disabled4) return;
1456
+ switch (event.key) {
1457
+ case "ArrowRight":
1458
+ case "ArrowDown":
1459
+ event.preventDefault();
1460
+ selectOption(step2(index, 1));
1461
+ break;
1462
+ case "ArrowLeft":
1463
+ case "ArrowUp":
1464
+ event.preventDefault();
1465
+ selectOption(step2(index, -1));
1466
+ break;
1467
+ case "Home":
1468
+ if (firstEnabled !== void 0) {
1469
+ event.preventDefault();
1470
+ selectOption(firstEnabled);
1471
+ }
1472
+ break;
1473
+ case "End":
1474
+ if (lastEnabled !== void 0) {
1475
+ event.preventDefault();
1476
+ selectOption(lastEnabled);
1477
+ }
1478
+ break;
1479
+ default:
1480
+ break;
1481
+ }
1482
+ };
1483
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
1484
+ "div",
1485
+ {
1486
+ ref,
1487
+ role: "radiogroup",
1488
+ className: root25,
1489
+ "aria-label": ariaLabel,
1490
+ "aria-labelledby": groupLabelledBy,
1491
+ "aria-disabled": disabled4 || void 0,
1492
+ "data-testid": dataTestId,
1493
+ "data-state": states({ disabled: disabled4 }),
1494
+ ...rest,
1495
+ children: [
1496
+ label8 != null && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { id: labelId, className: labelClass, children: label8 }),
1497
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: list3, children: options.map((option2, index) => {
1498
+ const checked = option2.value === value;
1499
+ const optionDisabled = Boolean(disabled4) || Boolean(option2.disabled);
1500
+ const tabbable = checked || selectedIndex === -1 && index === (firstEnabled ?? 0);
1501
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1502
+ Radio,
1503
+ {
1504
+ ref: (el) => {
1505
+ radioRefs.current[index] = el;
1506
+ },
1507
+ name,
1508
+ value: option2.value,
1509
+ label: option2.label,
1510
+ checked,
1511
+ disabled: optionDisabled,
1512
+ tabIndex: tabbable ? 0 : -1,
1513
+ onChange: () => {
1514
+ if (optionDisabled) return;
1515
+ onChange?.(option2.value);
1516
+ },
1517
+ onKeyDown: (event) => onKeyDown(event, index),
1518
+ testId: optionTestId(index)
1519
+ },
1520
+ option2.value
1521
+ );
1522
+ }) })
1523
+ ]
1524
+ }
1525
+ );
1526
+ });
1527
+
1528
+ // src/components/switch/index.tsx
1529
+ var import_react31 = require("react");
1530
+
1531
+ // src/components/switch/use-styles.ts
1532
+ var import_react30 = require("react");
1533
+
1388
1534
  // src/components/switch/use-styles.css.ts
1389
1535
  var input3 = "surfaces_srOnly__1qa7atn0";
1390
1536
  var knob = "use-styles_knob__1r6kem73";
1391
1537
  var knobChecked = "use-styles_knobChecked__1r6kem74";
1392
- var label3 = "use-styles_label__1r6kem75";
1393
- var root8 = "use-styles_root__1r6kem70";
1538
+ var label4 = "use-styles_label__1r6kem75";
1539
+ var root9 = "use-styles_root__1r6kem70";
1394
1540
  var track2 = "use-styles_track__1r6kem71";
1395
1541
  var trackChecked = "use-styles_trackChecked__1r6kem72";
1396
1542
 
1397
1543
  // src/components/switch/use-styles.ts
1398
- function useStyles12({ checked }) {
1544
+ function useStyles13({ checked }) {
1399
1545
  const { themeClass } = useTheme();
1400
- return (0, import_react28.useMemo)(
1546
+ return (0, import_react30.useMemo)(
1401
1547
  () => ({
1402
- root: [themeClass, root8].filter(Boolean).join(" "),
1548
+ root: [themeClass, root9].filter(Boolean).join(" "),
1403
1549
  input: input3,
1404
1550
  track: [track2, checked && trackChecked].filter(Boolean).join(" "),
1405
1551
  knob: [knob, checked && knobChecked].filter(Boolean).join(" "),
1406
- label: label3
1552
+ label: label4
1407
1553
  }),
1408
1554
  [themeClass, checked]
1409
1555
  );
1410
1556
  }
1411
1557
 
1412
1558
  // src/components/switch/index.tsx
1413
- var import_jsx_runtime16 = require("react/jsx-runtime");
1414
- var Switch = (0, import_react29.forwardRef)(function Switch2({ checked = false, onChange, label: label7, disabled: disabled3, testId, ...rest }, ref) {
1415
- const { root: root24, input: input6, track: track4, knob: knob2, label: labelClass } = useStyles12({ checked });
1559
+ var import_jsx_runtime17 = require("react/jsx-runtime");
1560
+ var Switch = (0, import_react31.forwardRef)(function Switch2({ checked = false, onChange, label: label8, disabled: disabled4, testId, ...rest }, ref) {
1561
+ const { root: root25, input: input6, track: track4, knob: knob2, label: labelClass } = useStyles13({ checked });
1416
1562
  const { testId: dataTestId } = useTestId("toggle", testId);
1417
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("label", { className: root24, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled3 }), children: [
1418
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1563
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
1564
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1419
1565
  "input",
1420
1566
  {
1421
1567
  ref,
@@ -1424,27 +1570,27 @@ var Switch = (0, import_react29.forwardRef)(function Switch2({ checked = false,
1424
1570
  "aria-checked": checked,
1425
1571
  className: input6,
1426
1572
  checked,
1427
- disabled: disabled3,
1573
+ disabled: disabled4,
1428
1574
  onChange: (event) => {
1429
- if (disabled3) return;
1575
+ if (disabled4) return;
1430
1576
  onChange?.(event.target.checked);
1431
1577
  },
1432
1578
  ...rest
1433
1579
  }
1434
1580
  ),
1435
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: track4, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: knob2 }) }),
1436
- label7 != null && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: labelClass, children: label7 })
1581
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: track4, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: knob2 }) }),
1582
+ label8 != null && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: labelClass, children: label8 })
1437
1583
  ] });
1438
1584
  });
1439
1585
 
1440
1586
  // src/components/text-field/index.tsx
1441
- var import_react32 = require("react");
1587
+ var import_react34 = require("react");
1442
1588
 
1443
1589
  // src/components/base-field/index.tsx
1444
- var import_react31 = require("react");
1590
+ var import_react33 = require("react");
1445
1591
 
1446
1592
  // src/components/base-field/use-styles.ts
1447
- var import_react30 = require("react");
1593
+ var import_react32 = require("react");
1448
1594
 
1449
1595
  // src/components/base-field/use-styles.css.ts
1450
1596
  var field = "use-styles_field__1c3cgd3";
@@ -1456,15 +1602,15 @@ var inputStartPad = "use-styles_inputStartPad__1c3cgd6";
1456
1602
  var inputTrailingPad = "use-styles_inputTrailingPad__1c3cgd7";
1457
1603
  var labelText = "use-styles_labelText__1c3cgd1";
1458
1604
  var labelTextError = "use-styles_labelTextError__1c3cgd2";
1459
- var root9 = "use-styles_root__1c3cgd0";
1605
+ var root10 = "use-styles_root__1c3cgd0";
1460
1606
  var startIconSlot = "use-styles_startIconSlot__1c3cgda";
1461
1607
  var trailingSlot = "use-styles_trailingSlot__1c3cgdb";
1462
1608
 
1463
1609
  // src/components/base-field/use-styles.ts
1464
- function useStyles13({ error, hasStartIcon, hasTrailing, className }) {
1610
+ function useStyles14({ error, hasStartIcon, hasTrailing, className }) {
1465
1611
  const { themeClass } = useTheme();
1466
- return (0, import_react30.useMemo)(() => {
1467
- const root24 = [themeClass, root9].filter(Boolean).join(" ");
1612
+ return (0, import_react32.useMemo)(() => {
1613
+ const root25 = [themeClass, root10].filter(Boolean).join(" ");
1468
1614
  const labelText2 = [labelText, error && labelTextError].filter(Boolean).join(" ");
1469
1615
  const input6 = [
1470
1616
  input4,
@@ -1475,7 +1621,7 @@ function useStyles13({ error, hasStartIcon, hasTrailing, className }) {
1475
1621
  ].filter(Boolean).join(" ");
1476
1622
  const helpText2 = [helpText, error && helpTextError].filter(Boolean).join(" ");
1477
1623
  return {
1478
- root: root24,
1624
+ root: root25,
1479
1625
  labelText: labelText2,
1480
1626
  field,
1481
1627
  input: input6,
@@ -1487,15 +1633,15 @@ function useStyles13({ error, hasStartIcon, hasTrailing, className }) {
1487
1633
  }
1488
1634
 
1489
1635
  // src/components/base-field/index.tsx
1490
- var import_jsx_runtime17 = require("react/jsx-runtime");
1491
- var BaseField = (0, import_react31.forwardRef)(function BaseField2({ label: label7, help, error, startIcon: StartIcon, trailing: trailing2, id, className, testId, children }, ref) {
1492
- const autoId = (0, import_react31.useId)();
1636
+ var import_jsx_runtime18 = require("react/jsx-runtime");
1637
+ var BaseField = (0, import_react33.forwardRef)(function BaseField2({ label: label8, help, error, startIcon: StartIcon, trailing: trailing2, id, className, testId, children }, ref) {
1638
+ const autoId = (0, import_react33.useId)();
1493
1639
  const controlId = id ?? autoId;
1494
1640
  const errorMessage = error != null && error !== false && error !== true && error !== "" ? error : null;
1495
1641
  const hasError = error === true || errorMessage != null;
1496
1642
  const message2 = errorMessage ?? help;
1497
1643
  const messageId = message2 != null ? `${controlId}-msg` : void 0;
1498
- const classes = useStyles13({
1644
+ const classes = useStyles14({
1499
1645
  error: hasError,
1500
1646
  hasStartIcon: StartIcon != null,
1501
1647
  hasTrailing: trailing2 != null,
@@ -1510,15 +1656,15 @@ var BaseField = (0, import_react31.forwardRef)(function BaseField2({ label: labe
1510
1656
  "aria-invalid": hasError ? true : void 0,
1511
1657
  "data-testid": slot("input")
1512
1658
  };
1513
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: classes.root, "data-testid": rootTestId, "data-state": states({ error: hasError }), children: [
1514
- label7 != null && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("label", { htmlFor: controlId, className: classes.labelText, "data-testid": slot("label"), children: label7 }),
1515
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: classes.field, children: [
1516
- StartIcon != null && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: classes.startIconSlot, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(StartIcon, { size: 18 }) }),
1659
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: classes.root, "data-testid": rootTestId, "data-state": states({ error: hasError }), children: [
1660
+ label8 != null && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("label", { htmlFor: controlId, className: classes.labelText, "data-testid": slot("label"), children: label8 }),
1661
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: classes.field, children: [
1662
+ StartIcon != null && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: classes.startIconSlot, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(StartIcon, { size: 18 }) }),
1517
1663
  children(control),
1518
- trailing2 != null && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: classes.trailingSlot, children: trailing2 })
1664
+ trailing2 != null && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: classes.trailingSlot, children: trailing2 })
1519
1665
  ] }),
1520
1666
  message2 != null && // `aria-live` solo cuando el mensaje es un error: anuncia la validación al aparecer.
1521
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1667
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1522
1668
  "span",
1523
1669
  {
1524
1670
  id: messageId,
@@ -1532,68 +1678,73 @@ var BaseField = (0, import_react31.forwardRef)(function BaseField2({ label: labe
1532
1678
  });
1533
1679
 
1534
1680
  // src/components/text-field/index.tsx
1535
- var import_jsx_runtime18 = (
1536
- // En multiline el control es un <textarea>: no reenviamos `controlRef` porque el
1537
- // tipo público de la ref es HTMLInputElement (la ref aplica solo a la rama <input>).
1538
- require("react/jsx-runtime")
1539
- );
1540
- var TextField = (0, import_react32.forwardRef)(function TextField2({
1541
- label: label7,
1542
- help,
1543
- error,
1544
- startIcon,
1545
- multiline,
1546
- rows,
1547
- type = "text",
1548
- onChange,
1549
- className,
1550
- id,
1551
- testId,
1552
- ...rest
1553
- }, ref) {
1554
- const rawTestId = rest["data-testid"];
1555
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1556
- BaseField,
1557
- {
1681
+ var import_jsx_runtime19 = require("react/jsx-runtime");
1682
+ var TextField = (0, import_react34.forwardRef)(
1683
+ function TextField2({
1684
+ label: label8,
1685
+ help,
1686
+ error,
1687
+ startIcon,
1688
+ multiline,
1689
+ rows,
1690
+ type = "text",
1691
+ onChange,
1692
+ className,
1693
+ id,
1694
+ testId,
1695
+ ...rest
1696
+ }, ref) {
1697
+ const inputRef = (0, import_react34.useRef)(null);
1698
+ const textareaRef = (0, import_react34.useRef)(null);
1699
+ (0, import_react34.useImperativeHandle)(
1558
1700
  ref,
1559
- label: label7,
1560
- help,
1561
- error,
1562
- startIcon,
1563
- id,
1564
- className,
1565
- testId,
1566
- children: ({ ref: controlRef, ...control }) => multiline ? /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1567
- "textarea",
1568
- {
1569
- ...rest,
1570
- ...control,
1571
- "data-testid": rawTestId ?? control["data-testid"],
1572
- rows: rows ?? 4,
1573
- onChange: (e) => onChange?.(e.target.value)
1574
- }
1575
- ) : /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1576
- "input",
1577
- {
1578
- ...rest,
1579
- ...control,
1580
- "data-testid": rawTestId ?? control["data-testid"],
1581
- ref: controlRef,
1582
- type,
1583
- onChange: (e) => onChange?.(e.target.value)
1584
- }
1585
- )
1586
- }
1587
- );
1588
- });
1701
+ () => multiline ? textareaRef.current : inputRef.current,
1702
+ [multiline]
1703
+ );
1704
+ const rawTestId = rest["data-testid"];
1705
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1706
+ BaseField,
1707
+ {
1708
+ label: label8,
1709
+ help,
1710
+ error,
1711
+ startIcon,
1712
+ id,
1713
+ className,
1714
+ testId,
1715
+ children: (control) => multiline ? /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1716
+ "textarea",
1717
+ {
1718
+ ...rest,
1719
+ ...control,
1720
+ "data-testid": rawTestId ?? control["data-testid"],
1721
+ ref: textareaRef,
1722
+ rows: rows ?? 4,
1723
+ onChange: (e) => onChange?.(e.target.value)
1724
+ }
1725
+ ) : /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1726
+ "input",
1727
+ {
1728
+ ...rest,
1729
+ ...control,
1730
+ "data-testid": rawTestId ?? control["data-testid"],
1731
+ ref: inputRef,
1732
+ type,
1733
+ onChange: (e) => onChange?.(e.target.value)
1734
+ }
1735
+ )
1736
+ }
1737
+ );
1738
+ }
1739
+ );
1589
1740
 
1590
1741
  // src/components/password-field/index.tsx
1591
- var import_react34 = require("react");
1742
+ var import_react36 = require("react");
1592
1743
 
1593
1744
  // src/components/icons/eye/index.tsx
1594
- var import_jsx_runtime19 = require("react/jsx-runtime");
1745
+ var import_jsx_runtime20 = require("react/jsx-runtime");
1595
1746
  function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1596
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
1747
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
1597
1748
  "svg",
1598
1749
  {
1599
1750
  xmlns: "http://www.w3.org/2000/svg",
@@ -1608,17 +1759,17 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1608
1759
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1609
1760
  ...rest,
1610
1761
  children: [
1611
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }),
1612
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("circle", { cx: "12", cy: "12", r: "3" })
1762
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }),
1763
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("circle", { cx: "12", cy: "12", r: "3" })
1613
1764
  ]
1614
1765
  }
1615
1766
  );
1616
1767
  }
1617
1768
 
1618
1769
  // src/components/icons/eye-off/index.tsx
1619
- var import_jsx_runtime20 = require("react/jsx-runtime");
1770
+ var import_jsx_runtime21 = require("react/jsx-runtime");
1620
1771
  function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1621
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
1772
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
1622
1773
  "svg",
1623
1774
  {
1624
1775
  xmlns: "http://www.w3.org/2000/svg",
@@ -1633,39 +1784,39 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1633
1784
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1634
1785
  ...rest,
1635
1786
  children: [
1636
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
1637
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M10.73 5.08A10.43 10.43 0 0 1 12 5c7 0 10 7 10 7a13.16 13.16 0 0 1-1.67 2.68" }),
1638
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M6.61 6.61A13.526 13.526 0 0 0 2 12s3 7 10 7a9.74 9.74 0 0 0 5.39-1.61" }),
1639
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "m2 2 20 20" })
1787
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
1788
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M10.73 5.08A10.43 10.43 0 0 1 12 5c7 0 10 7 10 7a13.16 13.16 0 0 1-1.67 2.68" }),
1789
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M6.61 6.61A13.526 13.526 0 0 0 2 12s3 7 10 7a9.74 9.74 0 0 0 5.39-1.61" }),
1790
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "m2 2 20 20" })
1640
1791
  ]
1641
1792
  }
1642
1793
  );
1643
1794
  }
1644
1795
 
1645
1796
  // src/components/password-field/use-styles.ts
1646
- var import_react33 = require("react");
1797
+ var import_react35 = require("react");
1647
1798
 
1648
1799
  // src/components/password-field/use-styles.css.ts
1649
1800
  var revealButton = "use-styles_revealButton__rsu9d50";
1650
1801
 
1651
1802
  // src/components/password-field/use-styles.ts
1652
- function useStyles14() {
1653
- return (0, import_react33.useMemo)(() => ({ revealButton }), []);
1803
+ function useStyles15() {
1804
+ return (0, import_react35.useMemo)(() => ({ revealButton }), []);
1654
1805
  }
1655
1806
 
1656
1807
  // src/components/password-field/index.tsx
1657
- var import_jsx_runtime21 = require("react/jsx-runtime");
1658
- var PasswordField = (0, import_react34.forwardRef)(
1659
- function PasswordField2({ label: label7, help, error, startIcon, onChange, id, className, ...rest }, ref) {
1660
- const [reveal, setReveal] = (0, import_react34.useState)(false);
1661
- const classes = useStyles14();
1808
+ var import_jsx_runtime22 = require("react/jsx-runtime");
1809
+ var PasswordField = (0, import_react36.forwardRef)(
1810
+ function PasswordField2({ label: label8, help, error, startIcon, onChange, id, className, ...rest }, ref) {
1811
+ const [reveal, setReveal] = (0, import_react36.useState)(false);
1812
+ const classes = useStyles15();
1662
1813
  const handleChange = (e) => {
1663
1814
  onChange?.(e.target.value);
1664
1815
  };
1665
1816
  const handleToggleMouseDown = (e) => {
1666
1817
  e.preventDefault();
1667
1818
  };
1668
- const toggleButton = /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1819
+ const toggleButton = /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1669
1820
  "button",
1670
1821
  {
1671
1822
  type: "button",
@@ -1674,21 +1825,21 @@ var PasswordField = (0, import_react34.forwardRef)(
1674
1825
  "aria-label": reveal ? "Ocultar contrase\xF1a" : "Mostrar contrase\xF1a",
1675
1826
  onMouseDown: handleToggleMouseDown,
1676
1827
  onClick: () => setReveal((r) => !r),
1677
- children: reveal ? /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(EyeOffIcon, { size: 18 }) : /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(EyeIcon, { size: 18 })
1828
+ children: reveal ? /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(EyeOffIcon, { size: 18 }) : /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(EyeIcon, { size: 18 })
1678
1829
  }
1679
1830
  );
1680
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1831
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1681
1832
  BaseField,
1682
1833
  {
1683
1834
  ref,
1684
- label: label7,
1835
+ label: label8,
1685
1836
  help,
1686
1837
  error,
1687
1838
  startIcon,
1688
1839
  trailing: toggleButton,
1689
1840
  id,
1690
1841
  className,
1691
- children: (control) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1842
+ children: (control) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1692
1843
  "input",
1693
1844
  {
1694
1845
  ...rest,
@@ -1703,20 +1854,20 @@ var PasswordField = (0, import_react34.forwardRef)(
1703
1854
  );
1704
1855
 
1705
1856
  // src/components/money-field/index.tsx
1706
- var import_react35 = require("react");
1707
- var import_jsx_runtime22 = require("react/jsx-runtime");
1857
+ var import_react37 = require("react");
1858
+ var import_jsx_runtime23 = require("react/jsx-runtime");
1708
1859
  function parseAmount(raw) {
1709
1860
  const cleaned = raw.replace(/[^0-9.-]/g, "");
1710
1861
  if (cleaned === "" || cleaned === "-" || cleaned === ".") return null;
1711
1862
  const n = Number.parseFloat(cleaned);
1712
1863
  return Number.isNaN(n) ? null : n;
1713
1864
  }
1714
- var MoneyField = (0, import_react35.forwardRef)(function MoneyField2({
1865
+ var MoneyField = (0, import_react37.forwardRef)(function MoneyField2({
1715
1866
  value,
1716
1867
  onChange,
1717
1868
  currency = "USD",
1718
1869
  locale = "en-US",
1719
- label: label7,
1870
+ label: label8,
1720
1871
  help,
1721
1872
  error,
1722
1873
  startIcon,
@@ -1726,9 +1877,9 @@ var MoneyField = (0, import_react35.forwardRef)(function MoneyField2({
1726
1877
  onBlur,
1727
1878
  ...rest
1728
1879
  }, ref) {
1729
- const [focused, setFocused] = (0, import_react35.useState)(false);
1730
- const [draft, setDraft] = (0, import_react35.useState)("");
1731
- const formatter = (0, import_react35.useMemo)(
1880
+ const [focused, setFocused] = (0, import_react37.useState)(false);
1881
+ const [draft, setDraft] = (0, import_react37.useState)("");
1882
+ const formatter = (0, import_react37.useMemo)(
1732
1883
  () => new Intl.NumberFormat(locale, { style: "currency", currency }),
1733
1884
  [locale, currency]
1734
1885
  );
@@ -1744,17 +1895,17 @@ var MoneyField = (0, import_react35.forwardRef)(function MoneyField2({
1744
1895
  onChange?.(parseAmount(draft));
1745
1896
  onBlur?.(e);
1746
1897
  };
1747
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1898
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1748
1899
  BaseField,
1749
1900
  {
1750
1901
  ref,
1751
- label: label7,
1902
+ label: label8,
1752
1903
  help,
1753
1904
  error,
1754
1905
  startIcon,
1755
1906
  id,
1756
1907
  className,
1757
- children: (control) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1908
+ children: (control) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1758
1909
  "input",
1759
1910
  {
1760
1911
  ...rest,
@@ -1771,32 +1922,32 @@ var MoneyField = (0, import_react35.forwardRef)(function MoneyField2({
1771
1922
  });
1772
1923
 
1773
1924
  // src/components/icon-button/index.tsx
1774
- var import_react37 = require("react");
1925
+ var import_react39 = require("react");
1775
1926
 
1776
1927
  // src/components/icon-button/use-styles.ts
1777
- var import_react36 = require("react");
1928
+ var import_react38 = require("react");
1778
1929
 
1779
1930
  // src/components/icon-button/use-styles.css.ts
1780
1931
  var accent = "use-styles_accent__18np0q02";
1781
1932
  var active = "use-styles_active__18np0q01";
1782
- var root10 = "use-styles_root__18np0q00";
1933
+ var root11 = "use-styles_root__18np0q00";
1783
1934
 
1784
1935
  // src/components/icon-button/use-styles.ts
1785
- function useStyles15({
1936
+ function useStyles16({
1786
1937
  active: active2 = false,
1787
1938
  tone: tone4 = "ink"
1788
1939
  }) {
1789
1940
  const { themeClass } = useTheme();
1790
- const root24 = (0, import_react36.useMemo)(
1791
- () => [themeClass, root10, tone4 === "accent" && accent, active2 && active].filter(Boolean).join(" "),
1941
+ const root25 = (0, import_react38.useMemo)(
1942
+ () => [themeClass, root11, tone4 === "accent" && accent, active2 && active].filter(Boolean).join(" "),
1792
1943
  [themeClass, active2, tone4]
1793
1944
  );
1794
- return { root: root24 };
1945
+ return { root: root25 };
1795
1946
  }
1796
1947
 
1797
1948
  // src/components/icon-button/index.tsx
1798
- var import_jsx_runtime23 = require("react/jsx-runtime");
1799
- var IconButton = (0, import_react37.forwardRef)(function IconButton2({ icon: Icon, active: active2, tone: tone4, title, type = "button", testId, ...rest }, ref) {
1949
+ var import_jsx_runtime24 = require("react/jsx-runtime");
1950
+ var IconButton = (0, import_react39.forwardRef)(function IconButton2({ icon: Icon, active: active2, tone: tone4, title, type = "button", testId, ...rest }, ref) {
1800
1951
  if (typeof process !== "undefined" && process.env.NODE_ENV !== "production") {
1801
1952
  const restProps = rest;
1802
1953
  const hasName = title.trim() !== "" || restProps["aria-label"] != null || restProps["aria-labelledby"] != null;
@@ -1804,61 +1955,61 @@ var IconButton = (0, import_react37.forwardRef)(function IconButton2({ icon: Ico
1804
1955
  console.warn("IconButton: falta un nombre accesible (`title` o `aria-label`).");
1805
1956
  }
1806
1957
  }
1807
- const { root: root24 } = useStyles15({ active: active2, tone: tone4 });
1958
+ const { root: root25 } = useStyles16({ active: active2, tone: tone4 });
1808
1959
  const { testId: dataTestId } = useTestId("button", testId);
1809
- return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1960
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1810
1961
  "button",
1811
1962
  {
1812
1963
  ref,
1813
1964
  type,
1814
- className: root24,
1965
+ className: root25,
1815
1966
  "aria-label": title,
1816
1967
  title,
1817
1968
  "data-testid": dataTestId,
1818
1969
  "data-state": states({ active: active2, disabled: rest.disabled }),
1819
1970
  ...rest,
1820
- children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Icon, { size: 18 })
1971
+ children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Icon, { size: 18 })
1821
1972
  }
1822
1973
  );
1823
1974
  });
1824
1975
 
1825
1976
  // src/components/card/index.tsx
1826
- var import_react39 = require("react");
1977
+ var import_react41 = require("react");
1827
1978
 
1828
1979
  // src/components/card/use-styles.ts
1829
- var import_react38 = require("react");
1980
+ var import_react40 = require("react");
1830
1981
 
1831
1982
  // src/components/card/use-styles.css.ts
1832
1983
  var body = "use-styles_body__1fuvd022";
1833
1984
  var footer = "use-styles_footer__1fuvd023";
1834
1985
  var header = "use-styles_header__1fuvd021";
1835
- var root11 = "use-styles_root__1fuvd020";
1986
+ var root12 = "use-styles_root__1fuvd020";
1836
1987
 
1837
1988
  // src/components/card/use-styles.ts
1838
- function useStyles16() {
1989
+ function useStyles17() {
1839
1990
  const { themeClass } = useTheme();
1840
- const root24 = (0, import_react38.useMemo)(() => `${themeClass} ${root11}`, [themeClass]);
1841
- return { root: root24, header, body, footer };
1991
+ const root25 = (0, import_react40.useMemo)(() => `${themeClass} ${root12}`, [themeClass]);
1992
+ return { root: root25, header, body, footer };
1842
1993
  }
1843
1994
 
1844
1995
  // src/components/card/index.tsx
1845
- var import_jsx_runtime24 = require("react/jsx-runtime");
1846
- var CardRoot = (0, import_react39.forwardRef)(function Card({ children, testId, ...rest }, ref) {
1847
- const { root: root24 } = useStyles16();
1996
+ var import_jsx_runtime25 = require("react/jsx-runtime");
1997
+ var CardRoot = (0, import_react41.forwardRef)(function Card({ children, testId, ...rest }, ref) {
1998
+ const { root: root25 } = useStyles17();
1848
1999
  const { testId: dataTestId } = useTestId("layout", testId);
1849
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { ref, className: root24, "data-testid": dataTestId, ...rest, children });
2000
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { ref, className: root25, "data-testid": dataTestId, ...rest, children });
1850
2001
  });
1851
2002
  function CardHeader({ children, ...rest }) {
1852
- const { header: header3 } = useStyles16();
1853
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: header3, ...rest, children });
2003
+ const { header: header3 } = useStyles17();
2004
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: header3, ...rest, children });
1854
2005
  }
1855
2006
  function CardBody({ children, ...rest }) {
1856
- const { body: body3 } = useStyles16();
1857
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: body3, ...rest, children });
2007
+ const { body: body3 } = useStyles17();
2008
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: body3, ...rest, children });
1858
2009
  }
1859
2010
  function CardFooter({ children, ...rest }) {
1860
- const { footer: footer2 } = useStyles16();
1861
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: footer2, ...rest, children });
2011
+ const { footer: footer2 } = useStyles17();
2012
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: footer2, ...rest, children });
1862
2013
  }
1863
2014
  CardRoot.displayName = "Card";
1864
2015
  CardHeader.displayName = "Card.Header";
@@ -1871,12 +2022,12 @@ var Card2 = Object.assign(CardRoot, {
1871
2022
  });
1872
2023
 
1873
2024
  // src/components/alert/index.tsx
1874
- var import_react41 = require("react");
2025
+ var import_react43 = require("react");
1875
2026
 
1876
2027
  // src/components/icons/circle-check/index.tsx
1877
- var import_jsx_runtime25 = require("react/jsx-runtime");
2028
+ var import_jsx_runtime26 = require("react/jsx-runtime");
1878
2029
  function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1879
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
2030
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
1880
2031
  "svg",
1881
2032
  {
1882
2033
  xmlns: "http://www.w3.org/2000/svg",
@@ -1891,17 +2042,17 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
1891
2042
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1892
2043
  ...rest,
1893
2044
  children: [
1894
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
1895
- /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "m9 12 2 2 4-4" })
2045
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
2046
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "m9 12 2 2 4-4" })
1896
2047
  ]
1897
2048
  }
1898
2049
  );
1899
2050
  }
1900
2051
 
1901
2052
  // src/components/icons/circle-x/index.tsx
1902
- var import_jsx_runtime26 = require("react/jsx-runtime");
2053
+ var import_jsx_runtime27 = require("react/jsx-runtime");
1903
2054
  function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1904
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
2055
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
1905
2056
  "svg",
1906
2057
  {
1907
2058
  xmlns: "http://www.w3.org/2000/svg",
@@ -1916,18 +2067,18 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1916
2067
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1917
2068
  ...rest,
1918
2069
  children: [
1919
- /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
1920
- /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "m15 9-6 6" }),
1921
- /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "m9 9 6 6" })
2070
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
2071
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "m15 9-6 6" }),
2072
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "m9 9 6 6" })
1922
2073
  ]
1923
2074
  }
1924
2075
  );
1925
2076
  }
1926
2077
 
1927
2078
  // src/components/icons/info/index.tsx
1928
- var import_jsx_runtime27 = require("react/jsx-runtime");
2079
+ var import_jsx_runtime28 = require("react/jsx-runtime");
1929
2080
  function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1930
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
2081
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
1931
2082
  "svg",
1932
2083
  {
1933
2084
  xmlns: "http://www.w3.org/2000/svg",
@@ -1942,18 +2093,18 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1942
2093
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1943
2094
  ...rest,
1944
2095
  children: [
1945
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
1946
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M12 16v-4" }),
1947
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M12 8h.01" })
2096
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
2097
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M12 16v-4" }),
2098
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M12 8h.01" })
1948
2099
  ]
1949
2100
  }
1950
2101
  );
1951
2102
  }
1952
2103
 
1953
2104
  // src/components/icons/triangle-alert/index.tsx
1954
- var import_jsx_runtime28 = require("react/jsx-runtime");
2105
+ var import_jsx_runtime29 = require("react/jsx-runtime");
1955
2106
  function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1956
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
2107
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
1957
2108
  "svg",
1958
2109
  {
1959
2110
  xmlns: "http://www.w3.org/2000/svg",
@@ -1968,42 +2119,42 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
1968
2119
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1969
2120
  ...rest,
1970
2121
  children: [
1971
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }),
1972
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M12 9v4" }),
1973
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M12 17h.01" })
2122
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }),
2123
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "M12 9v4" }),
2124
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "M12 17h.01" })
1974
2125
  ]
1975
2126
  }
1976
2127
  );
1977
2128
  }
1978
2129
 
1979
2130
  // src/components/alert/use-styles.ts
1980
- var import_react40 = require("react");
2131
+ var import_react42 = require("react");
1981
2132
 
1982
2133
  // src/components/alert/use-styles.css.ts
1983
2134
  var content2 = "use-styles_content__ivsh6u6";
1984
2135
  var iconSlot = "use-styles_iconSlot__ivsh6u5";
1985
- var root12 = "use-styles_root__ivsh6u0";
2136
+ var root13 = "use-styles_root__ivsh6u0";
1986
2137
  var severity = { info: "use-styles_severity_info__ivsh6u1", ok: "use-styles_severity_ok__ivsh6u2", warn: "use-styles_severity_warn__ivsh6u3", danger: "use-styles_severity_danger__ivsh6u4" };
1987
2138
 
1988
2139
  // src/components/alert/use-styles.ts
1989
- function useStyles17({
2140
+ function useStyles18({
1990
2141
  severity: severity2 = "info",
1991
2142
  className
1992
2143
  }) {
1993
2144
  const { themeClass } = useTheme();
1994
- const root24 = (0, import_react40.useMemo)(
1995
- () => [themeClass, root12, severity[severity2], className].filter(Boolean).join(" "),
2145
+ const root25 = (0, import_react42.useMemo)(
2146
+ () => [themeClass, root13, severity[severity2], className].filter(Boolean).join(" "),
1996
2147
  [themeClass, severity2, className]
1997
2148
  );
1998
2149
  return {
1999
- root: root24,
2150
+ root: root25,
2000
2151
  iconSlot,
2001
2152
  content: content2
2002
2153
  };
2003
2154
  }
2004
2155
 
2005
2156
  // src/components/alert/index.tsx
2006
- var import_jsx_runtime29 = require("react/jsx-runtime");
2157
+ var import_jsx_runtime30 = require("react/jsx-runtime");
2007
2158
  var defaultIcons = {
2008
2159
  info: InfoIcon,
2009
2160
  ok: CircleCheckIcon,
@@ -2016,11 +2167,11 @@ var roleBySeverity = {
2016
2167
  warn: "alert",
2017
2168
  danger: "alert"
2018
2169
  };
2019
- var Alert = (0, import_react41.forwardRef)(function Alert2({ severity: severity2 = "info", title, icon, className, testId, children, ...rest }, ref) {
2020
- const styles = useStyles17({ severity: severity2, className });
2170
+ var Alert = (0, import_react43.forwardRef)(function Alert2({ severity: severity2 = "info", title, icon, className, testId, children, ...rest }, ref) {
2171
+ const styles = useStyles18({ severity: severity2, className });
2021
2172
  const { testId: dataTestId, slot } = useTestId("feedback", testId);
2022
2173
  const IconComponent = icon ?? defaultIcons[severity2];
2023
- return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
2174
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
2024
2175
  "div",
2025
2176
  {
2026
2177
  ref,
@@ -2029,10 +2180,10 @@ var Alert = (0, import_react41.forwardRef)(function Alert2({ severity: severity2
2029
2180
  "data-testid": dataTestId,
2030
2181
  ...rest,
2031
2182
  children: [
2032
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("span", { className: styles.iconSlot, "data-testid": slot("icon"), children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(IconComponent, {}) }),
2033
- /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { className: styles.content, "data-testid": slot("content"), children: [
2034
- title != null && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Typography, { variant: "h4", children: title }),
2035
- children != null && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Typography, { variant: "body", color: "muted", children })
2183
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: styles.iconSlot, "data-testid": slot("icon"), children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(IconComponent, {}) }),
2184
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: styles.content, "data-testid": slot("content"), children: [
2185
+ title != null && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Typography, { variant: "h4", children: title }),
2186
+ children != null && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Typography, { variant: "body", color: "muted", children })
2036
2187
  ] })
2037
2188
  ]
2038
2189
  }
@@ -2040,10 +2191,10 @@ var Alert = (0, import_react41.forwardRef)(function Alert2({ severity: severity2
2040
2191
  });
2041
2192
 
2042
2193
  // src/components/tooltip/index.tsx
2043
- var import_react43 = require("react");
2194
+ var import_react45 = require("react");
2044
2195
 
2045
2196
  // src/components/tooltip/use-styles.ts
2046
- var import_react42 = require("react");
2197
+ var import_react44 = require("react");
2047
2198
 
2048
2199
  // src/components/tooltip/use-styles.css.ts
2049
2200
  var bubble = "use-styles_bubble__h9kvh1 surfaces_inkySurface__1qa7atn2";
@@ -2051,15 +2202,15 @@ var placement = { top: "use-styles_placement_top__h9kvh2", bottom: "use-styles_p
2051
2202
  var wrapper = "use-styles_wrapper__h9kvh0";
2052
2203
 
2053
2204
  // src/components/tooltip/use-styles.ts
2054
- function useStyles18({
2205
+ function useStyles19({
2055
2206
  placement: placement2 = "top"
2056
2207
  }) {
2057
2208
  const { themeClass } = useTheme();
2058
- const wrapper4 = (0, import_react42.useMemo)(
2209
+ const wrapper4 = (0, import_react44.useMemo)(
2059
2210
  () => [themeClass, wrapper].filter(Boolean).join(" "),
2060
2211
  [themeClass]
2061
2212
  );
2062
- const bubble2 = (0, import_react42.useMemo)(
2213
+ const bubble2 = (0, import_react44.useMemo)(
2063
2214
  () => [bubble, placement[placement2]].filter(Boolean).join(" "),
2064
2215
  [placement2]
2065
2216
  );
@@ -2067,14 +2218,14 @@ function useStyles18({
2067
2218
  }
2068
2219
 
2069
2220
  // src/components/tooltip/index.tsx
2070
- var import_jsx_runtime30 = require("react/jsx-runtime");
2221
+ var import_jsx_runtime31 = require("react/jsx-runtime");
2071
2222
  var HIDE_DELAY = 120;
2072
- var Tooltip = (0, import_react43.forwardRef)(function Tooltip2({ label: label7, children, placement: placement2, testId }, ref) {
2073
- const [open, setOpen] = (0, import_react43.useState)(false);
2074
- const tooltipId = (0, import_react43.useId)();
2075
- const { wrapper: wrapper4, bubble: bubble2 } = useStyles18({ placement: placement2 });
2223
+ var Tooltip = (0, import_react45.forwardRef)(function Tooltip2({ label: label8, children, placement: placement2, testId }, ref) {
2224
+ const [open, setOpen] = (0, import_react45.useState)(false);
2225
+ const tooltipId = (0, import_react45.useId)();
2226
+ const { wrapper: wrapper4, bubble: bubble2 } = useStyles19({ placement: placement2 });
2076
2227
  const { testId: dataTestId, slot } = useTestId("feedback", testId);
2077
- const hideTimer = (0, import_react43.useRef)(null);
2228
+ const hideTimer = (0, import_react45.useRef)(null);
2078
2229
  const clearHide = () => {
2079
2230
  if (hideTimer.current) {
2080
2231
  clearTimeout(hideTimer.current);
@@ -2093,7 +2244,7 @@ var Tooltip = (0, import_react43.forwardRef)(function Tooltip2({ label: label7,
2093
2244
  clearHide();
2094
2245
  setOpen(false);
2095
2246
  };
2096
- (0, import_react43.useEffect)(() => {
2247
+ (0, import_react45.useEffect)(() => {
2097
2248
  return () => {
2098
2249
  if (hideTimer.current) clearTimeout(hideTimer.current);
2099
2250
  };
@@ -2106,8 +2257,8 @@ var Tooltip = (0, import_react43.forwardRef)(function Tooltip2({ label: label7,
2106
2257
  };
2107
2258
  const previousDescribedBy = children.props["aria-describedby"];
2108
2259
  const describedBy = open ? [previousDescribedBy, tooltipId].filter(Boolean).join(" ") : previousDescribedBy;
2109
- const trigger2 = (0, import_react43.cloneElement)(children, { "aria-describedby": describedBy });
2110
- return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
2260
+ const trigger2 = (0, import_react45.cloneElement)(children, { "aria-describedby": describedBy });
2261
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
2111
2262
  "span",
2112
2263
  {
2113
2264
  ref,
@@ -2120,7 +2271,7 @@ var Tooltip = (0, import_react43.forwardRef)(function Tooltip2({ label: label7,
2120
2271
  onKeyDown: handleKeyDown,
2121
2272
  children: [
2122
2273
  trigger2,
2123
- open && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2274
+ open && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
2124
2275
  "span",
2125
2276
  {
2126
2277
  id: tooltipId,
@@ -2129,7 +2280,7 @@ var Tooltip = (0, import_react43.forwardRef)(function Tooltip2({ label: label7,
2129
2280
  "data-testid": slot("bubble"),
2130
2281
  onMouseEnter: show,
2131
2282
  onMouseLeave: scheduleHide,
2132
- children: label7
2283
+ children: label8
2133
2284
  }
2134
2285
  )
2135
2286
  ]
@@ -2138,12 +2289,12 @@ var Tooltip = (0, import_react43.forwardRef)(function Tooltip2({ label: label7,
2138
2289
  });
2139
2290
 
2140
2291
  // src/components/select/index.tsx
2141
- var import_react45 = require("react");
2292
+ var import_react47 = require("react");
2142
2293
 
2143
2294
  // src/components/icons/chevron-down/index.tsx
2144
- var import_jsx_runtime31 = require("react/jsx-runtime");
2295
+ var import_jsx_runtime32 = require("react/jsx-runtime");
2145
2296
  function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
2146
- return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
2297
+ return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
2147
2298
  "svg",
2148
2299
  {
2149
2300
  xmlns: "http://www.w3.org/2000/svg",
@@ -2157,36 +2308,36 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
2157
2308
  strokeLinejoin: "round",
2158
2309
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
2159
2310
  ...rest,
2160
- children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "m6 9 6 6 6-6" })
2311
+ children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "m6 9 6 6 6-6" })
2161
2312
  }
2162
2313
  );
2163
2314
  }
2164
2315
 
2165
2316
  // src/components/select/use-styles.ts
2166
- var import_react44 = require("react");
2317
+ var import_react46 = require("react");
2167
2318
 
2168
2319
  // src/components/select/use-styles.css.ts
2169
2320
  var chevron = "use-styles_chevron__1w1czpb4";
2170
2321
  var chevronOpen = "use-styles_chevronOpen__1w1czpb5";
2171
- var label4 = "use-styles_label__1w1czpb1";
2322
+ var label5 = "use-styles_label__1w1czpb1";
2172
2323
  var menu = "use-styles_menu__1w1czpb6 surfaces_panelSurface__1qa7atn1";
2173
2324
  var option = "use-styles_option__1w1czpb7";
2174
2325
  var optionActive = "use-styles_optionActive__1w1czpb9";
2175
2326
  var optionSelected = "use-styles_optionSelected__1w1czpb8";
2176
2327
  var placeholder = "use-styles_placeholder__1w1czpb3";
2177
- var root13 = "use-styles_root__1w1czpb0";
2328
+ var root14 = "use-styles_root__1w1czpb0";
2178
2329
  var trigger = "use-styles_trigger__1w1czpb2";
2179
2330
 
2180
2331
  // src/components/select/use-styles.ts
2181
- function useStyles19({
2332
+ function useStyles20({
2182
2333
  open = false
2183
2334
  }) {
2184
2335
  const { themeClass } = useTheme();
2185
- return (0, import_react44.useMemo)(() => {
2336
+ return (0, import_react46.useMemo)(() => {
2186
2337
  const chevron3 = [chevron, open && chevronOpen].filter(Boolean).join(" ");
2187
2338
  return {
2188
- root: [themeClass, root13].filter(Boolean).join(" "),
2189
- label: label4,
2339
+ root: [themeClass, root14].filter(Boolean).join(" "),
2340
+ label: label5,
2190
2341
  trigger,
2191
2342
  placeholder,
2192
2343
  chevron: chevron3,
@@ -2197,40 +2348,40 @@ function useStyles19({
2197
2348
  }
2198
2349
 
2199
2350
  // src/components/select/index.tsx
2200
- var import_jsx_runtime32 = require("react/jsx-runtime");
2201
- var Select = (0, import_react45.forwardRef)(function Select2({
2351
+ var import_jsx_runtime33 = require("react/jsx-runtime");
2352
+ var Select = (0, import_react47.forwardRef)(function Select2({
2202
2353
  options,
2203
2354
  value,
2204
2355
  onChange,
2205
2356
  placeholder: placeholder2,
2206
- label: label7,
2207
- disabled: disabled3,
2357
+ label: label8,
2358
+ disabled: disabled4,
2208
2359
  "aria-label": ariaLabel,
2209
2360
  "aria-labelledby": ariaLabelledBy,
2210
2361
  ...rest
2211
2362
  }, ref) {
2212
- const [open, setOpen] = (0, import_react45.useState)(false);
2213
- const [activeIndex, setActiveIndex] = (0, import_react45.useState)(0);
2214
- const rootRef = (0, import_react45.useRef)(null);
2363
+ const [open, setOpen] = (0, import_react47.useState)(false);
2364
+ const [activeIndex, setActiveIndex] = (0, import_react47.useState)(0);
2365
+ const rootRef = (0, import_react47.useRef)(null);
2215
2366
  const setRootRef = (node) => {
2216
2367
  rootRef.current = node;
2217
2368
  if (typeof ref === "function") ref(node);
2218
2369
  else if (ref) ref.current = node;
2219
2370
  };
2220
- const baseId = (0, import_react45.useId)();
2371
+ const baseId = (0, import_react47.useId)();
2221
2372
  const labelId = `${baseId}-label`;
2222
2373
  const optionId = (index) => `${baseId}-option-${index}`;
2223
- const triggerLabelledBy = [label7 ? labelId : null, ariaLabelledBy].filter(Boolean).join(" ") || void 0;
2374
+ const triggerLabelledBy = [label8 ? labelId : null, ariaLabelledBy].filter(Boolean).join(" ") || void 0;
2224
2375
  const {
2225
- root: root24,
2376
+ root: root25,
2226
2377
  label: labelClass,
2227
2378
  trigger: trigger2,
2228
2379
  placeholder: placeholderClass,
2229
2380
  chevron: chevron3,
2230
2381
  menu: menu2,
2231
2382
  optionClass
2232
- } = useStyles19({ open });
2233
- (0, import_react45.useEffect)(() => {
2383
+ } = useStyles20({ open });
2384
+ (0, import_react47.useEffect)(() => {
2234
2385
  if (!open) return;
2235
2386
  const onPointerDown = (event) => {
2236
2387
  if (rootRef.current && !rootRef.current.contains(event.target)) {
@@ -2256,7 +2407,7 @@ var Select = (0, import_react45.forwardRef)(function Select2({
2256
2407
  setOpen(true);
2257
2408
  };
2258
2409
  const handleKeyDown = (event) => {
2259
- if (disabled3) return;
2410
+ if (disabled4) return;
2260
2411
  switch (event.key) {
2261
2412
  case "Escape":
2262
2413
  setOpen(false);
@@ -2290,21 +2441,21 @@ var Select = (0, import_react45.forwardRef)(function Select2({
2290
2441
  break;
2291
2442
  }
2292
2443
  };
2293
- return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { ref: setRootRef, className: root24, ...rest, children: [
2294
- label7 && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { id: labelId, className: labelClass, children: label7 }),
2295
- /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
2444
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { ref: setRootRef, className: root25, ...rest, children: [
2445
+ label8 && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { id: labelId, className: labelClass, children: label8 }),
2446
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
2296
2447
  "button",
2297
2448
  {
2298
2449
  type: "button",
2299
2450
  className: trigger2,
2300
- disabled: disabled3,
2451
+ disabled: disabled4,
2301
2452
  "aria-haspopup": "listbox",
2302
2453
  "aria-expanded": open,
2303
2454
  "aria-label": ariaLabel,
2304
2455
  "aria-labelledby": triggerLabelledBy,
2305
2456
  "aria-activedescendant": open ? optionId(activeIndex) : void 0,
2306
2457
  onClick: () => {
2307
- if (disabled3) return;
2458
+ if (disabled4) return;
2308
2459
  if (open) {
2309
2460
  setOpen(false);
2310
2461
  } else {
@@ -2313,17 +2464,17 @@ var Select = (0, import_react45.forwardRef)(function Select2({
2313
2464
  },
2314
2465
  onKeyDown: handleKeyDown,
2315
2466
  children: [
2316
- selected4 ? selected4.label : /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: placeholderClass, children: placeholder2 }),
2317
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: chevron3, children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(ChevronDownIcon, { size: 18 }) })
2467
+ selected4 ? selected4.label : /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: placeholderClass, children: placeholder2 }),
2468
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: chevron3, children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(ChevronDownIcon, { size: 18 }) })
2318
2469
  ]
2319
2470
  }
2320
2471
  ),
2321
- open && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: menu2, role: "listbox", children: options.map((option2, index) => {
2472
+ open && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: menu2, role: "listbox", children: options.map((option2, index) => {
2322
2473
  const isSelected = option2.value === value;
2323
2474
  const isActive = index === activeIndex;
2324
2475
  return (
2325
2476
  // biome-ignore lint/a11y/useKeyWithClickEvents: keyboard nav lives on the trigger via aria-activedescendant; options are not focusable.
2326
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
2477
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
2327
2478
  "div",
2328
2479
  {
2329
2480
  id: optionId(index),
@@ -2342,29 +2493,29 @@ var Select = (0, import_react45.forwardRef)(function Select2({
2342
2493
  });
2343
2494
 
2344
2495
  // src/components/slider/index.tsx
2345
- var import_react47 = require("react");
2496
+ var import_react49 = require("react");
2346
2497
 
2347
2498
  // src/components/slider/use-styles.ts
2348
- var import_react46 = require("react");
2499
+ var import_react48 = require("react");
2349
2500
 
2350
2501
  // src/components/slider/use-styles.css.ts
2351
2502
  var input5 = "use-styles_input__okw59n3";
2352
- var label5 = "use-styles_label__okw59n5";
2503
+ var label6 = "use-styles_label__okw59n5";
2353
2504
  var range = "use-styles_range__okw59n2";
2354
- var root14 = "use-styles_root__okw59n0";
2505
+ var root15 = "use-styles_root__okw59n0";
2355
2506
  var thumb = "use-styles_thumb__okw59n4";
2356
2507
  var track3 = "use-styles_track__okw59n1";
2357
2508
  var wrapper2 = "use-styles_wrapper__okw59n6";
2358
2509
 
2359
2510
  // src/components/slider/use-styles.ts
2360
- function useStyles20() {
2511
+ function useStyles21() {
2361
2512
  const { themeClass } = useTheme();
2362
- return (0, import_react46.useMemo)(() => {
2363
- const root24 = [themeClass, root14].filter(Boolean).join(" ");
2513
+ return (0, import_react48.useMemo)(() => {
2514
+ const root25 = [themeClass, root15].filter(Boolean).join(" ");
2364
2515
  return {
2365
2516
  wrapper: wrapper2,
2366
- label: label5,
2367
- root: root24,
2517
+ label: label6,
2518
+ root: root25,
2368
2519
  track: track3,
2369
2520
  range,
2370
2521
  thumb,
@@ -2374,21 +2525,21 @@ function useStyles20() {
2374
2525
  }
2375
2526
 
2376
2527
  // src/components/slider/index.tsx
2377
- var import_jsx_runtime33 = require("react/jsx-runtime");
2378
- var Slider = (0, import_react47.forwardRef)(function Slider2({ value = 0, onChange, min = 0, max = 100, step: step2 = 1, disabled: disabled3, label: label7, ...rest }, ref) {
2379
- const { wrapper: wrapper4, label: labelClass, root: root24, track: track4, range: range2, thumb: thumb2, input: input6 } = useStyles20();
2528
+ var import_jsx_runtime34 = require("react/jsx-runtime");
2529
+ var Slider = (0, import_react49.forwardRef)(function Slider2({ value = 0, onChange, min = 0, max = 100, step: step2 = 1, disabled: disabled4, label: label8, ...rest }, ref) {
2530
+ const { wrapper: wrapper4, label: labelClass, root: root25, track: track4, range: range2, thumb: thumb2, input: input6 } = useStyles21();
2380
2531
  const span = max - min;
2381
2532
  const percent = span > 0 ? (value - min) / span * 100 : 0;
2382
2533
  const clamped = Math.max(0, Math.min(100, percent));
2383
2534
  const handleChange = (e) => {
2384
2535
  onChange?.(Number(e.target.value));
2385
2536
  };
2386
- return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("span", { className: wrapper4, children: [
2387
- label7 ? /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: labelClass, children: label7 }) : null,
2388
- /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("span", { className: root24, children: [
2389
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: track4 }),
2390
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: range2, style: { width: `${clamped}%` } }),
2391
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
2537
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("span", { className: wrapper4, children: [
2538
+ label8 ? /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: labelClass, children: label8 }) : null,
2539
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("span", { className: root25, children: [
2540
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: track4 }),
2541
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: range2, style: { width: `${clamped}%` } }),
2542
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
2392
2543
  "input",
2393
2544
  {
2394
2545
  ref,
@@ -2398,21 +2549,21 @@ var Slider = (0, import_react47.forwardRef)(function Slider2({ value = 0, onChan
2398
2549
  max,
2399
2550
  step: step2,
2400
2551
  value,
2401
- disabled: disabled3,
2552
+ disabled: disabled4,
2402
2553
  onChange: handleChange,
2403
2554
  ...rest
2404
2555
  }
2405
2556
  ),
2406
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: thumb2, style: { left: `${clamped}%` } })
2557
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: thumb2, style: { left: `${clamped}%` } })
2407
2558
  ] })
2408
2559
  ] });
2409
2560
  });
2410
2561
 
2411
2562
  // src/components/accordion/index.tsx
2412
- var import_react49 = require("react");
2563
+ var import_react51 = require("react");
2413
2564
 
2414
2565
  // src/components/accordion/use-styles.ts
2415
- var import_react48 = require("react");
2566
+ var import_react50 = require("react");
2416
2567
 
2417
2568
  // src/components/accordion/use-styles.css.ts
2418
2569
  var chevron2 = "use-styles_chevron__1cjrdh93";
@@ -2420,14 +2571,14 @@ var chevronOpen2 = "use-styles_chevronOpen__1cjrdh94";
2420
2571
  var header2 = "use-styles_header__1cjrdh92";
2421
2572
  var item = "use-styles_item__1cjrdh91";
2422
2573
  var panel = "use-styles_panel__1cjrdh95";
2423
- var root15 = "use-styles_root__1cjrdh90";
2574
+ var root16 = "use-styles_root__1cjrdh90";
2424
2575
 
2425
2576
  // src/components/accordion/use-styles.ts
2426
- function useStyles21({ className }) {
2577
+ function useStyles22({ className }) {
2427
2578
  const { themeClass } = useTheme();
2428
- return (0, import_react48.useMemo)(
2579
+ return (0, import_react50.useMemo)(
2429
2580
  () => ({
2430
- root: [themeClass, root15, className].filter(Boolean).join(" "),
2581
+ root: [themeClass, root16, className].filter(Boolean).join(" "),
2431
2582
  item,
2432
2583
  header: header2,
2433
2584
  chevronFor: (open) => [chevron2, open && chevronOpen2].filter(Boolean).join(" "),
@@ -2438,10 +2589,10 @@ function useStyles21({ className }) {
2438
2589
  }
2439
2590
 
2440
2591
  // src/components/accordion/index.tsx
2441
- var import_jsx_runtime34 = require("react/jsx-runtime");
2442
- var Accordion = (0, import_react49.forwardRef)(function Accordion2({ items, multiple = false, defaultOpen = [], className, testId }, ref) {
2443
- const [open, setOpen] = (0, import_react49.useState)(defaultOpen);
2444
- const { root: root24, item: item3, header: header3, chevronFor, panel: panel3 } = useStyles21({ className });
2592
+ var import_jsx_runtime35 = require("react/jsx-runtime");
2593
+ var Accordion = (0, import_react51.forwardRef)(function Accordion2({ items, multiple = false, defaultOpen = [], className, testId }, ref) {
2594
+ const [open, setOpen] = (0, import_react51.useState)(defaultOpen);
2595
+ const { root: root25, item: item3, header: header3, chevronFor, panel: panel3 } = useStyles22({ className });
2445
2596
  const { testId: dataTestId, slot } = useTestId("layout", testId);
2446
2597
  const toggle = (id) => {
2447
2598
  setOpen((current2) => {
@@ -2450,19 +2601,19 @@ var Accordion = (0, import_react49.forwardRef)(function Accordion2({ items, mult
2450
2601
  return multiple ? [...current2, id] : [id];
2451
2602
  });
2452
2603
  };
2453
- return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { ref, className: root24, "data-testid": dataTestId, children: items.map((it) => {
2604
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { ref, className: root25, "data-testid": dataTestId, children: items.map((it) => {
2454
2605
  const isOpen = open.includes(it.id);
2455
2606
  const panelId = `accordion-panel-${it.id}`;
2456
2607
  const headerId = `accordion-header-${it.id}`;
2457
2608
  const itemSlot = slot(`item-${it.id}`);
2458
- return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
2609
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
2459
2610
  "div",
2460
2611
  {
2461
2612
  className: item3,
2462
2613
  "data-testid": itemSlot,
2463
2614
  "data-state": states({ expanded: isOpen }),
2464
2615
  children: [
2465
- /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
2616
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
2466
2617
  "button",
2467
2618
  {
2468
2619
  type: "button",
@@ -2474,11 +2625,11 @@ var Accordion = (0, import_react49.forwardRef)(function Accordion2({ items, mult
2474
2625
  onClick: () => toggle(it.id),
2475
2626
  children: [
2476
2627
  it.title,
2477
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(ChevronDownIcon, { className: chevronFor(isOpen) })
2628
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(ChevronDownIcon, { className: chevronFor(isOpen) })
2478
2629
  ]
2479
2630
  }
2480
2631
  ),
2481
- isOpen && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
2632
+ isOpen && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2482
2633
  "div",
2483
2634
  {
2484
2635
  id: panelId,
@@ -2497,12 +2648,12 @@ var Accordion = (0, import_react49.forwardRef)(function Accordion2({ items, mult
2497
2648
  });
2498
2649
 
2499
2650
  // src/components/breadcrumbs/index.tsx
2500
- var import_react51 = require("react");
2651
+ var import_react53 = require("react");
2501
2652
 
2502
2653
  // src/components/icons/chevron-right/index.tsx
2503
- var import_jsx_runtime35 = require("react/jsx-runtime");
2654
+ var import_jsx_runtime36 = require("react/jsx-runtime");
2504
2655
  function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
2505
- return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2656
+ return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2506
2657
  "svg",
2507
2658
  {
2508
2659
  xmlns: "http://www.w3.org/2000/svg",
@@ -2516,52 +2667,52 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
2516
2667
  strokeLinejoin: "round",
2517
2668
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
2518
2669
  ...rest,
2519
- children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "m9 18 6-6-6-6" })
2670
+ children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "m9 18 6-6-6-6" })
2520
2671
  }
2521
2672
  );
2522
2673
  }
2523
2674
 
2524
2675
  // src/components/breadcrumbs/use-styles.ts
2525
- var import_react50 = require("react");
2676
+ var import_react52 = require("react");
2526
2677
 
2527
2678
  // src/components/breadcrumbs/use-styles.css.ts
2528
2679
  var crumb = "use-styles_crumb__7u0du61";
2529
2680
  var current = "use-styles_current__7u0du62";
2530
- var root16 = "use-styles_root__7u0du60";
2681
+ var root17 = "use-styles_root__7u0du60";
2531
2682
  var separator = "use-styles_separator__7u0du63";
2532
2683
 
2533
2684
  // src/components/breadcrumbs/use-styles.ts
2534
- function useStyles22({ className }) {
2685
+ function useStyles23({ className }) {
2535
2686
  const { themeClass } = useTheme();
2536
- const root24 = (0, import_react50.useMemo)(
2537
- () => [themeClass, root16, className].filter(Boolean).join(" "),
2687
+ const root25 = (0, import_react52.useMemo)(
2688
+ () => [themeClass, root17, className].filter(Boolean).join(" "),
2538
2689
  [themeClass, className]
2539
2690
  );
2540
- return { root: root24, crumb, current, separator };
2691
+ return { root: root25, crumb, current, separator };
2541
2692
  }
2542
2693
 
2543
2694
  // src/components/breadcrumbs/index.tsx
2544
- var import_jsx_runtime36 = require("react/jsx-runtime");
2545
- var Breadcrumbs = (0, import_react51.forwardRef)(function Breadcrumbs2({ items, className, testId, ...rest }, ref) {
2546
- const { root: root24, crumb: crumb2, current: current2, separator: separator2 } = useStyles22({ className });
2695
+ var import_jsx_runtime37 = require("react/jsx-runtime");
2696
+ var Breadcrumbs = (0, import_react53.forwardRef)(function Breadcrumbs2({ items, className, testId, ...rest }, ref) {
2697
+ const { root: root25, crumb: crumb2, current: current2, separator: separator2 } = useStyles23({ className });
2547
2698
  const { testId: dataTestId, slot } = useTestId("nav", testId);
2548
- return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("nav", { ref, "aria-label": "Breadcrumb", className: root24, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
2699
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("nav", { ref, "aria-label": "Breadcrumb", className: root25, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
2549
2700
  const isLast = index === items.length - 1;
2550
2701
  const key = index;
2551
- return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(import_react51.Fragment, { children: [
2552
- isLast ? /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { className: current2, "aria-current": "page", "data-testid": slot(`crumb-${index}`), children: item3.label }) : item3.href ? /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("a", { className: crumb2, href: item3.href, "data-testid": slot(`crumb-${index}`), children: item3.label }) : /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { className: crumb2, "data-testid": slot(`crumb-${index}`), children: item3.label }),
2553
- !isLast && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { className: separator2, children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(ChevronRightIcon, { size: 14 }) })
2702
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(import_react53.Fragment, { children: [
2703
+ isLast ? /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("span", { className: current2, "aria-current": "page", "data-testid": slot(`crumb-${index}`), children: item3.label }) : item3.href ? /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("a", { className: crumb2, href: item3.href, "data-testid": slot(`crumb-${index}`), children: item3.label }) : /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("span", { className: crumb2, "data-testid": slot(`crumb-${index}`), children: item3.label }),
2704
+ !isLast && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("span", { className: separator2, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(ChevronRightIcon, { size: 14 }) })
2554
2705
  ] }, key);
2555
2706
  }) });
2556
2707
  });
2557
2708
 
2558
2709
  // src/components/pagination/index.tsx
2559
- var import_react53 = require("react");
2710
+ var import_react55 = require("react");
2560
2711
 
2561
2712
  // src/components/icons/chevron-left/index.tsx
2562
- var import_jsx_runtime37 = require("react/jsx-runtime");
2713
+ var import_jsx_runtime38 = require("react/jsx-runtime");
2563
2714
  function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
2564
- return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2715
+ return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
2565
2716
  "svg",
2566
2717
  {
2567
2718
  xmlns: "http://www.w3.org/2000/svg",
@@ -2575,27 +2726,27 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
2575
2726
  strokeLinejoin: "round",
2576
2727
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
2577
2728
  ...rest,
2578
- children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "m15 18-6-6 6-6" })
2729
+ children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "m15 18-6-6 6-6" })
2579
2730
  }
2580
2731
  );
2581
2732
  }
2582
2733
 
2583
2734
  // src/components/pagination/use-styles.ts
2584
- var import_react52 = require("react");
2735
+ var import_react54 = require("react");
2585
2736
 
2586
2737
  // src/components/pagination/use-styles.css.ts
2587
2738
  var ellipsis = "use-styles_ellipsis__1azgzoh3";
2588
2739
  var nav = "use-styles_nav__1azgzoh4";
2589
2740
  var pageActive = "use-styles_pageActive__1azgzoh2";
2590
2741
  var pageBtn = "use-styles_pageBtn__1azgzoh1";
2591
- var root17 = "use-styles_root__1azgzoh0";
2742
+ var root18 = "use-styles_root__1azgzoh0";
2592
2743
 
2593
2744
  // src/components/pagination/use-styles.ts
2594
- function useStyles23() {
2745
+ function useStyles24() {
2595
2746
  const { themeClass } = useTheme();
2596
- return (0, import_react52.useMemo)(
2747
+ return (0, import_react54.useMemo)(
2597
2748
  () => ({
2598
- root: [themeClass, root17].filter(Boolean).join(" "),
2749
+ root: [themeClass, root18].filter(Boolean).join(" "),
2599
2750
  pageBtnFor: (active2) => [pageBtn, active2 && pageActive].filter(Boolean).join(" "),
2600
2751
  ellipsis,
2601
2752
  nav: [pageBtn, nav].join(" ")
@@ -2605,7 +2756,7 @@ function useStyles23() {
2605
2756
  }
2606
2757
 
2607
2758
  // src/components/pagination/index.tsx
2608
- var import_jsx_runtime38 = require("react/jsx-runtime");
2759
+ var import_jsx_runtime39 = require("react/jsx-runtime");
2609
2760
  function buildItems(count, page, siblingCount) {
2610
2761
  const total = Math.max(1, count);
2611
2762
  const first = 1;
@@ -2619,15 +2770,15 @@ function buildItems(count, page, siblingCount) {
2619
2770
  if (last > first) items.push(last);
2620
2771
  return items;
2621
2772
  }
2622
- var Pagination = (0, import_react53.forwardRef)(function Pagination2({ count, page = 1, onChange, siblingCount = 1, testId, ...rest }, ref) {
2623
- const { root: root24, pageBtnFor, ellipsis: ellipsis2, nav: nav2 } = useStyles23();
2773
+ var Pagination = (0, import_react55.forwardRef)(function Pagination2({ count, page = 1, onChange, siblingCount = 1, testId, ...rest }, ref) {
2774
+ const { root: root25, pageBtnFor, ellipsis: ellipsis2, nav: nav2 } = useStyles24();
2624
2775
  const { testId: dataTestId, slot } = useTestId("nav", testId);
2625
2776
  const total = Math.max(1, count);
2626
2777
  const current2 = Math.min(Math.max(1, page), total);
2627
2778
  const items = buildItems(total, current2, siblingCount);
2628
2779
  const go = (n) => onChange?.(Math.min(Math.max(1, n), total));
2629
- return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("nav", { ref, className: root24, "aria-label": "Pagination", "data-testid": dataTestId, ...rest, children: [
2630
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
2780
+ return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("nav", { ref, className: root25, "aria-label": "Pagination", "data-testid": dataTestId, ...rest, children: [
2781
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
2631
2782
  "button",
2632
2783
  {
2633
2784
  type: "button",
@@ -2636,11 +2787,11 @@ var Pagination = (0, import_react53.forwardRef)(function Pagination2({ count, pa
2636
2787
  disabled: current2 <= 1,
2637
2788
  "data-testid": slot("prev"),
2638
2789
  onClick: () => go(current2 - 1),
2639
- children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(ChevronLeftIcon, { size: 18 })
2790
+ children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(ChevronLeftIcon, { size: 18 })
2640
2791
  }
2641
2792
  ),
2642
2793
  items.map(
2643
- (item3, index) => item3 === "ellipsis" ? /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
2794
+ (item3, index) => item3 === "ellipsis" ? /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
2644
2795
  "span",
2645
2796
  {
2646
2797
  className: ellipsis2,
@@ -2648,7 +2799,7 @@ var Pagination = (0, import_react53.forwardRef)(function Pagination2({ count, pa
2648
2799
  children: "\u2026"
2649
2800
  },
2650
2801
  `ellipsis-${index}`
2651
- ) : /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
2802
+ ) : /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
2652
2803
  "button",
2653
2804
  {
2654
2805
  type: "button",
@@ -2661,7 +2812,7 @@ var Pagination = (0, import_react53.forwardRef)(function Pagination2({ count, pa
2661
2812
  item3
2662
2813
  )
2663
2814
  ),
2664
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
2815
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
2665
2816
  "button",
2666
2817
  {
2667
2818
  type: "button",
@@ -2670,55 +2821,55 @@ var Pagination = (0, import_react53.forwardRef)(function Pagination2({ count, pa
2670
2821
  disabled: current2 >= total,
2671
2822
  "data-testid": slot("next"),
2672
2823
  onClick: () => go(current2 + 1),
2673
- children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(ChevronRightIcon, { size: 18 })
2824
+ children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(ChevronRightIcon, { size: 18 })
2674
2825
  }
2675
2826
  )
2676
2827
  ] });
2677
2828
  });
2678
2829
 
2679
2830
  // src/components/stepper/index.tsx
2680
- var import_react55 = require("react");
2831
+ var import_react57 = require("react");
2681
2832
 
2682
2833
  // src/components/stepper/use-styles.ts
2683
- var import_react54 = require("react");
2834
+ var import_react56 = require("react");
2684
2835
 
2685
2836
  // src/components/stepper/use-styles.css.ts
2686
2837
  var connector = "use-styles_connector__79pt4e7";
2687
- var label6 = "use-styles_label__79pt4e5";
2838
+ var label7 = "use-styles_label__79pt4e5";
2688
2839
  var labelActive = "use-styles_labelActive__79pt4e6";
2689
2840
  var marker = "use-styles_marker__79pt4e2";
2690
2841
  var markerActive = "use-styles_markerActive__79pt4e3";
2691
2842
  var markerDone = "use-styles_markerDone__79pt4e4";
2692
- var root18 = "use-styles_root__79pt4e0";
2843
+ var root19 = "use-styles_root__79pt4e0";
2693
2844
  var step = "use-styles_step__79pt4e1";
2694
2845
 
2695
2846
  // src/components/stepper/use-styles.ts
2696
- function useStyles24({ className }) {
2847
+ function useStyles25({ className }) {
2697
2848
  const { themeClass } = useTheme();
2698
- return (0, import_react54.useMemo)(() => {
2699
- const root24 = [themeClass, root18, className].filter(Boolean).join(" ");
2849
+ return (0, import_react56.useMemo)(() => {
2850
+ const root25 = [themeClass, root19, className].filter(Boolean).join(" ");
2700
2851
  const markerFor = (state) => [
2701
2852
  marker,
2702
2853
  state === "active" && markerActive,
2703
2854
  state === "done" && markerDone
2704
2855
  ].filter(Boolean).join(" ");
2705
- const labelFor = (active2) => [label6, active2 && labelActive].filter(Boolean).join(" ");
2706
- return { root: root24, step, connector, markerFor, labelFor };
2856
+ const labelFor = (active2) => [label7, active2 && labelActive].filter(Boolean).join(" ");
2857
+ return { root: root25, step, connector, markerFor, labelFor };
2707
2858
  }, [themeClass, className]);
2708
2859
  }
2709
2860
 
2710
2861
  // src/components/stepper/index.tsx
2711
- var import_jsx_runtime39 = require("react/jsx-runtime");
2712
- var Stepper = (0, import_react55.forwardRef)(function Stepper2({ steps, active: active2 = 0, className, testId, ...rest }, ref) {
2713
- const { root: root24, step: step2, connector: connector2, markerFor, labelFor } = useStyles24({ className });
2862
+ var import_jsx_runtime40 = require("react/jsx-runtime");
2863
+ var Stepper = (0, import_react57.forwardRef)(function Stepper2({ steps, active: active2 = 0, className, testId, ...rest }, ref) {
2864
+ const { root: root25, step: step2, connector: connector2, markerFor, labelFor } = useStyles25({ className });
2714
2865
  const { testId: dataTestId, slot } = useTestId("nav", testId);
2715
- return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { ref, className: root24, "data-testid": dataTestId, ...rest, children: steps.map((s, index) => {
2866
+ return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { ref, className: root25, "data-testid": dataTestId, ...rest, children: steps.map((s, index) => {
2716
2867
  const state = index < active2 ? "done" : index === active2 ? "active" : "upcoming";
2717
2868
  const isActive = state === "active";
2718
2869
  return (
2719
2870
  // biome-ignore lint/suspicious/noArrayIndexKey: steps are a static, ordered list with no stable id.
2720
- /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(import_react55.Fragment, { children: [
2721
- /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
2871
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_react57.Fragment, { children: [
2872
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
2722
2873
  "div",
2723
2874
  {
2724
2875
  className: step2,
@@ -2726,47 +2877,47 @@ var Stepper = (0, import_react55.forwardRef)(function Stepper2({ steps, active:
2726
2877
  "data-testid": slot(`step-${index}`),
2727
2878
  "data-state": states({ done: state === "done", active: isActive }),
2728
2879
  children: [
2729
- /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("span", { className: markerFor(state), children: state === "done" ? /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(CheckIcon, { size: 14 }) : index + 1 }),
2730
- /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("span", { className: labelFor(isActive), children: s.label })
2880
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { className: markerFor(state), children: state === "done" ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(CheckIcon, { size: 14 }) : index + 1 }),
2881
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { className: labelFor(isActive), children: s.label })
2731
2882
  ]
2732
2883
  }
2733
2884
  ),
2734
- index < steps.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("span", { "data-part": "connector", className: connector2 })
2885
+ index < steps.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { "data-part": "connector", className: connector2 })
2735
2886
  ] }, index)
2736
2887
  );
2737
2888
  }) });
2738
2889
  });
2739
2890
 
2740
2891
  // src/components/tabs/index.tsx
2741
- var import_react57 = require("react");
2892
+ var import_react59 = require("react");
2742
2893
 
2743
2894
  // src/components/tabs/use-styles.ts
2744
- var import_react56 = require("react");
2895
+ var import_react58 = require("react");
2745
2896
 
2746
2897
  // src/components/tabs/use-styles.css.ts
2747
2898
  var panel2 = "use-styles_panel__1l4m7t43";
2748
- var root19 = "use-styles_root__1l4m7t40";
2899
+ var root20 = "use-styles_root__1l4m7t40";
2749
2900
  var tab = "use-styles_tab__1l4m7t41";
2750
2901
  var tabActive = "use-styles_tabActive__1l4m7t42";
2751
2902
 
2752
2903
  // src/components/tabs/use-styles.ts
2753
- function useStyles25() {
2904
+ function useStyles26() {
2754
2905
  const { themeClass } = useTheme();
2755
- return (0, import_react56.useMemo)(() => {
2756
- const root24 = [themeClass, root19].filter(Boolean).join(" ");
2906
+ return (0, import_react58.useMemo)(() => {
2907
+ const root25 = [themeClass, root20].filter(Boolean).join(" ");
2757
2908
  const tabClass = (active2) => [tab, active2 && tabActive].filter(Boolean).join(" ");
2758
- return { root: root24, tab, tabClass, panel: panel2 };
2909
+ return { root: root25, tab, tabClass, panel: panel2 };
2759
2910
  }, [themeClass]);
2760
2911
  }
2761
2912
 
2762
2913
  // src/components/tabs/index.tsx
2763
- var import_jsx_runtime40 = require("react/jsx-runtime");
2914
+ var import_jsx_runtime41 = require("react/jsx-runtime");
2764
2915
  var ICON_SIZE3 = 16;
2765
- var Tabs = (0, import_react57.forwardRef)(function Tabs2({ items, value, onChange, testId, ...rest }, ref) {
2766
- const { root: root24, tabClass, panel: panel3 } = useStyles25();
2916
+ var Tabs = (0, import_react59.forwardRef)(function Tabs2({ items, value, onChange, testId, ...rest }, ref) {
2917
+ const { root: root25, tabClass, panel: panel3 } = useStyles26();
2767
2918
  const { testId: dataTestId, slot } = useTestId("nav", testId);
2768
- const baseId = (0, import_react57.useId)();
2769
- const tabRefs = (0, import_react57.useRef)([]);
2919
+ const baseId = (0, import_react59.useId)();
2920
+ const tabRefs = (0, import_react59.useRef)([]);
2770
2921
  const hasPanels = items.some((item3) => item3.content !== void 0);
2771
2922
  const activeIndex = items.findIndex((item3) => item3.value === value);
2772
2923
  const tabId = (v) => `${baseId}-tab-${v}`;
@@ -2798,12 +2949,12 @@ var Tabs = (0, import_react57.forwardRef)(function Tabs2({ items, value, onChang
2798
2949
  break;
2799
2950
  }
2800
2951
  };
2801
- return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_jsx_runtime40.Fragment, { children: [
2802
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { ref, role: "tablist", className: root24, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
2952
+ return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
2953
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("div", { ref, role: "tablist", className: root25, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
2803
2954
  const active2 = item3.value === value;
2804
2955
  const tabbable = active2 || activeIndex === -1 && index === 0;
2805
2956
  const ItemIcon = item3.icon;
2806
- return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
2957
+ return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
2807
2958
  "button",
2808
2959
  {
2809
2960
  ref: (el) => {
@@ -2821,14 +2972,14 @@ var Tabs = (0, import_react57.forwardRef)(function Tabs2({ items, value, onChang
2821
2972
  onClick: () => onChange?.(item3.value),
2822
2973
  onKeyDown: (event) => onKeyDown(event, index),
2823
2974
  children: [
2824
- ItemIcon ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(ItemIcon, { size: ICON_SIZE3 }) : null,
2975
+ ItemIcon ? /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(ItemIcon, { size: ICON_SIZE3 }) : null,
2825
2976
  item3.label
2826
2977
  ]
2827
2978
  },
2828
2979
  item3.value
2829
2980
  );
2830
2981
  }) }),
2831
- hasPanels && items.map((item3) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2982
+ hasPanels && items.map((item3) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
2832
2983
  "div",
2833
2984
  {
2834
2985
  role: "tabpanel",
@@ -2846,24 +2997,24 @@ var Tabs = (0, import_react57.forwardRef)(function Tabs2({ items, value, onChang
2846
2997
  });
2847
2998
 
2848
2999
  // src/components/menu/index.tsx
2849
- var import_react59 = require("react");
3000
+ var import_react61 = require("react");
2850
3001
 
2851
3002
  // src/components/menu/use-styles.ts
2852
- var import_react58 = require("react");
3003
+ var import_react60 = require("react");
2853
3004
 
2854
3005
  // src/components/menu/use-styles.css.ts
2855
3006
  var danger = "use-styles_danger__1uyxaj3";
2856
3007
  var item2 = "use-styles_item__1uyxaj2";
2857
- var list = "use-styles_list__1uyxaj1 surfaces_panelSurface__1qa7atn1";
3008
+ var list2 = "use-styles_list__1uyxaj1 surfaces_panelSurface__1qa7atn1";
2858
3009
  var wrapper3 = "use-styles_wrapper__1uyxaj0";
2859
3010
 
2860
3011
  // src/components/menu/use-styles.ts
2861
- function useStyles26() {
3012
+ function useStyles27() {
2862
3013
  const { themeClass } = useTheme();
2863
- return (0, import_react58.useMemo)(
3014
+ return (0, import_react60.useMemo)(
2864
3015
  () => ({
2865
3016
  wrapper: [themeClass, wrapper3].filter(Boolean).join(" "),
2866
- list,
3017
+ list: list2,
2867
3018
  item: item2,
2868
3019
  dangerItem: [item2, danger].join(" ")
2869
3020
  }),
@@ -2872,24 +3023,24 @@ function useStyles26() {
2872
3023
  }
2873
3024
 
2874
3025
  // src/components/menu/index.tsx
2875
- var import_jsx_runtime41 = require("react/jsx-runtime");
3026
+ var import_jsx_runtime42 = require("react/jsx-runtime");
2876
3027
  var ICON_SIZE4 = 16;
2877
3028
  function assignRef(ref, value) {
2878
3029
  if (typeof ref === "function") ref(value);
2879
3030
  else if (ref) ref.current = value;
2880
3031
  }
2881
- var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, items, testId }, ref) {
2882
- const { wrapper: wrapper4, list: list2, item: item3, dangerItem } = useStyles26();
3032
+ var Menu = (0, import_react61.forwardRef)(function Menu2({ trigger: trigger2, items, testId }, ref) {
3033
+ const { wrapper: wrapper4, list: list3, item: item3, dangerItem } = useStyles27();
2883
3034
  const { testId: rootTestId, slot } = useTestId("menu", testId);
2884
- const [open, setOpen] = (0, import_react59.useState)(false);
2885
- const [alignEnd, setAlignEnd] = (0, import_react59.useState)(false);
2886
- const rootRef = (0, import_react59.useRef)(null);
3035
+ const [open, setOpen] = (0, import_react61.useState)(false);
3036
+ const [alignEnd, setAlignEnd] = (0, import_react61.useState)(false);
3037
+ const rootRef = (0, import_react61.useRef)(null);
2887
3038
  const setRootRef = (node) => {
2888
3039
  rootRef.current = node;
2889
3040
  assignRef(ref, node);
2890
3041
  };
2891
- const listRef = (0, import_react59.useRef)(null);
2892
- const triggerRef = (0, import_react59.useRef)(null);
3042
+ const listRef = (0, import_react61.useRef)(null);
3043
+ const triggerRef = (0, import_react61.useRef)(null);
2893
3044
  const getMenuItems = () => Array.from(listRef.current?.querySelectorAll('[role="menuitem"]') ?? []);
2894
3045
  const focusItemAt = (index) => {
2895
3046
  const menuItems = getMenuItems();
@@ -2901,7 +3052,7 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
2901
3052
  setOpen(false);
2902
3053
  triggerRef.current?.focus();
2903
3054
  };
2904
- (0, import_react59.useLayoutEffect)(() => {
3055
+ (0, import_react61.useLayoutEffect)(() => {
2905
3056
  if (!open) {
2906
3057
  setAlignEnd(false);
2907
3058
  return;
@@ -2913,7 +3064,7 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
2913
3064
  const viewport = document.documentElement.clientWidth;
2914
3065
  setAlignEnd(rootLeft + listEl.offsetWidth > viewport);
2915
3066
  }, [open]);
2916
- (0, import_react59.useEffect)(() => {
3067
+ (0, import_react61.useEffect)(() => {
2917
3068
  if (!open) return;
2918
3069
  listRef.current?.querySelector('[role="menuitem"]')?.focus();
2919
3070
  const onDocMouseDown = (event) => {
@@ -2969,7 +3120,7 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
2969
3120
  triggerRef.current = node;
2970
3121
  assignRef(consumerRef, node);
2971
3122
  };
2972
- const clonedTrigger = (0, import_react59.cloneElement)(trigger2, {
3123
+ const clonedTrigger = (0, import_react61.cloneElement)(trigger2, {
2973
3124
  ref: mergedTriggerRef,
2974
3125
  "aria-haspopup": "menu",
2975
3126
  "aria-expanded": open,
@@ -2978,7 +3129,7 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
2978
3129
  setOpen((prev) => !prev);
2979
3130
  }
2980
3131
  });
2981
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
3132
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
2982
3133
  "div",
2983
3134
  {
2984
3135
  ref: setRootRef,
@@ -2987,18 +3138,18 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
2987
3138
  "data-state": open ? "open" : "closed",
2988
3139
  children: [
2989
3140
  clonedTrigger,
2990
- open && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
3141
+ open && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2991
3142
  "div",
2992
3143
  {
2993
3144
  ref: listRef,
2994
3145
  role: "menu",
2995
- className: list2,
3146
+ className: list3,
2996
3147
  "data-align": alignEnd ? "end" : "start",
2997
3148
  "data-testid": slot("list"),
2998
3149
  onKeyDown: onMenuKeyDown,
2999
3150
  children: items.map((entry, index) => {
3000
3151
  const ItemIcon = entry.icon;
3001
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
3152
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
3002
3153
  "button",
3003
3154
  {
3004
3155
  type: "button",
@@ -3011,7 +3162,7 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
3011
3162
  setOpen(false);
3012
3163
  },
3013
3164
  children: [
3014
- ItemIcon ? /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(ItemIcon, { size: ICON_SIZE4 }) : null,
3165
+ ItemIcon ? /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(ItemIcon, { size: ICON_SIZE4 }) : null,
3015
3166
  entry.label
3016
3167
  ]
3017
3168
  },
@@ -3026,11 +3177,11 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
3026
3177
  });
3027
3178
 
3028
3179
  // src/components/dialog/index.tsx
3029
- var import_react61 = require("react");
3180
+ var import_react63 = require("react");
3030
3181
  var import_react_dom = require("react-dom");
3031
3182
 
3032
3183
  // src/components/dialog/use-styles.ts
3033
- var import_react60 = require("react");
3184
+ var import_react62 = require("react");
3034
3185
 
3035
3186
  // src/components/dialog/use-styles.css.ts
3036
3187
  var actions = "use-styles_actions__5tstu83";
@@ -3039,9 +3190,9 @@ var overlay = "use-styles_overlay__5tstu80";
3039
3190
  var surface2 = "use-styles_surface__5tstu81";
3040
3191
 
3041
3192
  // src/components/dialog/use-styles.ts
3042
- function useStyles27() {
3193
+ function useStyles28() {
3043
3194
  const { themeClass } = useTheme();
3044
- return (0, import_react60.useMemo)(
3195
+ return (0, import_react62.useMemo)(
3045
3196
  () => ({
3046
3197
  overlay: [themeClass, overlay].filter(Boolean).join(" "),
3047
3198
  surface: surface2,
@@ -3053,24 +3204,24 @@ function useStyles27() {
3053
3204
  }
3054
3205
 
3055
3206
  // src/components/dialog/index.tsx
3056
- var import_jsx_runtime42 = require("react/jsx-runtime");
3207
+ var import_jsx_runtime43 = require("react/jsx-runtime");
3057
3208
  var FOCUSABLE = 'a[href], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled]), [tabindex]:not([tabindex="-1"])';
3058
3209
  function assignRef2(ref, value) {
3059
3210
  if (typeof ref === "function") ref(value);
3060
3211
  else if (ref) ref.current = value;
3061
3212
  }
3062
- var Dialog = (0, import_react61.forwardRef)(function Dialog2({ open, onClose, title, actions: actions3, children, testId }, ref) {
3063
- const { overlay: overlay2, surface: surface3, body: body3, actions: actionsClass } = useStyles27();
3213
+ var Dialog = (0, import_react63.forwardRef)(function Dialog2({ open, onClose, title, actions: actions3, children, testId }, ref) {
3214
+ const { overlay: overlay2, surface: surface3, body: body3, actions: actionsClass } = useStyles28();
3064
3215
  const { testId: rootTestId, slot } = useTestId("dialog", testId);
3065
- const surfaceRef = (0, import_react61.useRef)(null);
3216
+ const surfaceRef = (0, import_react63.useRef)(null);
3066
3217
  const setSurfaceRef = (node) => {
3067
3218
  surfaceRef.current = node;
3068
3219
  assignRef2(ref, node);
3069
3220
  };
3070
- const previouslyFocused = (0, import_react61.useRef)(null);
3071
- const generatedId = (0, import_react61.useId)();
3221
+ const previouslyFocused = (0, import_react63.useRef)(null);
3222
+ const generatedId = (0, import_react63.useId)();
3072
3223
  const titleId = title != null ? generatedId : void 0;
3073
- (0, import_react61.useEffect)(() => {
3224
+ (0, import_react63.useEffect)(() => {
3074
3225
  if (!open) return;
3075
3226
  const onKeyDown = (event) => {
3076
3227
  if (event.key === "Escape") onClose();
@@ -3078,13 +3229,13 @@ var Dialog = (0, import_react61.forwardRef)(function Dialog2({ open, onClose, ti
3078
3229
  document.addEventListener("keydown", onKeyDown);
3079
3230
  return () => document.removeEventListener("keydown", onKeyDown);
3080
3231
  }, [open, onClose]);
3081
- (0, import_react61.useEffect)(() => {
3232
+ (0, import_react63.useEffect)(() => {
3082
3233
  if (!open) return;
3083
3234
  previouslyFocused.current = document.activeElement;
3084
3235
  surfaceRef.current?.focus();
3085
3236
  return () => previouslyFocused.current?.focus?.();
3086
3237
  }, [open]);
3087
- (0, import_react61.useEffect)(() => {
3238
+ (0, import_react63.useEffect)(() => {
3088
3239
  if (!open) return;
3089
3240
  const previousOverflow = document.body.style.overflow;
3090
3241
  document.body.style.overflow = "hidden";
@@ -3122,7 +3273,7 @@ var Dialog = (0, import_react61.forwardRef)(function Dialog2({ open, onClose, ti
3122
3273
  };
3123
3274
  return (0, import_react_dom.createPortal)(
3124
3275
  // biome-ignore lint/a11y/useKeyWithClickEvents: ESC handled by a document keydown listener.
3125
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("div", { className: overlay2, "data-testid": slot("overlay"), onClick: onClose, children: /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
3276
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: overlay2, "data-testid": slot("overlay"), onClick: onClose, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
3126
3277
  "div",
3127
3278
  {
3128
3279
  ref: setSurfaceRef,
@@ -3135,9 +3286,9 @@ var Dialog = (0, import_react61.forwardRef)(function Dialog2({ open, onClose, ti
3135
3286
  onClick: stop,
3136
3287
  onKeyDown: onSurfaceKeyDown,
3137
3288
  children: [
3138
- title != null && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Typography, { variant: "h3", as: "h2", id: titleId, children: title }),
3139
- children != null && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("div", { className: body3, children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Typography, { variant: "body", color: "muted", children }) }),
3140
- actions3 != null && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("div", { className: actionsClass, children: actions3 })
3289
+ title != null && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Typography, { variant: "h3", as: "h2", id: titleId, children: title }),
3290
+ children != null && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: body3, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Typography, { variant: "body", color: "muted", children }) }),
3291
+ actions3 != null && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: actionsClass, children: actions3 })
3141
3292
  ]
3142
3293
  }
3143
3294
  ) }),
@@ -3146,23 +3297,23 @@ var Dialog = (0, import_react61.forwardRef)(function Dialog2({ open, onClose, ti
3146
3297
  });
3147
3298
 
3148
3299
  // src/components/snackbar/index.tsx
3149
- var import_react63 = require("react");
3300
+ var import_react65 = require("react");
3150
3301
  var import_react_dom2 = require("react-dom");
3151
3302
 
3152
3303
  // src/components/snackbar/use-styles.ts
3153
- var import_react62 = require("react");
3304
+ var import_react64 = require("react");
3154
3305
 
3155
3306
  // src/components/snackbar/use-styles.css.ts
3156
3307
  var closeBtn = "use-styles_closeBtn__ihzsep2";
3157
3308
  var message = "use-styles_message__ihzsep1";
3158
- var root20 = "use-styles_root__ihzsep0 surfaces_inkySurface__1qa7atn2";
3309
+ var root21 = "use-styles_root__ihzsep0 surfaces_inkySurface__1qa7atn2";
3159
3310
 
3160
3311
  // src/components/snackbar/use-styles.ts
3161
- function useStyles28() {
3312
+ function useStyles29() {
3162
3313
  const { themeClass } = useTheme();
3163
- return (0, import_react62.useMemo)(
3314
+ return (0, import_react64.useMemo)(
3164
3315
  () => ({
3165
- root: [themeClass, root20].filter(Boolean).join(" "),
3316
+ root: [themeClass, root21].filter(Boolean).join(" "),
3166
3317
  message,
3167
3318
  closeBtn
3168
3319
  }),
@@ -3171,24 +3322,36 @@ function useStyles28() {
3171
3322
  }
3172
3323
 
3173
3324
  // src/components/snackbar/index.tsx
3174
- var import_jsx_runtime43 = require("react/jsx-runtime");
3325
+ var import_jsx_runtime44 = require("react/jsx-runtime");
3175
3326
  var DEFAULT_DURATION = 5e3;
3176
- var Snackbar = (0, import_react63.forwardRef)(function Snackbar2({ open, message: message2, action, onClose, duration = DEFAULT_DURATION, testId }, ref) {
3177
- const { root: root24, message: messageClass, closeBtn: closeBtn2 } = useStyles28();
3327
+ var Snackbar = (0, import_react65.forwardRef)(function Snackbar2({
3328
+ open,
3329
+ message: message2,
3330
+ action,
3331
+ onClose,
3332
+ duration = DEFAULT_DURATION,
3333
+ testId,
3334
+ onMouseEnter,
3335
+ onMouseLeave,
3336
+ onFocus,
3337
+ onBlur,
3338
+ ...rest
3339
+ }, ref) {
3340
+ const { root: root25, message: messageClass, closeBtn: closeBtn2 } = useStyles29();
3178
3341
  const { testId: dataTestId, slot } = useTestId("feedback", testId);
3179
- const onCloseRef = (0, import_react63.useRef)(onClose);
3180
- (0, import_react63.useEffect)(() => {
3342
+ const onCloseRef = (0, import_react65.useRef)(onClose);
3343
+ (0, import_react65.useEffect)(() => {
3181
3344
  onCloseRef.current = onClose;
3182
3345
  }, [onClose]);
3183
- const interactingRef = (0, import_react63.useRef)({ hover: false, focus: false });
3184
- const timeoutRef = (0, import_react63.useRef)();
3185
- const clearTimer = (0, import_react63.useCallback)(() => {
3346
+ const interactingRef = (0, import_react65.useRef)({ hover: false, focus: false });
3347
+ const timeoutRef = (0, import_react65.useRef)();
3348
+ const clearTimer = (0, import_react65.useCallback)(() => {
3186
3349
  if (timeoutRef.current !== void 0) {
3187
3350
  clearTimeout(timeoutRef.current);
3188
3351
  timeoutRef.current = void 0;
3189
3352
  }
3190
3353
  }, []);
3191
- const scheduleTimer = (0, import_react63.useCallback)(() => {
3354
+ const scheduleTimer = (0, import_react65.useCallback)(() => {
3192
3355
  clearTimer();
3193
3356
  if (!open || duration == null || !onCloseRef.current) return;
3194
3357
  if (interactingRef.current.hover || interactingRef.current.focus) return;
@@ -3196,43 +3359,48 @@ var Snackbar = (0, import_react63.forwardRef)(function Snackbar2({ open, message
3196
3359
  onCloseRef.current?.();
3197
3360
  }, duration);
3198
3361
  }, [open, duration, clearTimer]);
3199
- (0, import_react63.useEffect)(() => {
3362
+ (0, import_react65.useEffect)(() => {
3200
3363
  scheduleTimer();
3201
3364
  return clearTimer;
3202
3365
  }, [scheduleTimer, clearTimer]);
3203
- const handleMouseEnter = () => {
3366
+ const handleMouseEnter = (event) => {
3204
3367
  interactingRef.current.hover = true;
3205
3368
  clearTimer();
3369
+ onMouseEnter?.(event);
3206
3370
  };
3207
- const handleMouseLeave = () => {
3371
+ const handleMouseLeave = (event) => {
3208
3372
  interactingRef.current.hover = false;
3209
3373
  scheduleTimer();
3374
+ onMouseLeave?.(event);
3210
3375
  };
3211
- const handleFocus = () => {
3376
+ const handleFocus = (event) => {
3212
3377
  interactingRef.current.focus = true;
3213
3378
  clearTimer();
3379
+ onFocus?.(event);
3214
3380
  };
3215
- const handleBlur = () => {
3381
+ const handleBlur = (event) => {
3216
3382
  interactingRef.current.focus = false;
3217
3383
  scheduleTimer();
3384
+ onBlur?.(event);
3218
3385
  };
3219
3386
  if (!open || typeof document === "undefined") return null;
3220
3387
  return (0, import_react_dom2.createPortal)(
3221
- /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
3388
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
3222
3389
  "div",
3223
3390
  {
3224
3391
  ref,
3225
3392
  role: "status",
3226
- className: root24,
3227
3393
  "data-testid": dataTestId,
3228
3394
  onMouseEnter: handleMouseEnter,
3229
3395
  onMouseLeave: handleMouseLeave,
3230
3396
  onFocus: handleFocus,
3231
3397
  onBlur: handleBlur,
3398
+ ...rest,
3399
+ className: root25,
3232
3400
  children: [
3233
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("span", { className: messageClass, "data-testid": slot("message"), children: message2 }),
3401
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("span", { className: messageClass, "data-testid": slot("message"), children: message2 }),
3234
3402
  action,
3235
- onClose && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
3403
+ onClose && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
3236
3404
  "button",
3237
3405
  {
3238
3406
  type: "button",
@@ -3240,7 +3408,7 @@ var Snackbar = (0, import_react63.forwardRef)(function Snackbar2({ open, message
3240
3408
  className: closeBtn2,
3241
3409
  "data-testid": slot("close"),
3242
3410
  onClick: onClose,
3243
- children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(XIcon, { size: 18 })
3411
+ children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(XIcon, { size: 18 })
3244
3412
  }
3245
3413
  )
3246
3414
  ]
@@ -3251,27 +3419,27 @@ var Snackbar = (0, import_react63.forwardRef)(function Snackbar2({ open, message
3251
3419
  });
3252
3420
 
3253
3421
  // src/components/table/index.tsx
3254
- var import_react65 = require("react");
3422
+ var import_react67 = require("react");
3255
3423
 
3256
3424
  // src/components/table/use-styles.ts
3257
- var import_react64 = require("react");
3425
+ var import_react66 = require("react");
3258
3426
 
3259
3427
  // src/components/table/use-styles.css.ts
3260
3428
  var alignRight = "use-styles_alignRight__1n2cz6i3";
3261
3429
  var caption = "use-styles_caption__1n2cz6i4";
3262
- var root21 = "use-styles_root__1n2cz6i0";
3430
+ var root22 = "use-styles_root__1n2cz6i0";
3263
3431
  var td = "use-styles_td__1n2cz6i2";
3264
3432
  var th = "use-styles_th__1n2cz6i1";
3265
3433
 
3266
3434
  // src/components/table/use-styles.ts
3267
- function useStyles29({ className }) {
3435
+ function useStyles30({ className }) {
3268
3436
  const { themeClass } = useTheme();
3269
- const root24 = (0, import_react64.useMemo)(
3270
- () => [themeClass, root21, className].filter(Boolean).join(" "),
3437
+ const root25 = (0, import_react66.useMemo)(
3438
+ () => [themeClass, root22, className].filter(Boolean).join(" "),
3271
3439
  [themeClass, className]
3272
3440
  );
3273
3441
  return {
3274
- root: root24,
3442
+ root: root25,
3275
3443
  th,
3276
3444
  td,
3277
3445
  alignRight,
@@ -3280,87 +3448,87 @@ function useStyles29({ className }) {
3280
3448
  }
3281
3449
 
3282
3450
  // src/components/table/index.tsx
3283
- var import_jsx_runtime44 = require("react/jsx-runtime");
3451
+ var import_jsx_runtime45 = require("react/jsx-runtime");
3284
3452
  function TableInner({ columns, rows, getRowKey, className, caption: caption2, testId, ...rest }, ref) {
3285
- const { root: root24, th: th2, td: td2, alignRight: alignRight2, caption: captionClass } = useStyles29({ className });
3453
+ const { root: root25, th: th2, td: td2, alignRight: alignRight2, caption: captionClass } = useStyles30({ className });
3286
3454
  const { testId: dataTestId, slot } = useTestId("list", testId);
3287
3455
  const headClass = (column) => column.align === "right" ? `${th2} ${alignRight2}` : th2;
3288
3456
  const cellClass = (column) => column.align === "right" ? `${td2} ${alignRight2}` : td2;
3289
- return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)("table", { ref, className: root24, "data-testid": dataTestId, ...rest, children: [
3290
- caption2 != null && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("caption", { className: captionClass, children: caption2 }),
3291
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("thead", { children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("tr", { children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("th", { scope: "col", className: headClass(column), children: column.header }, column.key)) }) }),
3292
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("tbody", { children: rows.map((row, index) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("tr", { "data-testid": slot(`row-${index}`), children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("td", { className: cellClass(column), children: column.render ? column.render(row) : String(row[column.key]) }, column.key)) }, getRowKey ? getRowKey(row, index) : index)) })
3457
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("table", { ref, className: root25, "data-testid": dataTestId, ...rest, children: [
3458
+ caption2 != null && /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("caption", { className: captionClass, children: caption2 }),
3459
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("thead", { children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("tr", { children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("th", { scope: "col", className: headClass(column), children: column.header }, column.key)) }) }),
3460
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("tbody", { children: rows.map((row, index) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("tr", { "data-testid": slot(`row-${index}`), children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("td", { className: cellClass(column), children: column.render ? column.render(row) : String(row[column.key]) }, column.key)) }, getRowKey ? getRowKey(row, index) : index)) })
3293
3461
  ] });
3294
3462
  }
3295
- var TableForwarded = (0, import_react65.forwardRef)(TableInner);
3463
+ var TableForwarded = (0, import_react67.forwardRef)(TableInner);
3296
3464
  TableForwarded.displayName = "Table";
3297
3465
  var Table = TableForwarded;
3298
3466
 
3299
3467
  // src/components/app-bar/index.tsx
3300
- var import_react67 = require("react");
3468
+ var import_react69 = require("react");
3301
3469
 
3302
3470
  // src/components/app-bar/use-styles.ts
3303
- var import_react66 = require("react");
3471
+ var import_react68 = require("react");
3304
3472
 
3305
3473
  // src/components/app-bar/use-styles.css.ts
3306
3474
  var actions2 = "use-styles_actions__1h133nh2";
3307
3475
  var brand = "use-styles_brand__1h133nh1";
3308
- var root22 = "use-styles_root__1h133nh0";
3476
+ var root23 = "use-styles_root__1h133nh0";
3309
3477
 
3310
3478
  // src/components/app-bar/use-styles.ts
3311
- function useStyles30({ className }) {
3479
+ function useStyles31({ className }) {
3312
3480
  const { themeClass } = useTheme();
3313
- const root24 = (0, import_react66.useMemo)(
3314
- () => [themeClass, root22, className].filter(Boolean).join(" "),
3481
+ const root25 = (0, import_react68.useMemo)(
3482
+ () => [themeClass, root23, className].filter(Boolean).join(" "),
3315
3483
  [themeClass, className]
3316
3484
  );
3317
- return { root: root24, brand, actions: actions2 };
3485
+ return { root: root25, brand, actions: actions2 };
3318
3486
  }
3319
3487
 
3320
3488
  // src/components/app-bar/index.tsx
3321
- var import_jsx_runtime45 = require("react/jsx-runtime");
3322
- var AppBar = (0, import_react67.forwardRef)(function AppBar2({ brand: brand2, actions: actions3, className, children, testId, ...rest }, ref) {
3323
- const styles = useStyles30({ className });
3489
+ var import_jsx_runtime46 = require("react/jsx-runtime");
3490
+ var AppBar = (0, import_react69.forwardRef)(function AppBar2({ brand: brand2, actions: actions3, className, children, testId, ...rest }, ref) {
3491
+ const styles = useStyles31({ className });
3324
3492
  const { testId: dataTestId, slot } = useTestId("nav", testId);
3325
- return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("header", { ref, className: styles.root, "data-testid": dataTestId, ...rest, children: [
3326
- brand2 !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: styles.brand, "data-testid": slot("brand"), children: brand2 }) : null,
3493
+ return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("header", { ref, className: styles.root, "data-testid": dataTestId, ...rest, children: [
3494
+ brand2 !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: styles.brand, "data-testid": slot("brand"), children: brand2 }) : null,
3327
3495
  children,
3328
- actions3 !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: styles.actions, "data-testid": slot("actions"), children: actions3 }) : null
3496
+ actions3 !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: styles.actions, "data-testid": slot("actions"), children: actions3 }) : null
3329
3497
  ] });
3330
3498
  });
3331
3499
 
3332
3500
  // src/components/list-item/index.tsx
3333
- var import_react69 = require("react");
3501
+ var import_react71 = require("react");
3334
3502
 
3335
3503
  // src/components/list-item/use-styles.ts
3336
- var import_react68 = require("react");
3504
+ var import_react70 = require("react");
3337
3505
 
3338
3506
  // src/components/list-item/use-styles.css.ts
3339
3507
  var content3 = "use-styles_content__kbreq13";
3340
3508
  var leading = "use-styles_leading__kbreq12";
3341
- var root23 = "use-styles_root__kbreq10";
3509
+ var root24 = "use-styles_root__kbreq10";
3342
3510
  var selected3 = "use-styles_selected__kbreq11";
3343
3511
  var trailing = "use-styles_trailing__kbreq14";
3344
3512
 
3345
3513
  // src/components/list-item/use-styles.ts
3346
- function useStyles31({
3514
+ function useStyles32({
3347
3515
  selected: selected4,
3348
3516
  className
3349
3517
  }) {
3350
3518
  const { themeClass } = useTheme();
3351
- const root24 = (0, import_react68.useMemo)(
3352
- () => [themeClass, root23, selected4 && selected3, className].filter(Boolean).join(" "),
3519
+ const root25 = (0, import_react70.useMemo)(
3520
+ () => [themeClass, root24, selected4 && selected3, className].filter(Boolean).join(" "),
3353
3521
  [themeClass, selected4, className]
3354
3522
  );
3355
- return { root: root24, leading, content: content3, trailing };
3523
+ return { root: root25, leading, content: content3, trailing };
3356
3524
  }
3357
3525
 
3358
3526
  // src/components/list-item/index.tsx
3359
- var import_jsx_runtime46 = require("react/jsx-runtime");
3360
- var ListItem = (0, import_react69.forwardRef)(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected4, className, testId, children, ...rest }, ref) {
3361
- const styles = useStyles31({ selected: selected4, className });
3527
+ var import_jsx_runtime47 = require("react/jsx-runtime");
3528
+ var ListItem = (0, import_react71.forwardRef)(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected4, className, testId, children, ...rest }, ref) {
3529
+ const styles = useStyles32({ selected: selected4, className });
3362
3530
  const { testId: dataTestId, slot } = useTestId("list", testId);
3363
- return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
3531
+ return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
3364
3532
  "div",
3365
3533
  {
3366
3534
  ref,
@@ -3369,18 +3537,18 @@ var ListItem = (0, import_react69.forwardRef)(function ListItem2({ leading: lead
3369
3537
  "data-state": states({ selected: selected4 }),
3370
3538
  ...rest,
3371
3539
  children: [
3372
- leading2 != null && /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("span", { className: styles.leading, "data-testid": slot("leading"), children: leading2 }),
3373
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("span", { className: styles.content, "data-testid": slot("content"), children }),
3374
- trailing2 != null && /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("span", { className: styles.trailing, "data-testid": slot("trailing"), children: trailing2 })
3540
+ leading2 != null && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("span", { className: styles.leading, "data-testid": slot("leading"), children: leading2 }),
3541
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("span", { className: styles.content, "data-testid": slot("content"), children }),
3542
+ trailing2 != null && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("span", { className: styles.trailing, "data-testid": slot("trailing"), children: trailing2 })
3375
3543
  ]
3376
3544
  }
3377
3545
  );
3378
3546
  });
3379
3547
 
3380
3548
  // src/components/icons/alert-circle/index.tsx
3381
- var import_jsx_runtime47 = require("react/jsx-runtime");
3549
+ var import_jsx_runtime48 = require("react/jsx-runtime");
3382
3550
  function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3383
- return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
3551
+ return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
3384
3552
  "svg",
3385
3553
  {
3386
3554
  xmlns: "http://www.w3.org/2000/svg",
@@ -3395,18 +3563,18 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
3395
3563
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3396
3564
  ...rest,
3397
3565
  children: [
3398
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
3399
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("line", { x1: "12", x2: "12", y1: "8", y2: "12" }),
3400
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("line", { x1: "12", x2: "12.01", y1: "16", y2: "16" })
3566
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
3567
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("line", { x1: "12", x2: "12", y1: "8", y2: "12" }),
3568
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("line", { x1: "12", x2: "12.01", y1: "16", y2: "16" })
3401
3569
  ]
3402
3570
  }
3403
3571
  );
3404
3572
  }
3405
3573
 
3406
3574
  // src/components/icons/archive/index.tsx
3407
- var import_jsx_runtime48 = require("react/jsx-runtime");
3575
+ var import_jsx_runtime49 = require("react/jsx-runtime");
3408
3576
  function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3409
- return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
3577
+ return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
3410
3578
  "svg",
3411
3579
  {
3412
3580
  xmlns: "http://www.w3.org/2000/svg",
@@ -3421,18 +3589,18 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3421
3589
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3422
3590
  ...rest,
3423
3591
  children: [
3424
- /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
3425
- /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }),
3426
- /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M10 12h4" })
3592
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
3593
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }),
3594
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M10 12h4" })
3427
3595
  ]
3428
3596
  }
3429
3597
  );
3430
3598
  }
3431
3599
 
3432
3600
  // src/components/icons/arrow-down/index.tsx
3433
- var import_jsx_runtime49 = require("react/jsx-runtime");
3601
+ var import_jsx_runtime50 = require("react/jsx-runtime");
3434
3602
  function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3435
- return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
3603
+ return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
3436
3604
  "svg",
3437
3605
  {
3438
3606
  xmlns: "http://www.w3.org/2000/svg",
@@ -3447,17 +3615,17 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3447
3615
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3448
3616
  ...rest,
3449
3617
  children: [
3450
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M12 5v14" }),
3451
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "m19 12-7 7-7-7" })
3618
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M12 5v14" }),
3619
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "m19 12-7 7-7-7" })
3452
3620
  ]
3453
3621
  }
3454
3622
  );
3455
3623
  }
3456
3624
 
3457
3625
  // src/components/icons/arrow-left/index.tsx
3458
- var import_jsx_runtime50 = require("react/jsx-runtime");
3626
+ var import_jsx_runtime51 = require("react/jsx-runtime");
3459
3627
  function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3460
- return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
3628
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
3461
3629
  "svg",
3462
3630
  {
3463
3631
  xmlns: "http://www.w3.org/2000/svg",
@@ -3472,17 +3640,17 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3472
3640
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3473
3641
  ...rest,
3474
3642
  children: [
3475
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "m12 19-7-7 7-7" }),
3476
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M19 12H5" })
3643
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "m12 19-7-7 7-7" }),
3644
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M19 12H5" })
3477
3645
  ]
3478
3646
  }
3479
3647
  );
3480
3648
  }
3481
3649
 
3482
3650
  // src/components/icons/arrow-right/index.tsx
3483
- var import_jsx_runtime51 = require("react/jsx-runtime");
3651
+ var import_jsx_runtime52 = require("react/jsx-runtime");
3484
3652
  function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3485
- return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
3653
+ return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
3486
3654
  "svg",
3487
3655
  {
3488
3656
  xmlns: "http://www.w3.org/2000/svg",
@@ -3497,17 +3665,17 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
3497
3665
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3498
3666
  ...rest,
3499
3667
  children: [
3500
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M5 12h14" }),
3501
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "m12 5 7 7-7 7" })
3668
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M5 12h14" }),
3669
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "m12 5 7 7-7 7" })
3502
3670
  ]
3503
3671
  }
3504
3672
  );
3505
3673
  }
3506
3674
 
3507
3675
  // src/components/icons/arrow-up/index.tsx
3508
- var import_jsx_runtime52 = require("react/jsx-runtime");
3676
+ var import_jsx_runtime53 = require("react/jsx-runtime");
3509
3677
  function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3510
- return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
3678
+ return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
3511
3679
  "svg",
3512
3680
  {
3513
3681
  xmlns: "http://www.w3.org/2000/svg",
@@ -3522,17 +3690,17 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3522
3690
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3523
3691
  ...rest,
3524
3692
  children: [
3525
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "m5 12 7-7 7 7" }),
3526
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M12 19V5" })
3693
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "m5 12 7-7 7 7" }),
3694
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "M12 19V5" })
3527
3695
  ]
3528
3696
  }
3529
3697
  );
3530
3698
  }
3531
3699
 
3532
3700
  // src/components/icons/at-sign/index.tsx
3533
- var import_jsx_runtime53 = require("react/jsx-runtime");
3701
+ var import_jsx_runtime54 = require("react/jsx-runtime");
3534
3702
  function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3535
- return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
3703
+ return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
3536
3704
  "svg",
3537
3705
  {
3538
3706
  xmlns: "http://www.w3.org/2000/svg",
@@ -3547,17 +3715,17 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3547
3715
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3548
3716
  ...rest,
3549
3717
  children: [
3550
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
3551
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" })
3718
+ /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
3719
+ /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" })
3552
3720
  ]
3553
3721
  }
3554
3722
  );
3555
3723
  }
3556
3724
 
3557
3725
  // src/components/icons/bell/index.tsx
3558
- var import_jsx_runtime54 = require("react/jsx-runtime");
3726
+ var import_jsx_runtime55 = require("react/jsx-runtime");
3559
3727
  function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3560
- return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
3728
+ return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
3561
3729
  "svg",
3562
3730
  {
3563
3731
  xmlns: "http://www.w3.org/2000/svg",
@@ -3572,17 +3740,17 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3572
3740
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3573
3741
  ...rest,
3574
3742
  children: [
3575
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
3576
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" })
3743
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
3744
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" })
3577
3745
  ]
3578
3746
  }
3579
3747
  );
3580
3748
  }
3581
3749
 
3582
3750
  // src/components/icons/bell-off/index.tsx
3583
- var import_jsx_runtime55 = require("react/jsx-runtime");
3751
+ var import_jsx_runtime56 = require("react/jsx-runtime");
3584
3752
  function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3585
- return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
3753
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
3586
3754
  "svg",
3587
3755
  {
3588
3756
  xmlns: "http://www.w3.org/2000/svg",
@@ -3597,19 +3765,19 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3597
3765
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3598
3766
  ...rest,
3599
3767
  children: [
3600
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
3601
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M17 17H3s3-2 3-9a4.67 4.67 0 0 1 .3-1.7" }),
3602
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" }),
3603
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "m2 2 20 20" })
3768
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
3769
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "M17 17H3s3-2 3-9a4.67 4.67 0 0 1 .3-1.7" }),
3770
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" }),
3771
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "m2 2 20 20" })
3604
3772
  ]
3605
3773
  }
3606
3774
  );
3607
3775
  }
3608
3776
 
3609
3777
  // src/components/icons/bookmark/index.tsx
3610
- var import_jsx_runtime56 = require("react/jsx-runtime");
3778
+ var import_jsx_runtime57 = require("react/jsx-runtime");
3611
3779
  function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3612
- return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
3780
+ return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
3613
3781
  "svg",
3614
3782
  {
3615
3783
  xmlns: "http://www.w3.org/2000/svg",
@@ -3623,15 +3791,15 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3623
3791
  strokeLinejoin: "round",
3624
3792
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3625
3793
  ...rest,
3626
- children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
3794
+ children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
3627
3795
  }
3628
3796
  );
3629
3797
  }
3630
3798
 
3631
3799
  // src/components/icons/calendar/index.tsx
3632
- var import_jsx_runtime57 = require("react/jsx-runtime");
3800
+ var import_jsx_runtime58 = require("react/jsx-runtime");
3633
3801
  function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3634
- return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
3802
+ return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
3635
3803
  "svg",
3636
3804
  {
3637
3805
  xmlns: "http://www.w3.org/2000/svg",
@@ -3646,19 +3814,19 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3646
3814
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3647
3815
  ...rest,
3648
3816
  children: [
3649
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M8 2v4" }),
3650
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M16 2v4" }),
3651
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
3652
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M3 10h18" })
3817
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M8 2v4" }),
3818
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M16 2v4" }),
3819
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
3820
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M3 10h18" })
3653
3821
  ]
3654
3822
  }
3655
3823
  );
3656
3824
  }
3657
3825
 
3658
3826
  // src/components/icons/camera/index.tsx
3659
- var import_jsx_runtime58 = require("react/jsx-runtime");
3827
+ var import_jsx_runtime59 = require("react/jsx-runtime");
3660
3828
  function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3661
- return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
3829
+ return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(
3662
3830
  "svg",
3663
3831
  {
3664
3832
  xmlns: "http://www.w3.org/2000/svg",
@@ -3673,17 +3841,17 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3673
3841
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3674
3842
  ...rest,
3675
3843
  children: [
3676
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z" }),
3677
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("circle", { cx: "12", cy: "13", r: "3" })
3844
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("path", { d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z" }),
3845
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("circle", { cx: "12", cy: "13", r: "3" })
3678
3846
  ]
3679
3847
  }
3680
3848
  );
3681
3849
  }
3682
3850
 
3683
3851
  // src/components/icons/chevron-up/index.tsx
3684
- var import_jsx_runtime59 = require("react/jsx-runtime");
3852
+ var import_jsx_runtime60 = require("react/jsx-runtime");
3685
3853
  function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3686
- return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
3854
+ return /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
3687
3855
  "svg",
3688
3856
  {
3689
3857
  xmlns: "http://www.w3.org/2000/svg",
@@ -3697,15 +3865,15 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3697
3865
  strokeLinejoin: "round",
3698
3866
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3699
3867
  ...rest,
3700
- children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("path", { d: "m18 15-6-6-6 6" })
3868
+ children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { d: "m18 15-6-6-6 6" })
3701
3869
  }
3702
3870
  );
3703
3871
  }
3704
3872
 
3705
3873
  // src/components/icons/chevrons-left/index.tsx
3706
- var import_jsx_runtime60 = require("react/jsx-runtime");
3874
+ var import_jsx_runtime61 = require("react/jsx-runtime");
3707
3875
  function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3708
- return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
3876
+ return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
3709
3877
  "svg",
3710
3878
  {
3711
3879
  xmlns: "http://www.w3.org/2000/svg",
@@ -3720,17 +3888,17 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
3720
3888
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3721
3889
  ...rest,
3722
3890
  children: [
3723
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { d: "m11 17-5-5 5-5" }),
3724
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { d: "m18 17-5-5 5-5" })
3891
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "m11 17-5-5 5-5" }),
3892
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "m18 17-5-5 5-5" })
3725
3893
  ]
3726
3894
  }
3727
3895
  );
3728
3896
  }
3729
3897
 
3730
3898
  // src/components/icons/chevrons-right/index.tsx
3731
- var import_jsx_runtime61 = require("react/jsx-runtime");
3899
+ var import_jsx_runtime62 = require("react/jsx-runtime");
3732
3900
  function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3733
- return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
3901
+ return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
3734
3902
  "svg",
3735
3903
  {
3736
3904
  xmlns: "http://www.w3.org/2000/svg",
@@ -3745,17 +3913,17 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
3745
3913
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3746
3914
  ...rest,
3747
3915
  children: [
3748
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "m6 17 5-5-5-5" }),
3749
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "m13 17 5-5-5-5" })
3916
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("path", { d: "m6 17 5-5-5-5" }),
3917
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("path", { d: "m13 17 5-5-5-5" })
3750
3918
  ]
3751
3919
  }
3752
3920
  );
3753
3921
  }
3754
3922
 
3755
3923
  // src/components/icons/clipboard/index.tsx
3756
- var import_jsx_runtime62 = require("react/jsx-runtime");
3924
+ var import_jsx_runtime63 = require("react/jsx-runtime");
3757
3925
  function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3758
- return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
3926
+ return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
3759
3927
  "svg",
3760
3928
  {
3761
3929
  xmlns: "http://www.w3.org/2000/svg",
@@ -3770,17 +3938,17 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3770
3938
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3771
3939
  ...rest,
3772
3940
  children: [
3773
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
3774
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" })
3941
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
3942
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" })
3775
3943
  ]
3776
3944
  }
3777
3945
  );
3778
3946
  }
3779
3947
 
3780
3948
  // src/components/icons/clock/index.tsx
3781
- var import_jsx_runtime63 = require("react/jsx-runtime");
3949
+ var import_jsx_runtime64 = require("react/jsx-runtime");
3782
3950
  function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3783
- return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
3951
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
3784
3952
  "svg",
3785
3953
  {
3786
3954
  xmlns: "http://www.w3.org/2000/svg",
@@ -3795,17 +3963,17 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3795
3963
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3796
3964
  ...rest,
3797
3965
  children: [
3798
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
3799
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("polyline", { points: "12 6 12 12 16 14" })
3966
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
3967
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("polyline", { points: "12 6 12 12 16 14" })
3800
3968
  ]
3801
3969
  }
3802
3970
  );
3803
3971
  }
3804
3972
 
3805
3973
  // src/components/icons/cloud/index.tsx
3806
- var import_jsx_runtime64 = require("react/jsx-runtime");
3974
+ var import_jsx_runtime65 = require("react/jsx-runtime");
3807
3975
  function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3808
- return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3976
+ return /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
3809
3977
  "svg",
3810
3978
  {
3811
3979
  xmlns: "http://www.w3.org/2000/svg",
@@ -3819,15 +3987,15 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3819
3987
  strokeLinejoin: "round",
3820
3988
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3821
3989
  ...rest,
3822
- children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
3990
+ children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
3823
3991
  }
3824
3992
  );
3825
3993
  }
3826
3994
 
3827
3995
  // src/components/icons/copy/index.tsx
3828
- var import_jsx_runtime65 = require("react/jsx-runtime");
3996
+ var import_jsx_runtime66 = require("react/jsx-runtime");
3829
3997
  function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3830
- return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
3998
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
3831
3999
  "svg",
3832
4000
  {
3833
4001
  xmlns: "http://www.w3.org/2000/svg",
@@ -3842,17 +4010,17 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3842
4010
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3843
4011
  ...rest,
3844
4012
  children: [
3845
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
3846
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
4013
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
4014
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
3847
4015
  ]
3848
4016
  }
3849
4017
  );
3850
4018
  }
3851
4019
 
3852
4020
  // src/components/icons/corner-down-right/index.tsx
3853
- var import_jsx_runtime66 = require("react/jsx-runtime");
4021
+ var import_jsx_runtime67 = require("react/jsx-runtime");
3854
4022
  function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3855
- return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
4023
+ return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
3856
4024
  "svg",
3857
4025
  {
3858
4026
  xmlns: "http://www.w3.org/2000/svg",
@@ -3867,17 +4035,17 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...r
3867
4035
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3868
4036
  ...rest,
3869
4037
  children: [
3870
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("polyline", { points: "15 10 20 15 15 20" }),
3871
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", { d: "M4 4v7a4 4 0 0 0 4 4h12" })
4038
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("polyline", { points: "15 10 20 15 15 20" }),
4039
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("path", { d: "M4 4v7a4 4 0 0 0 4 4h12" })
3872
4040
  ]
3873
4041
  }
3874
4042
  );
3875
4043
  }
3876
4044
 
3877
4045
  // src/components/icons/credit-card/index.tsx
3878
- var import_jsx_runtime67 = require("react/jsx-runtime");
4046
+ var import_jsx_runtime68 = require("react/jsx-runtime");
3879
4047
  function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3880
- return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
4048
+ return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
3881
4049
  "svg",
3882
4050
  {
3883
4051
  xmlns: "http://www.w3.org/2000/svg",
@@ -3892,17 +4060,17 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
3892
4060
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3893
4061
  ...rest,
3894
4062
  children: [
3895
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
3896
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("line", { x1: "2", x2: "22", y1: "10", y2: "10" })
4063
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
4064
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("line", { x1: "2", x2: "22", y1: "10", y2: "10" })
3897
4065
  ]
3898
4066
  }
3899
4067
  );
3900
4068
  }
3901
4069
 
3902
4070
  // src/components/icons/dollar-sign/index.tsx
3903
- var import_jsx_runtime68 = require("react/jsx-runtime");
4071
+ var import_jsx_runtime69 = require("react/jsx-runtime");
3904
4072
  function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3905
- return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
4073
+ return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
3906
4074
  "svg",
3907
4075
  {
3908
4076
  xmlns: "http://www.w3.org/2000/svg",
@@ -3917,17 +4085,17 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
3917
4085
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3918
4086
  ...rest,
3919
4087
  children: [
3920
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
3921
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" })
4088
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
4089
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" })
3922
4090
  ]
3923
4091
  }
3924
4092
  );
3925
4093
  }
3926
4094
 
3927
4095
  // src/components/icons/download/index.tsx
3928
- var import_jsx_runtime69 = require("react/jsx-runtime");
4096
+ var import_jsx_runtime70 = require("react/jsx-runtime");
3929
4097
  function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3930
- return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
4098
+ return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
3931
4099
  "svg",
3932
4100
  {
3933
4101
  xmlns: "http://www.w3.org/2000/svg",
@@ -3942,18 +4110,18 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
3942
4110
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3943
4111
  ...rest,
3944
4112
  children: [
3945
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
3946
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("polyline", { points: "7 10 12 15 17 10" }),
3947
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("line", { x1: "12", x2: "12", y1: "15", y2: "3" })
4113
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
4114
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("polyline", { points: "7 10 12 15 17 10" }),
4115
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("line", { x1: "12", x2: "12", y1: "15", y2: "3" })
3948
4116
  ]
3949
4117
  }
3950
4118
  );
3951
4119
  }
3952
4120
 
3953
4121
  // src/components/icons/external-link/index.tsx
3954
- var import_jsx_runtime70 = require("react/jsx-runtime");
4122
+ var import_jsx_runtime71 = require("react/jsx-runtime");
3955
4123
  function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3956
- return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
4124
+ return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
3957
4125
  "svg",
3958
4126
  {
3959
4127
  xmlns: "http://www.w3.org/2000/svg",
@@ -3968,18 +4136,18 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
3968
4136
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3969
4137
  ...rest,
3970
4138
  children: [
3971
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", { d: "M15 3h6v6" }),
3972
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", { d: "M10 14 21 3" }),
3973
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
4139
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M15 3h6v6" }),
4140
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M10 14 21 3" }),
4141
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
3974
4142
  ]
3975
4143
  }
3976
4144
  );
3977
4145
  }
3978
4146
 
3979
4147
  // src/components/icons/file/index.tsx
3980
- var import_jsx_runtime71 = require("react/jsx-runtime");
4148
+ var import_jsx_runtime72 = require("react/jsx-runtime");
3981
4149
  function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3982
- return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
4150
+ return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
3983
4151
  "svg",
3984
4152
  {
3985
4153
  xmlns: "http://www.w3.org/2000/svg",
@@ -3994,17 +4162,17 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3994
4162
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3995
4163
  ...rest,
3996
4164
  children: [
3997
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
3998
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" })
4165
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
4166
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" })
3999
4167
  ]
4000
4168
  }
4001
4169
  );
4002
4170
  }
4003
4171
 
4004
4172
  // src/components/icons/file-text/index.tsx
4005
- var import_jsx_runtime72 = require("react/jsx-runtime");
4173
+ var import_jsx_runtime73 = require("react/jsx-runtime");
4006
4174
  function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4007
- return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
4175
+ return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
4008
4176
  "svg",
4009
4177
  {
4010
4178
  xmlns: "http://www.w3.org/2000/svg",
@@ -4019,20 +4187,20 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
4019
4187
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4020
4188
  ...rest,
4021
4189
  children: [
4022
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
4023
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
4024
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M16 13H8" }),
4025
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M16 17H8" }),
4026
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M10 9H8" })
4190
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
4191
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
4192
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M16 13H8" }),
4193
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M16 17H8" }),
4194
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M10 9H8" })
4027
4195
  ]
4028
4196
  }
4029
4197
  );
4030
4198
  }
4031
4199
 
4032
4200
  // src/components/icons/filter/index.tsx
4033
- var import_jsx_runtime73 = require("react/jsx-runtime");
4201
+ var import_jsx_runtime74 = require("react/jsx-runtime");
4034
4202
  function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4035
- return /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
4203
+ return /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
4036
4204
  "svg",
4037
4205
  {
4038
4206
  xmlns: "http://www.w3.org/2000/svg",
@@ -4046,15 +4214,15 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4046
4214
  strokeLinejoin: "round",
4047
4215
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4048
4216
  ...rest,
4049
- children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
4217
+ children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
4050
4218
  }
4051
4219
  );
4052
4220
  }
4053
4221
 
4054
4222
  // src/components/icons/fingerprint/index.tsx
4055
- var import_jsx_runtime74 = require("react/jsx-runtime");
4223
+ var import_jsx_runtime75 = require("react/jsx-runtime");
4056
4224
  function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4057
- return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
4225
+ return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
4058
4226
  "svg",
4059
4227
  {
4060
4228
  xmlns: "http://www.w3.org/2000/svg",
@@ -4069,24 +4237,24 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
4069
4237
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4070
4238
  ...rest,
4071
4239
  children: [
4072
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
4073
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M5 19.5C5.5 18 6 15 6 12c0-.7.12-1.37.34-2" }),
4074
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" }),
4075
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" }),
4076
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M8.65 22c.21-.66.45-1.32.57-2" }),
4077
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88" }),
4078
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M2 16h.01" }),
4079
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M21.8 16c.2-2 .131-5.354 0-6" }),
4080
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M9 6.8a6 6 0 0 1 9 5.2c0 .47 0 1.17-.02 2" })
4240
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
4241
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M5 19.5C5.5 18 6 15 6 12c0-.7.12-1.37.34-2" }),
4242
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" }),
4243
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" }),
4244
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M8.65 22c.21-.66.45-1.32.57-2" }),
4245
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88" }),
4246
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M2 16h.01" }),
4247
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M21.8 16c.2-2 .131-5.354 0-6" }),
4248
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M9 6.8a6 6 0 0 1 9 5.2c0 .47 0 1.17-.02 2" })
4081
4249
  ]
4082
4250
  }
4083
4251
  );
4084
4252
  }
4085
4253
 
4086
4254
  // src/components/icons/folder/index.tsx
4087
- var import_jsx_runtime75 = require("react/jsx-runtime");
4255
+ var import_jsx_runtime76 = require("react/jsx-runtime");
4088
4256
  function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4089
- return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
4257
+ return /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
4090
4258
  "svg",
4091
4259
  {
4092
4260
  xmlns: "http://www.w3.org/2000/svg",
@@ -4100,15 +4268,15 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4100
4268
  strokeLinejoin: "round",
4101
4269
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4102
4270
  ...rest,
4103
- children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" })
4271
+ children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("path", { d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" })
4104
4272
  }
4105
4273
  );
4106
4274
  }
4107
4275
 
4108
4276
  // src/components/icons/folder-open/index.tsx
4109
- var import_jsx_runtime76 = require("react/jsx-runtime");
4277
+ var import_jsx_runtime77 = require("react/jsx-runtime");
4110
4278
  function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4111
- return /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
4279
+ return /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
4112
4280
  "svg",
4113
4281
  {
4114
4282
  xmlns: "http://www.w3.org/2000/svg",
@@ -4122,15 +4290,15 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
4122
4290
  strokeLinejoin: "round",
4123
4291
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4124
4292
  ...rest,
4125
- children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("path", { d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" })
4293
+ children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("path", { d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" })
4126
4294
  }
4127
4295
  );
4128
4296
  }
4129
4297
 
4130
4298
  // src/components/icons/gift/index.tsx
4131
- var import_jsx_runtime77 = require("react/jsx-runtime");
4299
+ var import_jsx_runtime78 = require("react/jsx-runtime");
4132
4300
  function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4133
- return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
4301
+ return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
4134
4302
  "svg",
4135
4303
  {
4136
4304
  xmlns: "http://www.w3.org/2000/svg",
@@ -4145,19 +4313,19 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4145
4313
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4146
4314
  ...rest,
4147
4315
  children: [
4148
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
4149
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("path", { d: "M12 8v13" }),
4150
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("path", { d: "M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7" }),
4151
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("path", { d: "M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5" })
4316
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
4317
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M12 8v13" }),
4318
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7" }),
4319
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5" })
4152
4320
  ]
4153
4321
  }
4154
4322
  );
4155
4323
  }
4156
4324
 
4157
4325
  // src/components/icons/github/index.tsx
4158
- var import_jsx_runtime78 = require("react/jsx-runtime");
4326
+ var import_jsx_runtime79 = require("react/jsx-runtime");
4159
4327
  function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4160
- return /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
4328
+ return /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
4161
4329
  "svg",
4162
4330
  {
4163
4331
  xmlns: "http://www.w3.org/2000/svg",
@@ -4171,15 +4339,15 @@ function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4171
4339
  strokeLinejoin: "round",
4172
4340
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4173
4341
  ...rest,
4174
- children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" })
4342
+ children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" })
4175
4343
  }
4176
4344
  );
4177
4345
  }
4178
4346
 
4179
4347
  // src/components/icons/globe/index.tsx
4180
- var import_jsx_runtime79 = require("react/jsx-runtime");
4348
+ var import_jsx_runtime80 = require("react/jsx-runtime");
4181
4349
  function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4182
- return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
4350
+ return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
4183
4351
  "svg",
4184
4352
  {
4185
4353
  xmlns: "http://www.w3.org/2000/svg",
@@ -4194,18 +4362,18 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4194
4362
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4195
4363
  ...rest,
4196
4364
  children: [
4197
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
4198
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
4199
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M2 12h20" })
4365
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
4366
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
4367
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M2 12h20" })
4200
4368
  ]
4201
4369
  }
4202
4370
  );
4203
4371
  }
4204
4372
 
4205
4373
  // src/components/icons/grid/index.tsx
4206
- var import_jsx_runtime80 = require("react/jsx-runtime");
4374
+ var import_jsx_runtime81 = require("react/jsx-runtime");
4207
4375
  function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4208
- return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
4376
+ return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
4209
4377
  "svg",
4210
4378
  {
4211
4379
  xmlns: "http://www.w3.org/2000/svg",
@@ -4220,20 +4388,20 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4220
4388
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4221
4389
  ...rest,
4222
4390
  children: [
4223
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
4224
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M3 9h18" }),
4225
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M3 15h18" }),
4226
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M9 3v18" }),
4227
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M15 3v18" })
4391
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
4392
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M3 9h18" }),
4393
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M3 15h18" }),
4394
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M9 3v18" }),
4395
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M15 3v18" })
4228
4396
  ]
4229
4397
  }
4230
4398
  );
4231
4399
  }
4232
4400
 
4233
4401
  // src/components/icons/heart/index.tsx
4234
- var import_jsx_runtime81 = require("react/jsx-runtime");
4402
+ var import_jsx_runtime82 = require("react/jsx-runtime");
4235
4403
  function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4236
- return /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
4404
+ return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
4237
4405
  "svg",
4238
4406
  {
4239
4407
  xmlns: "http://www.w3.org/2000/svg",
@@ -4247,15 +4415,15 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4247
4415
  strokeLinejoin: "round",
4248
4416
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4249
4417
  ...rest,
4250
- children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
4418
+ children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
4251
4419
  }
4252
4420
  );
4253
4421
  }
4254
4422
 
4255
4423
  // src/components/icons/help-circle/index.tsx
4256
- var import_jsx_runtime82 = require("react/jsx-runtime");
4424
+ var import_jsx_runtime83 = require("react/jsx-runtime");
4257
4425
  function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4258
- return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)(
4426
+ return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(
4259
4427
  "svg",
4260
4428
  {
4261
4429
  xmlns: "http://www.w3.org/2000/svg",
@@ -4270,18 +4438,18 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
4270
4438
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4271
4439
  ...rest,
4272
4440
  children: [
4273
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
4274
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
4275
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("path", { d: "M12 17h.01" })
4441
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
4442
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
4443
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "M12 17h.01" })
4276
4444
  ]
4277
4445
  }
4278
4446
  );
4279
4447
  }
4280
4448
 
4281
4449
  // src/components/icons/home/index.tsx
4282
- var import_jsx_runtime83 = require("react/jsx-runtime");
4450
+ var import_jsx_runtime84 = require("react/jsx-runtime");
4283
4451
  function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4284
- return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(
4452
+ return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
4285
4453
  "svg",
4286
4454
  {
4287
4455
  xmlns: "http://www.w3.org/2000/svg",
@@ -4296,17 +4464,17 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4296
4464
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4297
4465
  ...rest,
4298
4466
  children: [
4299
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
4300
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("polyline", { points: "9 22 9 12 15 12 15 22" })
4467
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
4468
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("polyline", { points: "9 22 9 12 15 12 15 22" })
4301
4469
  ]
4302
4470
  }
4303
4471
  );
4304
4472
  }
4305
4473
 
4306
4474
  // src/components/icons/image/index.tsx
4307
- var import_jsx_runtime84 = require("react/jsx-runtime");
4475
+ var import_jsx_runtime85 = require("react/jsx-runtime");
4308
4476
  function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4309
- return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
4477
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
4310
4478
  "svg",
4311
4479
  {
4312
4480
  xmlns: "http://www.w3.org/2000/svg",
@@ -4321,18 +4489,18 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4321
4489
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4322
4490
  ...rest,
4323
4491
  children: [
4324
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
4325
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
4326
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
4492
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
4493
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
4494
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
4327
4495
  ]
4328
4496
  }
4329
4497
  );
4330
4498
  }
4331
4499
 
4332
4500
  // src/components/icons/inbox/index.tsx
4333
- var import_jsx_runtime85 = require("react/jsx-runtime");
4501
+ var import_jsx_runtime86 = require("react/jsx-runtime");
4334
4502
  function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4335
- return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
4503
+ return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
4336
4504
  "svg",
4337
4505
  {
4338
4506
  xmlns: "http://www.w3.org/2000/svg",
@@ -4347,17 +4515,17 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4347
4515
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4348
4516
  ...rest,
4349
4517
  children: [
4350
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
4351
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
4518
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
4519
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
4352
4520
  ]
4353
4521
  }
4354
4522
  );
4355
4523
  }
4356
4524
 
4357
4525
  // src/components/icons/key/index.tsx
4358
- var import_jsx_runtime86 = require("react/jsx-runtime");
4526
+ var import_jsx_runtime87 = require("react/jsx-runtime");
4359
4527
  function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4360
- return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
4528
+ return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
4361
4529
  "svg",
4362
4530
  {
4363
4531
  xmlns: "http://www.w3.org/2000/svg",
@@ -4372,18 +4540,18 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4372
4540
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4373
4541
  ...rest,
4374
4542
  children: [
4375
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L21 4.5" }),
4376
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("path", { d: "m21 2-9.6 9.6" }),
4377
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
4543
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L21 4.5" }),
4544
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "m21 2-9.6 9.6" }),
4545
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
4378
4546
  ]
4379
4547
  }
4380
4548
  );
4381
4549
  }
4382
4550
 
4383
4551
  // src/components/icons/layout/index.tsx
4384
- var import_jsx_runtime87 = require("react/jsx-runtime");
4552
+ var import_jsx_runtime88 = require("react/jsx-runtime");
4385
4553
  function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4386
- return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
4554
+ return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(
4387
4555
  "svg",
4388
4556
  {
4389
4557
  xmlns: "http://www.w3.org/2000/svg",
@@ -4398,19 +4566,19 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4398
4566
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4399
4567
  ...rest,
4400
4568
  children: [
4401
- /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
4402
- /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
4403
- /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
4404
- /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
4569
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
4570
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
4571
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
4572
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
4405
4573
  ]
4406
4574
  }
4407
4575
  );
4408
4576
  }
4409
4577
 
4410
4578
  // src/components/icons/link/index.tsx
4411
- var import_jsx_runtime88 = require("react/jsx-runtime");
4579
+ var import_jsx_runtime89 = require("react/jsx-runtime");
4412
4580
  function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4413
- return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(
4581
+ return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
4414
4582
  "svg",
4415
4583
  {
4416
4584
  xmlns: "http://www.w3.org/2000/svg",
@@ -4425,17 +4593,17 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4425
4593
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4426
4594
  ...rest,
4427
4595
  children: [
4428
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
4429
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
4596
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
4597
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
4430
4598
  ]
4431
4599
  }
4432
4600
  );
4433
4601
  }
4434
4602
 
4435
4603
  // src/components/icons/list/index.tsx
4436
- var import_jsx_runtime89 = require("react/jsx-runtime");
4604
+ var import_jsx_runtime90 = require("react/jsx-runtime");
4437
4605
  function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4438
- return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
4606
+ return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
4439
4607
  "svg",
4440
4608
  {
4441
4609
  xmlns: "http://www.w3.org/2000/svg",
@@ -4450,21 +4618,21 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4450
4618
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4451
4619
  ...rest,
4452
4620
  children: [
4453
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
4454
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
4455
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
4456
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
4457
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
4458
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
4621
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
4622
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
4623
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
4624
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
4625
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
4626
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
4459
4627
  ]
4460
4628
  }
4461
4629
  );
4462
4630
  }
4463
4631
 
4464
4632
  // src/components/icons/loader/index.tsx
4465
- var import_jsx_runtime90 = require("react/jsx-runtime");
4633
+ var import_jsx_runtime91 = require("react/jsx-runtime");
4466
4634
  function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4467
- return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
4635
+ return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
4468
4636
  "svg",
4469
4637
  {
4470
4638
  xmlns: "http://www.w3.org/2000/svg",
@@ -4479,23 +4647,23 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4479
4647
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4480
4648
  ...rest,
4481
4649
  children: [
4482
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
4483
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
4484
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
4485
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
4486
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
4487
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
4488
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
4489
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
4650
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
4651
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
4652
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
4653
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
4654
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
4655
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
4656
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
4657
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
4490
4658
  ]
4491
4659
  }
4492
4660
  );
4493
4661
  }
4494
4662
 
4495
4663
  // src/components/icons/lock/index.tsx
4496
- var import_jsx_runtime91 = require("react/jsx-runtime");
4664
+ var import_jsx_runtime92 = require("react/jsx-runtime");
4497
4665
  function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4498
- return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
4666
+ return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
4499
4667
  "svg",
4500
4668
  {
4501
4669
  xmlns: "http://www.w3.org/2000/svg",
@@ -4510,17 +4678,17 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4510
4678
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4511
4679
  ...rest,
4512
4680
  children: [
4513
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
4514
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
4681
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
4682
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
4515
4683
  ]
4516
4684
  }
4517
4685
  );
4518
4686
  }
4519
4687
 
4520
4688
  // src/components/icons/log-in/index.tsx
4521
- var import_jsx_runtime92 = require("react/jsx-runtime");
4689
+ var import_jsx_runtime93 = require("react/jsx-runtime");
4522
4690
  function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4523
- return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
4691
+ return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
4524
4692
  "svg",
4525
4693
  {
4526
4694
  xmlns: "http://www.w3.org/2000/svg",
@@ -4535,18 +4703,18 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4535
4703
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4536
4704
  ...rest,
4537
4705
  children: [
4538
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
4539
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("polyline", { points: "10 17 15 12 10 7" }),
4540
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
4706
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
4707
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("polyline", { points: "10 17 15 12 10 7" }),
4708
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
4541
4709
  ]
4542
4710
  }
4543
4711
  );
4544
4712
  }
4545
4713
 
4546
4714
  // src/components/icons/log-out/index.tsx
4547
- var import_jsx_runtime93 = require("react/jsx-runtime");
4715
+ var import_jsx_runtime94 = require("react/jsx-runtime");
4548
4716
  function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4549
- return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
4717
+ return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
4550
4718
  "svg",
4551
4719
  {
4552
4720
  xmlns: "http://www.w3.org/2000/svg",
@@ -4561,18 +4729,18 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4561
4729
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4562
4730
  ...rest,
4563
4731
  children: [
4564
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
4565
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("polyline", { points: "16 17 21 12 16 7" }),
4566
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
4732
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
4733
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("polyline", { points: "16 17 21 12 16 7" }),
4734
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
4567
4735
  ]
4568
4736
  }
4569
4737
  );
4570
4738
  }
4571
4739
 
4572
4740
  // src/components/icons/mail/index.tsx
4573
- var import_jsx_runtime94 = require("react/jsx-runtime");
4741
+ var import_jsx_runtime95 = require("react/jsx-runtime");
4574
4742
  function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4575
- return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
4743
+ return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
4576
4744
  "svg",
4577
4745
  {
4578
4746
  xmlns: "http://www.w3.org/2000/svg",
@@ -4587,17 +4755,17 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4587
4755
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4588
4756
  ...rest,
4589
4757
  children: [
4590
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
4591
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
4758
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
4759
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
4592
4760
  ]
4593
4761
  }
4594
4762
  );
4595
4763
  }
4596
4764
 
4597
4765
  // src/components/icons/map-pin/index.tsx
4598
- var import_jsx_runtime95 = require("react/jsx-runtime");
4766
+ var import_jsx_runtime96 = require("react/jsx-runtime");
4599
4767
  function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4600
- return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
4768
+ return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
4601
4769
  "svg",
4602
4770
  {
4603
4771
  xmlns: "http://www.w3.org/2000/svg",
@@ -4612,17 +4780,17 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4612
4780
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4613
4781
  ...rest,
4614
4782
  children: [
4615
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
4616
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("circle", { cx: "12", cy: "10", r: "3" })
4783
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
4784
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("circle", { cx: "12", cy: "10", r: "3" })
4617
4785
  ]
4618
4786
  }
4619
4787
  );
4620
4788
  }
4621
4789
 
4622
4790
  // src/components/icons/maximize/index.tsx
4623
- var import_jsx_runtime96 = require("react/jsx-runtime");
4791
+ var import_jsx_runtime97 = require("react/jsx-runtime");
4624
4792
  function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4625
- return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
4793
+ return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)(
4626
4794
  "svg",
4627
4795
  {
4628
4796
  xmlns: "http://www.w3.org/2000/svg",
@@ -4637,19 +4805,19 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
4637
4805
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4638
4806
  ...rest,
4639
4807
  children: [
4640
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
4641
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
4642
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
4643
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
4808
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
4809
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
4810
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
4811
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
4644
4812
  ]
4645
4813
  }
4646
4814
  );
4647
4815
  }
4648
4816
 
4649
4817
  // src/components/icons/menu/index.tsx
4650
- var import_jsx_runtime97 = require("react/jsx-runtime");
4818
+ var import_jsx_runtime98 = require("react/jsx-runtime");
4651
4819
  function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4652
- return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)(
4820
+ return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)(
4653
4821
  "svg",
4654
4822
  {
4655
4823
  xmlns: "http://www.w3.org/2000/svg",
@@ -4664,18 +4832,18 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4664
4832
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4665
4833
  ...rest,
4666
4834
  children: [
4667
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
4668
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
4669
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
4835
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
4836
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
4837
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
4670
4838
  ]
4671
4839
  }
4672
4840
  );
4673
4841
  }
4674
4842
 
4675
4843
  // src/components/icons/message-circle/index.tsx
4676
- var import_jsx_runtime98 = require("react/jsx-runtime");
4844
+ var import_jsx_runtime99 = require("react/jsx-runtime");
4677
4845
  function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4678
- return /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
4846
+ return /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
4679
4847
  "svg",
4680
4848
  {
4681
4849
  xmlns: "http://www.w3.org/2000/svg",
@@ -4689,15 +4857,15 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
4689
4857
  strokeLinejoin: "round",
4690
4858
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4691
4859
  ...rest,
4692
- children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
4860
+ children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
4693
4861
  }
4694
4862
  );
4695
4863
  }
4696
4864
 
4697
4865
  // src/components/icons/message-square/index.tsx
4698
- var import_jsx_runtime99 = require("react/jsx-runtime");
4866
+ var import_jsx_runtime100 = require("react/jsx-runtime");
4699
4867
  function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4700
- return /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
4868
+ return /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
4701
4869
  "svg",
4702
4870
  {
4703
4871
  xmlns: "http://www.w3.org/2000/svg",
@@ -4711,15 +4879,15 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
4711
4879
  strokeLinejoin: "round",
4712
4880
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4713
4881
  ...rest,
4714
- children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
4882
+ children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
4715
4883
  }
4716
4884
  );
4717
4885
  }
4718
4886
 
4719
4887
  // src/components/icons/mic/index.tsx
4720
- var import_jsx_runtime100 = require("react/jsx-runtime");
4888
+ var import_jsx_runtime101 = require("react/jsx-runtime");
4721
4889
  function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4722
- return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(
4890
+ return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(
4723
4891
  "svg",
4724
4892
  {
4725
4893
  xmlns: "http://www.w3.org/2000/svg",
@@ -4734,18 +4902,18 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4734
4902
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4735
4903
  ...rest,
4736
4904
  children: [
4737
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
4738
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
4739
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
4905
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
4906
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
4907
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
4740
4908
  ]
4741
4909
  }
4742
4910
  );
4743
4911
  }
4744
4912
 
4745
4913
  // src/components/icons/minimize/index.tsx
4746
- var import_jsx_runtime101 = require("react/jsx-runtime");
4914
+ var import_jsx_runtime102 = require("react/jsx-runtime");
4747
4915
  function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4748
- return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(
4916
+ return /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
4749
4917
  "svg",
4750
4918
  {
4751
4919
  xmlns: "http://www.w3.org/2000/svg",
@@ -4760,19 +4928,19 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
4760
4928
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4761
4929
  ...rest,
4762
4930
  children: [
4763
- /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
4764
- /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
4765
- /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
4766
- /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
4931
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
4932
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
4933
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
4934
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
4767
4935
  ]
4768
4936
  }
4769
4937
  );
4770
4938
  }
4771
4939
 
4772
4940
  // src/components/icons/minus/index.tsx
4773
- var import_jsx_runtime102 = require("react/jsx-runtime");
4941
+ var import_jsx_runtime103 = require("react/jsx-runtime");
4774
4942
  function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4775
- return /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
4943
+ return /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
4776
4944
  "svg",
4777
4945
  {
4778
4946
  xmlns: "http://www.w3.org/2000/svg",
@@ -4786,15 +4954,15 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4786
4954
  strokeLinejoin: "round",
4787
4955
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4788
4956
  ...rest,
4789
- children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M5 12h14" })
4957
+ children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("path", { d: "M5 12h14" })
4790
4958
  }
4791
4959
  );
4792
4960
  }
4793
4961
 
4794
4962
  // src/components/icons/moon/index.tsx
4795
- var import_jsx_runtime103 = require("react/jsx-runtime");
4963
+ var import_jsx_runtime104 = require("react/jsx-runtime");
4796
4964
  function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4797
- return /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
4965
+ return /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
4798
4966
  "svg",
4799
4967
  {
4800
4968
  xmlns: "http://www.w3.org/2000/svg",
@@ -4808,15 +4976,15 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4808
4976
  strokeLinejoin: "round",
4809
4977
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4810
4978
  ...rest,
4811
- children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
4979
+ children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
4812
4980
  }
4813
4981
  );
4814
4982
  }
4815
4983
 
4816
4984
  // src/components/icons/more-horizontal/index.tsx
4817
- var import_jsx_runtime104 = require("react/jsx-runtime");
4985
+ var import_jsx_runtime105 = require("react/jsx-runtime");
4818
4986
  function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4819
- return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
4987
+ return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
4820
4988
  "svg",
4821
4989
  {
4822
4990
  xmlns: "http://www.w3.org/2000/svg",
@@ -4831,18 +4999,18 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...re
4831
4999
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4832
5000
  ...rest,
4833
5001
  children: [
4834
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
4835
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
4836
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "5", cy: "12", r: "1" })
5002
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
5003
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
5004
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "5", cy: "12", r: "1" })
4837
5005
  ]
4838
5006
  }
4839
5007
  );
4840
5008
  }
4841
5009
 
4842
5010
  // src/components/icons/more-vertical/index.tsx
4843
- var import_jsx_runtime105 = require("react/jsx-runtime");
5011
+ var import_jsx_runtime106 = require("react/jsx-runtime");
4844
5012
  function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4845
- return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
5013
+ return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(
4846
5014
  "svg",
4847
5015
  {
4848
5016
  xmlns: "http://www.w3.org/2000/svg",
@@ -4857,18 +5025,18 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
4857
5025
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4858
5026
  ...rest,
4859
5027
  children: [
4860
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
4861
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "5", r: "1" }),
4862
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "19", r: "1" })
5028
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
5029
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("circle", { cx: "12", cy: "5", r: "1" }),
5030
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("circle", { cx: "12", cy: "19", r: "1" })
4863
5031
  ]
4864
5032
  }
4865
5033
  );
4866
5034
  }
4867
5035
 
4868
5036
  // src/components/icons/package/index.tsx
4869
- var import_jsx_runtime106 = require("react/jsx-runtime");
5037
+ var import_jsx_runtime107 = require("react/jsx-runtime");
4870
5038
  function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4871
- return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(
5039
+ return /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(
4872
5040
  "svg",
4873
5041
  {
4874
5042
  xmlns: "http://www.w3.org/2000/svg",
@@ -4883,18 +5051,18 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4883
5051
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4884
5052
  ...rest,
4885
5053
  children: [
4886
- /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("path", { d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" }),
4887
- /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("path", { d: "M3.3 7 12 12l8.7-5" }),
4888
- /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("path", { d: "M12 22V12" })
5054
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("path", { d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" }),
5055
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("path", { d: "M3.3 7 12 12l8.7-5" }),
5056
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("path", { d: "M12 22V12" })
4889
5057
  ]
4890
5058
  }
4891
5059
  );
4892
5060
  }
4893
5061
 
4894
5062
  // src/components/icons/paperclip/index.tsx
4895
- var import_jsx_runtime107 = require("react/jsx-runtime");
5063
+ var import_jsx_runtime108 = require("react/jsx-runtime");
4896
5064
  function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4897
- return /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
5065
+ return /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
4898
5066
  "svg",
4899
5067
  {
4900
5068
  xmlns: "http://www.w3.org/2000/svg",
@@ -4908,15 +5076,15 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
4908
5076
  strokeLinejoin: "round",
4909
5077
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4910
5078
  ...rest,
4911
- children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" })
5079
+ children: /* @__PURE__ */ (0, import_jsx_runtime108.jsx)("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" })
4912
5080
  }
4913
5081
  );
4914
5082
  }
4915
5083
 
4916
5084
  // src/components/icons/pause/index.tsx
4917
- var import_jsx_runtime108 = require("react/jsx-runtime");
5085
+ var import_jsx_runtime109 = require("react/jsx-runtime");
4918
5086
  function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4919
- return /* @__PURE__ */ (0, import_jsx_runtime108.jsxs)(
5087
+ return /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)(
4920
5088
  "svg",
4921
5089
  {
4922
5090
  xmlns: "http://www.w3.org/2000/svg",
@@ -4931,17 +5099,17 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4931
5099
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4932
5100
  ...rest,
4933
5101
  children: [
4934
- /* @__PURE__ */ (0, import_jsx_runtime108.jsx)("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
4935
- /* @__PURE__ */ (0, import_jsx_runtime108.jsx)("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
5102
+ /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
5103
+ /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
4936
5104
  ]
4937
5105
  }
4938
5106
  );
4939
5107
  }
4940
5108
 
4941
5109
  // src/components/icons/pencil/index.tsx
4942
- var import_jsx_runtime109 = require("react/jsx-runtime");
5110
+ var import_jsx_runtime110 = require("react/jsx-runtime");
4943
5111
  function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4944
- return /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)(
5112
+ return /* @__PURE__ */ (0, import_jsx_runtime110.jsxs)(
4945
5113
  "svg",
4946
5114
  {
4947
5115
  xmlns: "http://www.w3.org/2000/svg",
@@ -4956,17 +5124,17 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4956
5124
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4957
5125
  ...rest,
4958
5126
  children: [
4959
- /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
4960
- /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("path", { d: "m15 5 4 4" })
5127
+ /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
5128
+ /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("path", { d: "m15 5 4 4" })
4961
5129
  ]
4962
5130
  }
4963
5131
  );
4964
5132
  }
4965
5133
 
4966
5134
  // src/components/icons/phone/index.tsx
4967
- var import_jsx_runtime110 = require("react/jsx-runtime");
5135
+ var import_jsx_runtime111 = require("react/jsx-runtime");
4968
5136
  function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4969
- return /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
5137
+ return /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
4970
5138
  "svg",
4971
5139
  {
4972
5140
  xmlns: "http://www.w3.org/2000/svg",
@@ -4980,15 +5148,15 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4980
5148
  strokeLinejoin: "round",
4981
5149
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4982
5150
  ...rest,
4983
- children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
5151
+ children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
4984
5152
  }
4985
5153
  );
4986
5154
  }
4987
5155
 
4988
5156
  // src/components/icons/play/index.tsx
4989
- var import_jsx_runtime111 = require("react/jsx-runtime");
5157
+ var import_jsx_runtime112 = require("react/jsx-runtime");
4990
5158
  function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4991
- return /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
5159
+ return /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
4992
5160
  "svg",
4993
5161
  {
4994
5162
  xmlns: "http://www.w3.org/2000/svg",
@@ -5002,15 +5170,15 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5002
5170
  strokeLinejoin: "round",
5003
5171
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5004
5172
  ...rest,
5005
- children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("polygon", { points: "6 3 20 12 6 21 6 3" })
5173
+ children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("polygon", { points: "6 3 20 12 6 21 6 3" })
5006
5174
  }
5007
5175
  );
5008
5176
  }
5009
5177
 
5010
5178
  // src/components/icons/plus/index.tsx
5011
- var import_jsx_runtime112 = require("react/jsx-runtime");
5179
+ var import_jsx_runtime113 = require("react/jsx-runtime");
5012
5180
  function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5013
- return /* @__PURE__ */ (0, import_jsx_runtime112.jsxs)(
5181
+ return /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
5014
5182
  "svg",
5015
5183
  {
5016
5184
  xmlns: "http://www.w3.org/2000/svg",
@@ -5025,17 +5193,17 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5025
5193
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5026
5194
  ...rest,
5027
5195
  children: [
5028
- /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("path", { d: "M5 12h14" }),
5029
- /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("path", { d: "M12 5v14" })
5196
+ /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "M5 12h14" }),
5197
+ /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "M12 5v14" })
5030
5198
  ]
5031
5199
  }
5032
5200
  );
5033
5201
  }
5034
5202
 
5035
5203
  // src/components/icons/printer/index.tsx
5036
- var import_jsx_runtime113 = require("react/jsx-runtime");
5204
+ var import_jsx_runtime114 = require("react/jsx-runtime");
5037
5205
  function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5038
- return /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
5206
+ return /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
5039
5207
  "svg",
5040
5208
  {
5041
5209
  xmlns: "http://www.w3.org/2000/svg",
@@ -5050,18 +5218,18 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5050
5218
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5051
5219
  ...rest,
5052
5220
  children: [
5053
- /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("polyline", { points: "6 9 6 2 18 2 18 9" }),
5054
- /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
5055
- /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("rect", { width: "12", height: "8", x: "6", y: "14" })
5221
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("polyline", { points: "6 9 6 2 18 2 18 9" }),
5222
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
5223
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("rect", { width: "12", height: "8", x: "6", y: "14" })
5056
5224
  ]
5057
5225
  }
5058
5226
  );
5059
5227
  }
5060
5228
 
5061
5229
  // src/components/icons/redo/index.tsx
5062
- var import_jsx_runtime114 = require("react/jsx-runtime");
5230
+ var import_jsx_runtime115 = require("react/jsx-runtime");
5063
5231
  function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5064
- return /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
5232
+ return /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
5065
5233
  "svg",
5066
5234
  {
5067
5235
  xmlns: "http://www.w3.org/2000/svg",
@@ -5076,17 +5244,17 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5076
5244
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5077
5245
  ...rest,
5078
5246
  children: [
5079
- /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M21 7v6h-6" }),
5080
- /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
5247
+ /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M21 7v6h-6" }),
5248
+ /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
5081
5249
  ]
5082
5250
  }
5083
5251
  );
5084
5252
  }
5085
5253
 
5086
5254
  // src/components/icons/refresh-cw/index.tsx
5087
- var import_jsx_runtime115 = require("react/jsx-runtime");
5255
+ var import_jsx_runtime116 = require("react/jsx-runtime");
5088
5256
  function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5089
- return /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
5257
+ return /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
5090
5258
  "svg",
5091
5259
  {
5092
5260
  xmlns: "http://www.w3.org/2000/svg",
@@ -5101,19 +5269,19 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5101
5269
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5102
5270
  ...rest,
5103
5271
  children: [
5104
- /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
5105
- /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M21 3v5h-5" }),
5106
- /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
5107
- /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M3 21v-5h5" })
5272
+ /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
5273
+ /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M21 3v5h-5" }),
5274
+ /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
5275
+ /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M3 21v-5h5" })
5108
5276
  ]
5109
5277
  }
5110
5278
  );
5111
5279
  }
5112
5280
 
5113
5281
  // src/components/icons/save/index.tsx
5114
- var import_jsx_runtime116 = require("react/jsx-runtime");
5282
+ var import_jsx_runtime117 = require("react/jsx-runtime");
5115
5283
  function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5116
- return /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
5284
+ return /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
5117
5285
  "svg",
5118
5286
  {
5119
5287
  xmlns: "http://www.w3.org/2000/svg",
@@ -5128,18 +5296,18 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5128
5296
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5129
5297
  ...rest,
5130
5298
  children: [
5131
- /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
5132
- /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
5133
- /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
5299
+ /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
5300
+ /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
5301
+ /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
5134
5302
  ]
5135
5303
  }
5136
5304
  );
5137
5305
  }
5138
5306
 
5139
5307
  // src/components/icons/search/index.tsx
5140
- var import_jsx_runtime117 = require("react/jsx-runtime");
5308
+ var import_jsx_runtime118 = require("react/jsx-runtime");
5141
5309
  function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5142
- return /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
5310
+ return /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)(
5143
5311
  "svg",
5144
5312
  {
5145
5313
  xmlns: "http://www.w3.org/2000/svg",
@@ -5154,17 +5322,17 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5154
5322
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5155
5323
  ...rest,
5156
5324
  children: [
5157
- /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
5158
- /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("path", { d: "m21 21-4.3-4.3" })
5325
+ /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
5326
+ /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("path", { d: "m21 21-4.3-4.3" })
5159
5327
  ]
5160
5328
  }
5161
5329
  );
5162
5330
  }
5163
5331
 
5164
5332
  // src/components/icons/send/index.tsx
5165
- var import_jsx_runtime118 = require("react/jsx-runtime");
5333
+ var import_jsx_runtime119 = require("react/jsx-runtime");
5166
5334
  function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5167
- return /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)(
5335
+ return /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(
5168
5336
  "svg",
5169
5337
  {
5170
5338
  xmlns: "http://www.w3.org/2000/svg",
@@ -5179,17 +5347,17 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5179
5347
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5180
5348
  ...rest,
5181
5349
  children: [
5182
- /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
5183
- /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
5350
+ /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
5351
+ /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
5184
5352
  ]
5185
5353
  }
5186
5354
  );
5187
5355
  }
5188
5356
 
5189
5357
  // src/components/icons/settings/index.tsx
5190
- var import_jsx_runtime119 = require("react/jsx-runtime");
5358
+ var import_jsx_runtime120 = require("react/jsx-runtime");
5191
5359
  function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5192
- return /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(
5360
+ return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
5193
5361
  "svg",
5194
5362
  {
5195
5363
  xmlns: "http://www.w3.org/2000/svg",
@@ -5204,17 +5372,17 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5204
5372
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5205
5373
  ...rest,
5206
5374
  children: [
5207
- /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
5208
- /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("circle", { cx: "12", cy: "12", r: "3" })
5375
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
5376
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("circle", { cx: "12", cy: "12", r: "3" })
5209
5377
  ]
5210
5378
  }
5211
5379
  );
5212
5380
  }
5213
5381
 
5214
5382
  // src/components/icons/share/index.tsx
5215
- var import_jsx_runtime120 = require("react/jsx-runtime");
5383
+ var import_jsx_runtime121 = require("react/jsx-runtime");
5216
5384
  function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5217
- return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
5385
+ return /* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(
5218
5386
  "svg",
5219
5387
  {
5220
5388
  xmlns: "http://www.w3.org/2000/svg",
@@ -5229,18 +5397,18 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5229
5397
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5230
5398
  ...rest,
5231
5399
  children: [
5232
- /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
5233
- /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("polyline", { points: "16 6 12 2 8 6" }),
5234
- /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
5400
+ /* @__PURE__ */ (0, import_jsx_runtime121.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
5401
+ /* @__PURE__ */ (0, import_jsx_runtime121.jsx)("polyline", { points: "16 6 12 2 8 6" }),
5402
+ /* @__PURE__ */ (0, import_jsx_runtime121.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
5235
5403
  ]
5236
5404
  }
5237
5405
  );
5238
5406
  }
5239
5407
 
5240
5408
  // src/components/icons/shield/index.tsx
5241
- var import_jsx_runtime121 = require("react/jsx-runtime");
5409
+ var import_jsx_runtime122 = require("react/jsx-runtime");
5242
5410
  function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5243
- return /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
5411
+ return /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
5244
5412
  "svg",
5245
5413
  {
5246
5414
  xmlns: "http://www.w3.org/2000/svg",
@@ -5254,15 +5422,15 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5254
5422
  strokeLinejoin: "round",
5255
5423
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5256
5424
  ...rest,
5257
- children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" })
5425
+ children: /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" })
5258
5426
  }
5259
5427
  );
5260
5428
  }
5261
5429
 
5262
5430
  // src/components/icons/shield-check/index.tsx
5263
- var import_jsx_runtime122 = require("react/jsx-runtime");
5431
+ var import_jsx_runtime123 = require("react/jsx-runtime");
5264
5432
  function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5265
- return /* @__PURE__ */ (0, import_jsx_runtime122.jsxs)(
5433
+ return /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(
5266
5434
  "svg",
5267
5435
  {
5268
5436
  xmlns: "http://www.w3.org/2000/svg",
@@ -5277,17 +5445,17 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
5277
5445
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5278
5446
  ...rest,
5279
5447
  children: [
5280
- /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
5281
- /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "m9 12 2 2 4-4" })
5448
+ /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
5449
+ /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "m9 12 2 2 4-4" })
5282
5450
  ]
5283
5451
  }
5284
5452
  );
5285
5453
  }
5286
5454
 
5287
5455
  // src/components/icons/shopping-bag/index.tsx
5288
- var import_jsx_runtime123 = require("react/jsx-runtime");
5456
+ var import_jsx_runtime124 = require("react/jsx-runtime");
5289
5457
  function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5290
- return /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(
5458
+ return /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)(
5291
5459
  "svg",
5292
5460
  {
5293
5461
  xmlns: "http://www.w3.org/2000/svg",
@@ -5302,18 +5470,18 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
5302
5470
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5303
5471
  ...rest,
5304
5472
  children: [
5305
- /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
5306
- /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M3 6h18" }),
5307
- /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M16 10a4 4 0 0 1-8 0" })
5473
+ /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
5474
+ /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { d: "M3 6h18" }),
5475
+ /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { d: "M16 10a4 4 0 0 1-8 0" })
5308
5476
  ]
5309
5477
  }
5310
5478
  );
5311
5479
  }
5312
5480
 
5313
5481
  // src/components/icons/shopping-cart/index.tsx
5314
- var import_jsx_runtime124 = require("react/jsx-runtime");
5482
+ var import_jsx_runtime125 = require("react/jsx-runtime");
5315
5483
  function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5316
- return /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)(
5484
+ return /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)(
5317
5485
  "svg",
5318
5486
  {
5319
5487
  xmlns: "http://www.w3.org/2000/svg",
@@ -5328,18 +5496,18 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
5328
5496
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5329
5497
  ...rest,
5330
5498
  children: [
5331
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("circle", { cx: "8", cy: "21", r: "1" }),
5332
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("circle", { cx: "19", cy: "21", r: "1" }),
5333
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" })
5499
+ /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("circle", { cx: "8", cy: "21", r: "1" }),
5500
+ /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("circle", { cx: "19", cy: "21", r: "1" }),
5501
+ /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("path", { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" })
5334
5502
  ]
5335
5503
  }
5336
5504
  );
5337
5505
  }
5338
5506
 
5339
5507
  // src/components/icons/sidebar/index.tsx
5340
- var import_jsx_runtime125 = require("react/jsx-runtime");
5508
+ var import_jsx_runtime126 = require("react/jsx-runtime");
5341
5509
  function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5342
- return /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)(
5510
+ return /* @__PURE__ */ (0, import_jsx_runtime126.jsxs)(
5343
5511
  "svg",
5344
5512
  {
5345
5513
  xmlns: "http://www.w3.org/2000/svg",
@@ -5354,17 +5522,17 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5354
5522
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5355
5523
  ...rest,
5356
5524
  children: [
5357
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
5358
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("path", { d: "M9 3v18" })
5525
+ /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
5526
+ /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("path", { d: "M9 3v18" })
5359
5527
  ]
5360
5528
  }
5361
5529
  );
5362
5530
  }
5363
5531
 
5364
5532
  // src/components/icons/skip-back/index.tsx
5365
- var import_jsx_runtime126 = require("react/jsx-runtime");
5533
+ var import_jsx_runtime127 = require("react/jsx-runtime");
5366
5534
  function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5367
- return /* @__PURE__ */ (0, import_jsx_runtime126.jsxs)(
5535
+ return /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)(
5368
5536
  "svg",
5369
5537
  {
5370
5538
  xmlns: "http://www.w3.org/2000/svg",
@@ -5379,17 +5547,17 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5379
5547
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5380
5548
  ...rest,
5381
5549
  children: [
5382
- /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("polygon", { points: "19 20 9 12 19 4 19 20" }),
5383
- /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
5550
+ /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("polygon", { points: "19 20 9 12 19 4 19 20" }),
5551
+ /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
5384
5552
  ]
5385
5553
  }
5386
5554
  );
5387
5555
  }
5388
5556
 
5389
5557
  // src/components/icons/skip-forward/index.tsx
5390
- var import_jsx_runtime127 = require("react/jsx-runtime");
5558
+ var import_jsx_runtime128 = require("react/jsx-runtime");
5391
5559
  function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5392
- return /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)(
5560
+ return /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)(
5393
5561
  "svg",
5394
5562
  {
5395
5563
  xmlns: "http://www.w3.org/2000/svg",
@@ -5404,17 +5572,17 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
5404
5572
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5405
5573
  ...rest,
5406
5574
  children: [
5407
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("polygon", { points: "5 4 15 12 5 20 5 4" }),
5408
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
5575
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("polygon", { points: "5 4 15 12 5 20 5 4" }),
5576
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
5409
5577
  ]
5410
5578
  }
5411
5579
  );
5412
5580
  }
5413
5581
 
5414
5582
  // src/components/icons/sliders/index.tsx
5415
- var import_jsx_runtime128 = require("react/jsx-runtime");
5583
+ var import_jsx_runtime129 = require("react/jsx-runtime");
5416
5584
  function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5417
- return /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)(
5585
+ return /* @__PURE__ */ (0, import_jsx_runtime129.jsxs)(
5418
5586
  "svg",
5419
5587
  {
5420
5588
  xmlns: "http://www.w3.org/2000/svg",
@@ -5429,24 +5597,24 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5429
5597
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5430
5598
  ...rest,
5431
5599
  children: [
5432
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
5433
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
5434
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
5435
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
5436
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
5437
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
5438
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
5439
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
5440
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
5600
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
5601
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
5602
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
5603
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
5604
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
5605
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
5606
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
5607
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
5608
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
5441
5609
  ]
5442
5610
  }
5443
5611
  );
5444
5612
  }
5445
5613
 
5446
5614
  // src/components/icons/smile/index.tsx
5447
- var import_jsx_runtime129 = require("react/jsx-runtime");
5615
+ var import_jsx_runtime130 = require("react/jsx-runtime");
5448
5616
  function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5449
- return /* @__PURE__ */ (0, import_jsx_runtime129.jsxs)(
5617
+ return /* @__PURE__ */ (0, import_jsx_runtime130.jsxs)(
5450
5618
  "svg",
5451
5619
  {
5452
5620
  xmlns: "http://www.w3.org/2000/svg",
@@ -5461,19 +5629,19 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5461
5629
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5462
5630
  ...rest,
5463
5631
  children: [
5464
- /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
5465
- /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
5466
- /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
5467
- /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
5632
+ /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
5633
+ /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
5634
+ /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
5635
+ /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
5468
5636
  ]
5469
5637
  }
5470
5638
  );
5471
5639
  }
5472
5640
 
5473
5641
  // src/components/icons/star/index.tsx
5474
- var import_jsx_runtime130 = require("react/jsx-runtime");
5642
+ var import_jsx_runtime131 = require("react/jsx-runtime");
5475
5643
  function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5476
- return /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
5644
+ return /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
5477
5645
  "svg",
5478
5646
  {
5479
5647
  xmlns: "http://www.w3.org/2000/svg",
@@ -5487,15 +5655,15 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5487
5655
  strokeLinejoin: "round",
5488
5656
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5489
5657
  ...rest,
5490
- children: /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
5658
+ children: /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
5491
5659
  }
5492
5660
  );
5493
5661
  }
5494
5662
 
5495
5663
  // src/components/icons/sun/index.tsx
5496
- var import_jsx_runtime131 = require("react/jsx-runtime");
5664
+ var import_jsx_runtime132 = require("react/jsx-runtime");
5497
5665
  function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5498
- return /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)(
5666
+ return /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(
5499
5667
  "svg",
5500
5668
  {
5501
5669
  xmlns: "http://www.w3.org/2000/svg",
@@ -5510,24 +5678,24 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5510
5678
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5511
5679
  ...rest,
5512
5680
  children: [
5513
- /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
5514
- /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M12 2v2" }),
5515
- /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M12 20v2" }),
5516
- /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m4.93 4.93 1.41 1.41" }),
5517
- /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m17.66 17.66 1.41 1.41" }),
5518
- /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M2 12h2" }),
5519
- /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M20 12h2" }),
5520
- /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m6.34 17.66-1.41 1.41" }),
5521
- /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m19.07 4.93-1.41 1.41" })
5681
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
5682
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M12 2v2" }),
5683
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M12 20v2" }),
5684
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "m4.93 4.93 1.41 1.41" }),
5685
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "m17.66 17.66 1.41 1.41" }),
5686
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M2 12h2" }),
5687
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M20 12h2" }),
5688
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "m6.34 17.66-1.41 1.41" }),
5689
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "m19.07 4.93-1.41 1.41" })
5522
5690
  ]
5523
5691
  }
5524
5692
  );
5525
5693
  }
5526
5694
 
5527
5695
  // src/components/icons/tag/index.tsx
5528
- var import_jsx_runtime132 = require("react/jsx-runtime");
5696
+ var import_jsx_runtime133 = require("react/jsx-runtime");
5529
5697
  function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5530
- return /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(
5698
+ return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)(
5531
5699
  "svg",
5532
5700
  {
5533
5701
  xmlns: "http://www.w3.org/2000/svg",
@@ -5542,17 +5710,17 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5542
5710
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5543
5711
  ...rest,
5544
5712
  children: [
5545
- /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
5546
- /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
5713
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
5714
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
5547
5715
  ]
5548
5716
  }
5549
5717
  );
5550
5718
  }
5551
5719
 
5552
5720
  // src/components/icons/thumbs-down/index.tsx
5553
- var import_jsx_runtime133 = require("react/jsx-runtime");
5721
+ var import_jsx_runtime134 = require("react/jsx-runtime");
5554
5722
  function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5555
- return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)(
5723
+ return /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)(
5556
5724
  "svg",
5557
5725
  {
5558
5726
  xmlns: "http://www.w3.org/2000/svg",
@@ -5567,17 +5735,17 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
5567
5735
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5568
5736
  ...rest,
5569
5737
  children: [
5570
- /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M17 14V2" }),
5571
- /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
5738
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M17 14V2" }),
5739
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
5572
5740
  ]
5573
5741
  }
5574
5742
  );
5575
5743
  }
5576
5744
 
5577
5745
  // src/components/icons/thumbs-up/index.tsx
5578
- var import_jsx_runtime134 = require("react/jsx-runtime");
5746
+ var import_jsx_runtime135 = require("react/jsx-runtime");
5579
5747
  function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5580
- return /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)(
5748
+ return /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
5581
5749
  "svg",
5582
5750
  {
5583
5751
  xmlns: "http://www.w3.org/2000/svg",
@@ -5592,17 +5760,17 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5592
5760
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5593
5761
  ...rest,
5594
5762
  children: [
5595
- /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M7 10v12" }),
5596
- /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
5763
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M7 10v12" }),
5764
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
5597
5765
  ]
5598
5766
  }
5599
5767
  );
5600
5768
  }
5601
5769
 
5602
5770
  // src/components/icons/trash/index.tsx
5603
- var import_jsx_runtime135 = require("react/jsx-runtime");
5771
+ var import_jsx_runtime136 = require("react/jsx-runtime");
5604
5772
  function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5605
- return /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
5773
+ return /* @__PURE__ */ (0, import_jsx_runtime136.jsxs)(
5606
5774
  "svg",
5607
5775
  {
5608
5776
  xmlns: "http://www.w3.org/2000/svg",
@@ -5617,18 +5785,18 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5617
5785
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5618
5786
  ...rest,
5619
5787
  children: [
5620
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M3 6h18" }),
5621
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
5622
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
5788
+ /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M3 6h18" }),
5789
+ /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
5790
+ /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
5623
5791
  ]
5624
5792
  }
5625
5793
  );
5626
5794
  }
5627
5795
 
5628
5796
  // src/components/icons/undo/index.tsx
5629
- var import_jsx_runtime136 = require("react/jsx-runtime");
5797
+ var import_jsx_runtime137 = require("react/jsx-runtime");
5630
5798
  function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5631
- return /* @__PURE__ */ (0, import_jsx_runtime136.jsxs)(
5799
+ return /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(
5632
5800
  "svg",
5633
5801
  {
5634
5802
  xmlns: "http://www.w3.org/2000/svg",
@@ -5643,17 +5811,17 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5643
5811
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5644
5812
  ...rest,
5645
5813
  children: [
5646
- /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M3 7v6h6" }),
5647
- /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
5814
+ /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M3 7v6h6" }),
5815
+ /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
5648
5816
  ]
5649
5817
  }
5650
5818
  );
5651
5819
  }
5652
5820
 
5653
5821
  // src/components/icons/unlock/index.tsx
5654
- var import_jsx_runtime137 = require("react/jsx-runtime");
5822
+ var import_jsx_runtime138 = require("react/jsx-runtime");
5655
5823
  function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5656
- return /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(
5824
+ return /* @__PURE__ */ (0, import_jsx_runtime138.jsxs)(
5657
5825
  "svg",
5658
5826
  {
5659
5827
  xmlns: "http://www.w3.org/2000/svg",
@@ -5668,17 +5836,17 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5668
5836
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5669
5837
  ...rest,
5670
5838
  children: [
5671
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
5672
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
5839
+ /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
5840
+ /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
5673
5841
  ]
5674
5842
  }
5675
5843
  );
5676
5844
  }
5677
5845
 
5678
5846
  // src/components/icons/upload/index.tsx
5679
- var import_jsx_runtime138 = require("react/jsx-runtime");
5847
+ var import_jsx_runtime139 = require("react/jsx-runtime");
5680
5848
  function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5681
- return /* @__PURE__ */ (0, import_jsx_runtime138.jsxs)(
5849
+ return /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)(
5682
5850
  "svg",
5683
5851
  {
5684
5852
  xmlns: "http://www.w3.org/2000/svg",
@@ -5693,18 +5861,18 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5693
5861
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5694
5862
  ...rest,
5695
5863
  children: [
5696
- /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
5697
- /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("polyline", { points: "17 8 12 3 7 8" }),
5698
- /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
5864
+ /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
5865
+ /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("polyline", { points: "17 8 12 3 7 8" }),
5866
+ /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
5699
5867
  ]
5700
5868
  }
5701
5869
  );
5702
5870
  }
5703
5871
 
5704
5872
  // src/components/icons/user/index.tsx
5705
- var import_jsx_runtime139 = require("react/jsx-runtime");
5873
+ var import_jsx_runtime140 = require("react/jsx-runtime");
5706
5874
  function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5707
- return /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)(
5875
+ return /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(
5708
5876
  "svg",
5709
5877
  {
5710
5878
  xmlns: "http://www.w3.org/2000/svg",
@@ -5719,17 +5887,17 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5719
5887
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5720
5888
  ...rest,
5721
5889
  children: [
5722
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
5723
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("circle", { cx: "12", cy: "7", r: "4" })
5890
+ /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
5891
+ /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("circle", { cx: "12", cy: "7", r: "4" })
5724
5892
  ]
5725
5893
  }
5726
5894
  );
5727
5895
  }
5728
5896
 
5729
5897
  // src/components/icons/user-check/index.tsx
5730
- var import_jsx_runtime140 = require("react/jsx-runtime");
5898
+ var import_jsx_runtime141 = require("react/jsx-runtime");
5731
5899
  function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5732
- return /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(
5900
+ return /* @__PURE__ */ (0, import_jsx_runtime141.jsxs)(
5733
5901
  "svg",
5734
5902
  {
5735
5903
  xmlns: "http://www.w3.org/2000/svg",
@@ -5744,18 +5912,18 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5744
5912
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5745
5913
  ...rest,
5746
5914
  children: [
5747
- /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5748
- /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5749
- /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("polyline", { points: "16 11 18 13 22 9" })
5915
+ /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5916
+ /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5917
+ /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("polyline", { points: "16 11 18 13 22 9" })
5750
5918
  ]
5751
5919
  }
5752
5920
  );
5753
5921
  }
5754
5922
 
5755
5923
  // src/components/icons/user-plus/index.tsx
5756
- var import_jsx_runtime141 = require("react/jsx-runtime");
5924
+ var import_jsx_runtime142 = require("react/jsx-runtime");
5757
5925
  function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5758
- return /* @__PURE__ */ (0, import_jsx_runtime141.jsxs)(
5926
+ return /* @__PURE__ */ (0, import_jsx_runtime142.jsxs)(
5759
5927
  "svg",
5760
5928
  {
5761
5929
  xmlns: "http://www.w3.org/2000/svg",
@@ -5770,19 +5938,19 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
5770
5938
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5771
5939
  ...rest,
5772
5940
  children: [
5773
- /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5774
- /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5775
- /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
5776
- /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
5941
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5942
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5943
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
5944
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
5777
5945
  ]
5778
5946
  }
5779
5947
  );
5780
5948
  }
5781
5949
 
5782
5950
  // src/components/icons/users/index.tsx
5783
- var import_jsx_runtime142 = require("react/jsx-runtime");
5951
+ var import_jsx_runtime143 = require("react/jsx-runtime");
5784
5952
  function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5785
- return /* @__PURE__ */ (0, import_jsx_runtime142.jsxs)(
5953
+ return /* @__PURE__ */ (0, import_jsx_runtime143.jsxs)(
5786
5954
  "svg",
5787
5955
  {
5788
5956
  xmlns: "http://www.w3.org/2000/svg",
@@ -5797,19 +5965,19 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5797
5965
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5798
5966
  ...rest,
5799
5967
  children: [
5800
- /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5801
- /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5802
- /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
5803
- /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
5968
+ /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5969
+ /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5970
+ /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
5971
+ /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
5804
5972
  ]
5805
5973
  }
5806
5974
  );
5807
5975
  }
5808
5976
 
5809
5977
  // src/components/icons/volume-2/index.tsx
5810
- var import_jsx_runtime143 = require("react/jsx-runtime");
5978
+ var import_jsx_runtime144 = require("react/jsx-runtime");
5811
5979
  function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5812
- return /* @__PURE__ */ (0, import_jsx_runtime143.jsxs)(
5980
+ return /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)(
5813
5981
  "svg",
5814
5982
  {
5815
5983
  xmlns: "http://www.w3.org/2000/svg",
@@ -5824,18 +5992,18 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5824
5992
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5825
5993
  ...rest,
5826
5994
  children: [
5827
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5828
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
5829
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
5995
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5996
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
5997
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
5830
5998
  ]
5831
5999
  }
5832
6000
  );
5833
6001
  }
5834
6002
 
5835
6003
  // src/components/icons/volume-x/index.tsx
5836
- var import_jsx_runtime144 = require("react/jsx-runtime");
6004
+ var import_jsx_runtime145 = require("react/jsx-runtime");
5837
6005
  function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5838
- return /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)(
6006
+ return /* @__PURE__ */ (0, import_jsx_runtime145.jsxs)(
5839
6007
  "svg",
5840
6008
  {
5841
6009
  xmlns: "http://www.w3.org/2000/svg",
@@ -5850,18 +6018,18 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5850
6018
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5851
6019
  ...rest,
5852
6020
  children: [
5853
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5854
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
5855
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
6021
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
6022
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
6023
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
5856
6024
  ]
5857
6025
  }
5858
6026
  );
5859
6027
  }
5860
6028
 
5861
6029
  // src/components/icons/wifi/index.tsx
5862
- var import_jsx_runtime145 = require("react/jsx-runtime");
6030
+ var import_jsx_runtime146 = require("react/jsx-runtime");
5863
6031
  function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5864
- return /* @__PURE__ */ (0, import_jsx_runtime145.jsxs)(
6032
+ return /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(
5865
6033
  "svg",
5866
6034
  {
5867
6035
  xmlns: "http://www.w3.org/2000/svg",
@@ -5876,19 +6044,19 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5876
6044
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5877
6045
  ...rest,
5878
6046
  children: [
5879
- /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M12 20h.01" }),
5880
- /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
5881
- /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
5882
- /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
6047
+ /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M12 20h.01" }),
6048
+ /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
6049
+ /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
6050
+ /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
5883
6051
  ]
5884
6052
  }
5885
6053
  );
5886
6054
  }
5887
6055
 
5888
6056
  // src/components/icons/zap/index.tsx
5889
- var import_jsx_runtime146 = require("react/jsx-runtime");
6057
+ var import_jsx_runtime147 = require("react/jsx-runtime");
5890
6058
  function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5891
- return /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
6059
+ return /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
5892
6060
  "svg",
5893
6061
  {
5894
6062
  xmlns: "http://www.w3.org/2000/svg",
@@ -5902,7 +6070,7 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5902
6070
  strokeLinejoin: "round",
5903
6071
  ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5904
6072
  ...rest,
5905
- children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
6073
+ children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
5906
6074
  }
5907
6075
  );
5908
6076
  }
@@ -6120,6 +6288,7 @@ var iconCatalog = [
6120
6288
  PrinterIcon,
6121
6289
  Progress,
6122
6290
  Radio,
6291
+ RadioGroup,
6123
6292
  RedoIcon,
6124
6293
  RefreshCwIcon,
6125
6294
  SaveIcon,