@octavius2929-personal/design-system 1.1.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -664,10 +664,15 @@ function states(map) {
664
664
  import { useMemo as useMemo7 } from "react";
665
665
 
666
666
  // src/components/button/use-styles.css.ts
667
- var full = "use-styles_full__1pbtill4";
667
+ var content = "use-styles_content__1pbtillg";
668
+ var contentHidden = "use-styles_contentHidden__1pbtillh";
669
+ var full = "use-styles_full__1pbtill5";
670
+ var loadingRoot = "use-styles_loadingRoot__1pbtill1";
668
671
  var root = "use-styles_root__1pbtill0";
669
- var size = { sm: "use-styles_size_sm__1pbtill1", md: "use-styles_size_md__1pbtill2", lg: "use-styles_size_lg__1pbtill3" };
670
- var tone = { filledInk: "use-styles_tone_filledInk__1pbtill5", filledAccent: "use-styles_tone_filledAccent__1pbtill6", outlineInk: "use-styles_tone_outlineInk__1pbtill7", outlineAccent: "use-styles_tone_outlineAccent__1pbtill8", ghostInk: "use-styles_tone_ghostInk__1pbtill9", ghostAccent: "use-styles_tone_ghostAccent__1pbtilla", filledDanger: "use-styles_tone_filledDanger__1pbtillb", outlineDanger: "use-styles_tone_outlineDanger__1pbtillc", ghostDanger: "use-styles_tone_ghostDanger__1pbtilld" };
672
+ var selected = "use-styles_selected__1pbtillf";
673
+ var size = { sm: "use-styles_size_sm__1pbtill2", md: "use-styles_size_md__1pbtill3", lg: "use-styles_size_lg__1pbtill4" };
674
+ var spinner = "use-styles_spinner__1pbtillj";
675
+ var tone = { filledInk: "use-styles_tone_filledInk__1pbtill6", filledAccent: "use-styles_tone_filledAccent__1pbtill7", outlineInk: "use-styles_tone_outlineInk__1pbtill8", outlineAccent: "use-styles_tone_outlineAccent__1pbtill9", ghostInk: "use-styles_tone_ghostInk__1pbtilla", ghostAccent: "use-styles_tone_ghostAccent__1pbtillb", filledDanger: "use-styles_tone_filledDanger__1pbtillc", outlineDanger: "use-styles_tone_outlineDanger__1pbtilld", ghostDanger: "use-styles_tone_ghostDanger__1pbtille" };
671
676
 
672
677
  // src/components/button/use-styles.ts
673
678
  function toneKey(variant2, tone4) {
@@ -679,7 +684,9 @@ function useStyles4({
679
684
  tone: tone4 = "ink",
680
685
  size: size3 = "md",
681
686
  full: full2,
682
- className
687
+ className,
688
+ selected: selected4,
689
+ loading
683
690
  }) {
684
691
  const { themeClass } = useTheme();
685
692
  const container = useMemo7(
@@ -687,13 +694,19 @@ function useStyles4({
687
694
  themeClass,
688
695
  root,
689
696
  size[size3],
690
- tone[toneKey(variant2, tone4)],
697
+ // `selected` pisa el tono en vez de combinarse con él (ver comentario en use-styles.css.ts).
698
+ selected4 ? selected : tone[toneKey(variant2, tone4)],
691
699
  full2 && full,
700
+ loading && loadingRoot,
692
701
  className
693
702
  ].filter(Boolean).join(" "),
694
- [themeClass, variant2, tone4, size3, full2, className]
703
+ [themeClass, variant2, tone4, size3, full2, loading, selected4, className]
695
704
  );
696
- return { container };
705
+ return {
706
+ container,
707
+ content: loading ? contentHidden : content,
708
+ spinner
709
+ };
697
710
  }
698
711
 
699
712
  // src/components/button/index.tsx
@@ -709,12 +722,27 @@ var Button = forwardRef4(function Button2({
709
722
  className,
710
723
  type = "button",
711
724
  testId,
725
+ loading,
726
+ selected: selected4,
712
727
  children,
728
+ onClick,
713
729
  ...rest
714
730
  }, ref) {
715
- const { container } = useStyles4({ variant: variant2, tone: tone4, size: size3, full: full2, className });
716
- const { testId: dataTestId } = useTestId("button", testId);
731
+ const { container, content: content4, spinner: spinner3 } = useStyles4({
732
+ variant: variant2,
733
+ tone: tone4,
734
+ size: size3,
735
+ full: full2,
736
+ className,
737
+ selected: selected4,
738
+ loading
739
+ });
740
+ const { testId: dataTestId, slot } = useTestId("button", testId);
717
741
  const iconSize = ICON_SIZE[size3];
742
+ const handleClick = (event) => {
743
+ if (loading) return;
744
+ onClick?.(event);
745
+ };
718
746
  return /* @__PURE__ */ jsxs(
719
747
  "button",
720
748
  {
@@ -722,12 +750,19 @@ var Button = forwardRef4(function Button2({
722
750
  type,
723
751
  className: container,
724
752
  "data-testid": dataTestId,
725
- "data-state": states({ disabled: rest.disabled }),
753
+ "data-state": states({ disabled: rest.disabled, loading, selected: selected4 }),
754
+ "aria-busy": loading || void 0,
755
+ "aria-disabled": loading || void 0,
756
+ "aria-pressed": selected4 === void 0 ? void 0 : selected4,
757
+ onClick: handleClick,
726
758
  ...rest,
727
759
  children: [
728
- StartIcon && /* @__PURE__ */ jsx6(StartIcon, { size: iconSize }),
729
- children,
730
- EndIcon && /* @__PURE__ */ jsx6(EndIcon, { size: iconSize })
760
+ /* @__PURE__ */ jsxs("span", { className: content4, children: [
761
+ StartIcon && /* @__PURE__ */ jsx6(StartIcon, { size: iconSize }),
762
+ children,
763
+ EndIcon && /* @__PURE__ */ jsx6(EndIcon, { size: iconSize })
764
+ ] }),
765
+ loading && /* @__PURE__ */ jsx6("span", { className: spinner3, "aria-hidden": "true", "data-testid": slot("spinner") })
731
766
  ]
732
767
  }
733
768
  );
@@ -861,7 +896,7 @@ import { useMemo as useMemo11 } from "react";
861
896
  // src/components/progress/use-styles.css.ts
862
897
  var bar = "use-styles_bar__kbop7v3";
863
898
  var indeterminate = "use-styles_indeterminate__kbop7v4";
864
- var spinner = "use-styles_spinner__kbop7v5";
899
+ var spinner2 = "use-styles_spinner__kbop7v5";
865
900
  var track = "use-styles_track__kbop7v2";
866
901
 
867
902
  // src/components/progress/use-styles.ts
@@ -875,7 +910,7 @@ function useStyles8({
875
910
  return useMemo11(() => {
876
911
  const root24 = (...classes) => [themeClass, ...classes, className].filter(Boolean).join(" ");
877
912
  if (variant2 === "circular") {
878
- return { track: "", bar: "", spinner: root24(spinner) };
913
+ return { track: "", bar: "", spinner: root24(spinner2) };
879
914
  }
880
915
  return {
881
916
  track: root24(track),
@@ -888,7 +923,7 @@ function useStyles8({
888
923
  // src/components/progress/index.tsx
889
924
  import { jsx as jsx10 } from "react/jsx-runtime";
890
925
  var Progress = forwardRef8(function Progress2({ variant: variant2 = "linear", value, size: size3 = 20, className, testId, ...rest }, ref) {
891
- const { track: track4, bar: bar2, spinner: spinner2 } = useStyles8({ variant: variant2, value, className });
926
+ const { track: track4, bar: bar2, spinner: spinner3 } = useStyles8({ variant: variant2, value, className });
892
927
  const indeterminate2 = value === void 0;
893
928
  const { testId: dataTestId, slot } = useTestId("media", testId);
894
929
  if (variant2 === "circular") {
@@ -896,7 +931,7 @@ var Progress = forwardRef8(function Progress2({ variant: variant2 = "linear", va
896
931
  "span",
897
932
  {
898
933
  ref,
899
- className: spinner2,
934
+ className: spinner3,
900
935
  role: "progressbar",
901
936
  "aria-valuenow": indeterminate2 ? void 0 : value,
902
937
  "aria-valuemin": indeterminate2 ? void 0 : 0,
@@ -937,7 +972,7 @@ import { forwardRef as forwardRef9 } from "react";
937
972
 
938
973
  // src/components/icons/x/index.tsx
939
974
  import { jsx as jsx11, jsxs as jsxs4 } from "react/jsx-runtime";
940
- function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
975
+ function XIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
941
976
  return /* @__PURE__ */ jsxs4(
942
977
  "svg",
943
978
  {
@@ -950,7 +985,7 @@ function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
950
985
  strokeWidth,
951
986
  strokeLinecap: "round",
952
987
  strokeLinejoin: "round",
953
- "aria-hidden": "true",
988
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
954
989
  ...rest,
955
990
  children: [
956
991
  /* @__PURE__ */ jsx11("path", { d: "M18 6 6 18" }),
@@ -967,12 +1002,12 @@ import { useMemo as useMemo12 } from "react";
967
1002
  var clickable = "use-styles_clickable__1axilf44";
968
1003
  var deleteBtn = "use-styles_deleteBtn__1axilf45";
969
1004
  var root5 = "use-styles_root__1axilf40";
970
- var selected = "use-styles_selected__1axilf43";
1005
+ var selected2 = "use-styles_selected__1axilf43";
971
1006
  var tone3 = { ink: "use-styles_tone_ink__1axilf41", accent: "use-styles_tone_accent__1axilf42" };
972
1007
 
973
1008
  // src/components/chip/use-styles.ts
974
1009
  function useStyles9({
975
- selected: selected3,
1010
+ selected: selected4,
976
1011
  tone: tone4 = "ink",
977
1012
  clickable: clickable2
978
1013
  }) {
@@ -981,10 +1016,10 @@ function useStyles9({
981
1016
  () => [
982
1017
  themeClass,
983
1018
  root5,
984
- selected3 ? selected : tone3[tone4],
1019
+ selected4 ? selected2 : tone3[tone4],
985
1020
  clickable2 && clickable
986
1021
  ].filter(Boolean).join(" "),
987
- [themeClass, selected3, tone4, clickable2]
1022
+ [themeClass, selected4, tone4, clickable2]
988
1023
  );
989
1024
  return { root: root24, deleteBtn };
990
1025
  }
@@ -992,9 +1027,9 @@ function useStyles9({
992
1027
  // src/components/chip/index.tsx
993
1028
  import { jsx as jsx12, jsxs as jsxs5 } from "react/jsx-runtime";
994
1029
  var ICON_SIZE2 = 13;
995
- var Chip = forwardRef9(function Chip2({ selected: selected3, tone: tone4, onDelete, onClick, startIcon: StartIcon, children, testId, ...rest }, ref) {
1030
+ var Chip = forwardRef9(function Chip2({ selected: selected4, tone: tone4, onDelete, onClick, startIcon: StartIcon, children, testId, ...rest }, ref) {
996
1031
  const clickable2 = Boolean(onClick);
997
- const { root: root24, deleteBtn: deleteBtn2 } = useStyles9({ selected: selected3, tone: tone4, clickable: clickable2 });
1032
+ const { root: root24, deleteBtn: deleteBtn2 } = useStyles9({ selected: selected4, tone: tone4, clickable: clickable2 });
998
1033
  const { testId: dataTestId, slot } = useTestId("media", testId);
999
1034
  const handleDelete = (event) => {
1000
1035
  event.stopPropagation();
@@ -1007,7 +1042,7 @@ var Chip = forwardRef9(function Chip2({ selected: selected3, tone: tone4, onDele
1007
1042
  className: root24,
1008
1043
  onClick,
1009
1044
  "data-testid": dataTestId,
1010
- "data-state": states({ selected: selected3 }),
1045
+ "data-state": states({ selected: selected4 }),
1011
1046
  ...rest,
1012
1047
  children: [
1013
1048
  StartIcon ? /* @__PURE__ */ jsx12(StartIcon, { size: ICON_SIZE2 }) : null,
@@ -1033,7 +1068,7 @@ import { forwardRef as forwardRef10 } from "react";
1033
1068
 
1034
1069
  // src/components/icons/check/index.tsx
1035
1070
  import { jsx as jsx13 } from "react/jsx-runtime";
1036
- function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1071
+ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1037
1072
  return /* @__PURE__ */ jsx13(
1038
1073
  "svg",
1039
1074
  {
@@ -1046,7 +1081,7 @@ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1046
1081
  strokeWidth,
1047
1082
  strokeLinecap: "round",
1048
1083
  strokeLinejoin: "round",
1049
- "aria-hidden": "true",
1084
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1050
1085
  ...rest,
1051
1086
  children: /* @__PURE__ */ jsx13("path", { d: "M20 6 9 17l-5-5" })
1052
1087
  }
@@ -1377,7 +1412,7 @@ import { forwardRef as forwardRef15, useState as useState3 } from "react";
1377
1412
 
1378
1413
  // src/components/icons/eye/index.tsx
1379
1414
  import { jsx as jsx19, jsxs as jsxs10 } from "react/jsx-runtime";
1380
- function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1415
+ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1381
1416
  return /* @__PURE__ */ jsxs10(
1382
1417
  "svg",
1383
1418
  {
@@ -1390,7 +1425,7 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1390
1425
  strokeWidth,
1391
1426
  strokeLinecap: "round",
1392
1427
  strokeLinejoin: "round",
1393
- "aria-hidden": "true",
1428
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1394
1429
  ...rest,
1395
1430
  children: [
1396
1431
  /* @__PURE__ */ jsx19("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }),
@@ -1402,7 +1437,7 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1402
1437
 
1403
1438
  // src/components/icons/eye-off/index.tsx
1404
1439
  import { jsx as jsx20, jsxs as jsxs11 } from "react/jsx-runtime";
1405
- function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1440
+ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1406
1441
  return /* @__PURE__ */ jsxs11(
1407
1442
  "svg",
1408
1443
  {
@@ -1415,7 +1450,7 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1415
1450
  strokeWidth,
1416
1451
  strokeLinecap: "round",
1417
1452
  strokeLinejoin: "round",
1418
- "aria-hidden": "true",
1453
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1419
1454
  ...rest,
1420
1455
  children: [
1421
1456
  /* @__PURE__ */ jsx20("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
@@ -1660,7 +1695,7 @@ import { forwardRef as forwardRef19 } from "react";
1660
1695
 
1661
1696
  // src/components/icons/circle-check/index.tsx
1662
1697
  import { jsx as jsx25, jsxs as jsxs12 } from "react/jsx-runtime";
1663
- function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1698
+ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1664
1699
  return /* @__PURE__ */ jsxs12(
1665
1700
  "svg",
1666
1701
  {
@@ -1673,7 +1708,7 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1673
1708
  strokeWidth,
1674
1709
  strokeLinecap: "round",
1675
1710
  strokeLinejoin: "round",
1676
- "aria-hidden": "true",
1711
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1677
1712
  ...rest,
1678
1713
  children: [
1679
1714
  /* @__PURE__ */ jsx25("circle", { cx: "12", cy: "12", r: "10" }),
@@ -1685,7 +1720,7 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1685
1720
 
1686
1721
  // src/components/icons/circle-x/index.tsx
1687
1722
  import { jsx as jsx26, jsxs as jsxs13 } from "react/jsx-runtime";
1688
- function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1723
+ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1689
1724
  return /* @__PURE__ */ jsxs13(
1690
1725
  "svg",
1691
1726
  {
@@ -1698,7 +1733,7 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1698
1733
  strokeWidth,
1699
1734
  strokeLinecap: "round",
1700
1735
  strokeLinejoin: "round",
1701
- "aria-hidden": "true",
1736
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1702
1737
  ...rest,
1703
1738
  children: [
1704
1739
  /* @__PURE__ */ jsx26("circle", { cx: "12", cy: "12", r: "10" }),
@@ -1711,7 +1746,7 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1711
1746
 
1712
1747
  // src/components/icons/info/index.tsx
1713
1748
  import { jsx as jsx27, jsxs as jsxs14 } from "react/jsx-runtime";
1714
- function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1749
+ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1715
1750
  return /* @__PURE__ */ jsxs14(
1716
1751
  "svg",
1717
1752
  {
@@ -1724,7 +1759,7 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1724
1759
  strokeWidth,
1725
1760
  strokeLinecap: "round",
1726
1761
  strokeLinejoin: "round",
1727
- "aria-hidden": "true",
1762
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1728
1763
  ...rest,
1729
1764
  children: [
1730
1765
  /* @__PURE__ */ jsx27("circle", { cx: "12", cy: "12", r: "10" }),
@@ -1737,7 +1772,7 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1737
1772
 
1738
1773
  // src/components/icons/triangle-alert/index.tsx
1739
1774
  import { jsx as jsx28, jsxs as jsxs15 } from "react/jsx-runtime";
1740
- function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1775
+ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1741
1776
  return /* @__PURE__ */ jsxs15(
1742
1777
  "svg",
1743
1778
  {
@@ -1750,7 +1785,7 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1750
1785
  strokeWidth,
1751
1786
  strokeLinecap: "round",
1752
1787
  strokeLinejoin: "round",
1753
- "aria-hidden": "true",
1788
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1754
1789
  ...rest,
1755
1790
  children: [
1756
1791
  /* @__PURE__ */ jsx28("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" }),
@@ -1765,7 +1800,7 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1765
1800
  import { useMemo as useMemo21 } from "react";
1766
1801
 
1767
1802
  // src/components/alert/use-styles.css.ts
1768
- var content = "use-styles_content__ivsh6u6";
1803
+ var content2 = "use-styles_content__ivsh6u6";
1769
1804
  var iconSlot = "use-styles_iconSlot__ivsh6u5";
1770
1805
  var root12 = "use-styles_root__ivsh6u0";
1771
1806
  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" };
@@ -1783,7 +1818,7 @@ function useStyles17({
1783
1818
  return {
1784
1819
  root: root24,
1785
1820
  iconSlot,
1786
- content
1821
+ content: content2
1787
1822
  };
1788
1823
  }
1789
1824
 
@@ -1934,7 +1969,7 @@ import { forwardRef as forwardRef21, useEffect as useEffect5, useId as useId3, u
1934
1969
 
1935
1970
  // src/components/icons/chevron-down/index.tsx
1936
1971
  import { jsx as jsx31 } from "react/jsx-runtime";
1937
- function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1972
+ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1938
1973
  return /* @__PURE__ */ jsx31(
1939
1974
  "svg",
1940
1975
  {
@@ -1947,7 +1982,7 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1947
1982
  strokeWidth,
1948
1983
  strokeLinecap: "round",
1949
1984
  strokeLinejoin: "round",
1950
- "aria-hidden": "true",
1985
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1951
1986
  ...rest,
1952
1987
  children: /* @__PURE__ */ jsx31("path", { d: "m6 9 6 6 6-6" })
1953
1988
  }
@@ -1983,7 +2018,7 @@ function useStyles19({
1983
2018
  placeholder,
1984
2019
  chevron: chevron3,
1985
2020
  menu,
1986
- optionClass: (selected3, active2) => [option, selected3 && optionSelected, active2 && optionActive].filter(Boolean).join(" ")
2021
+ optionClass: (selected4, active2) => [option, selected4 && optionSelected, active2 && optionActive].filter(Boolean).join(" ")
1987
2022
  };
1988
2023
  }, [themeClass, open]);
1989
2024
  }
@@ -2032,7 +2067,7 @@ var Select = forwardRef21(function Select2({
2032
2067
  document.addEventListener("mousedown", onPointerDown);
2033
2068
  return () => document.removeEventListener("mousedown", onPointerDown);
2034
2069
  }, [open]);
2035
- const selected3 = options.find((option2) => option2.value === value);
2070
+ const selected4 = options.find((option2) => option2.value === value);
2036
2071
  const selectAt = (index) => {
2037
2072
  const option2 = options[index];
2038
2073
  if (option2) onChange?.(option2.value);
@@ -2105,7 +2140,7 @@ var Select = forwardRef21(function Select2({
2105
2140
  },
2106
2141
  onKeyDown: handleKeyDown,
2107
2142
  children: [
2108
- selected3 ? selected3.label : /* @__PURE__ */ jsx32("span", { className: placeholderClass, children: placeholder2 }),
2143
+ selected4 ? selected4.label : /* @__PURE__ */ jsx32("span", { className: placeholderClass, children: placeholder2 }),
2109
2144
  /* @__PURE__ */ jsx32("span", { className: chevron3, children: /* @__PURE__ */ jsx32(ChevronDownIcon, { size: 18 }) })
2110
2145
  ]
2111
2146
  }
@@ -2293,7 +2328,7 @@ import { Fragment, forwardRef as forwardRef24 } from "react";
2293
2328
 
2294
2329
  // src/components/icons/chevron-right/index.tsx
2295
2330
  import { jsx as jsx35 } from "react/jsx-runtime";
2296
- function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2331
+ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
2297
2332
  return /* @__PURE__ */ jsx35(
2298
2333
  "svg",
2299
2334
  {
@@ -2306,7 +2341,7 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2306
2341
  strokeWidth,
2307
2342
  strokeLinecap: "round",
2308
2343
  strokeLinejoin: "round",
2309
- "aria-hidden": "true",
2344
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
2310
2345
  ...rest,
2311
2346
  children: /* @__PURE__ */ jsx35("path", { d: "m9 18 6-6-6-6" })
2312
2347
  }
@@ -2352,7 +2387,7 @@ import { forwardRef as forwardRef25 } from "react";
2352
2387
 
2353
2388
  // src/components/icons/chevron-left/index.tsx
2354
2389
  import { jsx as jsx37 } from "react/jsx-runtime";
2355
- function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2390
+ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
2356
2391
  return /* @__PURE__ */ jsx37(
2357
2392
  "svg",
2358
2393
  {
@@ -2365,7 +2400,7 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2365
2400
  strokeWidth,
2366
2401
  strokeLinecap: "round",
2367
2402
  strokeLinejoin: "round",
2368
- "aria-hidden": "true",
2403
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
2369
2404
  ...rest,
2370
2405
  children: /* @__PURE__ */ jsx37("path", { d: "m15 18-6-6 6-6" })
2371
2406
  }
@@ -3140,29 +3175,29 @@ import { forwardRef as forwardRef33 } from "react";
3140
3175
  import { useMemo as useMemo35 } from "react";
3141
3176
 
3142
3177
  // src/components/list-item/use-styles.css.ts
3143
- var content2 = "use-styles_content__kbreq13";
3178
+ var content3 = "use-styles_content__kbreq13";
3144
3179
  var leading = "use-styles_leading__kbreq12";
3145
3180
  var root23 = "use-styles_root__kbreq10";
3146
- var selected2 = "use-styles_selected__kbreq11";
3181
+ var selected3 = "use-styles_selected__kbreq11";
3147
3182
  var trailing = "use-styles_trailing__kbreq14";
3148
3183
 
3149
3184
  // src/components/list-item/use-styles.ts
3150
3185
  function useStyles31({
3151
- selected: selected3,
3186
+ selected: selected4,
3152
3187
  className
3153
3188
  }) {
3154
3189
  const { themeClass } = useTheme();
3155
3190
  const root24 = useMemo35(
3156
- () => [themeClass, root23, selected3 && selected2, className].filter(Boolean).join(" "),
3157
- [themeClass, selected3, className]
3191
+ () => [themeClass, root23, selected4 && selected3, className].filter(Boolean).join(" "),
3192
+ [themeClass, selected4, className]
3158
3193
  );
3159
- return { root: root24, leading, content: content2, trailing };
3194
+ return { root: root24, leading, content: content3, trailing };
3160
3195
  }
3161
3196
 
3162
3197
  // src/components/list-item/index.tsx
3163
3198
  import { jsx as jsx46, jsxs as jsxs30 } from "react/jsx-runtime";
3164
- var ListItem = forwardRef33(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected3, className, testId, children, ...rest }, ref) {
3165
- const styles = useStyles31({ selected: selected3, className });
3199
+ var ListItem = forwardRef33(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected4, className, testId, children, ...rest }, ref) {
3200
+ const styles = useStyles31({ selected: selected4, className });
3166
3201
  const { testId: dataTestId, slot } = useTestId("list", testId);
3167
3202
  return /* @__PURE__ */ jsxs30(
3168
3203
  "div",
@@ -3170,7 +3205,7 @@ var ListItem = forwardRef33(function ListItem2({ leading: leading2, trailing: tr
3170
3205
  ref,
3171
3206
  className: styles.root,
3172
3207
  "data-testid": dataTestId,
3173
- "data-state": states({ selected: selected3 }),
3208
+ "data-state": states({ selected: selected4 }),
3174
3209
  ...rest,
3175
3210
  children: [
3176
3211
  leading2 != null && /* @__PURE__ */ jsx46("span", { className: styles.leading, "data-testid": slot("leading"), children: leading2 }),
@@ -3183,7 +3218,7 @@ var ListItem = forwardRef33(function ListItem2({ leading: leading2, trailing: tr
3183
3218
 
3184
3219
  // src/components/icons/alert-circle/index.tsx
3185
3220
  import { jsx as jsx47, jsxs as jsxs31 } from "react/jsx-runtime";
3186
- function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3221
+ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3187
3222
  return /* @__PURE__ */ jsxs31(
3188
3223
  "svg",
3189
3224
  {
@@ -3196,7 +3231,7 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3196
3231
  strokeWidth,
3197
3232
  strokeLinecap: "round",
3198
3233
  strokeLinejoin: "round",
3199
- "aria-hidden": "true",
3234
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3200
3235
  ...rest,
3201
3236
  children: [
3202
3237
  /* @__PURE__ */ jsx47("circle", { cx: "12", cy: "12", r: "10" }),
@@ -3209,7 +3244,7 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3209
3244
 
3210
3245
  // src/components/icons/archive/index.tsx
3211
3246
  import { jsx as jsx48, jsxs as jsxs32 } from "react/jsx-runtime";
3212
- function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3247
+ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3213
3248
  return /* @__PURE__ */ jsxs32(
3214
3249
  "svg",
3215
3250
  {
@@ -3222,7 +3257,7 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3222
3257
  strokeWidth,
3223
3258
  strokeLinecap: "round",
3224
3259
  strokeLinejoin: "round",
3225
- "aria-hidden": "true",
3260
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3226
3261
  ...rest,
3227
3262
  children: [
3228
3263
  /* @__PURE__ */ jsx48("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
@@ -3235,7 +3270,7 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3235
3270
 
3236
3271
  // src/components/icons/arrow-down/index.tsx
3237
3272
  import { jsx as jsx49, jsxs as jsxs33 } from "react/jsx-runtime";
3238
- function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3273
+ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3239
3274
  return /* @__PURE__ */ jsxs33(
3240
3275
  "svg",
3241
3276
  {
@@ -3248,7 +3283,7 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3248
3283
  strokeWidth,
3249
3284
  strokeLinecap: "round",
3250
3285
  strokeLinejoin: "round",
3251
- "aria-hidden": "true",
3286
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3252
3287
  ...rest,
3253
3288
  children: [
3254
3289
  /* @__PURE__ */ jsx49("path", { d: "M12 5v14" }),
@@ -3260,7 +3295,7 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3260
3295
 
3261
3296
  // src/components/icons/arrow-left/index.tsx
3262
3297
  import { jsx as jsx50, jsxs as jsxs34 } from "react/jsx-runtime";
3263
- function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3298
+ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3264
3299
  return /* @__PURE__ */ jsxs34(
3265
3300
  "svg",
3266
3301
  {
@@ -3273,7 +3308,7 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3273
3308
  strokeWidth,
3274
3309
  strokeLinecap: "round",
3275
3310
  strokeLinejoin: "round",
3276
- "aria-hidden": "true",
3311
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3277
3312
  ...rest,
3278
3313
  children: [
3279
3314
  /* @__PURE__ */ jsx50("path", { d: "m12 19-7-7 7-7" }),
@@ -3285,7 +3320,7 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3285
3320
 
3286
3321
  // src/components/icons/arrow-right/index.tsx
3287
3322
  import { jsx as jsx51, jsxs as jsxs35 } from "react/jsx-runtime";
3288
- function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3323
+ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3289
3324
  return /* @__PURE__ */ jsxs35(
3290
3325
  "svg",
3291
3326
  {
@@ -3298,7 +3333,7 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3298
3333
  strokeWidth,
3299
3334
  strokeLinecap: "round",
3300
3335
  strokeLinejoin: "round",
3301
- "aria-hidden": "true",
3336
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3302
3337
  ...rest,
3303
3338
  children: [
3304
3339
  /* @__PURE__ */ jsx51("path", { d: "M5 12h14" }),
@@ -3310,7 +3345,7 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3310
3345
 
3311
3346
  // src/components/icons/arrow-up/index.tsx
3312
3347
  import { jsx as jsx52, jsxs as jsxs36 } from "react/jsx-runtime";
3313
- function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3348
+ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3314
3349
  return /* @__PURE__ */ jsxs36(
3315
3350
  "svg",
3316
3351
  {
@@ -3323,7 +3358,7 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3323
3358
  strokeWidth,
3324
3359
  strokeLinecap: "round",
3325
3360
  strokeLinejoin: "round",
3326
- "aria-hidden": "true",
3361
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3327
3362
  ...rest,
3328
3363
  children: [
3329
3364
  /* @__PURE__ */ jsx52("path", { d: "m5 12 7-7 7 7" }),
@@ -3335,7 +3370,7 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3335
3370
 
3336
3371
  // src/components/icons/at-sign/index.tsx
3337
3372
  import { jsx as jsx53, jsxs as jsxs37 } from "react/jsx-runtime";
3338
- function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3373
+ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3339
3374
  return /* @__PURE__ */ jsxs37(
3340
3375
  "svg",
3341
3376
  {
@@ -3348,7 +3383,7 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3348
3383
  strokeWidth,
3349
3384
  strokeLinecap: "round",
3350
3385
  strokeLinejoin: "round",
3351
- "aria-hidden": "true",
3386
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3352
3387
  ...rest,
3353
3388
  children: [
3354
3389
  /* @__PURE__ */ jsx53("circle", { cx: "12", cy: "12", r: "4" }),
@@ -3360,7 +3395,7 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3360
3395
 
3361
3396
  // src/components/icons/bell/index.tsx
3362
3397
  import { jsx as jsx54, jsxs as jsxs38 } from "react/jsx-runtime";
3363
- function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3398
+ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3364
3399
  return /* @__PURE__ */ jsxs38(
3365
3400
  "svg",
3366
3401
  {
@@ -3373,7 +3408,7 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3373
3408
  strokeWidth,
3374
3409
  strokeLinecap: "round",
3375
3410
  strokeLinejoin: "round",
3376
- "aria-hidden": "true",
3411
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3377
3412
  ...rest,
3378
3413
  children: [
3379
3414
  /* @__PURE__ */ jsx54("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
@@ -3385,7 +3420,7 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3385
3420
 
3386
3421
  // src/components/icons/bell-off/index.tsx
3387
3422
  import { jsx as jsx55, jsxs as jsxs39 } from "react/jsx-runtime";
3388
- function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3423
+ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3389
3424
  return /* @__PURE__ */ jsxs39(
3390
3425
  "svg",
3391
3426
  {
@@ -3398,7 +3433,7 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3398
3433
  strokeWidth,
3399
3434
  strokeLinecap: "round",
3400
3435
  strokeLinejoin: "round",
3401
- "aria-hidden": "true",
3436
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3402
3437
  ...rest,
3403
3438
  children: [
3404
3439
  /* @__PURE__ */ jsx55("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
@@ -3412,7 +3447,7 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3412
3447
 
3413
3448
  // src/components/icons/bookmark/index.tsx
3414
3449
  import { jsx as jsx56 } from "react/jsx-runtime";
3415
- function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3450
+ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3416
3451
  return /* @__PURE__ */ jsx56(
3417
3452
  "svg",
3418
3453
  {
@@ -3425,7 +3460,7 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3425
3460
  strokeWidth,
3426
3461
  strokeLinecap: "round",
3427
3462
  strokeLinejoin: "round",
3428
- "aria-hidden": "true",
3463
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3429
3464
  ...rest,
3430
3465
  children: /* @__PURE__ */ jsx56("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
3431
3466
  }
@@ -3434,7 +3469,7 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3434
3469
 
3435
3470
  // src/components/icons/calendar/index.tsx
3436
3471
  import { jsx as jsx57, jsxs as jsxs40 } from "react/jsx-runtime";
3437
- function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3472
+ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3438
3473
  return /* @__PURE__ */ jsxs40(
3439
3474
  "svg",
3440
3475
  {
@@ -3447,7 +3482,7 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3447
3482
  strokeWidth,
3448
3483
  strokeLinecap: "round",
3449
3484
  strokeLinejoin: "round",
3450
- "aria-hidden": "true",
3485
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3451
3486
  ...rest,
3452
3487
  children: [
3453
3488
  /* @__PURE__ */ jsx57("path", { d: "M8 2v4" }),
@@ -3461,7 +3496,7 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3461
3496
 
3462
3497
  // src/components/icons/camera/index.tsx
3463
3498
  import { jsx as jsx58, jsxs as jsxs41 } from "react/jsx-runtime";
3464
- function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3499
+ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3465
3500
  return /* @__PURE__ */ jsxs41(
3466
3501
  "svg",
3467
3502
  {
@@ -3474,7 +3509,7 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3474
3509
  strokeWidth,
3475
3510
  strokeLinecap: "round",
3476
3511
  strokeLinejoin: "round",
3477
- "aria-hidden": "true",
3512
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3478
3513
  ...rest,
3479
3514
  children: [
3480
3515
  /* @__PURE__ */ jsx58("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" }),
@@ -3486,7 +3521,7 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3486
3521
 
3487
3522
  // src/components/icons/chevron-up/index.tsx
3488
3523
  import { jsx as jsx59 } from "react/jsx-runtime";
3489
- function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3524
+ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3490
3525
  return /* @__PURE__ */ jsx59(
3491
3526
  "svg",
3492
3527
  {
@@ -3499,7 +3534,7 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3499
3534
  strokeWidth,
3500
3535
  strokeLinecap: "round",
3501
3536
  strokeLinejoin: "round",
3502
- "aria-hidden": "true",
3537
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3503
3538
  ...rest,
3504
3539
  children: /* @__PURE__ */ jsx59("path", { d: "m18 15-6-6-6 6" })
3505
3540
  }
@@ -3508,7 +3543,7 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3508
3543
 
3509
3544
  // src/components/icons/chevrons-left/index.tsx
3510
3545
  import { jsx as jsx60, jsxs as jsxs42 } from "react/jsx-runtime";
3511
- function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3546
+ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3512
3547
  return /* @__PURE__ */ jsxs42(
3513
3548
  "svg",
3514
3549
  {
@@ -3521,7 +3556,7 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3521
3556
  strokeWidth,
3522
3557
  strokeLinecap: "round",
3523
3558
  strokeLinejoin: "round",
3524
- "aria-hidden": "true",
3559
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3525
3560
  ...rest,
3526
3561
  children: [
3527
3562
  /* @__PURE__ */ jsx60("path", { d: "m11 17-5-5 5-5" }),
@@ -3533,7 +3568,7 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3533
3568
 
3534
3569
  // src/components/icons/chevrons-right/index.tsx
3535
3570
  import { jsx as jsx61, jsxs as jsxs43 } from "react/jsx-runtime";
3536
- function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3571
+ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3537
3572
  return /* @__PURE__ */ jsxs43(
3538
3573
  "svg",
3539
3574
  {
@@ -3546,7 +3581,7 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3546
3581
  strokeWidth,
3547
3582
  strokeLinecap: "round",
3548
3583
  strokeLinejoin: "round",
3549
- "aria-hidden": "true",
3584
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3550
3585
  ...rest,
3551
3586
  children: [
3552
3587
  /* @__PURE__ */ jsx61("path", { d: "m6 17 5-5-5-5" }),
@@ -3558,7 +3593,7 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3558
3593
 
3559
3594
  // src/components/icons/clipboard/index.tsx
3560
3595
  import { jsx as jsx62, jsxs as jsxs44 } from "react/jsx-runtime";
3561
- function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3596
+ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3562
3597
  return /* @__PURE__ */ jsxs44(
3563
3598
  "svg",
3564
3599
  {
@@ -3571,7 +3606,7 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3571
3606
  strokeWidth,
3572
3607
  strokeLinecap: "round",
3573
3608
  strokeLinejoin: "round",
3574
- "aria-hidden": "true",
3609
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3575
3610
  ...rest,
3576
3611
  children: [
3577
3612
  /* @__PURE__ */ jsx62("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
@@ -3583,7 +3618,7 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3583
3618
 
3584
3619
  // src/components/icons/clock/index.tsx
3585
3620
  import { jsx as jsx63, jsxs as jsxs45 } from "react/jsx-runtime";
3586
- function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3621
+ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3587
3622
  return /* @__PURE__ */ jsxs45(
3588
3623
  "svg",
3589
3624
  {
@@ -3596,7 +3631,7 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3596
3631
  strokeWidth,
3597
3632
  strokeLinecap: "round",
3598
3633
  strokeLinejoin: "round",
3599
- "aria-hidden": "true",
3634
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3600
3635
  ...rest,
3601
3636
  children: [
3602
3637
  /* @__PURE__ */ jsx63("circle", { cx: "12", cy: "12", r: "10" }),
@@ -3608,7 +3643,7 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3608
3643
 
3609
3644
  // src/components/icons/cloud/index.tsx
3610
3645
  import { jsx as jsx64 } from "react/jsx-runtime";
3611
- function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3646
+ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3612
3647
  return /* @__PURE__ */ jsx64(
3613
3648
  "svg",
3614
3649
  {
@@ -3621,7 +3656,7 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3621
3656
  strokeWidth,
3622
3657
  strokeLinecap: "round",
3623
3658
  strokeLinejoin: "round",
3624
- "aria-hidden": "true",
3659
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3625
3660
  ...rest,
3626
3661
  children: /* @__PURE__ */ jsx64("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
3627
3662
  }
@@ -3630,7 +3665,7 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3630
3665
 
3631
3666
  // src/components/icons/copy/index.tsx
3632
3667
  import { jsx as jsx65, jsxs as jsxs46 } from "react/jsx-runtime";
3633
- function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3668
+ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3634
3669
  return /* @__PURE__ */ jsxs46(
3635
3670
  "svg",
3636
3671
  {
@@ -3643,7 +3678,7 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3643
3678
  strokeWidth,
3644
3679
  strokeLinecap: "round",
3645
3680
  strokeLinejoin: "round",
3646
- "aria-hidden": "true",
3681
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3647
3682
  ...rest,
3648
3683
  children: [
3649
3684
  /* @__PURE__ */ jsx65("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
@@ -3655,7 +3690,7 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3655
3690
 
3656
3691
  // src/components/icons/corner-down-right/index.tsx
3657
3692
  import { jsx as jsx66, jsxs as jsxs47 } from "react/jsx-runtime";
3658
- function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3693
+ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3659
3694
  return /* @__PURE__ */ jsxs47(
3660
3695
  "svg",
3661
3696
  {
@@ -3668,7 +3703,7 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
3668
3703
  strokeWidth,
3669
3704
  strokeLinecap: "round",
3670
3705
  strokeLinejoin: "round",
3671
- "aria-hidden": "true",
3706
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3672
3707
  ...rest,
3673
3708
  children: [
3674
3709
  /* @__PURE__ */ jsx66("polyline", { points: "15 10 20 15 15 20" }),
@@ -3680,7 +3715,7 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
3680
3715
 
3681
3716
  // src/components/icons/credit-card/index.tsx
3682
3717
  import { jsx as jsx67, jsxs as jsxs48 } from "react/jsx-runtime";
3683
- function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3718
+ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3684
3719
  return /* @__PURE__ */ jsxs48(
3685
3720
  "svg",
3686
3721
  {
@@ -3693,7 +3728,7 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3693
3728
  strokeWidth,
3694
3729
  strokeLinecap: "round",
3695
3730
  strokeLinejoin: "round",
3696
- "aria-hidden": "true",
3731
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3697
3732
  ...rest,
3698
3733
  children: [
3699
3734
  /* @__PURE__ */ jsx67("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
@@ -3705,7 +3740,7 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3705
3740
 
3706
3741
  // src/components/icons/dollar-sign/index.tsx
3707
3742
  import { jsx as jsx68, jsxs as jsxs49 } from "react/jsx-runtime";
3708
- function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3743
+ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3709
3744
  return /* @__PURE__ */ jsxs49(
3710
3745
  "svg",
3711
3746
  {
@@ -3718,7 +3753,7 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3718
3753
  strokeWidth,
3719
3754
  strokeLinecap: "round",
3720
3755
  strokeLinejoin: "round",
3721
- "aria-hidden": "true",
3756
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3722
3757
  ...rest,
3723
3758
  children: [
3724
3759
  /* @__PURE__ */ jsx68("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
@@ -3730,7 +3765,7 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3730
3765
 
3731
3766
  // src/components/icons/download/index.tsx
3732
3767
  import { jsx as jsx69, jsxs as jsxs50 } from "react/jsx-runtime";
3733
- function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3768
+ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3734
3769
  return /* @__PURE__ */ jsxs50(
3735
3770
  "svg",
3736
3771
  {
@@ -3743,7 +3778,7 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3743
3778
  strokeWidth,
3744
3779
  strokeLinecap: "round",
3745
3780
  strokeLinejoin: "round",
3746
- "aria-hidden": "true",
3781
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3747
3782
  ...rest,
3748
3783
  children: [
3749
3784
  /* @__PURE__ */ jsx69("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
@@ -3756,7 +3791,7 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3756
3791
 
3757
3792
  // src/components/icons/external-link/index.tsx
3758
3793
  import { jsx as jsx70, jsxs as jsxs51 } from "react/jsx-runtime";
3759
- function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3794
+ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3760
3795
  return /* @__PURE__ */ jsxs51(
3761
3796
  "svg",
3762
3797
  {
@@ -3769,7 +3804,7 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3769
3804
  strokeWidth,
3770
3805
  strokeLinecap: "round",
3771
3806
  strokeLinejoin: "round",
3772
- "aria-hidden": "true",
3807
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3773
3808
  ...rest,
3774
3809
  children: [
3775
3810
  /* @__PURE__ */ jsx70("path", { d: "M15 3h6v6" }),
@@ -3782,7 +3817,7 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3782
3817
 
3783
3818
  // src/components/icons/file/index.tsx
3784
3819
  import { jsx as jsx71, jsxs as jsxs52 } from "react/jsx-runtime";
3785
- function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3820
+ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3786
3821
  return /* @__PURE__ */ jsxs52(
3787
3822
  "svg",
3788
3823
  {
@@ -3795,7 +3830,7 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3795
3830
  strokeWidth,
3796
3831
  strokeLinecap: "round",
3797
3832
  strokeLinejoin: "round",
3798
- "aria-hidden": "true",
3833
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3799
3834
  ...rest,
3800
3835
  children: [
3801
3836
  /* @__PURE__ */ jsx71("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
@@ -3807,7 +3842,7 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3807
3842
 
3808
3843
  // src/components/icons/file-text/index.tsx
3809
3844
  import { jsx as jsx72, jsxs as jsxs53 } from "react/jsx-runtime";
3810
- function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3845
+ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3811
3846
  return /* @__PURE__ */ jsxs53(
3812
3847
  "svg",
3813
3848
  {
@@ -3820,7 +3855,7 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3820
3855
  strokeWidth,
3821
3856
  strokeLinecap: "round",
3822
3857
  strokeLinejoin: "round",
3823
- "aria-hidden": "true",
3858
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3824
3859
  ...rest,
3825
3860
  children: [
3826
3861
  /* @__PURE__ */ jsx72("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
@@ -3835,7 +3870,7 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3835
3870
 
3836
3871
  // src/components/icons/filter/index.tsx
3837
3872
  import { jsx as jsx73 } from "react/jsx-runtime";
3838
- function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3873
+ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3839
3874
  return /* @__PURE__ */ jsx73(
3840
3875
  "svg",
3841
3876
  {
@@ -3848,7 +3883,7 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3848
3883
  strokeWidth,
3849
3884
  strokeLinecap: "round",
3850
3885
  strokeLinejoin: "round",
3851
- "aria-hidden": "true",
3886
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3852
3887
  ...rest,
3853
3888
  children: /* @__PURE__ */ jsx73("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
3854
3889
  }
@@ -3857,7 +3892,7 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3857
3892
 
3858
3893
  // src/components/icons/fingerprint/index.tsx
3859
3894
  import { jsx as jsx74, jsxs as jsxs54 } from "react/jsx-runtime";
3860
- function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3895
+ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3861
3896
  return /* @__PURE__ */ jsxs54(
3862
3897
  "svg",
3863
3898
  {
@@ -3870,7 +3905,7 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3870
3905
  strokeWidth,
3871
3906
  strokeLinecap: "round",
3872
3907
  strokeLinejoin: "round",
3873
- "aria-hidden": "true",
3908
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3874
3909
  ...rest,
3875
3910
  children: [
3876
3911
  /* @__PURE__ */ jsx74("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
@@ -3889,7 +3924,7 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3889
3924
 
3890
3925
  // src/components/icons/folder/index.tsx
3891
3926
  import { jsx as jsx75 } from "react/jsx-runtime";
3892
- function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3927
+ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3893
3928
  return /* @__PURE__ */ jsx75(
3894
3929
  "svg",
3895
3930
  {
@@ -3902,7 +3937,7 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3902
3937
  strokeWidth,
3903
3938
  strokeLinecap: "round",
3904
3939
  strokeLinejoin: "round",
3905
- "aria-hidden": "true",
3940
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3906
3941
  ...rest,
3907
3942
  children: /* @__PURE__ */ jsx75("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" })
3908
3943
  }
@@ -3911,7 +3946,7 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3911
3946
 
3912
3947
  // src/components/icons/folder-open/index.tsx
3913
3948
  import { jsx as jsx76 } from "react/jsx-runtime";
3914
- function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3949
+ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3915
3950
  return /* @__PURE__ */ jsx76(
3916
3951
  "svg",
3917
3952
  {
@@ -3924,7 +3959,7 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3924
3959
  strokeWidth,
3925
3960
  strokeLinecap: "round",
3926
3961
  strokeLinejoin: "round",
3927
- "aria-hidden": "true",
3962
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3928
3963
  ...rest,
3929
3964
  children: /* @__PURE__ */ jsx76("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" })
3930
3965
  }
@@ -3933,7 +3968,7 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3933
3968
 
3934
3969
  // src/components/icons/gift/index.tsx
3935
3970
  import { jsx as jsx77, jsxs as jsxs55 } from "react/jsx-runtime";
3936
- function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3971
+ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3937
3972
  return /* @__PURE__ */ jsxs55(
3938
3973
  "svg",
3939
3974
  {
@@ -3946,7 +3981,7 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3946
3981
  strokeWidth,
3947
3982
  strokeLinecap: "round",
3948
3983
  strokeLinejoin: "round",
3949
- "aria-hidden": "true",
3984
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3950
3985
  ...rest,
3951
3986
  children: [
3952
3987
  /* @__PURE__ */ jsx77("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
@@ -3958,9 +3993,31 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3958
3993
  );
3959
3994
  }
3960
3995
 
3996
+ // src/components/icons/github/index.tsx
3997
+ import { jsx as jsx78 } from "react/jsx-runtime";
3998
+ function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3999
+ return /* @__PURE__ */ jsx78(
4000
+ "svg",
4001
+ {
4002
+ xmlns: "http://www.w3.org/2000/svg",
4003
+ width: size3,
4004
+ height: size3,
4005
+ viewBox: "0 0 24 24",
4006
+ fill: "none",
4007
+ stroke: "currentColor",
4008
+ strokeWidth,
4009
+ strokeLinecap: "round",
4010
+ strokeLinejoin: "round",
4011
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4012
+ ...rest,
4013
+ children: /* @__PURE__ */ jsx78("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" })
4014
+ }
4015
+ );
4016
+ }
4017
+
3961
4018
  // src/components/icons/globe/index.tsx
3962
- import { jsx as jsx78, jsxs as jsxs56 } from "react/jsx-runtime";
3963
- function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4019
+ import { jsx as jsx79, jsxs as jsxs56 } from "react/jsx-runtime";
4020
+ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3964
4021
  return /* @__PURE__ */ jsxs56(
3965
4022
  "svg",
3966
4023
  {
@@ -3973,20 +4030,20 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3973
4030
  strokeWidth,
3974
4031
  strokeLinecap: "round",
3975
4032
  strokeLinejoin: "round",
3976
- "aria-hidden": "true",
4033
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3977
4034
  ...rest,
3978
4035
  children: [
3979
- /* @__PURE__ */ jsx78("circle", { cx: "12", cy: "12", r: "10" }),
3980
- /* @__PURE__ */ jsx78("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
3981
- /* @__PURE__ */ jsx78("path", { d: "M2 12h20" })
4036
+ /* @__PURE__ */ jsx79("circle", { cx: "12", cy: "12", r: "10" }),
4037
+ /* @__PURE__ */ jsx79("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
4038
+ /* @__PURE__ */ jsx79("path", { d: "M2 12h20" })
3982
4039
  ]
3983
4040
  }
3984
4041
  );
3985
4042
  }
3986
4043
 
3987
4044
  // src/components/icons/grid/index.tsx
3988
- import { jsx as jsx79, jsxs as jsxs57 } from "react/jsx-runtime";
3989
- function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4045
+ import { jsx as jsx80, jsxs as jsxs57 } from "react/jsx-runtime";
4046
+ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3990
4047
  return /* @__PURE__ */ jsxs57(
3991
4048
  "svg",
3992
4049
  {
@@ -3999,23 +4056,23 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3999
4056
  strokeWidth,
4000
4057
  strokeLinecap: "round",
4001
4058
  strokeLinejoin: "round",
4002
- "aria-hidden": "true",
4059
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4003
4060
  ...rest,
4004
4061
  children: [
4005
- /* @__PURE__ */ jsx79("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
4006
- /* @__PURE__ */ jsx79("path", { d: "M3 9h18" }),
4007
- /* @__PURE__ */ jsx79("path", { d: "M3 15h18" }),
4008
- /* @__PURE__ */ jsx79("path", { d: "M9 3v18" }),
4009
- /* @__PURE__ */ jsx79("path", { d: "M15 3v18" })
4062
+ /* @__PURE__ */ jsx80("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
4063
+ /* @__PURE__ */ jsx80("path", { d: "M3 9h18" }),
4064
+ /* @__PURE__ */ jsx80("path", { d: "M3 15h18" }),
4065
+ /* @__PURE__ */ jsx80("path", { d: "M9 3v18" }),
4066
+ /* @__PURE__ */ jsx80("path", { d: "M15 3v18" })
4010
4067
  ]
4011
4068
  }
4012
4069
  );
4013
4070
  }
4014
4071
 
4015
4072
  // src/components/icons/heart/index.tsx
4016
- import { jsx as jsx80 } from "react/jsx-runtime";
4017
- function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4018
- return /* @__PURE__ */ jsx80(
4073
+ import { jsx as jsx81 } from "react/jsx-runtime";
4074
+ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4075
+ return /* @__PURE__ */ jsx81(
4019
4076
  "svg",
4020
4077
  {
4021
4078
  xmlns: "http://www.w3.org/2000/svg",
@@ -4027,16 +4084,16 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4027
4084
  strokeWidth,
4028
4085
  strokeLinecap: "round",
4029
4086
  strokeLinejoin: "round",
4030
- "aria-hidden": "true",
4087
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4031
4088
  ...rest,
4032
- children: /* @__PURE__ */ jsx80("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" })
4089
+ children: /* @__PURE__ */ jsx81("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" })
4033
4090
  }
4034
4091
  );
4035
4092
  }
4036
4093
 
4037
4094
  // src/components/icons/help-circle/index.tsx
4038
- import { jsx as jsx81, jsxs as jsxs58 } from "react/jsx-runtime";
4039
- function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4095
+ import { jsx as jsx82, jsxs as jsxs58 } from "react/jsx-runtime";
4096
+ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4040
4097
  return /* @__PURE__ */ jsxs58(
4041
4098
  "svg",
4042
4099
  {
@@ -4049,20 +4106,20 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4049
4106
  strokeWidth,
4050
4107
  strokeLinecap: "round",
4051
4108
  strokeLinejoin: "round",
4052
- "aria-hidden": "true",
4109
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4053
4110
  ...rest,
4054
4111
  children: [
4055
- /* @__PURE__ */ jsx81("circle", { cx: "12", cy: "12", r: "10" }),
4056
- /* @__PURE__ */ jsx81("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
4057
- /* @__PURE__ */ jsx81("path", { d: "M12 17h.01" })
4112
+ /* @__PURE__ */ jsx82("circle", { cx: "12", cy: "12", r: "10" }),
4113
+ /* @__PURE__ */ jsx82("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
4114
+ /* @__PURE__ */ jsx82("path", { d: "M12 17h.01" })
4058
4115
  ]
4059
4116
  }
4060
4117
  );
4061
4118
  }
4062
4119
 
4063
4120
  // src/components/icons/home/index.tsx
4064
- import { jsx as jsx82, jsxs as jsxs59 } from "react/jsx-runtime";
4065
- function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4121
+ import { jsx as jsx83, jsxs as jsxs59 } from "react/jsx-runtime";
4122
+ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4066
4123
  return /* @__PURE__ */ jsxs59(
4067
4124
  "svg",
4068
4125
  {
@@ -4075,19 +4132,19 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4075
4132
  strokeWidth,
4076
4133
  strokeLinecap: "round",
4077
4134
  strokeLinejoin: "round",
4078
- "aria-hidden": "true",
4135
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4079
4136
  ...rest,
4080
4137
  children: [
4081
- /* @__PURE__ */ jsx82("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
4082
- /* @__PURE__ */ jsx82("polyline", { points: "9 22 9 12 15 12 15 22" })
4138
+ /* @__PURE__ */ jsx83("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
4139
+ /* @__PURE__ */ jsx83("polyline", { points: "9 22 9 12 15 12 15 22" })
4083
4140
  ]
4084
4141
  }
4085
4142
  );
4086
4143
  }
4087
4144
 
4088
4145
  // src/components/icons/image/index.tsx
4089
- import { jsx as jsx83, jsxs as jsxs60 } from "react/jsx-runtime";
4090
- function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4146
+ import { jsx as jsx84, jsxs as jsxs60 } from "react/jsx-runtime";
4147
+ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4091
4148
  return /* @__PURE__ */ jsxs60(
4092
4149
  "svg",
4093
4150
  {
@@ -4100,20 +4157,20 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4100
4157
  strokeWidth,
4101
4158
  strokeLinecap: "round",
4102
4159
  strokeLinejoin: "round",
4103
- "aria-hidden": "true",
4160
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4104
4161
  ...rest,
4105
4162
  children: [
4106
- /* @__PURE__ */ jsx83("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
4107
- /* @__PURE__ */ jsx83("circle", { cx: "9", cy: "9", r: "2" }),
4108
- /* @__PURE__ */ jsx83("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
4163
+ /* @__PURE__ */ jsx84("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
4164
+ /* @__PURE__ */ jsx84("circle", { cx: "9", cy: "9", r: "2" }),
4165
+ /* @__PURE__ */ jsx84("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
4109
4166
  ]
4110
4167
  }
4111
4168
  );
4112
4169
  }
4113
4170
 
4114
4171
  // src/components/icons/inbox/index.tsx
4115
- import { jsx as jsx84, jsxs as jsxs61 } from "react/jsx-runtime";
4116
- function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4172
+ import { jsx as jsx85, jsxs as jsxs61 } from "react/jsx-runtime";
4173
+ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4117
4174
  return /* @__PURE__ */ jsxs61(
4118
4175
  "svg",
4119
4176
  {
@@ -4126,19 +4183,19 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4126
4183
  strokeWidth,
4127
4184
  strokeLinecap: "round",
4128
4185
  strokeLinejoin: "round",
4129
- "aria-hidden": "true",
4186
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4130
4187
  ...rest,
4131
4188
  children: [
4132
- /* @__PURE__ */ jsx84("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
4133
- /* @__PURE__ */ jsx84("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" })
4189
+ /* @__PURE__ */ jsx85("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
4190
+ /* @__PURE__ */ jsx85("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" })
4134
4191
  ]
4135
4192
  }
4136
4193
  );
4137
4194
  }
4138
4195
 
4139
4196
  // src/components/icons/key/index.tsx
4140
- import { jsx as jsx85, jsxs as jsxs62 } from "react/jsx-runtime";
4141
- function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4197
+ import { jsx as jsx86, jsxs as jsxs62 } from "react/jsx-runtime";
4198
+ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4142
4199
  return /* @__PURE__ */ jsxs62(
4143
4200
  "svg",
4144
4201
  {
@@ -4151,20 +4208,20 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4151
4208
  strokeWidth,
4152
4209
  strokeLinecap: "round",
4153
4210
  strokeLinejoin: "round",
4154
- "aria-hidden": "true",
4211
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4155
4212
  ...rest,
4156
4213
  children: [
4157
- /* @__PURE__ */ jsx85("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" }),
4158
- /* @__PURE__ */ jsx85("path", { d: "m21 2-9.6 9.6" }),
4159
- /* @__PURE__ */ jsx85("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
4214
+ /* @__PURE__ */ jsx86("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" }),
4215
+ /* @__PURE__ */ jsx86("path", { d: "m21 2-9.6 9.6" }),
4216
+ /* @__PURE__ */ jsx86("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
4160
4217
  ]
4161
4218
  }
4162
4219
  );
4163
4220
  }
4164
4221
 
4165
4222
  // src/components/icons/layout/index.tsx
4166
- import { jsx as jsx86, jsxs as jsxs63 } from "react/jsx-runtime";
4167
- function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4223
+ import { jsx as jsx87, jsxs as jsxs63 } from "react/jsx-runtime";
4224
+ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4168
4225
  return /* @__PURE__ */ jsxs63(
4169
4226
  "svg",
4170
4227
  {
@@ -4177,21 +4234,21 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4177
4234
  strokeWidth,
4178
4235
  strokeLinecap: "round",
4179
4236
  strokeLinejoin: "round",
4180
- "aria-hidden": "true",
4237
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4181
4238
  ...rest,
4182
4239
  children: [
4183
- /* @__PURE__ */ jsx86("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
4184
- /* @__PURE__ */ jsx86("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
4185
- /* @__PURE__ */ jsx86("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
4186
- /* @__PURE__ */ jsx86("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
4240
+ /* @__PURE__ */ jsx87("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
4241
+ /* @__PURE__ */ jsx87("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
4242
+ /* @__PURE__ */ jsx87("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
4243
+ /* @__PURE__ */ jsx87("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
4187
4244
  ]
4188
4245
  }
4189
4246
  );
4190
4247
  }
4191
4248
 
4192
4249
  // src/components/icons/link/index.tsx
4193
- import { jsx as jsx87, jsxs as jsxs64 } from "react/jsx-runtime";
4194
- function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4250
+ import { jsx as jsx88, jsxs as jsxs64 } from "react/jsx-runtime";
4251
+ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4195
4252
  return /* @__PURE__ */ jsxs64(
4196
4253
  "svg",
4197
4254
  {
@@ -4204,19 +4261,19 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4204
4261
  strokeWidth,
4205
4262
  strokeLinecap: "round",
4206
4263
  strokeLinejoin: "round",
4207
- "aria-hidden": "true",
4264
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4208
4265
  ...rest,
4209
4266
  children: [
4210
- /* @__PURE__ */ jsx87("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
4211
- /* @__PURE__ */ jsx87("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
4267
+ /* @__PURE__ */ jsx88("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
4268
+ /* @__PURE__ */ jsx88("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
4212
4269
  ]
4213
4270
  }
4214
4271
  );
4215
4272
  }
4216
4273
 
4217
4274
  // src/components/icons/list/index.tsx
4218
- import { jsx as jsx88, jsxs as jsxs65 } from "react/jsx-runtime";
4219
- function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4275
+ import { jsx as jsx89, jsxs as jsxs65 } from "react/jsx-runtime";
4276
+ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4220
4277
  return /* @__PURE__ */ jsxs65(
4221
4278
  "svg",
4222
4279
  {
@@ -4229,23 +4286,23 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4229
4286
  strokeWidth,
4230
4287
  strokeLinecap: "round",
4231
4288
  strokeLinejoin: "round",
4232
- "aria-hidden": "true",
4289
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4233
4290
  ...rest,
4234
4291
  children: [
4235
- /* @__PURE__ */ jsx88("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
4236
- /* @__PURE__ */ jsx88("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
4237
- /* @__PURE__ */ jsx88("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
4238
- /* @__PURE__ */ jsx88("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
4239
- /* @__PURE__ */ jsx88("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
4240
- /* @__PURE__ */ jsx88("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
4292
+ /* @__PURE__ */ jsx89("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
4293
+ /* @__PURE__ */ jsx89("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
4294
+ /* @__PURE__ */ jsx89("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
4295
+ /* @__PURE__ */ jsx89("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
4296
+ /* @__PURE__ */ jsx89("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
4297
+ /* @__PURE__ */ jsx89("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
4241
4298
  ]
4242
4299
  }
4243
4300
  );
4244
4301
  }
4245
4302
 
4246
4303
  // src/components/icons/loader/index.tsx
4247
- import { jsx as jsx89, jsxs as jsxs66 } from "react/jsx-runtime";
4248
- function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4304
+ import { jsx as jsx90, jsxs as jsxs66 } from "react/jsx-runtime";
4305
+ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4249
4306
  return /* @__PURE__ */ jsxs66(
4250
4307
  "svg",
4251
4308
  {
@@ -4258,25 +4315,25 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4258
4315
  strokeWidth,
4259
4316
  strokeLinecap: "round",
4260
4317
  strokeLinejoin: "round",
4261
- "aria-hidden": "true",
4318
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4262
4319
  ...rest,
4263
4320
  children: [
4264
- /* @__PURE__ */ jsx89("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
4265
- /* @__PURE__ */ jsx89("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
4266
- /* @__PURE__ */ jsx89("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
4267
- /* @__PURE__ */ jsx89("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
4268
- /* @__PURE__ */ jsx89("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
4269
- /* @__PURE__ */ jsx89("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
4270
- /* @__PURE__ */ jsx89("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
4271
- /* @__PURE__ */ jsx89("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
4321
+ /* @__PURE__ */ jsx90("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
4322
+ /* @__PURE__ */ jsx90("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
4323
+ /* @__PURE__ */ jsx90("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
4324
+ /* @__PURE__ */ jsx90("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
4325
+ /* @__PURE__ */ jsx90("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
4326
+ /* @__PURE__ */ jsx90("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
4327
+ /* @__PURE__ */ jsx90("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
4328
+ /* @__PURE__ */ jsx90("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
4272
4329
  ]
4273
4330
  }
4274
4331
  );
4275
4332
  }
4276
4333
 
4277
4334
  // src/components/icons/lock/index.tsx
4278
- import { jsx as jsx90, jsxs as jsxs67 } from "react/jsx-runtime";
4279
- function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4335
+ import { jsx as jsx91, jsxs as jsxs67 } from "react/jsx-runtime";
4336
+ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4280
4337
  return /* @__PURE__ */ jsxs67(
4281
4338
  "svg",
4282
4339
  {
@@ -4289,19 +4346,19 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4289
4346
  strokeWidth,
4290
4347
  strokeLinecap: "round",
4291
4348
  strokeLinejoin: "round",
4292
- "aria-hidden": "true",
4349
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4293
4350
  ...rest,
4294
4351
  children: [
4295
- /* @__PURE__ */ jsx90("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
4296
- /* @__PURE__ */ jsx90("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
4352
+ /* @__PURE__ */ jsx91("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
4353
+ /* @__PURE__ */ jsx91("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
4297
4354
  ]
4298
4355
  }
4299
4356
  );
4300
4357
  }
4301
4358
 
4302
4359
  // src/components/icons/log-in/index.tsx
4303
- import { jsx as jsx91, jsxs as jsxs68 } from "react/jsx-runtime";
4304
- function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4360
+ import { jsx as jsx92, jsxs as jsxs68 } from "react/jsx-runtime";
4361
+ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4305
4362
  return /* @__PURE__ */ jsxs68(
4306
4363
  "svg",
4307
4364
  {
@@ -4314,20 +4371,20 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4314
4371
  strokeWidth,
4315
4372
  strokeLinecap: "round",
4316
4373
  strokeLinejoin: "round",
4317
- "aria-hidden": "true",
4374
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4318
4375
  ...rest,
4319
4376
  children: [
4320
- /* @__PURE__ */ jsx91("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
4321
- /* @__PURE__ */ jsx91("polyline", { points: "10 17 15 12 10 7" }),
4322
- /* @__PURE__ */ jsx91("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
4377
+ /* @__PURE__ */ jsx92("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
4378
+ /* @__PURE__ */ jsx92("polyline", { points: "10 17 15 12 10 7" }),
4379
+ /* @__PURE__ */ jsx92("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
4323
4380
  ]
4324
4381
  }
4325
4382
  );
4326
4383
  }
4327
4384
 
4328
4385
  // src/components/icons/log-out/index.tsx
4329
- import { jsx as jsx92, jsxs as jsxs69 } from "react/jsx-runtime";
4330
- function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4386
+ import { jsx as jsx93, jsxs as jsxs69 } from "react/jsx-runtime";
4387
+ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4331
4388
  return /* @__PURE__ */ jsxs69(
4332
4389
  "svg",
4333
4390
  {
@@ -4340,20 +4397,20 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4340
4397
  strokeWidth,
4341
4398
  strokeLinecap: "round",
4342
4399
  strokeLinejoin: "round",
4343
- "aria-hidden": "true",
4400
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4344
4401
  ...rest,
4345
4402
  children: [
4346
- /* @__PURE__ */ jsx92("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
4347
- /* @__PURE__ */ jsx92("polyline", { points: "16 17 21 12 16 7" }),
4348
- /* @__PURE__ */ jsx92("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
4403
+ /* @__PURE__ */ jsx93("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
4404
+ /* @__PURE__ */ jsx93("polyline", { points: "16 17 21 12 16 7" }),
4405
+ /* @__PURE__ */ jsx93("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
4349
4406
  ]
4350
4407
  }
4351
4408
  );
4352
4409
  }
4353
4410
 
4354
4411
  // src/components/icons/mail/index.tsx
4355
- import { jsx as jsx93, jsxs as jsxs70 } from "react/jsx-runtime";
4356
- function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4412
+ import { jsx as jsx94, jsxs as jsxs70 } from "react/jsx-runtime";
4413
+ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4357
4414
  return /* @__PURE__ */ jsxs70(
4358
4415
  "svg",
4359
4416
  {
@@ -4366,19 +4423,19 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4366
4423
  strokeWidth,
4367
4424
  strokeLinecap: "round",
4368
4425
  strokeLinejoin: "round",
4369
- "aria-hidden": "true",
4426
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4370
4427
  ...rest,
4371
4428
  children: [
4372
- /* @__PURE__ */ jsx93("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
4373
- /* @__PURE__ */ jsx93("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
4429
+ /* @__PURE__ */ jsx94("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
4430
+ /* @__PURE__ */ jsx94("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
4374
4431
  ]
4375
4432
  }
4376
4433
  );
4377
4434
  }
4378
4435
 
4379
4436
  // src/components/icons/map-pin/index.tsx
4380
- import { jsx as jsx94, jsxs as jsxs71 } from "react/jsx-runtime";
4381
- function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4437
+ import { jsx as jsx95, jsxs as jsxs71 } from "react/jsx-runtime";
4438
+ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4382
4439
  return /* @__PURE__ */ jsxs71(
4383
4440
  "svg",
4384
4441
  {
@@ -4391,19 +4448,19 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4391
4448
  strokeWidth,
4392
4449
  strokeLinecap: "round",
4393
4450
  strokeLinejoin: "round",
4394
- "aria-hidden": "true",
4451
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4395
4452
  ...rest,
4396
4453
  children: [
4397
- /* @__PURE__ */ jsx94("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" }),
4398
- /* @__PURE__ */ jsx94("circle", { cx: "12", cy: "10", r: "3" })
4454
+ /* @__PURE__ */ jsx95("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" }),
4455
+ /* @__PURE__ */ jsx95("circle", { cx: "12", cy: "10", r: "3" })
4399
4456
  ]
4400
4457
  }
4401
4458
  );
4402
4459
  }
4403
4460
 
4404
4461
  // src/components/icons/maximize/index.tsx
4405
- import { jsx as jsx95, jsxs as jsxs72 } from "react/jsx-runtime";
4406
- function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4462
+ import { jsx as jsx96, jsxs as jsxs72 } from "react/jsx-runtime";
4463
+ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4407
4464
  return /* @__PURE__ */ jsxs72(
4408
4465
  "svg",
4409
4466
  {
@@ -4416,21 +4473,21 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4416
4473
  strokeWidth,
4417
4474
  strokeLinecap: "round",
4418
4475
  strokeLinejoin: "round",
4419
- "aria-hidden": "true",
4476
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4420
4477
  ...rest,
4421
4478
  children: [
4422
- /* @__PURE__ */ jsx95("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
4423
- /* @__PURE__ */ jsx95("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
4424
- /* @__PURE__ */ jsx95("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
4425
- /* @__PURE__ */ jsx95("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
4479
+ /* @__PURE__ */ jsx96("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
4480
+ /* @__PURE__ */ jsx96("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
4481
+ /* @__PURE__ */ jsx96("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
4482
+ /* @__PURE__ */ jsx96("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
4426
4483
  ]
4427
4484
  }
4428
4485
  );
4429
4486
  }
4430
4487
 
4431
4488
  // src/components/icons/menu/index.tsx
4432
- import { jsx as jsx96, jsxs as jsxs73 } from "react/jsx-runtime";
4433
- function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4489
+ import { jsx as jsx97, jsxs as jsxs73 } from "react/jsx-runtime";
4490
+ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4434
4491
  return /* @__PURE__ */ jsxs73(
4435
4492
  "svg",
4436
4493
  {
@@ -4443,21 +4500,21 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4443
4500
  strokeWidth,
4444
4501
  strokeLinecap: "round",
4445
4502
  strokeLinejoin: "round",
4446
- "aria-hidden": "true",
4503
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4447
4504
  ...rest,
4448
4505
  children: [
4449
- /* @__PURE__ */ jsx96("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
4450
- /* @__PURE__ */ jsx96("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
4451
- /* @__PURE__ */ jsx96("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
4506
+ /* @__PURE__ */ jsx97("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
4507
+ /* @__PURE__ */ jsx97("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
4508
+ /* @__PURE__ */ jsx97("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
4452
4509
  ]
4453
4510
  }
4454
4511
  );
4455
4512
  }
4456
4513
 
4457
4514
  // src/components/icons/message-circle/index.tsx
4458
- import { jsx as jsx97 } from "react/jsx-runtime";
4459
- function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4460
- return /* @__PURE__ */ jsx97(
4515
+ import { jsx as jsx98 } from "react/jsx-runtime";
4516
+ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4517
+ return /* @__PURE__ */ jsx98(
4461
4518
  "svg",
4462
4519
  {
4463
4520
  xmlns: "http://www.w3.org/2000/svg",
@@ -4469,17 +4526,17 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4469
4526
  strokeWidth,
4470
4527
  strokeLinecap: "round",
4471
4528
  strokeLinejoin: "round",
4472
- "aria-hidden": "true",
4529
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4473
4530
  ...rest,
4474
- children: /* @__PURE__ */ jsx97("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
4531
+ children: /* @__PURE__ */ jsx98("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
4475
4532
  }
4476
4533
  );
4477
4534
  }
4478
4535
 
4479
4536
  // src/components/icons/message-square/index.tsx
4480
- import { jsx as jsx98 } from "react/jsx-runtime";
4481
- function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4482
- return /* @__PURE__ */ jsx98(
4537
+ import { jsx as jsx99 } from "react/jsx-runtime";
4538
+ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4539
+ return /* @__PURE__ */ jsx99(
4483
4540
  "svg",
4484
4541
  {
4485
4542
  xmlns: "http://www.w3.org/2000/svg",
@@ -4491,16 +4548,16 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4491
4548
  strokeWidth,
4492
4549
  strokeLinecap: "round",
4493
4550
  strokeLinejoin: "round",
4494
- "aria-hidden": "true",
4551
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4495
4552
  ...rest,
4496
- children: /* @__PURE__ */ jsx98("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
4553
+ children: /* @__PURE__ */ jsx99("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
4497
4554
  }
4498
4555
  );
4499
4556
  }
4500
4557
 
4501
4558
  // src/components/icons/mic/index.tsx
4502
- import { jsx as jsx99, jsxs as jsxs74 } from "react/jsx-runtime";
4503
- function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4559
+ import { jsx as jsx100, jsxs as jsxs74 } from "react/jsx-runtime";
4560
+ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4504
4561
  return /* @__PURE__ */ jsxs74(
4505
4562
  "svg",
4506
4563
  {
@@ -4513,20 +4570,20 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4513
4570
  strokeWidth,
4514
4571
  strokeLinecap: "round",
4515
4572
  strokeLinejoin: "round",
4516
- "aria-hidden": "true",
4573
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4517
4574
  ...rest,
4518
4575
  children: [
4519
- /* @__PURE__ */ jsx99("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
4520
- /* @__PURE__ */ jsx99("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
4521
- /* @__PURE__ */ jsx99("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
4576
+ /* @__PURE__ */ jsx100("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
4577
+ /* @__PURE__ */ jsx100("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
4578
+ /* @__PURE__ */ jsx100("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
4522
4579
  ]
4523
4580
  }
4524
4581
  );
4525
4582
  }
4526
4583
 
4527
4584
  // src/components/icons/minimize/index.tsx
4528
- import { jsx as jsx100, jsxs as jsxs75 } from "react/jsx-runtime";
4529
- function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4585
+ import { jsx as jsx101, jsxs as jsxs75 } from "react/jsx-runtime";
4586
+ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4530
4587
  return /* @__PURE__ */ jsxs75(
4531
4588
  "svg",
4532
4589
  {
@@ -4539,22 +4596,22 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4539
4596
  strokeWidth,
4540
4597
  strokeLinecap: "round",
4541
4598
  strokeLinejoin: "round",
4542
- "aria-hidden": "true",
4599
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4543
4600
  ...rest,
4544
4601
  children: [
4545
- /* @__PURE__ */ jsx100("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
4546
- /* @__PURE__ */ jsx100("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
4547
- /* @__PURE__ */ jsx100("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
4548
- /* @__PURE__ */ jsx100("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
4602
+ /* @__PURE__ */ jsx101("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
4603
+ /* @__PURE__ */ jsx101("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
4604
+ /* @__PURE__ */ jsx101("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
4605
+ /* @__PURE__ */ jsx101("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
4549
4606
  ]
4550
4607
  }
4551
4608
  );
4552
4609
  }
4553
4610
 
4554
4611
  // src/components/icons/minus/index.tsx
4555
- import { jsx as jsx101 } from "react/jsx-runtime";
4556
- function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4557
- return /* @__PURE__ */ jsx101(
4612
+ import { jsx as jsx102 } from "react/jsx-runtime";
4613
+ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4614
+ return /* @__PURE__ */ jsx102(
4558
4615
  "svg",
4559
4616
  {
4560
4617
  xmlns: "http://www.w3.org/2000/svg",
@@ -4566,17 +4623,17 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4566
4623
  strokeWidth,
4567
4624
  strokeLinecap: "round",
4568
4625
  strokeLinejoin: "round",
4569
- "aria-hidden": "true",
4626
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4570
4627
  ...rest,
4571
- children: /* @__PURE__ */ jsx101("path", { d: "M5 12h14" })
4628
+ children: /* @__PURE__ */ jsx102("path", { d: "M5 12h14" })
4572
4629
  }
4573
4630
  );
4574
4631
  }
4575
4632
 
4576
4633
  // src/components/icons/moon/index.tsx
4577
- import { jsx as jsx102 } from "react/jsx-runtime";
4578
- function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4579
- return /* @__PURE__ */ jsx102(
4634
+ import { jsx as jsx103 } from "react/jsx-runtime";
4635
+ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4636
+ return /* @__PURE__ */ jsx103(
4580
4637
  "svg",
4581
4638
  {
4582
4639
  xmlns: "http://www.w3.org/2000/svg",
@@ -4588,16 +4645,16 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4588
4645
  strokeWidth,
4589
4646
  strokeLinecap: "round",
4590
4647
  strokeLinejoin: "round",
4591
- "aria-hidden": "true",
4648
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4592
4649
  ...rest,
4593
- children: /* @__PURE__ */ jsx102("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
4650
+ children: /* @__PURE__ */ jsx103("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
4594
4651
  }
4595
4652
  );
4596
4653
  }
4597
4654
 
4598
4655
  // src/components/icons/more-horizontal/index.tsx
4599
- import { jsx as jsx103, jsxs as jsxs76 } from "react/jsx-runtime";
4600
- function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4656
+ import { jsx as jsx104, jsxs as jsxs76 } from "react/jsx-runtime";
4657
+ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4601
4658
  return /* @__PURE__ */ jsxs76(
4602
4659
  "svg",
4603
4660
  {
@@ -4610,20 +4667,20 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4610
4667
  strokeWidth,
4611
4668
  strokeLinecap: "round",
4612
4669
  strokeLinejoin: "round",
4613
- "aria-hidden": "true",
4670
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4614
4671
  ...rest,
4615
4672
  children: [
4616
- /* @__PURE__ */ jsx103("circle", { cx: "12", cy: "12", r: "1" }),
4617
- /* @__PURE__ */ jsx103("circle", { cx: "19", cy: "12", r: "1" }),
4618
- /* @__PURE__ */ jsx103("circle", { cx: "5", cy: "12", r: "1" })
4673
+ /* @__PURE__ */ jsx104("circle", { cx: "12", cy: "12", r: "1" }),
4674
+ /* @__PURE__ */ jsx104("circle", { cx: "19", cy: "12", r: "1" }),
4675
+ /* @__PURE__ */ jsx104("circle", { cx: "5", cy: "12", r: "1" })
4619
4676
  ]
4620
4677
  }
4621
4678
  );
4622
4679
  }
4623
4680
 
4624
4681
  // src/components/icons/more-vertical/index.tsx
4625
- import { jsx as jsx104, jsxs as jsxs77 } from "react/jsx-runtime";
4626
- function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4682
+ import { jsx as jsx105, jsxs as jsxs77 } from "react/jsx-runtime";
4683
+ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4627
4684
  return /* @__PURE__ */ jsxs77(
4628
4685
  "svg",
4629
4686
  {
@@ -4636,20 +4693,20 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4636
4693
  strokeWidth,
4637
4694
  strokeLinecap: "round",
4638
4695
  strokeLinejoin: "round",
4639
- "aria-hidden": "true",
4696
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4640
4697
  ...rest,
4641
4698
  children: [
4642
- /* @__PURE__ */ jsx104("circle", { cx: "12", cy: "12", r: "1" }),
4643
- /* @__PURE__ */ jsx104("circle", { cx: "12", cy: "5", r: "1" }),
4644
- /* @__PURE__ */ jsx104("circle", { cx: "12", cy: "19", r: "1" })
4699
+ /* @__PURE__ */ jsx105("circle", { cx: "12", cy: "12", r: "1" }),
4700
+ /* @__PURE__ */ jsx105("circle", { cx: "12", cy: "5", r: "1" }),
4701
+ /* @__PURE__ */ jsx105("circle", { cx: "12", cy: "19", r: "1" })
4645
4702
  ]
4646
4703
  }
4647
4704
  );
4648
4705
  }
4649
4706
 
4650
4707
  // src/components/icons/package/index.tsx
4651
- import { jsx as jsx105, jsxs as jsxs78 } from "react/jsx-runtime";
4652
- function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4708
+ import { jsx as jsx106, jsxs as jsxs78 } from "react/jsx-runtime";
4709
+ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4653
4710
  return /* @__PURE__ */ jsxs78(
4654
4711
  "svg",
4655
4712
  {
@@ -4662,21 +4719,21 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4662
4719
  strokeWidth,
4663
4720
  strokeLinecap: "round",
4664
4721
  strokeLinejoin: "round",
4665
- "aria-hidden": "true",
4722
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4666
4723
  ...rest,
4667
4724
  children: [
4668
- /* @__PURE__ */ jsx105("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" }),
4669
- /* @__PURE__ */ jsx105("path", { d: "M3.3 7 12 12l8.7-5" }),
4670
- /* @__PURE__ */ jsx105("path", { d: "M12 22V12" })
4725
+ /* @__PURE__ */ jsx106("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" }),
4726
+ /* @__PURE__ */ jsx106("path", { d: "M3.3 7 12 12l8.7-5" }),
4727
+ /* @__PURE__ */ jsx106("path", { d: "M12 22V12" })
4671
4728
  ]
4672
4729
  }
4673
4730
  );
4674
4731
  }
4675
4732
 
4676
4733
  // src/components/icons/paperclip/index.tsx
4677
- import { jsx as jsx106 } from "react/jsx-runtime";
4678
- function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4679
- return /* @__PURE__ */ jsx106(
4734
+ import { jsx as jsx107 } from "react/jsx-runtime";
4735
+ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4736
+ return /* @__PURE__ */ jsx107(
4680
4737
  "svg",
4681
4738
  {
4682
4739
  xmlns: "http://www.w3.org/2000/svg",
@@ -4688,16 +4745,16 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4688
4745
  strokeWidth,
4689
4746
  strokeLinecap: "round",
4690
4747
  strokeLinejoin: "round",
4691
- "aria-hidden": "true",
4748
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4692
4749
  ...rest,
4693
- children: /* @__PURE__ */ jsx106("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" })
4750
+ children: /* @__PURE__ */ jsx107("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" })
4694
4751
  }
4695
4752
  );
4696
4753
  }
4697
4754
 
4698
4755
  // src/components/icons/pause/index.tsx
4699
- import { jsx as jsx107, jsxs as jsxs79 } from "react/jsx-runtime";
4700
- function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4756
+ import { jsx as jsx108, jsxs as jsxs79 } from "react/jsx-runtime";
4757
+ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4701
4758
  return /* @__PURE__ */ jsxs79(
4702
4759
  "svg",
4703
4760
  {
@@ -4710,19 +4767,19 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4710
4767
  strokeWidth,
4711
4768
  strokeLinecap: "round",
4712
4769
  strokeLinejoin: "round",
4713
- "aria-hidden": "true",
4770
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4714
4771
  ...rest,
4715
4772
  children: [
4716
- /* @__PURE__ */ jsx107("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
4717
- /* @__PURE__ */ jsx107("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
4773
+ /* @__PURE__ */ jsx108("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
4774
+ /* @__PURE__ */ jsx108("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
4718
4775
  ]
4719
4776
  }
4720
4777
  );
4721
4778
  }
4722
4779
 
4723
4780
  // src/components/icons/pencil/index.tsx
4724
- import { jsx as jsx108, jsxs as jsxs80 } from "react/jsx-runtime";
4725
- function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4781
+ import { jsx as jsx109, jsxs as jsxs80 } from "react/jsx-runtime";
4782
+ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4726
4783
  return /* @__PURE__ */ jsxs80(
4727
4784
  "svg",
4728
4785
  {
@@ -4735,20 +4792,20 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4735
4792
  strokeWidth,
4736
4793
  strokeLinecap: "round",
4737
4794
  strokeLinejoin: "round",
4738
- "aria-hidden": "true",
4795
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4739
4796
  ...rest,
4740
4797
  children: [
4741
- /* @__PURE__ */ jsx108("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
4742
- /* @__PURE__ */ jsx108("path", { d: "m15 5 4 4" })
4798
+ /* @__PURE__ */ jsx109("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
4799
+ /* @__PURE__ */ jsx109("path", { d: "m15 5 4 4" })
4743
4800
  ]
4744
4801
  }
4745
4802
  );
4746
4803
  }
4747
4804
 
4748
4805
  // src/components/icons/phone/index.tsx
4749
- import { jsx as jsx109 } from "react/jsx-runtime";
4750
- function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4751
- return /* @__PURE__ */ jsx109(
4806
+ import { jsx as jsx110 } from "react/jsx-runtime";
4807
+ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4808
+ return /* @__PURE__ */ jsx110(
4752
4809
  "svg",
4753
4810
  {
4754
4811
  xmlns: "http://www.w3.org/2000/svg",
@@ -4760,17 +4817,17 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4760
4817
  strokeWidth,
4761
4818
  strokeLinecap: "round",
4762
4819
  strokeLinejoin: "round",
4763
- "aria-hidden": "true",
4820
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4764
4821
  ...rest,
4765
- children: /* @__PURE__ */ jsx109("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" })
4822
+ children: /* @__PURE__ */ jsx110("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" })
4766
4823
  }
4767
4824
  );
4768
4825
  }
4769
4826
 
4770
4827
  // src/components/icons/play/index.tsx
4771
- import { jsx as jsx110 } from "react/jsx-runtime";
4772
- function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4773
- return /* @__PURE__ */ jsx110(
4828
+ import { jsx as jsx111 } from "react/jsx-runtime";
4829
+ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4830
+ return /* @__PURE__ */ jsx111(
4774
4831
  "svg",
4775
4832
  {
4776
4833
  xmlns: "http://www.w3.org/2000/svg",
@@ -4782,16 +4839,16 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4782
4839
  strokeWidth,
4783
4840
  strokeLinecap: "round",
4784
4841
  strokeLinejoin: "round",
4785
- "aria-hidden": "true",
4842
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4786
4843
  ...rest,
4787
- children: /* @__PURE__ */ jsx110("polygon", { points: "6 3 20 12 6 21 6 3" })
4844
+ children: /* @__PURE__ */ jsx111("polygon", { points: "6 3 20 12 6 21 6 3" })
4788
4845
  }
4789
4846
  );
4790
4847
  }
4791
4848
 
4792
4849
  // src/components/icons/plus/index.tsx
4793
- import { jsx as jsx111, jsxs as jsxs81 } from "react/jsx-runtime";
4794
- function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4850
+ import { jsx as jsx112, jsxs as jsxs81 } from "react/jsx-runtime";
4851
+ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4795
4852
  return /* @__PURE__ */ jsxs81(
4796
4853
  "svg",
4797
4854
  {
@@ -4804,19 +4861,19 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4804
4861
  strokeWidth,
4805
4862
  strokeLinecap: "round",
4806
4863
  strokeLinejoin: "round",
4807
- "aria-hidden": "true",
4864
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4808
4865
  ...rest,
4809
4866
  children: [
4810
- /* @__PURE__ */ jsx111("path", { d: "M5 12h14" }),
4811
- /* @__PURE__ */ jsx111("path", { d: "M12 5v14" })
4867
+ /* @__PURE__ */ jsx112("path", { d: "M5 12h14" }),
4868
+ /* @__PURE__ */ jsx112("path", { d: "M12 5v14" })
4812
4869
  ]
4813
4870
  }
4814
4871
  );
4815
4872
  }
4816
4873
 
4817
4874
  // src/components/icons/printer/index.tsx
4818
- import { jsx as jsx112, jsxs as jsxs82 } from "react/jsx-runtime";
4819
- function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4875
+ import { jsx as jsx113, jsxs as jsxs82 } from "react/jsx-runtime";
4876
+ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4820
4877
  return /* @__PURE__ */ jsxs82(
4821
4878
  "svg",
4822
4879
  {
@@ -4829,20 +4886,20 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4829
4886
  strokeWidth,
4830
4887
  strokeLinecap: "round",
4831
4888
  strokeLinejoin: "round",
4832
- "aria-hidden": "true",
4889
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4833
4890
  ...rest,
4834
4891
  children: [
4835
- /* @__PURE__ */ jsx112("polyline", { points: "6 9 6 2 18 2 18 9" }),
4836
- /* @__PURE__ */ jsx112("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" }),
4837
- /* @__PURE__ */ jsx112("rect", { width: "12", height: "8", x: "6", y: "14" })
4892
+ /* @__PURE__ */ jsx113("polyline", { points: "6 9 6 2 18 2 18 9" }),
4893
+ /* @__PURE__ */ jsx113("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" }),
4894
+ /* @__PURE__ */ jsx113("rect", { width: "12", height: "8", x: "6", y: "14" })
4838
4895
  ]
4839
4896
  }
4840
4897
  );
4841
4898
  }
4842
4899
 
4843
4900
  // src/components/icons/redo/index.tsx
4844
- import { jsx as jsx113, jsxs as jsxs83 } from "react/jsx-runtime";
4845
- function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4901
+ import { jsx as jsx114, jsxs as jsxs83 } from "react/jsx-runtime";
4902
+ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4846
4903
  return /* @__PURE__ */ jsxs83(
4847
4904
  "svg",
4848
4905
  {
@@ -4855,19 +4912,19 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4855
4912
  strokeWidth,
4856
4913
  strokeLinecap: "round",
4857
4914
  strokeLinejoin: "round",
4858
- "aria-hidden": "true",
4915
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4859
4916
  ...rest,
4860
4917
  children: [
4861
- /* @__PURE__ */ jsx113("path", { d: "M21 7v6h-6" }),
4862
- /* @__PURE__ */ jsx113("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
4918
+ /* @__PURE__ */ jsx114("path", { d: "M21 7v6h-6" }),
4919
+ /* @__PURE__ */ jsx114("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
4863
4920
  ]
4864
4921
  }
4865
4922
  );
4866
4923
  }
4867
4924
 
4868
4925
  // src/components/icons/refresh-cw/index.tsx
4869
- import { jsx as jsx114, jsxs as jsxs84 } from "react/jsx-runtime";
4870
- function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4926
+ import { jsx as jsx115, jsxs as jsxs84 } from "react/jsx-runtime";
4927
+ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4871
4928
  return /* @__PURE__ */ jsxs84(
4872
4929
  "svg",
4873
4930
  {
@@ -4880,21 +4937,21 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4880
4937
  strokeWidth,
4881
4938
  strokeLinecap: "round",
4882
4939
  strokeLinejoin: "round",
4883
- "aria-hidden": "true",
4940
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4884
4941
  ...rest,
4885
4942
  children: [
4886
- /* @__PURE__ */ jsx114("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
4887
- /* @__PURE__ */ jsx114("path", { d: "M21 3v5h-5" }),
4888
- /* @__PURE__ */ jsx114("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
4889
- /* @__PURE__ */ jsx114("path", { d: "M3 21v-5h5" })
4943
+ /* @__PURE__ */ jsx115("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
4944
+ /* @__PURE__ */ jsx115("path", { d: "M21 3v5h-5" }),
4945
+ /* @__PURE__ */ jsx115("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
4946
+ /* @__PURE__ */ jsx115("path", { d: "M3 21v-5h5" })
4890
4947
  ]
4891
4948
  }
4892
4949
  );
4893
4950
  }
4894
4951
 
4895
4952
  // src/components/icons/save/index.tsx
4896
- import { jsx as jsx115, jsxs as jsxs85 } from "react/jsx-runtime";
4897
- function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4953
+ import { jsx as jsx116, jsxs as jsxs85 } from "react/jsx-runtime";
4954
+ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4898
4955
  return /* @__PURE__ */ jsxs85(
4899
4956
  "svg",
4900
4957
  {
@@ -4907,20 +4964,20 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4907
4964
  strokeWidth,
4908
4965
  strokeLinecap: "round",
4909
4966
  strokeLinejoin: "round",
4910
- "aria-hidden": "true",
4967
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4911
4968
  ...rest,
4912
4969
  children: [
4913
- /* @__PURE__ */ jsx115("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" }),
4914
- /* @__PURE__ */ jsx115("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
4915
- /* @__PURE__ */ jsx115("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
4970
+ /* @__PURE__ */ jsx116("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" }),
4971
+ /* @__PURE__ */ jsx116("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
4972
+ /* @__PURE__ */ jsx116("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
4916
4973
  ]
4917
4974
  }
4918
4975
  );
4919
4976
  }
4920
4977
 
4921
4978
  // src/components/icons/search/index.tsx
4922
- import { jsx as jsx116, jsxs as jsxs86 } from "react/jsx-runtime";
4923
- function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4979
+ import { jsx as jsx117, jsxs as jsxs86 } from "react/jsx-runtime";
4980
+ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4924
4981
  return /* @__PURE__ */ jsxs86(
4925
4982
  "svg",
4926
4983
  {
@@ -4933,19 +4990,19 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4933
4990
  strokeWidth,
4934
4991
  strokeLinecap: "round",
4935
4992
  strokeLinejoin: "round",
4936
- "aria-hidden": "true",
4993
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4937
4994
  ...rest,
4938
4995
  children: [
4939
- /* @__PURE__ */ jsx116("circle", { cx: "11", cy: "11", r: "8" }),
4940
- /* @__PURE__ */ jsx116("path", { d: "m21 21-4.3-4.3" })
4996
+ /* @__PURE__ */ jsx117("circle", { cx: "11", cy: "11", r: "8" }),
4997
+ /* @__PURE__ */ jsx117("path", { d: "m21 21-4.3-4.3" })
4941
4998
  ]
4942
4999
  }
4943
5000
  );
4944
5001
  }
4945
5002
 
4946
5003
  // src/components/icons/send/index.tsx
4947
- import { jsx as jsx117, jsxs as jsxs87 } from "react/jsx-runtime";
4948
- function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5004
+ import { jsx as jsx118, jsxs as jsxs87 } from "react/jsx-runtime";
5005
+ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4949
5006
  return /* @__PURE__ */ jsxs87(
4950
5007
  "svg",
4951
5008
  {
@@ -4958,19 +5015,19 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4958
5015
  strokeWidth,
4959
5016
  strokeLinecap: "round",
4960
5017
  strokeLinejoin: "round",
4961
- "aria-hidden": "true",
5018
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4962
5019
  ...rest,
4963
5020
  children: [
4964
- /* @__PURE__ */ jsx117("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
4965
- /* @__PURE__ */ jsx117("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
5021
+ /* @__PURE__ */ jsx118("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
5022
+ /* @__PURE__ */ jsx118("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
4966
5023
  ]
4967
5024
  }
4968
5025
  );
4969
5026
  }
4970
5027
 
4971
5028
  // src/components/icons/settings/index.tsx
4972
- import { jsx as jsx118, jsxs as jsxs88 } from "react/jsx-runtime";
4973
- function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5029
+ import { jsx as jsx119, jsxs as jsxs88 } from "react/jsx-runtime";
5030
+ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4974
5031
  return /* @__PURE__ */ jsxs88(
4975
5032
  "svg",
4976
5033
  {
@@ -4983,19 +5040,19 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4983
5040
  strokeWidth,
4984
5041
  strokeLinecap: "round",
4985
5042
  strokeLinejoin: "round",
4986
- "aria-hidden": "true",
5043
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4987
5044
  ...rest,
4988
5045
  children: [
4989
- /* @__PURE__ */ jsx118("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" }),
4990
- /* @__PURE__ */ jsx118("circle", { cx: "12", cy: "12", r: "3" })
5046
+ /* @__PURE__ */ jsx119("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" }),
5047
+ /* @__PURE__ */ jsx119("circle", { cx: "12", cy: "12", r: "3" })
4991
5048
  ]
4992
5049
  }
4993
5050
  );
4994
5051
  }
4995
5052
 
4996
5053
  // src/components/icons/share/index.tsx
4997
- import { jsx as jsx119, jsxs as jsxs89 } from "react/jsx-runtime";
4998
- function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5054
+ import { jsx as jsx120, jsxs as jsxs89 } from "react/jsx-runtime";
5055
+ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4999
5056
  return /* @__PURE__ */ jsxs89(
5000
5057
  "svg",
5001
5058
  {
@@ -5008,21 +5065,21 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5008
5065
  strokeWidth,
5009
5066
  strokeLinecap: "round",
5010
5067
  strokeLinejoin: "round",
5011
- "aria-hidden": "true",
5068
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5012
5069
  ...rest,
5013
5070
  children: [
5014
- /* @__PURE__ */ jsx119("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
5015
- /* @__PURE__ */ jsx119("polyline", { points: "16 6 12 2 8 6" }),
5016
- /* @__PURE__ */ jsx119("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
5071
+ /* @__PURE__ */ jsx120("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
5072
+ /* @__PURE__ */ jsx120("polyline", { points: "16 6 12 2 8 6" }),
5073
+ /* @__PURE__ */ jsx120("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
5017
5074
  ]
5018
5075
  }
5019
5076
  );
5020
5077
  }
5021
5078
 
5022
5079
  // src/components/icons/shield/index.tsx
5023
- import { jsx as jsx120 } from "react/jsx-runtime";
5024
- function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5025
- return /* @__PURE__ */ jsx120(
5080
+ import { jsx as jsx121 } from "react/jsx-runtime";
5081
+ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5082
+ return /* @__PURE__ */ jsx121(
5026
5083
  "svg",
5027
5084
  {
5028
5085
  xmlns: "http://www.w3.org/2000/svg",
@@ -5034,16 +5091,16 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5034
5091
  strokeWidth,
5035
5092
  strokeLinecap: "round",
5036
5093
  strokeLinejoin: "round",
5037
- "aria-hidden": "true",
5094
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5038
5095
  ...rest,
5039
- children: /* @__PURE__ */ jsx120("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" })
5096
+ children: /* @__PURE__ */ jsx121("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" })
5040
5097
  }
5041
5098
  );
5042
5099
  }
5043
5100
 
5044
5101
  // src/components/icons/shield-check/index.tsx
5045
- import { jsx as jsx121, jsxs as jsxs90 } from "react/jsx-runtime";
5046
- function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5102
+ import { jsx as jsx122, jsxs as jsxs90 } from "react/jsx-runtime";
5103
+ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5047
5104
  return /* @__PURE__ */ jsxs90(
5048
5105
  "svg",
5049
5106
  {
@@ -5056,19 +5113,19 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5056
5113
  strokeWidth,
5057
5114
  strokeLinecap: "round",
5058
5115
  strokeLinejoin: "round",
5059
- "aria-hidden": "true",
5116
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5060
5117
  ...rest,
5061
5118
  children: [
5062
- /* @__PURE__ */ jsx121("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" }),
5063
- /* @__PURE__ */ jsx121("path", { d: "m9 12 2 2 4-4" })
5119
+ /* @__PURE__ */ jsx122("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" }),
5120
+ /* @__PURE__ */ jsx122("path", { d: "m9 12 2 2 4-4" })
5064
5121
  ]
5065
5122
  }
5066
5123
  );
5067
5124
  }
5068
5125
 
5069
5126
  // src/components/icons/shopping-bag/index.tsx
5070
- import { jsx as jsx122, jsxs as jsxs91 } from "react/jsx-runtime";
5071
- function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5127
+ import { jsx as jsx123, jsxs as jsxs91 } from "react/jsx-runtime";
5128
+ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5072
5129
  return /* @__PURE__ */ jsxs91(
5073
5130
  "svg",
5074
5131
  {
@@ -5081,20 +5138,20 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5081
5138
  strokeWidth,
5082
5139
  strokeLinecap: "round",
5083
5140
  strokeLinejoin: "round",
5084
- "aria-hidden": "true",
5141
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5085
5142
  ...rest,
5086
5143
  children: [
5087
- /* @__PURE__ */ jsx122("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
5088
- /* @__PURE__ */ jsx122("path", { d: "M3 6h18" }),
5089
- /* @__PURE__ */ jsx122("path", { d: "M16 10a4 4 0 0 1-8 0" })
5144
+ /* @__PURE__ */ jsx123("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
5145
+ /* @__PURE__ */ jsx123("path", { d: "M3 6h18" }),
5146
+ /* @__PURE__ */ jsx123("path", { d: "M16 10a4 4 0 0 1-8 0" })
5090
5147
  ]
5091
5148
  }
5092
5149
  );
5093
5150
  }
5094
5151
 
5095
5152
  // src/components/icons/shopping-cart/index.tsx
5096
- import { jsx as jsx123, jsxs as jsxs92 } from "react/jsx-runtime";
5097
- function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5153
+ import { jsx as jsx124, jsxs as jsxs92 } from "react/jsx-runtime";
5154
+ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5098
5155
  return /* @__PURE__ */ jsxs92(
5099
5156
  "svg",
5100
5157
  {
@@ -5107,20 +5164,20 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5107
5164
  strokeWidth,
5108
5165
  strokeLinecap: "round",
5109
5166
  strokeLinejoin: "round",
5110
- "aria-hidden": "true",
5167
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5111
5168
  ...rest,
5112
5169
  children: [
5113
- /* @__PURE__ */ jsx123("circle", { cx: "8", cy: "21", r: "1" }),
5114
- /* @__PURE__ */ jsx123("circle", { cx: "19", cy: "21", r: "1" }),
5115
- /* @__PURE__ */ jsx123("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" })
5170
+ /* @__PURE__ */ jsx124("circle", { cx: "8", cy: "21", r: "1" }),
5171
+ /* @__PURE__ */ jsx124("circle", { cx: "19", cy: "21", r: "1" }),
5172
+ /* @__PURE__ */ jsx124("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" })
5116
5173
  ]
5117
5174
  }
5118
5175
  );
5119
5176
  }
5120
5177
 
5121
5178
  // src/components/icons/sidebar/index.tsx
5122
- import { jsx as jsx124, jsxs as jsxs93 } from "react/jsx-runtime";
5123
- function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5179
+ import { jsx as jsx125, jsxs as jsxs93 } from "react/jsx-runtime";
5180
+ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5124
5181
  return /* @__PURE__ */ jsxs93(
5125
5182
  "svg",
5126
5183
  {
@@ -5133,19 +5190,19 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5133
5190
  strokeWidth,
5134
5191
  strokeLinecap: "round",
5135
5192
  strokeLinejoin: "round",
5136
- "aria-hidden": "true",
5193
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5137
5194
  ...rest,
5138
5195
  children: [
5139
- /* @__PURE__ */ jsx124("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
5140
- /* @__PURE__ */ jsx124("path", { d: "M9 3v18" })
5196
+ /* @__PURE__ */ jsx125("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
5197
+ /* @__PURE__ */ jsx125("path", { d: "M9 3v18" })
5141
5198
  ]
5142
5199
  }
5143
5200
  );
5144
5201
  }
5145
5202
 
5146
5203
  // src/components/icons/skip-back/index.tsx
5147
- import { jsx as jsx125, jsxs as jsxs94 } from "react/jsx-runtime";
5148
- function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5204
+ import { jsx as jsx126, jsxs as jsxs94 } from "react/jsx-runtime";
5205
+ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5149
5206
  return /* @__PURE__ */ jsxs94(
5150
5207
  "svg",
5151
5208
  {
@@ -5158,19 +5215,19 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5158
5215
  strokeWidth,
5159
5216
  strokeLinecap: "round",
5160
5217
  strokeLinejoin: "round",
5161
- "aria-hidden": "true",
5218
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5162
5219
  ...rest,
5163
5220
  children: [
5164
- /* @__PURE__ */ jsx125("polygon", { points: "19 20 9 12 19 4 19 20" }),
5165
- /* @__PURE__ */ jsx125("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
5221
+ /* @__PURE__ */ jsx126("polygon", { points: "19 20 9 12 19 4 19 20" }),
5222
+ /* @__PURE__ */ jsx126("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
5166
5223
  ]
5167
5224
  }
5168
5225
  );
5169
5226
  }
5170
5227
 
5171
5228
  // src/components/icons/skip-forward/index.tsx
5172
- import { jsx as jsx126, jsxs as jsxs95 } from "react/jsx-runtime";
5173
- function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5229
+ import { jsx as jsx127, jsxs as jsxs95 } from "react/jsx-runtime";
5230
+ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5174
5231
  return /* @__PURE__ */ jsxs95(
5175
5232
  "svg",
5176
5233
  {
@@ -5183,19 +5240,19 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5183
5240
  strokeWidth,
5184
5241
  strokeLinecap: "round",
5185
5242
  strokeLinejoin: "round",
5186
- "aria-hidden": "true",
5243
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5187
5244
  ...rest,
5188
5245
  children: [
5189
- /* @__PURE__ */ jsx126("polygon", { points: "5 4 15 12 5 20 5 4" }),
5190
- /* @__PURE__ */ jsx126("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
5246
+ /* @__PURE__ */ jsx127("polygon", { points: "5 4 15 12 5 20 5 4" }),
5247
+ /* @__PURE__ */ jsx127("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
5191
5248
  ]
5192
5249
  }
5193
5250
  );
5194
5251
  }
5195
5252
 
5196
5253
  // src/components/icons/sliders/index.tsx
5197
- import { jsx as jsx127, jsxs as jsxs96 } from "react/jsx-runtime";
5198
- function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5254
+ import { jsx as jsx128, jsxs as jsxs96 } from "react/jsx-runtime";
5255
+ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5199
5256
  return /* @__PURE__ */ jsxs96(
5200
5257
  "svg",
5201
5258
  {
@@ -5208,26 +5265,26 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5208
5265
  strokeWidth,
5209
5266
  strokeLinecap: "round",
5210
5267
  strokeLinejoin: "round",
5211
- "aria-hidden": "true",
5268
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5212
5269
  ...rest,
5213
5270
  children: [
5214
- /* @__PURE__ */ jsx127("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
5215
- /* @__PURE__ */ jsx127("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
5216
- /* @__PURE__ */ jsx127("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
5217
- /* @__PURE__ */ jsx127("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
5218
- /* @__PURE__ */ jsx127("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
5219
- /* @__PURE__ */ jsx127("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
5220
- /* @__PURE__ */ jsx127("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
5221
- /* @__PURE__ */ jsx127("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
5222
- /* @__PURE__ */ jsx127("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
5271
+ /* @__PURE__ */ jsx128("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
5272
+ /* @__PURE__ */ jsx128("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
5273
+ /* @__PURE__ */ jsx128("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
5274
+ /* @__PURE__ */ jsx128("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
5275
+ /* @__PURE__ */ jsx128("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
5276
+ /* @__PURE__ */ jsx128("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
5277
+ /* @__PURE__ */ jsx128("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
5278
+ /* @__PURE__ */ jsx128("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
5279
+ /* @__PURE__ */ jsx128("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
5223
5280
  ]
5224
5281
  }
5225
5282
  );
5226
5283
  }
5227
5284
 
5228
5285
  // src/components/icons/smile/index.tsx
5229
- import { jsx as jsx128, jsxs as jsxs97 } from "react/jsx-runtime";
5230
- function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5286
+ import { jsx as jsx129, jsxs as jsxs97 } from "react/jsx-runtime";
5287
+ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5231
5288
  return /* @__PURE__ */ jsxs97(
5232
5289
  "svg",
5233
5290
  {
@@ -5240,22 +5297,22 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5240
5297
  strokeWidth,
5241
5298
  strokeLinecap: "round",
5242
5299
  strokeLinejoin: "round",
5243
- "aria-hidden": "true",
5300
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5244
5301
  ...rest,
5245
5302
  children: [
5246
- /* @__PURE__ */ jsx128("circle", { cx: "12", cy: "12", r: "10" }),
5247
- /* @__PURE__ */ jsx128("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
5248
- /* @__PURE__ */ jsx128("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
5249
- /* @__PURE__ */ jsx128("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
5303
+ /* @__PURE__ */ jsx129("circle", { cx: "12", cy: "12", r: "10" }),
5304
+ /* @__PURE__ */ jsx129("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
5305
+ /* @__PURE__ */ jsx129("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
5306
+ /* @__PURE__ */ jsx129("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
5250
5307
  ]
5251
5308
  }
5252
5309
  );
5253
5310
  }
5254
5311
 
5255
5312
  // src/components/icons/star/index.tsx
5256
- import { jsx as jsx129 } from "react/jsx-runtime";
5257
- function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5258
- return /* @__PURE__ */ jsx129(
5313
+ import { jsx as jsx130 } from "react/jsx-runtime";
5314
+ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5315
+ return /* @__PURE__ */ jsx130(
5259
5316
  "svg",
5260
5317
  {
5261
5318
  xmlns: "http://www.w3.org/2000/svg",
@@ -5267,16 +5324,16 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5267
5324
  strokeWidth,
5268
5325
  strokeLinecap: "round",
5269
5326
  strokeLinejoin: "round",
5270
- "aria-hidden": "true",
5327
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5271
5328
  ...rest,
5272
- children: /* @__PURE__ */ jsx129("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" })
5329
+ children: /* @__PURE__ */ jsx130("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" })
5273
5330
  }
5274
5331
  );
5275
5332
  }
5276
5333
 
5277
5334
  // src/components/icons/sun/index.tsx
5278
- import { jsx as jsx130, jsxs as jsxs98 } from "react/jsx-runtime";
5279
- function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5335
+ import { jsx as jsx131, jsxs as jsxs98 } from "react/jsx-runtime";
5336
+ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5280
5337
  return /* @__PURE__ */ jsxs98(
5281
5338
  "svg",
5282
5339
  {
@@ -5289,26 +5346,26 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5289
5346
  strokeWidth,
5290
5347
  strokeLinecap: "round",
5291
5348
  strokeLinejoin: "round",
5292
- "aria-hidden": "true",
5349
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5293
5350
  ...rest,
5294
5351
  children: [
5295
- /* @__PURE__ */ jsx130("circle", { cx: "12", cy: "12", r: "4" }),
5296
- /* @__PURE__ */ jsx130("path", { d: "M12 2v2" }),
5297
- /* @__PURE__ */ jsx130("path", { d: "M12 20v2" }),
5298
- /* @__PURE__ */ jsx130("path", { d: "m4.93 4.93 1.41 1.41" }),
5299
- /* @__PURE__ */ jsx130("path", { d: "m17.66 17.66 1.41 1.41" }),
5300
- /* @__PURE__ */ jsx130("path", { d: "M2 12h2" }),
5301
- /* @__PURE__ */ jsx130("path", { d: "M20 12h2" }),
5302
- /* @__PURE__ */ jsx130("path", { d: "m6.34 17.66-1.41 1.41" }),
5303
- /* @__PURE__ */ jsx130("path", { d: "m19.07 4.93-1.41 1.41" })
5352
+ /* @__PURE__ */ jsx131("circle", { cx: "12", cy: "12", r: "4" }),
5353
+ /* @__PURE__ */ jsx131("path", { d: "M12 2v2" }),
5354
+ /* @__PURE__ */ jsx131("path", { d: "M12 20v2" }),
5355
+ /* @__PURE__ */ jsx131("path", { d: "m4.93 4.93 1.41 1.41" }),
5356
+ /* @__PURE__ */ jsx131("path", { d: "m17.66 17.66 1.41 1.41" }),
5357
+ /* @__PURE__ */ jsx131("path", { d: "M2 12h2" }),
5358
+ /* @__PURE__ */ jsx131("path", { d: "M20 12h2" }),
5359
+ /* @__PURE__ */ jsx131("path", { d: "m6.34 17.66-1.41 1.41" }),
5360
+ /* @__PURE__ */ jsx131("path", { d: "m19.07 4.93-1.41 1.41" })
5304
5361
  ]
5305
5362
  }
5306
5363
  );
5307
5364
  }
5308
5365
 
5309
5366
  // src/components/icons/tag/index.tsx
5310
- import { jsx as jsx131, jsxs as jsxs99 } from "react/jsx-runtime";
5311
- function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5367
+ import { jsx as jsx132, jsxs as jsxs99 } from "react/jsx-runtime";
5368
+ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5312
5369
  return /* @__PURE__ */ jsxs99(
5313
5370
  "svg",
5314
5371
  {
@@ -5321,19 +5378,19 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5321
5378
  strokeWidth,
5322
5379
  strokeLinecap: "round",
5323
5380
  strokeLinejoin: "round",
5324
- "aria-hidden": "true",
5381
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5325
5382
  ...rest,
5326
5383
  children: [
5327
- /* @__PURE__ */ jsx131("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" }),
5328
- /* @__PURE__ */ jsx131("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
5384
+ /* @__PURE__ */ jsx132("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" }),
5385
+ /* @__PURE__ */ jsx132("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
5329
5386
  ]
5330
5387
  }
5331
5388
  );
5332
5389
  }
5333
5390
 
5334
5391
  // src/components/icons/thumbs-down/index.tsx
5335
- import { jsx as jsx132, jsxs as jsxs100 } from "react/jsx-runtime";
5336
- function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5392
+ import { jsx as jsx133, jsxs as jsxs100 } from "react/jsx-runtime";
5393
+ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5337
5394
  return /* @__PURE__ */ jsxs100(
5338
5395
  "svg",
5339
5396
  {
@@ -5346,19 +5403,19 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5346
5403
  strokeWidth,
5347
5404
  strokeLinecap: "round",
5348
5405
  strokeLinejoin: "round",
5349
- "aria-hidden": "true",
5406
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5350
5407
  ...rest,
5351
5408
  children: [
5352
- /* @__PURE__ */ jsx132("path", { d: "M17 14V2" }),
5353
- /* @__PURE__ */ jsx132("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" })
5409
+ /* @__PURE__ */ jsx133("path", { d: "M17 14V2" }),
5410
+ /* @__PURE__ */ jsx133("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" })
5354
5411
  ]
5355
5412
  }
5356
5413
  );
5357
5414
  }
5358
5415
 
5359
5416
  // src/components/icons/thumbs-up/index.tsx
5360
- import { jsx as jsx133, jsxs as jsxs101 } from "react/jsx-runtime";
5361
- function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5417
+ import { jsx as jsx134, jsxs as jsxs101 } from "react/jsx-runtime";
5418
+ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5362
5419
  return /* @__PURE__ */ jsxs101(
5363
5420
  "svg",
5364
5421
  {
@@ -5371,19 +5428,19 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5371
5428
  strokeWidth,
5372
5429
  strokeLinecap: "round",
5373
5430
  strokeLinejoin: "round",
5374
- "aria-hidden": "true",
5431
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5375
5432
  ...rest,
5376
5433
  children: [
5377
- /* @__PURE__ */ jsx133("path", { d: "M7 10v12" }),
5378
- /* @__PURE__ */ jsx133("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" })
5434
+ /* @__PURE__ */ jsx134("path", { d: "M7 10v12" }),
5435
+ /* @__PURE__ */ jsx134("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" })
5379
5436
  ]
5380
5437
  }
5381
5438
  );
5382
5439
  }
5383
5440
 
5384
5441
  // src/components/icons/trash/index.tsx
5385
- import { jsx as jsx134, jsxs as jsxs102 } from "react/jsx-runtime";
5386
- function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5442
+ import { jsx as jsx135, jsxs as jsxs102 } from "react/jsx-runtime";
5443
+ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5387
5444
  return /* @__PURE__ */ jsxs102(
5388
5445
  "svg",
5389
5446
  {
@@ -5396,20 +5453,20 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5396
5453
  strokeWidth,
5397
5454
  strokeLinecap: "round",
5398
5455
  strokeLinejoin: "round",
5399
- "aria-hidden": "true",
5456
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5400
5457
  ...rest,
5401
5458
  children: [
5402
- /* @__PURE__ */ jsx134("path", { d: "M3 6h18" }),
5403
- /* @__PURE__ */ jsx134("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
5404
- /* @__PURE__ */ jsx134("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
5459
+ /* @__PURE__ */ jsx135("path", { d: "M3 6h18" }),
5460
+ /* @__PURE__ */ jsx135("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
5461
+ /* @__PURE__ */ jsx135("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
5405
5462
  ]
5406
5463
  }
5407
5464
  );
5408
5465
  }
5409
5466
 
5410
5467
  // src/components/icons/undo/index.tsx
5411
- import { jsx as jsx135, jsxs as jsxs103 } from "react/jsx-runtime";
5412
- function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5468
+ import { jsx as jsx136, jsxs as jsxs103 } from "react/jsx-runtime";
5469
+ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5413
5470
  return /* @__PURE__ */ jsxs103(
5414
5471
  "svg",
5415
5472
  {
@@ -5422,19 +5479,19 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5422
5479
  strokeWidth,
5423
5480
  strokeLinecap: "round",
5424
5481
  strokeLinejoin: "round",
5425
- "aria-hidden": "true",
5482
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5426
5483
  ...rest,
5427
5484
  children: [
5428
- /* @__PURE__ */ jsx135("path", { d: "M3 7v6h6" }),
5429
- /* @__PURE__ */ jsx135("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
5485
+ /* @__PURE__ */ jsx136("path", { d: "M3 7v6h6" }),
5486
+ /* @__PURE__ */ jsx136("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
5430
5487
  ]
5431
5488
  }
5432
5489
  );
5433
5490
  }
5434
5491
 
5435
5492
  // src/components/icons/unlock/index.tsx
5436
- import { jsx as jsx136, jsxs as jsxs104 } from "react/jsx-runtime";
5437
- function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5493
+ import { jsx as jsx137, jsxs as jsxs104 } from "react/jsx-runtime";
5494
+ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5438
5495
  return /* @__PURE__ */ jsxs104(
5439
5496
  "svg",
5440
5497
  {
@@ -5447,19 +5504,19 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5447
5504
  strokeWidth,
5448
5505
  strokeLinecap: "round",
5449
5506
  strokeLinejoin: "round",
5450
- "aria-hidden": "true",
5507
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5451
5508
  ...rest,
5452
5509
  children: [
5453
- /* @__PURE__ */ jsx136("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
5454
- /* @__PURE__ */ jsx136("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
5510
+ /* @__PURE__ */ jsx137("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
5511
+ /* @__PURE__ */ jsx137("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
5455
5512
  ]
5456
5513
  }
5457
5514
  );
5458
5515
  }
5459
5516
 
5460
5517
  // src/components/icons/upload/index.tsx
5461
- import { jsx as jsx137, jsxs as jsxs105 } from "react/jsx-runtime";
5462
- function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5518
+ import { jsx as jsx138, jsxs as jsxs105 } from "react/jsx-runtime";
5519
+ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5463
5520
  return /* @__PURE__ */ jsxs105(
5464
5521
  "svg",
5465
5522
  {
@@ -5472,20 +5529,20 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5472
5529
  strokeWidth,
5473
5530
  strokeLinecap: "round",
5474
5531
  strokeLinejoin: "round",
5475
- "aria-hidden": "true",
5532
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5476
5533
  ...rest,
5477
5534
  children: [
5478
- /* @__PURE__ */ jsx137("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
5479
- /* @__PURE__ */ jsx137("polyline", { points: "17 8 12 3 7 8" }),
5480
- /* @__PURE__ */ jsx137("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
5535
+ /* @__PURE__ */ jsx138("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
5536
+ /* @__PURE__ */ jsx138("polyline", { points: "17 8 12 3 7 8" }),
5537
+ /* @__PURE__ */ jsx138("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
5481
5538
  ]
5482
5539
  }
5483
5540
  );
5484
5541
  }
5485
5542
 
5486
5543
  // src/components/icons/user/index.tsx
5487
- import { jsx as jsx138, jsxs as jsxs106 } from "react/jsx-runtime";
5488
- function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5544
+ import { jsx as jsx139, jsxs as jsxs106 } from "react/jsx-runtime";
5545
+ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5489
5546
  return /* @__PURE__ */ jsxs106(
5490
5547
  "svg",
5491
5548
  {
@@ -5498,19 +5555,19 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5498
5555
  strokeWidth,
5499
5556
  strokeLinecap: "round",
5500
5557
  strokeLinejoin: "round",
5501
- "aria-hidden": "true",
5558
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5502
5559
  ...rest,
5503
5560
  children: [
5504
- /* @__PURE__ */ jsx138("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
5505
- /* @__PURE__ */ jsx138("circle", { cx: "12", cy: "7", r: "4" })
5561
+ /* @__PURE__ */ jsx139("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
5562
+ /* @__PURE__ */ jsx139("circle", { cx: "12", cy: "7", r: "4" })
5506
5563
  ]
5507
5564
  }
5508
5565
  );
5509
5566
  }
5510
5567
 
5511
5568
  // src/components/icons/user-check/index.tsx
5512
- import { jsx as jsx139, jsxs as jsxs107 } from "react/jsx-runtime";
5513
- function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5569
+ import { jsx as jsx140, jsxs as jsxs107 } from "react/jsx-runtime";
5570
+ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5514
5571
  return /* @__PURE__ */ jsxs107(
5515
5572
  "svg",
5516
5573
  {
@@ -5523,20 +5580,20 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5523
5580
  strokeWidth,
5524
5581
  strokeLinecap: "round",
5525
5582
  strokeLinejoin: "round",
5526
- "aria-hidden": "true",
5583
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5527
5584
  ...rest,
5528
5585
  children: [
5529
- /* @__PURE__ */ jsx139("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5530
- /* @__PURE__ */ jsx139("circle", { cx: "9", cy: "7", r: "4" }),
5531
- /* @__PURE__ */ jsx139("polyline", { points: "16 11 18 13 22 9" })
5586
+ /* @__PURE__ */ jsx140("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5587
+ /* @__PURE__ */ jsx140("circle", { cx: "9", cy: "7", r: "4" }),
5588
+ /* @__PURE__ */ jsx140("polyline", { points: "16 11 18 13 22 9" })
5532
5589
  ]
5533
5590
  }
5534
5591
  );
5535
5592
  }
5536
5593
 
5537
5594
  // src/components/icons/user-plus/index.tsx
5538
- import { jsx as jsx140, jsxs as jsxs108 } from "react/jsx-runtime";
5539
- function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5595
+ import { jsx as jsx141, jsxs as jsxs108 } from "react/jsx-runtime";
5596
+ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5540
5597
  return /* @__PURE__ */ jsxs108(
5541
5598
  "svg",
5542
5599
  {
@@ -5549,21 +5606,21 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5549
5606
  strokeWidth,
5550
5607
  strokeLinecap: "round",
5551
5608
  strokeLinejoin: "round",
5552
- "aria-hidden": "true",
5609
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5553
5610
  ...rest,
5554
5611
  children: [
5555
- /* @__PURE__ */ jsx140("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5556
- /* @__PURE__ */ jsx140("circle", { cx: "9", cy: "7", r: "4" }),
5557
- /* @__PURE__ */ jsx140("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
5558
- /* @__PURE__ */ jsx140("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
5612
+ /* @__PURE__ */ jsx141("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5613
+ /* @__PURE__ */ jsx141("circle", { cx: "9", cy: "7", r: "4" }),
5614
+ /* @__PURE__ */ jsx141("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
5615
+ /* @__PURE__ */ jsx141("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
5559
5616
  ]
5560
5617
  }
5561
5618
  );
5562
5619
  }
5563
5620
 
5564
5621
  // src/components/icons/users/index.tsx
5565
- import { jsx as jsx141, jsxs as jsxs109 } from "react/jsx-runtime";
5566
- function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5622
+ import { jsx as jsx142, jsxs as jsxs109 } from "react/jsx-runtime";
5623
+ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5567
5624
  return /* @__PURE__ */ jsxs109(
5568
5625
  "svg",
5569
5626
  {
@@ -5576,21 +5633,21 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5576
5633
  strokeWidth,
5577
5634
  strokeLinecap: "round",
5578
5635
  strokeLinejoin: "round",
5579
- "aria-hidden": "true",
5636
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5580
5637
  ...rest,
5581
5638
  children: [
5582
- /* @__PURE__ */ jsx141("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5583
- /* @__PURE__ */ jsx141("circle", { cx: "9", cy: "7", r: "4" }),
5584
- /* @__PURE__ */ jsx141("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
5585
- /* @__PURE__ */ jsx141("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
5639
+ /* @__PURE__ */ jsx142("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5640
+ /* @__PURE__ */ jsx142("circle", { cx: "9", cy: "7", r: "4" }),
5641
+ /* @__PURE__ */ jsx142("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
5642
+ /* @__PURE__ */ jsx142("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
5586
5643
  ]
5587
5644
  }
5588
5645
  );
5589
5646
  }
5590
5647
 
5591
5648
  // src/components/icons/volume-2/index.tsx
5592
- import { jsx as jsx142, jsxs as jsxs110 } from "react/jsx-runtime";
5593
- function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5649
+ import { jsx as jsx143, jsxs as jsxs110 } from "react/jsx-runtime";
5650
+ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5594
5651
  return /* @__PURE__ */ jsxs110(
5595
5652
  "svg",
5596
5653
  {
@@ -5603,20 +5660,20 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5603
5660
  strokeWidth,
5604
5661
  strokeLinecap: "round",
5605
5662
  strokeLinejoin: "round",
5606
- "aria-hidden": "true",
5663
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5607
5664
  ...rest,
5608
5665
  children: [
5609
- /* @__PURE__ */ jsx142("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5610
- /* @__PURE__ */ jsx142("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
5611
- /* @__PURE__ */ jsx142("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
5666
+ /* @__PURE__ */ jsx143("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5667
+ /* @__PURE__ */ jsx143("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
5668
+ /* @__PURE__ */ jsx143("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
5612
5669
  ]
5613
5670
  }
5614
5671
  );
5615
5672
  }
5616
5673
 
5617
5674
  // src/components/icons/volume-x/index.tsx
5618
- import { jsx as jsx143, jsxs as jsxs111 } from "react/jsx-runtime";
5619
- function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5675
+ import { jsx as jsx144, jsxs as jsxs111 } from "react/jsx-runtime";
5676
+ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5620
5677
  return /* @__PURE__ */ jsxs111(
5621
5678
  "svg",
5622
5679
  {
@@ -5629,20 +5686,20 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5629
5686
  strokeWidth,
5630
5687
  strokeLinecap: "round",
5631
5688
  strokeLinejoin: "round",
5632
- "aria-hidden": "true",
5689
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5633
5690
  ...rest,
5634
5691
  children: [
5635
- /* @__PURE__ */ jsx143("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5636
- /* @__PURE__ */ jsx143("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
5637
- /* @__PURE__ */ jsx143("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
5692
+ /* @__PURE__ */ jsx144("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5693
+ /* @__PURE__ */ jsx144("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
5694
+ /* @__PURE__ */ jsx144("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
5638
5695
  ]
5639
5696
  }
5640
5697
  );
5641
5698
  }
5642
5699
 
5643
5700
  // src/components/icons/wifi/index.tsx
5644
- import { jsx as jsx144, jsxs as jsxs112 } from "react/jsx-runtime";
5645
- function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5701
+ import { jsx as jsx145, jsxs as jsxs112 } from "react/jsx-runtime";
5702
+ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5646
5703
  return /* @__PURE__ */ jsxs112(
5647
5704
  "svg",
5648
5705
  {
@@ -5655,22 +5712,22 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5655
5712
  strokeWidth,
5656
5713
  strokeLinecap: "round",
5657
5714
  strokeLinejoin: "round",
5658
- "aria-hidden": "true",
5715
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5659
5716
  ...rest,
5660
5717
  children: [
5661
- /* @__PURE__ */ jsx144("path", { d: "M12 20h.01" }),
5662
- /* @__PURE__ */ jsx144("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
5663
- /* @__PURE__ */ jsx144("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
5664
- /* @__PURE__ */ jsx144("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
5718
+ /* @__PURE__ */ jsx145("path", { d: "M12 20h.01" }),
5719
+ /* @__PURE__ */ jsx145("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
5720
+ /* @__PURE__ */ jsx145("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
5721
+ /* @__PURE__ */ jsx145("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
5665
5722
  ]
5666
5723
  }
5667
5724
  );
5668
5725
  }
5669
5726
 
5670
5727
  // src/components/icons/zap/index.tsx
5671
- import { jsx as jsx145 } from "react/jsx-runtime";
5672
- function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5673
- return /* @__PURE__ */ jsx145(
5728
+ import { jsx as jsx146 } from "react/jsx-runtime";
5729
+ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5730
+ return /* @__PURE__ */ jsx146(
5674
5731
  "svg",
5675
5732
  {
5676
5733
  xmlns: "http://www.w3.org/2000/svg",
@@ -5682,9 +5739,9 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5682
5739
  strokeWidth,
5683
5740
  strokeLinecap: "round",
5684
5741
  strokeLinejoin: "round",
5685
- "aria-hidden": "true",
5742
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5686
5743
  ...rest,
5687
- children: /* @__PURE__ */ jsx145("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
5744
+ children: /* @__PURE__ */ jsx146("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
5688
5745
  }
5689
5746
  );
5690
5747
  }
@@ -5730,6 +5787,7 @@ var iconCatalog = [
5730
5787
  { name: "FolderIcon", Icon: FolderIcon },
5731
5788
  { name: "FolderOpenIcon", Icon: FolderOpenIcon },
5732
5789
  { name: "GiftIcon", Icon: GiftIcon },
5790
+ { name: "GitHubIcon", Icon: GitHubIcon },
5733
5791
  { name: "GlobeIcon", Icon: GlobeIcon },
5734
5792
  { name: "GridIcon", Icon: GridIcon },
5735
5793
  { name: "HeartIcon", Icon: HeartIcon },
@@ -5855,6 +5913,7 @@ export {
5855
5913
  FolderIcon,
5856
5914
  FolderOpenIcon,
5857
5915
  GiftIcon,
5916
+ GitHubIcon,
5858
5917
  GlobeIcon,
5859
5918
  GridIcon,
5860
5919
  HeartIcon,