@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.cjs CHANGED
@@ -72,6 +72,7 @@ __export(index_exports, {
72
72
  FolderIcon: () => FolderIcon,
73
73
  FolderOpenIcon: () => FolderOpenIcon,
74
74
  GiftIcon: () => GiftIcon,
75
+ GitHubIcon: () => GitHubIcon,
75
76
  GlobeIcon: () => GlobeIcon,
76
77
  GridIcon: () => GridIcon,
77
78
  HeartIcon: () => HeartIcon,
@@ -843,10 +844,15 @@ function states(map) {
843
844
  var import_react12 = require("react");
844
845
 
845
846
  // src/components/button/use-styles.css.ts
846
- var full = "use-styles_full__1pbtill4";
847
+ var content = "use-styles_content__1pbtillg";
848
+ var contentHidden = "use-styles_contentHidden__1pbtillh";
849
+ var full = "use-styles_full__1pbtill5";
850
+ var loadingRoot = "use-styles_loadingRoot__1pbtill1";
847
851
  var root = "use-styles_root__1pbtill0";
848
- var size = { sm: "use-styles_size_sm__1pbtill1", md: "use-styles_size_md__1pbtill2", lg: "use-styles_size_lg__1pbtill3" };
849
- 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" };
852
+ var selected = "use-styles_selected__1pbtillf";
853
+ var size = { sm: "use-styles_size_sm__1pbtill2", md: "use-styles_size_md__1pbtill3", lg: "use-styles_size_lg__1pbtill4" };
854
+ var spinner = "use-styles_spinner__1pbtillj";
855
+ 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" };
850
856
 
851
857
  // src/components/button/use-styles.ts
852
858
  function toneKey(variant2, tone4) {
@@ -858,7 +864,9 @@ function useStyles4({
858
864
  tone: tone4 = "ink",
859
865
  size: size3 = "md",
860
866
  full: full2,
861
- className
867
+ className,
868
+ selected: selected4,
869
+ loading
862
870
  }) {
863
871
  const { themeClass } = useTheme();
864
872
  const container = (0, import_react12.useMemo)(
@@ -866,13 +874,19 @@ function useStyles4({
866
874
  themeClass,
867
875
  root,
868
876
  size[size3],
869
- tone[toneKey(variant2, tone4)],
877
+ // `selected` pisa el tono en vez de combinarse con él (ver comentario en use-styles.css.ts).
878
+ selected4 ? selected : tone[toneKey(variant2, tone4)],
870
879
  full2 && full,
880
+ loading && loadingRoot,
871
881
  className
872
882
  ].filter(Boolean).join(" "),
873
- [themeClass, variant2, tone4, size3, full2, className]
883
+ [themeClass, variant2, tone4, size3, full2, loading, selected4, className]
874
884
  );
875
- return { container };
885
+ return {
886
+ container,
887
+ content: loading ? contentHidden : content,
888
+ spinner
889
+ };
876
890
  }
877
891
 
878
892
  // src/components/button/index.tsx
@@ -888,12 +902,27 @@ var Button = (0, import_react13.forwardRef)(function Button2({
888
902
  className,
889
903
  type = "button",
890
904
  testId,
905
+ loading,
906
+ selected: selected4,
891
907
  children,
908
+ onClick,
892
909
  ...rest
893
910
  }, ref) {
894
- const { container } = useStyles4({ variant: variant2, tone: tone4, size: size3, full: full2, className });
895
- const { testId: dataTestId } = useTestId("button", testId);
911
+ const { container, content: content4, spinner: spinner3 } = useStyles4({
912
+ variant: variant2,
913
+ tone: tone4,
914
+ size: size3,
915
+ full: full2,
916
+ className,
917
+ selected: selected4,
918
+ loading
919
+ });
920
+ const { testId: dataTestId, slot } = useTestId("button", testId);
896
921
  const iconSize = ICON_SIZE[size3];
922
+ const handleClick = (event) => {
923
+ if (loading) return;
924
+ onClick?.(event);
925
+ };
897
926
  return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
898
927
  "button",
899
928
  {
@@ -901,12 +930,19 @@ var Button = (0, import_react13.forwardRef)(function Button2({
901
930
  type,
902
931
  className: container,
903
932
  "data-testid": dataTestId,
904
- "data-state": states({ disabled: rest.disabled }),
933
+ "data-state": states({ disabled: rest.disabled, loading, selected: selected4 }),
934
+ "aria-busy": loading || void 0,
935
+ "aria-disabled": loading || void 0,
936
+ "aria-pressed": selected4 === void 0 ? void 0 : selected4,
937
+ onClick: handleClick,
905
938
  ...rest,
906
939
  children: [
907
- StartIcon && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(StartIcon, { size: iconSize }),
908
- children,
909
- EndIcon && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(EndIcon, { size: iconSize })
940
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("span", { className: content4, children: [
941
+ StartIcon && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(StartIcon, { size: iconSize }),
942
+ children,
943
+ EndIcon && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(EndIcon, { size: iconSize })
944
+ ] }),
945
+ loading && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: spinner3, "aria-hidden": "true", "data-testid": slot("spinner") })
910
946
  ]
911
947
  }
912
948
  );
@@ -1040,7 +1076,7 @@ var import_react20 = require("react");
1040
1076
  // src/components/progress/use-styles.css.ts
1041
1077
  var bar = "use-styles_bar__kbop7v3";
1042
1078
  var indeterminate = "use-styles_indeterminate__kbop7v4";
1043
- var spinner = "use-styles_spinner__kbop7v5";
1079
+ var spinner2 = "use-styles_spinner__kbop7v5";
1044
1080
  var track = "use-styles_track__kbop7v2";
1045
1081
 
1046
1082
  // src/components/progress/use-styles.ts
@@ -1054,7 +1090,7 @@ function useStyles8({
1054
1090
  return (0, import_react20.useMemo)(() => {
1055
1091
  const root24 = (...classes) => [themeClass, ...classes, className].filter(Boolean).join(" ");
1056
1092
  if (variant2 === "circular") {
1057
- return { track: "", bar: "", spinner: root24(spinner) };
1093
+ return { track: "", bar: "", spinner: root24(spinner2) };
1058
1094
  }
1059
1095
  return {
1060
1096
  track: root24(track),
@@ -1067,7 +1103,7 @@ function useStyles8({
1067
1103
  // src/components/progress/index.tsx
1068
1104
  var import_jsx_runtime10 = require("react/jsx-runtime");
1069
1105
  var Progress = (0, import_react21.forwardRef)(function Progress2({ variant: variant2 = "linear", value, size: size3 = 20, className, testId, ...rest }, ref) {
1070
- const { track: track4, bar: bar2, spinner: spinner2 } = useStyles8({ variant: variant2, value, className });
1106
+ const { track: track4, bar: bar2, spinner: spinner3 } = useStyles8({ variant: variant2, value, className });
1071
1107
  const indeterminate2 = value === void 0;
1072
1108
  const { testId: dataTestId, slot } = useTestId("media", testId);
1073
1109
  if (variant2 === "circular") {
@@ -1075,7 +1111,7 @@ var Progress = (0, import_react21.forwardRef)(function Progress2({ variant: vari
1075
1111
  "span",
1076
1112
  {
1077
1113
  ref,
1078
- className: spinner2,
1114
+ className: spinner3,
1079
1115
  role: "progressbar",
1080
1116
  "aria-valuenow": indeterminate2 ? void 0 : value,
1081
1117
  "aria-valuemin": indeterminate2 ? void 0 : 0,
@@ -1116,7 +1152,7 @@ var import_react23 = require("react");
1116
1152
 
1117
1153
  // src/components/icons/x/index.tsx
1118
1154
  var import_jsx_runtime11 = require("react/jsx-runtime");
1119
- function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1155
+ function XIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1120
1156
  return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
1121
1157
  "svg",
1122
1158
  {
@@ -1129,7 +1165,7 @@ function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1129
1165
  strokeWidth,
1130
1166
  strokeLinecap: "round",
1131
1167
  strokeLinejoin: "round",
1132
- "aria-hidden": "true",
1168
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1133
1169
  ...rest,
1134
1170
  children: [
1135
1171
  /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "M18 6 6 18" }),
@@ -1146,12 +1182,12 @@ var import_react22 = require("react");
1146
1182
  var clickable = "use-styles_clickable__1axilf44";
1147
1183
  var deleteBtn = "use-styles_deleteBtn__1axilf45";
1148
1184
  var root5 = "use-styles_root__1axilf40";
1149
- var selected = "use-styles_selected__1axilf43";
1185
+ var selected2 = "use-styles_selected__1axilf43";
1150
1186
  var tone3 = { ink: "use-styles_tone_ink__1axilf41", accent: "use-styles_tone_accent__1axilf42" };
1151
1187
 
1152
1188
  // src/components/chip/use-styles.ts
1153
1189
  function useStyles9({
1154
- selected: selected3,
1190
+ selected: selected4,
1155
1191
  tone: tone4 = "ink",
1156
1192
  clickable: clickable2
1157
1193
  }) {
@@ -1160,10 +1196,10 @@ function useStyles9({
1160
1196
  () => [
1161
1197
  themeClass,
1162
1198
  root5,
1163
- selected3 ? selected : tone3[tone4],
1199
+ selected4 ? selected2 : tone3[tone4],
1164
1200
  clickable2 && clickable
1165
1201
  ].filter(Boolean).join(" "),
1166
- [themeClass, selected3, tone4, clickable2]
1202
+ [themeClass, selected4, tone4, clickable2]
1167
1203
  );
1168
1204
  return { root: root24, deleteBtn };
1169
1205
  }
@@ -1171,9 +1207,9 @@ function useStyles9({
1171
1207
  // src/components/chip/index.tsx
1172
1208
  var import_jsx_runtime12 = require("react/jsx-runtime");
1173
1209
  var ICON_SIZE2 = 13;
1174
- var Chip = (0, import_react23.forwardRef)(function Chip2({ selected: selected3, tone: tone4, onDelete, onClick, startIcon: StartIcon, children, testId, ...rest }, ref) {
1210
+ var Chip = (0, import_react23.forwardRef)(function Chip2({ selected: selected4, tone: tone4, onDelete, onClick, startIcon: StartIcon, children, testId, ...rest }, ref) {
1175
1211
  const clickable2 = Boolean(onClick);
1176
- const { root: root24, deleteBtn: deleteBtn2 } = useStyles9({ selected: selected3, tone: tone4, clickable: clickable2 });
1212
+ const { root: root24, deleteBtn: deleteBtn2 } = useStyles9({ selected: selected4, tone: tone4, clickable: clickable2 });
1177
1213
  const { testId: dataTestId, slot } = useTestId("media", testId);
1178
1214
  const handleDelete = (event) => {
1179
1215
  event.stopPropagation();
@@ -1186,7 +1222,7 @@ var Chip = (0, import_react23.forwardRef)(function Chip2({ selected: selected3,
1186
1222
  className: root24,
1187
1223
  onClick,
1188
1224
  "data-testid": dataTestId,
1189
- "data-state": states({ selected: selected3 }),
1225
+ "data-state": states({ selected: selected4 }),
1190
1226
  ...rest,
1191
1227
  children: [
1192
1228
  StartIcon ? /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(StartIcon, { size: ICON_SIZE2 }) : null,
@@ -1212,7 +1248,7 @@ var import_react25 = require("react");
1212
1248
 
1213
1249
  // src/components/icons/check/index.tsx
1214
1250
  var import_jsx_runtime13 = require("react/jsx-runtime");
1215
- function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1251
+ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1216
1252
  return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1217
1253
  "svg",
1218
1254
  {
@@ -1225,7 +1261,7 @@ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1225
1261
  strokeWidth,
1226
1262
  strokeLinecap: "round",
1227
1263
  strokeLinejoin: "round",
1228
- "aria-hidden": "true",
1264
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1229
1265
  ...rest,
1230
1266
  children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "M20 6 9 17l-5-5" })
1231
1267
  }
@@ -1556,7 +1592,7 @@ var import_react34 = require("react");
1556
1592
 
1557
1593
  // src/components/icons/eye/index.tsx
1558
1594
  var import_jsx_runtime19 = require("react/jsx-runtime");
1559
- function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1595
+ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1560
1596
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
1561
1597
  "svg",
1562
1598
  {
@@ -1569,7 +1605,7 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1569
1605
  strokeWidth,
1570
1606
  strokeLinecap: "round",
1571
1607
  strokeLinejoin: "round",
1572
- "aria-hidden": "true",
1608
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1573
1609
  ...rest,
1574
1610
  children: [
1575
1611
  /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }),
@@ -1581,7 +1617,7 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1581
1617
 
1582
1618
  // src/components/icons/eye-off/index.tsx
1583
1619
  var import_jsx_runtime20 = require("react/jsx-runtime");
1584
- function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1620
+ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1585
1621
  return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
1586
1622
  "svg",
1587
1623
  {
@@ -1594,7 +1630,7 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1594
1630
  strokeWidth,
1595
1631
  strokeLinecap: "round",
1596
1632
  strokeLinejoin: "round",
1597
- "aria-hidden": "true",
1633
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1598
1634
  ...rest,
1599
1635
  children: [
1600
1636
  /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
@@ -1839,7 +1875,7 @@ var import_react41 = require("react");
1839
1875
 
1840
1876
  // src/components/icons/circle-check/index.tsx
1841
1877
  var import_jsx_runtime25 = require("react/jsx-runtime");
1842
- function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1878
+ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1843
1879
  return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
1844
1880
  "svg",
1845
1881
  {
@@ -1852,7 +1888,7 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1852
1888
  strokeWidth,
1853
1889
  strokeLinecap: "round",
1854
1890
  strokeLinejoin: "round",
1855
- "aria-hidden": "true",
1891
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1856
1892
  ...rest,
1857
1893
  children: [
1858
1894
  /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
@@ -1864,7 +1900,7 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1864
1900
 
1865
1901
  // src/components/icons/circle-x/index.tsx
1866
1902
  var import_jsx_runtime26 = require("react/jsx-runtime");
1867
- function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1903
+ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1868
1904
  return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
1869
1905
  "svg",
1870
1906
  {
@@ -1877,7 +1913,7 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1877
1913
  strokeWidth,
1878
1914
  strokeLinecap: "round",
1879
1915
  strokeLinejoin: "round",
1880
- "aria-hidden": "true",
1916
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1881
1917
  ...rest,
1882
1918
  children: [
1883
1919
  /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
@@ -1890,7 +1926,7 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1890
1926
 
1891
1927
  // src/components/icons/info/index.tsx
1892
1928
  var import_jsx_runtime27 = require("react/jsx-runtime");
1893
- function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1929
+ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1894
1930
  return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
1895
1931
  "svg",
1896
1932
  {
@@ -1903,7 +1939,7 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1903
1939
  strokeWidth,
1904
1940
  strokeLinecap: "round",
1905
1941
  strokeLinejoin: "round",
1906
- "aria-hidden": "true",
1942
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1907
1943
  ...rest,
1908
1944
  children: [
1909
1945
  /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
@@ -1916,7 +1952,7 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1916
1952
 
1917
1953
  // src/components/icons/triangle-alert/index.tsx
1918
1954
  var import_jsx_runtime28 = require("react/jsx-runtime");
1919
- function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1955
+ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1920
1956
  return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
1921
1957
  "svg",
1922
1958
  {
@@ -1929,7 +1965,7 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1929
1965
  strokeWidth,
1930
1966
  strokeLinecap: "round",
1931
1967
  strokeLinejoin: "round",
1932
- "aria-hidden": "true",
1968
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1933
1969
  ...rest,
1934
1970
  children: [
1935
1971
  /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }),
@@ -1944,7 +1980,7 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1944
1980
  var import_react40 = require("react");
1945
1981
 
1946
1982
  // src/components/alert/use-styles.css.ts
1947
- var content = "use-styles_content__ivsh6u6";
1983
+ var content2 = "use-styles_content__ivsh6u6";
1948
1984
  var iconSlot = "use-styles_iconSlot__ivsh6u5";
1949
1985
  var root12 = "use-styles_root__ivsh6u0";
1950
1986
  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" };
@@ -1962,7 +1998,7 @@ function useStyles17({
1962
1998
  return {
1963
1999
  root: root24,
1964
2000
  iconSlot,
1965
- content
2001
+ content: content2
1966
2002
  };
1967
2003
  }
1968
2004
 
@@ -2106,7 +2142,7 @@ var import_react45 = require("react");
2106
2142
 
2107
2143
  // src/components/icons/chevron-down/index.tsx
2108
2144
  var import_jsx_runtime31 = require("react/jsx-runtime");
2109
- function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2145
+ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
2110
2146
  return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
2111
2147
  "svg",
2112
2148
  {
@@ -2119,7 +2155,7 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2119
2155
  strokeWidth,
2120
2156
  strokeLinecap: "round",
2121
2157
  strokeLinejoin: "round",
2122
- "aria-hidden": "true",
2158
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
2123
2159
  ...rest,
2124
2160
  children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "m6 9 6 6 6-6" })
2125
2161
  }
@@ -2155,7 +2191,7 @@ function useStyles19({
2155
2191
  placeholder,
2156
2192
  chevron: chevron3,
2157
2193
  menu,
2158
- optionClass: (selected3, active2) => [option, selected3 && optionSelected, active2 && optionActive].filter(Boolean).join(" ")
2194
+ optionClass: (selected4, active2) => [option, selected4 && optionSelected, active2 && optionActive].filter(Boolean).join(" ")
2159
2195
  };
2160
2196
  }, [themeClass, open]);
2161
2197
  }
@@ -2204,7 +2240,7 @@ var Select = (0, import_react45.forwardRef)(function Select2({
2204
2240
  document.addEventListener("mousedown", onPointerDown);
2205
2241
  return () => document.removeEventListener("mousedown", onPointerDown);
2206
2242
  }, [open]);
2207
- const selected3 = options.find((option2) => option2.value === value);
2243
+ const selected4 = options.find((option2) => option2.value === value);
2208
2244
  const selectAt = (index) => {
2209
2245
  const option2 = options[index];
2210
2246
  if (option2) onChange?.(option2.value);
@@ -2277,7 +2313,7 @@ var Select = (0, import_react45.forwardRef)(function Select2({
2277
2313
  },
2278
2314
  onKeyDown: handleKeyDown,
2279
2315
  children: [
2280
- selected3 ? selected3.label : /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: placeholderClass, children: placeholder2 }),
2316
+ selected4 ? selected4.label : /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: placeholderClass, children: placeholder2 }),
2281
2317
  /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: chevron3, children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(ChevronDownIcon, { size: 18 }) })
2282
2318
  ]
2283
2319
  }
@@ -2465,7 +2501,7 @@ var import_react51 = require("react");
2465
2501
 
2466
2502
  // src/components/icons/chevron-right/index.tsx
2467
2503
  var import_jsx_runtime35 = require("react/jsx-runtime");
2468
- function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2504
+ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
2469
2505
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2470
2506
  "svg",
2471
2507
  {
@@ -2478,7 +2514,7 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2478
2514
  strokeWidth,
2479
2515
  strokeLinecap: "round",
2480
2516
  strokeLinejoin: "round",
2481
- "aria-hidden": "true",
2517
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
2482
2518
  ...rest,
2483
2519
  children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "m9 18 6-6-6-6" })
2484
2520
  }
@@ -2524,7 +2560,7 @@ var import_react53 = require("react");
2524
2560
 
2525
2561
  // src/components/icons/chevron-left/index.tsx
2526
2562
  var import_jsx_runtime37 = require("react/jsx-runtime");
2527
- function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2563
+ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
2528
2564
  return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2529
2565
  "svg",
2530
2566
  {
@@ -2537,7 +2573,7 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2537
2573
  strokeWidth,
2538
2574
  strokeLinecap: "round",
2539
2575
  strokeLinejoin: "round",
2540
- "aria-hidden": "true",
2576
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
2541
2577
  ...rest,
2542
2578
  children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "m15 18-6-6 6-6" })
2543
2579
  }
@@ -3300,29 +3336,29 @@ var import_react69 = require("react");
3300
3336
  var import_react68 = require("react");
3301
3337
 
3302
3338
  // src/components/list-item/use-styles.css.ts
3303
- var content2 = "use-styles_content__kbreq13";
3339
+ var content3 = "use-styles_content__kbreq13";
3304
3340
  var leading = "use-styles_leading__kbreq12";
3305
3341
  var root23 = "use-styles_root__kbreq10";
3306
- var selected2 = "use-styles_selected__kbreq11";
3342
+ var selected3 = "use-styles_selected__kbreq11";
3307
3343
  var trailing = "use-styles_trailing__kbreq14";
3308
3344
 
3309
3345
  // src/components/list-item/use-styles.ts
3310
3346
  function useStyles31({
3311
- selected: selected3,
3347
+ selected: selected4,
3312
3348
  className
3313
3349
  }) {
3314
3350
  const { themeClass } = useTheme();
3315
3351
  const root24 = (0, import_react68.useMemo)(
3316
- () => [themeClass, root23, selected3 && selected2, className].filter(Boolean).join(" "),
3317
- [themeClass, selected3, className]
3352
+ () => [themeClass, root23, selected4 && selected3, className].filter(Boolean).join(" "),
3353
+ [themeClass, selected4, className]
3318
3354
  );
3319
- return { root: root24, leading, content: content2, trailing };
3355
+ return { root: root24, leading, content: content3, trailing };
3320
3356
  }
3321
3357
 
3322
3358
  // src/components/list-item/index.tsx
3323
3359
  var import_jsx_runtime46 = require("react/jsx-runtime");
3324
- var ListItem = (0, import_react69.forwardRef)(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected3, className, testId, children, ...rest }, ref) {
3325
- const styles = useStyles31({ selected: selected3, className });
3360
+ var ListItem = (0, import_react69.forwardRef)(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected4, className, testId, children, ...rest }, ref) {
3361
+ const styles = useStyles31({ selected: selected4, className });
3326
3362
  const { testId: dataTestId, slot } = useTestId("list", testId);
3327
3363
  return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
3328
3364
  "div",
@@ -3330,7 +3366,7 @@ var ListItem = (0, import_react69.forwardRef)(function ListItem2({ leading: lead
3330
3366
  ref,
3331
3367
  className: styles.root,
3332
3368
  "data-testid": dataTestId,
3333
- "data-state": states({ selected: selected3 }),
3369
+ "data-state": states({ selected: selected4 }),
3334
3370
  ...rest,
3335
3371
  children: [
3336
3372
  leading2 != null && /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("span", { className: styles.leading, "data-testid": slot("leading"), children: leading2 }),
@@ -3343,7 +3379,7 @@ var ListItem = (0, import_react69.forwardRef)(function ListItem2({ leading: lead
3343
3379
 
3344
3380
  // src/components/icons/alert-circle/index.tsx
3345
3381
  var import_jsx_runtime47 = require("react/jsx-runtime");
3346
- function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3382
+ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3347
3383
  return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
3348
3384
  "svg",
3349
3385
  {
@@ -3356,7 +3392,7 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3356
3392
  strokeWidth,
3357
3393
  strokeLinecap: "round",
3358
3394
  strokeLinejoin: "round",
3359
- "aria-hidden": "true",
3395
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3360
3396
  ...rest,
3361
3397
  children: [
3362
3398
  /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
@@ -3369,7 +3405,7 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3369
3405
 
3370
3406
  // src/components/icons/archive/index.tsx
3371
3407
  var import_jsx_runtime48 = require("react/jsx-runtime");
3372
- function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3408
+ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3373
3409
  return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
3374
3410
  "svg",
3375
3411
  {
@@ -3382,7 +3418,7 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3382
3418
  strokeWidth,
3383
3419
  strokeLinecap: "round",
3384
3420
  strokeLinejoin: "round",
3385
- "aria-hidden": "true",
3421
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3386
3422
  ...rest,
3387
3423
  children: [
3388
3424
  /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
@@ -3395,7 +3431,7 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3395
3431
 
3396
3432
  // src/components/icons/arrow-down/index.tsx
3397
3433
  var import_jsx_runtime49 = require("react/jsx-runtime");
3398
- function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3434
+ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3399
3435
  return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
3400
3436
  "svg",
3401
3437
  {
@@ -3408,7 +3444,7 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3408
3444
  strokeWidth,
3409
3445
  strokeLinecap: "round",
3410
3446
  strokeLinejoin: "round",
3411
- "aria-hidden": "true",
3447
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3412
3448
  ...rest,
3413
3449
  children: [
3414
3450
  /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M12 5v14" }),
@@ -3420,7 +3456,7 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3420
3456
 
3421
3457
  // src/components/icons/arrow-left/index.tsx
3422
3458
  var import_jsx_runtime50 = require("react/jsx-runtime");
3423
- function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3459
+ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3424
3460
  return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
3425
3461
  "svg",
3426
3462
  {
@@ -3433,7 +3469,7 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3433
3469
  strokeWidth,
3434
3470
  strokeLinecap: "round",
3435
3471
  strokeLinejoin: "round",
3436
- "aria-hidden": "true",
3472
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3437
3473
  ...rest,
3438
3474
  children: [
3439
3475
  /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "m12 19-7-7 7-7" }),
@@ -3445,7 +3481,7 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3445
3481
 
3446
3482
  // src/components/icons/arrow-right/index.tsx
3447
3483
  var import_jsx_runtime51 = require("react/jsx-runtime");
3448
- function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3484
+ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3449
3485
  return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
3450
3486
  "svg",
3451
3487
  {
@@ -3458,7 +3494,7 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3458
3494
  strokeWidth,
3459
3495
  strokeLinecap: "round",
3460
3496
  strokeLinejoin: "round",
3461
- "aria-hidden": "true",
3497
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3462
3498
  ...rest,
3463
3499
  children: [
3464
3500
  /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M5 12h14" }),
@@ -3470,7 +3506,7 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3470
3506
 
3471
3507
  // src/components/icons/arrow-up/index.tsx
3472
3508
  var import_jsx_runtime52 = require("react/jsx-runtime");
3473
- function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3509
+ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3474
3510
  return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
3475
3511
  "svg",
3476
3512
  {
@@ -3483,7 +3519,7 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3483
3519
  strokeWidth,
3484
3520
  strokeLinecap: "round",
3485
3521
  strokeLinejoin: "round",
3486
- "aria-hidden": "true",
3522
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3487
3523
  ...rest,
3488
3524
  children: [
3489
3525
  /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "m5 12 7-7 7 7" }),
@@ -3495,7 +3531,7 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3495
3531
 
3496
3532
  // src/components/icons/at-sign/index.tsx
3497
3533
  var import_jsx_runtime53 = require("react/jsx-runtime");
3498
- function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3534
+ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3499
3535
  return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
3500
3536
  "svg",
3501
3537
  {
@@ -3508,7 +3544,7 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3508
3544
  strokeWidth,
3509
3545
  strokeLinecap: "round",
3510
3546
  strokeLinejoin: "round",
3511
- "aria-hidden": "true",
3547
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3512
3548
  ...rest,
3513
3549
  children: [
3514
3550
  /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
@@ -3520,7 +3556,7 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3520
3556
 
3521
3557
  // src/components/icons/bell/index.tsx
3522
3558
  var import_jsx_runtime54 = require("react/jsx-runtime");
3523
- function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3559
+ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3524
3560
  return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
3525
3561
  "svg",
3526
3562
  {
@@ -3533,7 +3569,7 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3533
3569
  strokeWidth,
3534
3570
  strokeLinecap: "round",
3535
3571
  strokeLinejoin: "round",
3536
- "aria-hidden": "true",
3572
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3537
3573
  ...rest,
3538
3574
  children: [
3539
3575
  /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
@@ -3545,7 +3581,7 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3545
3581
 
3546
3582
  // src/components/icons/bell-off/index.tsx
3547
3583
  var import_jsx_runtime55 = require("react/jsx-runtime");
3548
- function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3584
+ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3549
3585
  return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
3550
3586
  "svg",
3551
3587
  {
@@ -3558,7 +3594,7 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3558
3594
  strokeWidth,
3559
3595
  strokeLinecap: "round",
3560
3596
  strokeLinejoin: "round",
3561
- "aria-hidden": "true",
3597
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3562
3598
  ...rest,
3563
3599
  children: [
3564
3600
  /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
@@ -3572,7 +3608,7 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3572
3608
 
3573
3609
  // src/components/icons/bookmark/index.tsx
3574
3610
  var import_jsx_runtime56 = require("react/jsx-runtime");
3575
- function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3611
+ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3576
3612
  return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
3577
3613
  "svg",
3578
3614
  {
@@ -3585,7 +3621,7 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3585
3621
  strokeWidth,
3586
3622
  strokeLinecap: "round",
3587
3623
  strokeLinejoin: "round",
3588
- "aria-hidden": "true",
3624
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3589
3625
  ...rest,
3590
3626
  children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
3591
3627
  }
@@ -3594,7 +3630,7 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3594
3630
 
3595
3631
  // src/components/icons/calendar/index.tsx
3596
3632
  var import_jsx_runtime57 = require("react/jsx-runtime");
3597
- function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3633
+ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3598
3634
  return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
3599
3635
  "svg",
3600
3636
  {
@@ -3607,7 +3643,7 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3607
3643
  strokeWidth,
3608
3644
  strokeLinecap: "round",
3609
3645
  strokeLinejoin: "round",
3610
- "aria-hidden": "true",
3646
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3611
3647
  ...rest,
3612
3648
  children: [
3613
3649
  /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M8 2v4" }),
@@ -3621,7 +3657,7 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3621
3657
 
3622
3658
  // src/components/icons/camera/index.tsx
3623
3659
  var import_jsx_runtime58 = require("react/jsx-runtime");
3624
- function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3660
+ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3625
3661
  return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
3626
3662
  "svg",
3627
3663
  {
@@ -3634,7 +3670,7 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3634
3670
  strokeWidth,
3635
3671
  strokeLinecap: "round",
3636
3672
  strokeLinejoin: "round",
3637
- "aria-hidden": "true",
3673
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3638
3674
  ...rest,
3639
3675
  children: [
3640
3676
  /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z" }),
@@ -3646,7 +3682,7 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3646
3682
 
3647
3683
  // src/components/icons/chevron-up/index.tsx
3648
3684
  var import_jsx_runtime59 = require("react/jsx-runtime");
3649
- function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3685
+ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3650
3686
  return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
3651
3687
  "svg",
3652
3688
  {
@@ -3659,7 +3695,7 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3659
3695
  strokeWidth,
3660
3696
  strokeLinecap: "round",
3661
3697
  strokeLinejoin: "round",
3662
- "aria-hidden": "true",
3698
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3663
3699
  ...rest,
3664
3700
  children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("path", { d: "m18 15-6-6-6 6" })
3665
3701
  }
@@ -3668,7 +3704,7 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3668
3704
 
3669
3705
  // src/components/icons/chevrons-left/index.tsx
3670
3706
  var import_jsx_runtime60 = require("react/jsx-runtime");
3671
- function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3707
+ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3672
3708
  return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
3673
3709
  "svg",
3674
3710
  {
@@ -3681,7 +3717,7 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3681
3717
  strokeWidth,
3682
3718
  strokeLinecap: "round",
3683
3719
  strokeLinejoin: "round",
3684
- "aria-hidden": "true",
3720
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3685
3721
  ...rest,
3686
3722
  children: [
3687
3723
  /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { d: "m11 17-5-5 5-5" }),
@@ -3693,7 +3729,7 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3693
3729
 
3694
3730
  // src/components/icons/chevrons-right/index.tsx
3695
3731
  var import_jsx_runtime61 = require("react/jsx-runtime");
3696
- function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3732
+ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3697
3733
  return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
3698
3734
  "svg",
3699
3735
  {
@@ -3706,7 +3742,7 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3706
3742
  strokeWidth,
3707
3743
  strokeLinecap: "round",
3708
3744
  strokeLinejoin: "round",
3709
- "aria-hidden": "true",
3745
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3710
3746
  ...rest,
3711
3747
  children: [
3712
3748
  /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "m6 17 5-5-5-5" }),
@@ -3718,7 +3754,7 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3718
3754
 
3719
3755
  // src/components/icons/clipboard/index.tsx
3720
3756
  var import_jsx_runtime62 = require("react/jsx-runtime");
3721
- function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3757
+ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3722
3758
  return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
3723
3759
  "svg",
3724
3760
  {
@@ -3731,7 +3767,7 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3731
3767
  strokeWidth,
3732
3768
  strokeLinecap: "round",
3733
3769
  strokeLinejoin: "round",
3734
- "aria-hidden": "true",
3770
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3735
3771
  ...rest,
3736
3772
  children: [
3737
3773
  /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
@@ -3743,7 +3779,7 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3743
3779
 
3744
3780
  // src/components/icons/clock/index.tsx
3745
3781
  var import_jsx_runtime63 = require("react/jsx-runtime");
3746
- function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3782
+ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3747
3783
  return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
3748
3784
  "svg",
3749
3785
  {
@@ -3756,7 +3792,7 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3756
3792
  strokeWidth,
3757
3793
  strokeLinecap: "round",
3758
3794
  strokeLinejoin: "round",
3759
- "aria-hidden": "true",
3795
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3760
3796
  ...rest,
3761
3797
  children: [
3762
3798
  /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
@@ -3768,7 +3804,7 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3768
3804
 
3769
3805
  // src/components/icons/cloud/index.tsx
3770
3806
  var import_jsx_runtime64 = require("react/jsx-runtime");
3771
- function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3807
+ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3772
3808
  return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3773
3809
  "svg",
3774
3810
  {
@@ -3781,7 +3817,7 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3781
3817
  strokeWidth,
3782
3818
  strokeLinecap: "round",
3783
3819
  strokeLinejoin: "round",
3784
- "aria-hidden": "true",
3820
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3785
3821
  ...rest,
3786
3822
  children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
3787
3823
  }
@@ -3790,7 +3826,7 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3790
3826
 
3791
3827
  // src/components/icons/copy/index.tsx
3792
3828
  var import_jsx_runtime65 = require("react/jsx-runtime");
3793
- function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3829
+ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3794
3830
  return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
3795
3831
  "svg",
3796
3832
  {
@@ -3803,7 +3839,7 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3803
3839
  strokeWidth,
3804
3840
  strokeLinecap: "round",
3805
3841
  strokeLinejoin: "round",
3806
- "aria-hidden": "true",
3842
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3807
3843
  ...rest,
3808
3844
  children: [
3809
3845
  /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
@@ -3815,7 +3851,7 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3815
3851
 
3816
3852
  // src/components/icons/corner-down-right/index.tsx
3817
3853
  var import_jsx_runtime66 = require("react/jsx-runtime");
3818
- function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3854
+ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3819
3855
  return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
3820
3856
  "svg",
3821
3857
  {
@@ -3828,7 +3864,7 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
3828
3864
  strokeWidth,
3829
3865
  strokeLinecap: "round",
3830
3866
  strokeLinejoin: "round",
3831
- "aria-hidden": "true",
3867
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3832
3868
  ...rest,
3833
3869
  children: [
3834
3870
  /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("polyline", { points: "15 10 20 15 15 20" }),
@@ -3840,7 +3876,7 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
3840
3876
 
3841
3877
  // src/components/icons/credit-card/index.tsx
3842
3878
  var import_jsx_runtime67 = require("react/jsx-runtime");
3843
- function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3879
+ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3844
3880
  return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
3845
3881
  "svg",
3846
3882
  {
@@ -3853,7 +3889,7 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3853
3889
  strokeWidth,
3854
3890
  strokeLinecap: "round",
3855
3891
  strokeLinejoin: "round",
3856
- "aria-hidden": "true",
3892
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3857
3893
  ...rest,
3858
3894
  children: [
3859
3895
  /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
@@ -3865,7 +3901,7 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3865
3901
 
3866
3902
  // src/components/icons/dollar-sign/index.tsx
3867
3903
  var import_jsx_runtime68 = require("react/jsx-runtime");
3868
- function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3904
+ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3869
3905
  return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
3870
3906
  "svg",
3871
3907
  {
@@ -3878,7 +3914,7 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3878
3914
  strokeWidth,
3879
3915
  strokeLinecap: "round",
3880
3916
  strokeLinejoin: "round",
3881
- "aria-hidden": "true",
3917
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3882
3918
  ...rest,
3883
3919
  children: [
3884
3920
  /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
@@ -3890,7 +3926,7 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3890
3926
 
3891
3927
  // src/components/icons/download/index.tsx
3892
3928
  var import_jsx_runtime69 = require("react/jsx-runtime");
3893
- function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3929
+ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3894
3930
  return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
3895
3931
  "svg",
3896
3932
  {
@@ -3903,7 +3939,7 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3903
3939
  strokeWidth,
3904
3940
  strokeLinecap: "round",
3905
3941
  strokeLinejoin: "round",
3906
- "aria-hidden": "true",
3942
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3907
3943
  ...rest,
3908
3944
  children: [
3909
3945
  /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
@@ -3916,7 +3952,7 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3916
3952
 
3917
3953
  // src/components/icons/external-link/index.tsx
3918
3954
  var import_jsx_runtime70 = require("react/jsx-runtime");
3919
- function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3955
+ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3920
3956
  return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
3921
3957
  "svg",
3922
3958
  {
@@ -3929,7 +3965,7 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3929
3965
  strokeWidth,
3930
3966
  strokeLinecap: "round",
3931
3967
  strokeLinejoin: "round",
3932
- "aria-hidden": "true",
3968
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3933
3969
  ...rest,
3934
3970
  children: [
3935
3971
  /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", { d: "M15 3h6v6" }),
@@ -3942,7 +3978,7 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3942
3978
 
3943
3979
  // src/components/icons/file/index.tsx
3944
3980
  var import_jsx_runtime71 = require("react/jsx-runtime");
3945
- function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3981
+ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3946
3982
  return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
3947
3983
  "svg",
3948
3984
  {
@@ -3955,7 +3991,7 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3955
3991
  strokeWidth,
3956
3992
  strokeLinecap: "round",
3957
3993
  strokeLinejoin: "round",
3958
- "aria-hidden": "true",
3994
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3959
3995
  ...rest,
3960
3996
  children: [
3961
3997
  /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
@@ -3967,7 +4003,7 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3967
4003
 
3968
4004
  // src/components/icons/file-text/index.tsx
3969
4005
  var import_jsx_runtime72 = require("react/jsx-runtime");
3970
- function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4006
+ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3971
4007
  return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
3972
4008
  "svg",
3973
4009
  {
@@ -3980,7 +4016,7 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3980
4016
  strokeWidth,
3981
4017
  strokeLinecap: "round",
3982
4018
  strokeLinejoin: "round",
3983
- "aria-hidden": "true",
4019
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3984
4020
  ...rest,
3985
4021
  children: [
3986
4022
  /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
@@ -3995,7 +4031,7 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3995
4031
 
3996
4032
  // src/components/icons/filter/index.tsx
3997
4033
  var import_jsx_runtime73 = require("react/jsx-runtime");
3998
- function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4034
+ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3999
4035
  return /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
4000
4036
  "svg",
4001
4037
  {
@@ -4008,7 +4044,7 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4008
4044
  strokeWidth,
4009
4045
  strokeLinecap: "round",
4010
4046
  strokeLinejoin: "round",
4011
- "aria-hidden": "true",
4047
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4012
4048
  ...rest,
4013
4049
  children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
4014
4050
  }
@@ -4017,7 +4053,7 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4017
4053
 
4018
4054
  // src/components/icons/fingerprint/index.tsx
4019
4055
  var import_jsx_runtime74 = require("react/jsx-runtime");
4020
- function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4056
+ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4021
4057
  return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
4022
4058
  "svg",
4023
4059
  {
@@ -4030,7 +4066,7 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4030
4066
  strokeWidth,
4031
4067
  strokeLinecap: "round",
4032
4068
  strokeLinejoin: "round",
4033
- "aria-hidden": "true",
4069
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4034
4070
  ...rest,
4035
4071
  children: [
4036
4072
  /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
@@ -4049,7 +4085,7 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4049
4085
 
4050
4086
  // src/components/icons/folder/index.tsx
4051
4087
  var import_jsx_runtime75 = require("react/jsx-runtime");
4052
- function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4088
+ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4053
4089
  return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
4054
4090
  "svg",
4055
4091
  {
@@ -4062,7 +4098,7 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4062
4098
  strokeWidth,
4063
4099
  strokeLinecap: "round",
4064
4100
  strokeLinejoin: "round",
4065
- "aria-hidden": "true",
4101
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4066
4102
  ...rest,
4067
4103
  children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" })
4068
4104
  }
@@ -4071,7 +4107,7 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4071
4107
 
4072
4108
  // src/components/icons/folder-open/index.tsx
4073
4109
  var import_jsx_runtime76 = require("react/jsx-runtime");
4074
- function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4110
+ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4075
4111
  return /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
4076
4112
  "svg",
4077
4113
  {
@@ -4084,7 +4120,7 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4084
4120
  strokeWidth,
4085
4121
  strokeLinecap: "round",
4086
4122
  strokeLinejoin: "round",
4087
- "aria-hidden": "true",
4123
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4088
4124
  ...rest,
4089
4125
  children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("path", { d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" })
4090
4126
  }
@@ -4093,7 +4129,7 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4093
4129
 
4094
4130
  // src/components/icons/gift/index.tsx
4095
4131
  var import_jsx_runtime77 = require("react/jsx-runtime");
4096
- function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4132
+ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4097
4133
  return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
4098
4134
  "svg",
4099
4135
  {
@@ -4106,7 +4142,7 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4106
4142
  strokeWidth,
4107
4143
  strokeLinecap: "round",
4108
4144
  strokeLinejoin: "round",
4109
- "aria-hidden": "true",
4145
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4110
4146
  ...rest,
4111
4147
  children: [
4112
4148
  /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
@@ -4118,10 +4154,10 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4118
4154
  );
4119
4155
  }
4120
4156
 
4121
- // src/components/icons/globe/index.tsx
4157
+ // src/components/icons/github/index.tsx
4122
4158
  var import_jsx_runtime78 = require("react/jsx-runtime");
4123
- function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4124
- return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
4159
+ function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4160
+ return /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
4125
4161
  "svg",
4126
4162
  {
4127
4163
  xmlns: "http://www.w3.org/2000/svg",
@@ -4133,20 +4169,16 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4133
4169
  strokeWidth,
4134
4170
  strokeLinecap: "round",
4135
4171
  strokeLinejoin: "round",
4136
- "aria-hidden": "true",
4172
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4137
4173
  ...rest,
4138
- children: [
4139
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
4140
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
4141
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M2 12h20" })
4142
- ]
4174
+ children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" })
4143
4175
  }
4144
4176
  );
4145
4177
  }
4146
4178
 
4147
- // src/components/icons/grid/index.tsx
4179
+ // src/components/icons/globe/index.tsx
4148
4180
  var import_jsx_runtime79 = require("react/jsx-runtime");
4149
- function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4181
+ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4150
4182
  return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
4151
4183
  "svg",
4152
4184
  {
@@ -4159,23 +4191,21 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4159
4191
  strokeWidth,
4160
4192
  strokeLinecap: "round",
4161
4193
  strokeLinejoin: "round",
4162
- "aria-hidden": "true",
4194
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4163
4195
  ...rest,
4164
4196
  children: [
4165
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
4166
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M3 9h18" }),
4167
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M3 15h18" }),
4168
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M9 3v18" }),
4169
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M15 3v18" })
4197
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
4198
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
4199
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M2 12h20" })
4170
4200
  ]
4171
4201
  }
4172
4202
  );
4173
4203
  }
4174
4204
 
4175
- // src/components/icons/heart/index.tsx
4205
+ // src/components/icons/grid/index.tsx
4176
4206
  var import_jsx_runtime80 = require("react/jsx-runtime");
4177
- function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4178
- return /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
4207
+ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4208
+ return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
4179
4209
  "svg",
4180
4210
  {
4181
4211
  xmlns: "http://www.w3.org/2000/svg",
@@ -4187,17 +4217,23 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4187
4217
  strokeWidth,
4188
4218
  strokeLinecap: "round",
4189
4219
  strokeLinejoin: "round",
4190
- "aria-hidden": "true",
4220
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4191
4221
  ...rest,
4192
- children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
4222
+ children: [
4223
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
4224
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M3 9h18" }),
4225
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M3 15h18" }),
4226
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M9 3v18" }),
4227
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M15 3v18" })
4228
+ ]
4193
4229
  }
4194
4230
  );
4195
4231
  }
4196
4232
 
4197
- // src/components/icons/help-circle/index.tsx
4233
+ // src/components/icons/heart/index.tsx
4198
4234
  var import_jsx_runtime81 = require("react/jsx-runtime");
4199
- function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4200
- return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
4235
+ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4236
+ return /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
4201
4237
  "svg",
4202
4238
  {
4203
4239
  xmlns: "http://www.w3.org/2000/svg",
@@ -4209,20 +4245,16 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4209
4245
  strokeWidth,
4210
4246
  strokeLinecap: "round",
4211
4247
  strokeLinejoin: "round",
4212
- "aria-hidden": "true",
4248
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4213
4249
  ...rest,
4214
- children: [
4215
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
4216
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
4217
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M12 17h.01" })
4218
- ]
4250
+ children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
4219
4251
  }
4220
4252
  );
4221
4253
  }
4222
4254
 
4223
- // src/components/icons/home/index.tsx
4255
+ // src/components/icons/help-circle/index.tsx
4224
4256
  var import_jsx_runtime82 = require("react/jsx-runtime");
4225
- function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4257
+ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4226
4258
  return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)(
4227
4259
  "svg",
4228
4260
  {
@@ -4235,19 +4267,20 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4235
4267
  strokeWidth,
4236
4268
  strokeLinecap: "round",
4237
4269
  strokeLinejoin: "round",
4238
- "aria-hidden": "true",
4270
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4239
4271
  ...rest,
4240
4272
  children: [
4241
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
4242
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("polyline", { points: "9 22 9 12 15 12 15 22" })
4273
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
4274
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
4275
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("path", { d: "M12 17h.01" })
4243
4276
  ]
4244
4277
  }
4245
4278
  );
4246
4279
  }
4247
4280
 
4248
- // src/components/icons/image/index.tsx
4281
+ // src/components/icons/home/index.tsx
4249
4282
  var import_jsx_runtime83 = require("react/jsx-runtime");
4250
- function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4283
+ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4251
4284
  return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(
4252
4285
  "svg",
4253
4286
  {
@@ -4260,20 +4293,19 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4260
4293
  strokeWidth,
4261
4294
  strokeLinecap: "round",
4262
4295
  strokeLinejoin: "round",
4263
- "aria-hidden": "true",
4296
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4264
4297
  ...rest,
4265
4298
  children: [
4266
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
4267
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
4268
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
4299
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
4300
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("polyline", { points: "9 22 9 12 15 12 15 22" })
4269
4301
  ]
4270
4302
  }
4271
4303
  );
4272
4304
  }
4273
4305
 
4274
- // src/components/icons/inbox/index.tsx
4306
+ // src/components/icons/image/index.tsx
4275
4307
  var import_jsx_runtime84 = require("react/jsx-runtime");
4276
- function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4308
+ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4277
4309
  return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
4278
4310
  "svg",
4279
4311
  {
@@ -4286,19 +4318,20 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4286
4318
  strokeWidth,
4287
4319
  strokeLinecap: "round",
4288
4320
  strokeLinejoin: "round",
4289
- "aria-hidden": "true",
4321
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4290
4322
  ...rest,
4291
4323
  children: [
4292
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
4293
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
4324
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
4325
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
4326
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
4294
4327
  ]
4295
4328
  }
4296
4329
  );
4297
4330
  }
4298
4331
 
4299
- // src/components/icons/key/index.tsx
4332
+ // src/components/icons/inbox/index.tsx
4300
4333
  var import_jsx_runtime85 = require("react/jsx-runtime");
4301
- function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4334
+ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4302
4335
  return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
4303
4336
  "svg",
4304
4337
  {
@@ -4311,20 +4344,19 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4311
4344
  strokeWidth,
4312
4345
  strokeLinecap: "round",
4313
4346
  strokeLinejoin: "round",
4314
- "aria-hidden": "true",
4347
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4315
4348
  ...rest,
4316
4349
  children: [
4317
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L21 4.5" }),
4318
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("path", { d: "m21 2-9.6 9.6" }),
4319
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
4350
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
4351
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
4320
4352
  ]
4321
4353
  }
4322
4354
  );
4323
4355
  }
4324
4356
 
4325
- // src/components/icons/layout/index.tsx
4357
+ // src/components/icons/key/index.tsx
4326
4358
  var import_jsx_runtime86 = require("react/jsx-runtime");
4327
- function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4359
+ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4328
4360
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
4329
4361
  "svg",
4330
4362
  {
@@ -4337,21 +4369,20 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4337
4369
  strokeWidth,
4338
4370
  strokeLinecap: "round",
4339
4371
  strokeLinejoin: "round",
4340
- "aria-hidden": "true",
4372
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4341
4373
  ...rest,
4342
4374
  children: [
4343
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
4344
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
4345
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
4346
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
4375
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L21 4.5" }),
4376
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("path", { d: "m21 2-9.6 9.6" }),
4377
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
4347
4378
  ]
4348
4379
  }
4349
4380
  );
4350
4381
  }
4351
4382
 
4352
- // src/components/icons/link/index.tsx
4383
+ // src/components/icons/layout/index.tsx
4353
4384
  var import_jsx_runtime87 = require("react/jsx-runtime");
4354
- function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4385
+ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4355
4386
  return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
4356
4387
  "svg",
4357
4388
  {
@@ -4364,19 +4395,21 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4364
4395
  strokeWidth,
4365
4396
  strokeLinecap: "round",
4366
4397
  strokeLinejoin: "round",
4367
- "aria-hidden": "true",
4398
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4368
4399
  ...rest,
4369
4400
  children: [
4370
- /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
4371
- /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
4401
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
4402
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
4403
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
4404
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
4372
4405
  ]
4373
4406
  }
4374
4407
  );
4375
4408
  }
4376
4409
 
4377
- // src/components/icons/list/index.tsx
4410
+ // src/components/icons/link/index.tsx
4378
4411
  var import_jsx_runtime88 = require("react/jsx-runtime");
4379
- function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4412
+ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4380
4413
  return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(
4381
4414
  "svg",
4382
4415
  {
@@ -4389,23 +4422,19 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4389
4422
  strokeWidth,
4390
4423
  strokeLinecap: "round",
4391
4424
  strokeLinejoin: "round",
4392
- "aria-hidden": "true",
4425
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4393
4426
  ...rest,
4394
4427
  children: [
4395
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
4396
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
4397
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
4398
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
4399
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
4400
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
4428
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
4429
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
4401
4430
  ]
4402
4431
  }
4403
4432
  );
4404
4433
  }
4405
4434
 
4406
- // src/components/icons/loader/index.tsx
4435
+ // src/components/icons/list/index.tsx
4407
4436
  var import_jsx_runtime89 = require("react/jsx-runtime");
4408
- function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4437
+ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4409
4438
  return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
4410
4439
  "svg",
4411
4440
  {
@@ -4418,25 +4447,23 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4418
4447
  strokeWidth,
4419
4448
  strokeLinecap: "round",
4420
4449
  strokeLinejoin: "round",
4421
- "aria-hidden": "true",
4450
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4422
4451
  ...rest,
4423
4452
  children: [
4424
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
4425
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
4426
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
4427
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
4428
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
4429
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
4430
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
4431
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
4453
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
4454
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
4455
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
4456
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
4457
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
4458
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
4432
4459
  ]
4433
4460
  }
4434
4461
  );
4435
4462
  }
4436
4463
 
4437
- // src/components/icons/lock/index.tsx
4464
+ // src/components/icons/loader/index.tsx
4438
4465
  var import_jsx_runtime90 = require("react/jsx-runtime");
4439
- function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4466
+ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4440
4467
  return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
4441
4468
  "svg",
4442
4469
  {
@@ -4449,19 +4476,25 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4449
4476
  strokeWidth,
4450
4477
  strokeLinecap: "round",
4451
4478
  strokeLinejoin: "round",
4452
- "aria-hidden": "true",
4479
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4453
4480
  ...rest,
4454
4481
  children: [
4455
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
4456
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
4482
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
4483
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
4484
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
4485
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
4486
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
4487
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
4488
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
4489
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
4457
4490
  ]
4458
4491
  }
4459
4492
  );
4460
4493
  }
4461
4494
 
4462
- // src/components/icons/log-in/index.tsx
4495
+ // src/components/icons/lock/index.tsx
4463
4496
  var import_jsx_runtime91 = require("react/jsx-runtime");
4464
- function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4497
+ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4465
4498
  return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
4466
4499
  "svg",
4467
4500
  {
@@ -4474,20 +4507,19 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4474
4507
  strokeWidth,
4475
4508
  strokeLinecap: "round",
4476
4509
  strokeLinejoin: "round",
4477
- "aria-hidden": "true",
4510
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4478
4511
  ...rest,
4479
4512
  children: [
4480
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
4481
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("polyline", { points: "10 17 15 12 10 7" }),
4482
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
4513
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
4514
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
4483
4515
  ]
4484
4516
  }
4485
4517
  );
4486
4518
  }
4487
4519
 
4488
- // src/components/icons/log-out/index.tsx
4520
+ // src/components/icons/log-in/index.tsx
4489
4521
  var import_jsx_runtime92 = require("react/jsx-runtime");
4490
- function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4522
+ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4491
4523
  return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
4492
4524
  "svg",
4493
4525
  {
@@ -4500,20 +4532,20 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4500
4532
  strokeWidth,
4501
4533
  strokeLinecap: "round",
4502
4534
  strokeLinejoin: "round",
4503
- "aria-hidden": "true",
4535
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4504
4536
  ...rest,
4505
4537
  children: [
4506
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
4507
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("polyline", { points: "16 17 21 12 16 7" }),
4508
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
4538
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
4539
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("polyline", { points: "10 17 15 12 10 7" }),
4540
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
4509
4541
  ]
4510
4542
  }
4511
4543
  );
4512
4544
  }
4513
4545
 
4514
- // src/components/icons/mail/index.tsx
4546
+ // src/components/icons/log-out/index.tsx
4515
4547
  var import_jsx_runtime93 = require("react/jsx-runtime");
4516
- function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4548
+ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4517
4549
  return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
4518
4550
  "svg",
4519
4551
  {
@@ -4526,19 +4558,20 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4526
4558
  strokeWidth,
4527
4559
  strokeLinecap: "round",
4528
4560
  strokeLinejoin: "round",
4529
- "aria-hidden": "true",
4561
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4530
4562
  ...rest,
4531
4563
  children: [
4532
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
4533
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
4564
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
4565
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("polyline", { points: "16 17 21 12 16 7" }),
4566
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
4534
4567
  ]
4535
4568
  }
4536
4569
  );
4537
4570
  }
4538
4571
 
4539
- // src/components/icons/map-pin/index.tsx
4572
+ // src/components/icons/mail/index.tsx
4540
4573
  var import_jsx_runtime94 = require("react/jsx-runtime");
4541
- function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4574
+ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4542
4575
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
4543
4576
  "svg",
4544
4577
  {
@@ -4551,19 +4584,19 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4551
4584
  strokeWidth,
4552
4585
  strokeLinecap: "round",
4553
4586
  strokeLinejoin: "round",
4554
- "aria-hidden": "true",
4587
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4555
4588
  ...rest,
4556
4589
  children: [
4557
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
4558
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("circle", { cx: "12", cy: "10", r: "3" })
4590
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
4591
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
4559
4592
  ]
4560
4593
  }
4561
4594
  );
4562
4595
  }
4563
4596
 
4564
- // src/components/icons/maximize/index.tsx
4597
+ // src/components/icons/map-pin/index.tsx
4565
4598
  var import_jsx_runtime95 = require("react/jsx-runtime");
4566
- function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4599
+ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4567
4600
  return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
4568
4601
  "svg",
4569
4602
  {
@@ -4576,21 +4609,19 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4576
4609
  strokeWidth,
4577
4610
  strokeLinecap: "round",
4578
4611
  strokeLinejoin: "round",
4579
- "aria-hidden": "true",
4612
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4580
4613
  ...rest,
4581
4614
  children: [
4582
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
4583
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
4584
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
4585
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
4615
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
4616
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("circle", { cx: "12", cy: "10", r: "3" })
4586
4617
  ]
4587
4618
  }
4588
4619
  );
4589
4620
  }
4590
4621
 
4591
- // src/components/icons/menu/index.tsx
4622
+ // src/components/icons/maximize/index.tsx
4592
4623
  var import_jsx_runtime96 = require("react/jsx-runtime");
4593
- function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4624
+ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4594
4625
  return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
4595
4626
  "svg",
4596
4627
  {
@@ -4603,21 +4634,22 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4603
4634
  strokeWidth,
4604
4635
  strokeLinecap: "round",
4605
4636
  strokeLinejoin: "round",
4606
- "aria-hidden": "true",
4637
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4607
4638
  ...rest,
4608
4639
  children: [
4609
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
4610
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
4611
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
4640
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
4641
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
4642
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
4643
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
4612
4644
  ]
4613
4645
  }
4614
4646
  );
4615
4647
  }
4616
4648
 
4617
- // src/components/icons/message-circle/index.tsx
4649
+ // src/components/icons/menu/index.tsx
4618
4650
  var import_jsx_runtime97 = require("react/jsx-runtime");
4619
- function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4620
- return /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
4651
+ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4652
+ return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)(
4621
4653
  "svg",
4622
4654
  {
4623
4655
  xmlns: "http://www.w3.org/2000/svg",
@@ -4629,16 +4661,20 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4629
4661
  strokeWidth,
4630
4662
  strokeLinecap: "round",
4631
4663
  strokeLinejoin: "round",
4632
- "aria-hidden": "true",
4664
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4633
4665
  ...rest,
4634
- children: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
4666
+ children: [
4667
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
4668
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
4669
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
4670
+ ]
4635
4671
  }
4636
4672
  );
4637
4673
  }
4638
4674
 
4639
- // src/components/icons/message-square/index.tsx
4675
+ // src/components/icons/message-circle/index.tsx
4640
4676
  var import_jsx_runtime98 = require("react/jsx-runtime");
4641
- function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4677
+ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4642
4678
  return /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
4643
4679
  "svg",
4644
4680
  {
@@ -4651,17 +4687,17 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4651
4687
  strokeWidth,
4652
4688
  strokeLinecap: "round",
4653
4689
  strokeLinejoin: "round",
4654
- "aria-hidden": "true",
4690
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4655
4691
  ...rest,
4656
- children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
4692
+ children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
4657
4693
  }
4658
4694
  );
4659
4695
  }
4660
4696
 
4661
- // src/components/icons/mic/index.tsx
4697
+ // src/components/icons/message-square/index.tsx
4662
4698
  var import_jsx_runtime99 = require("react/jsx-runtime");
4663
- function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4664
- return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)(
4699
+ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4700
+ return /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
4665
4701
  "svg",
4666
4702
  {
4667
4703
  xmlns: "http://www.w3.org/2000/svg",
@@ -4673,20 +4709,16 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4673
4709
  strokeWidth,
4674
4710
  strokeLinecap: "round",
4675
4711
  strokeLinejoin: "round",
4676
- "aria-hidden": "true",
4712
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4677
4713
  ...rest,
4678
- children: [
4679
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
4680
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
4681
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
4682
- ]
4714
+ children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
4683
4715
  }
4684
4716
  );
4685
4717
  }
4686
4718
 
4687
- // src/components/icons/minimize/index.tsx
4719
+ // src/components/icons/mic/index.tsx
4688
4720
  var import_jsx_runtime100 = require("react/jsx-runtime");
4689
- function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4721
+ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4690
4722
  return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(
4691
4723
  "svg",
4692
4724
  {
@@ -4699,22 +4731,21 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4699
4731
  strokeWidth,
4700
4732
  strokeLinecap: "round",
4701
4733
  strokeLinejoin: "round",
4702
- "aria-hidden": "true",
4734
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4703
4735
  ...rest,
4704
4736
  children: [
4705
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
4706
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
4707
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
4708
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
4737
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
4738
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
4739
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
4709
4740
  ]
4710
4741
  }
4711
4742
  );
4712
4743
  }
4713
4744
 
4714
- // src/components/icons/minus/index.tsx
4745
+ // src/components/icons/minimize/index.tsx
4715
4746
  var import_jsx_runtime101 = require("react/jsx-runtime");
4716
- function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4717
- return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
4747
+ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4748
+ return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(
4718
4749
  "svg",
4719
4750
  {
4720
4751
  xmlns: "http://www.w3.org/2000/svg",
@@ -4726,16 +4757,21 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4726
4757
  strokeWidth,
4727
4758
  strokeLinecap: "round",
4728
4759
  strokeLinejoin: "round",
4729
- "aria-hidden": "true",
4760
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4730
4761
  ...rest,
4731
- children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M5 12h14" })
4762
+ children: [
4763
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
4764
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
4765
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
4766
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
4767
+ ]
4732
4768
  }
4733
4769
  );
4734
4770
  }
4735
4771
 
4736
- // src/components/icons/moon/index.tsx
4772
+ // src/components/icons/minus/index.tsx
4737
4773
  var import_jsx_runtime102 = require("react/jsx-runtime");
4738
- function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4774
+ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4739
4775
  return /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
4740
4776
  "svg",
4741
4777
  {
@@ -4748,17 +4784,17 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4748
4784
  strokeWidth,
4749
4785
  strokeLinecap: "round",
4750
4786
  strokeLinejoin: "round",
4751
- "aria-hidden": "true",
4787
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4752
4788
  ...rest,
4753
- children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
4789
+ children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M5 12h14" })
4754
4790
  }
4755
4791
  );
4756
4792
  }
4757
4793
 
4758
- // src/components/icons/more-horizontal/index.tsx
4794
+ // src/components/icons/moon/index.tsx
4759
4795
  var import_jsx_runtime103 = require("react/jsx-runtime");
4760
- function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4761
- return /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(
4796
+ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4797
+ return /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
4762
4798
  "svg",
4763
4799
  {
4764
4800
  xmlns: "http://www.w3.org/2000/svg",
@@ -4770,20 +4806,16 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4770
4806
  strokeWidth,
4771
4807
  strokeLinecap: "round",
4772
4808
  strokeLinejoin: "round",
4773
- "aria-hidden": "true",
4809
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4774
4810
  ...rest,
4775
- children: [
4776
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
4777
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
4778
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("circle", { cx: "5", cy: "12", r: "1" })
4779
- ]
4811
+ children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
4780
4812
  }
4781
4813
  );
4782
4814
  }
4783
4815
 
4784
- // src/components/icons/more-vertical/index.tsx
4816
+ // src/components/icons/more-horizontal/index.tsx
4785
4817
  var import_jsx_runtime104 = require("react/jsx-runtime");
4786
- function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4818
+ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4787
4819
  return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
4788
4820
  "svg",
4789
4821
  {
@@ -4796,20 +4828,20 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4796
4828
  strokeWidth,
4797
4829
  strokeLinecap: "round",
4798
4830
  strokeLinejoin: "round",
4799
- "aria-hidden": "true",
4831
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4800
4832
  ...rest,
4801
4833
  children: [
4802
4834
  /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
4803
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "12", cy: "5", r: "1" }),
4804
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "12", cy: "19", r: "1" })
4835
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
4836
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "5", cy: "12", r: "1" })
4805
4837
  ]
4806
4838
  }
4807
4839
  );
4808
4840
  }
4809
4841
 
4810
- // src/components/icons/package/index.tsx
4842
+ // src/components/icons/more-vertical/index.tsx
4811
4843
  var import_jsx_runtime105 = require("react/jsx-runtime");
4812
- function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4844
+ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4813
4845
  return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
4814
4846
  "svg",
4815
4847
  {
@@ -4822,21 +4854,21 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4822
4854
  strokeWidth,
4823
4855
  strokeLinecap: "round",
4824
4856
  strokeLinejoin: "round",
4825
- "aria-hidden": "true",
4857
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4826
4858
  ...rest,
4827
4859
  children: [
4828
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("path", { d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" }),
4829
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("path", { d: "M3.3 7 12 12l8.7-5" }),
4830
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("path", { d: "M12 22V12" })
4860
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
4861
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "5", r: "1" }),
4862
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "19", r: "1" })
4831
4863
  ]
4832
4864
  }
4833
4865
  );
4834
4866
  }
4835
4867
 
4836
- // src/components/icons/paperclip/index.tsx
4868
+ // src/components/icons/package/index.tsx
4837
4869
  var import_jsx_runtime106 = require("react/jsx-runtime");
4838
- function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4839
- return /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
4870
+ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4871
+ return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(
4840
4872
  "svg",
4841
4873
  {
4842
4874
  xmlns: "http://www.w3.org/2000/svg",
@@ -4848,17 +4880,21 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4848
4880
  strokeWidth,
4849
4881
  strokeLinecap: "round",
4850
4882
  strokeLinejoin: "round",
4851
- "aria-hidden": "true",
4883
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4852
4884
  ...rest,
4853
- children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" })
4885
+ children: [
4886
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("path", { d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" }),
4887
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("path", { d: "M3.3 7 12 12l8.7-5" }),
4888
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("path", { d: "M12 22V12" })
4889
+ ]
4854
4890
  }
4855
4891
  );
4856
4892
  }
4857
4893
 
4858
- // src/components/icons/pause/index.tsx
4894
+ // src/components/icons/paperclip/index.tsx
4859
4895
  var import_jsx_runtime107 = require("react/jsx-runtime");
4860
- function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4861
- return /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(
4896
+ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4897
+ return /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
4862
4898
  "svg",
4863
4899
  {
4864
4900
  xmlns: "http://www.w3.org/2000/svg",
@@ -4870,19 +4906,16 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4870
4906
  strokeWidth,
4871
4907
  strokeLinecap: "round",
4872
4908
  strokeLinejoin: "round",
4873
- "aria-hidden": "true",
4909
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4874
4910
  ...rest,
4875
- children: [
4876
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
4877
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
4878
- ]
4911
+ children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" })
4879
4912
  }
4880
4913
  );
4881
4914
  }
4882
4915
 
4883
- // src/components/icons/pencil/index.tsx
4916
+ // src/components/icons/pause/index.tsx
4884
4917
  var import_jsx_runtime108 = require("react/jsx-runtime");
4885
- function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4918
+ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4886
4919
  return /* @__PURE__ */ (0, import_jsx_runtime108.jsxs)(
4887
4920
  "svg",
4888
4921
  {
@@ -4895,20 +4928,20 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4895
4928
  strokeWidth,
4896
4929
  strokeLinecap: "round",
4897
4930
  strokeLinejoin: "round",
4898
- "aria-hidden": "true",
4931
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4899
4932
  ...rest,
4900
4933
  children: [
4901
- /* @__PURE__ */ (0, import_jsx_runtime108.jsx)("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
4902
- /* @__PURE__ */ (0, import_jsx_runtime108.jsx)("path", { d: "m15 5 4 4" })
4934
+ /* @__PURE__ */ (0, import_jsx_runtime108.jsx)("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
4935
+ /* @__PURE__ */ (0, import_jsx_runtime108.jsx)("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
4903
4936
  ]
4904
4937
  }
4905
4938
  );
4906
4939
  }
4907
4940
 
4908
- // src/components/icons/phone/index.tsx
4941
+ // src/components/icons/pencil/index.tsx
4909
4942
  var import_jsx_runtime109 = require("react/jsx-runtime");
4910
- function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4911
- return /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
4943
+ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4944
+ return /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)(
4912
4945
  "svg",
4913
4946
  {
4914
4947
  xmlns: "http://www.w3.org/2000/svg",
@@ -4920,16 +4953,19 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4920
4953
  strokeWidth,
4921
4954
  strokeLinecap: "round",
4922
4955
  strokeLinejoin: "round",
4923
- "aria-hidden": "true",
4956
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4924
4957
  ...rest,
4925
- children: /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
4958
+ children: [
4959
+ /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
4960
+ /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("path", { d: "m15 5 4 4" })
4961
+ ]
4926
4962
  }
4927
4963
  );
4928
4964
  }
4929
4965
 
4930
- // src/components/icons/play/index.tsx
4966
+ // src/components/icons/phone/index.tsx
4931
4967
  var import_jsx_runtime110 = require("react/jsx-runtime");
4932
- function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4968
+ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4933
4969
  return /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
4934
4970
  "svg",
4935
4971
  {
@@ -4942,17 +4978,17 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4942
4978
  strokeWidth,
4943
4979
  strokeLinecap: "round",
4944
4980
  strokeLinejoin: "round",
4945
- "aria-hidden": "true",
4981
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4946
4982
  ...rest,
4947
- children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("polygon", { points: "6 3 20 12 6 21 6 3" })
4983
+ children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
4948
4984
  }
4949
4985
  );
4950
4986
  }
4951
4987
 
4952
- // src/components/icons/plus/index.tsx
4988
+ // src/components/icons/play/index.tsx
4953
4989
  var import_jsx_runtime111 = require("react/jsx-runtime");
4954
- function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4955
- return /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(
4990
+ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4991
+ return /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
4956
4992
  "svg",
4957
4993
  {
4958
4994
  xmlns: "http://www.w3.org/2000/svg",
@@ -4964,19 +5000,16 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4964
5000
  strokeWidth,
4965
5001
  strokeLinecap: "round",
4966
5002
  strokeLinejoin: "round",
4967
- "aria-hidden": "true",
5003
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4968
5004
  ...rest,
4969
- children: [
4970
- /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("path", { d: "M5 12h14" }),
4971
- /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("path", { d: "M12 5v14" })
4972
- ]
5005
+ children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("polygon", { points: "6 3 20 12 6 21 6 3" })
4973
5006
  }
4974
5007
  );
4975
5008
  }
4976
5009
 
4977
- // src/components/icons/printer/index.tsx
5010
+ // src/components/icons/plus/index.tsx
4978
5011
  var import_jsx_runtime112 = require("react/jsx-runtime");
4979
- function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5012
+ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4980
5013
  return /* @__PURE__ */ (0, import_jsx_runtime112.jsxs)(
4981
5014
  "svg",
4982
5015
  {
@@ -4989,20 +5022,19 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4989
5022
  strokeWidth,
4990
5023
  strokeLinecap: "round",
4991
5024
  strokeLinejoin: "round",
4992
- "aria-hidden": "true",
5025
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4993
5026
  ...rest,
4994
5027
  children: [
4995
- /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("polyline", { points: "6 9 6 2 18 2 18 9" }),
4996
- /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
4997
- /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("rect", { width: "12", height: "8", x: "6", y: "14" })
5028
+ /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("path", { d: "M5 12h14" }),
5029
+ /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("path", { d: "M12 5v14" })
4998
5030
  ]
4999
5031
  }
5000
5032
  );
5001
5033
  }
5002
5034
 
5003
- // src/components/icons/redo/index.tsx
5035
+ // src/components/icons/printer/index.tsx
5004
5036
  var import_jsx_runtime113 = require("react/jsx-runtime");
5005
- function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5037
+ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5006
5038
  return /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
5007
5039
  "svg",
5008
5040
  {
@@ -5015,19 +5047,20 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5015
5047
  strokeWidth,
5016
5048
  strokeLinecap: "round",
5017
5049
  strokeLinejoin: "round",
5018
- "aria-hidden": "true",
5050
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5019
5051
  ...rest,
5020
5052
  children: [
5021
- /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "M21 7v6h-6" }),
5022
- /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
5053
+ /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("polyline", { points: "6 9 6 2 18 2 18 9" }),
5054
+ /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
5055
+ /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("rect", { width: "12", height: "8", x: "6", y: "14" })
5023
5056
  ]
5024
5057
  }
5025
5058
  );
5026
5059
  }
5027
5060
 
5028
- // src/components/icons/refresh-cw/index.tsx
5061
+ // src/components/icons/redo/index.tsx
5029
5062
  var import_jsx_runtime114 = require("react/jsx-runtime");
5030
- function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5063
+ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5031
5064
  return /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
5032
5065
  "svg",
5033
5066
  {
@@ -5040,21 +5073,19 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5040
5073
  strokeWidth,
5041
5074
  strokeLinecap: "round",
5042
5075
  strokeLinejoin: "round",
5043
- "aria-hidden": "true",
5076
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5044
5077
  ...rest,
5045
5078
  children: [
5046
- /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
5047
- /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M21 3v5h-5" }),
5048
- /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
5049
- /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M3 21v-5h5" })
5079
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M21 7v6h-6" }),
5080
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
5050
5081
  ]
5051
5082
  }
5052
5083
  );
5053
5084
  }
5054
5085
 
5055
- // src/components/icons/save/index.tsx
5086
+ // src/components/icons/refresh-cw/index.tsx
5056
5087
  var import_jsx_runtime115 = require("react/jsx-runtime");
5057
- function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5088
+ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5058
5089
  return /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
5059
5090
  "svg",
5060
5091
  {
@@ -5067,20 +5098,21 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5067
5098
  strokeWidth,
5068
5099
  strokeLinecap: "round",
5069
5100
  strokeLinejoin: "round",
5070
- "aria-hidden": "true",
5101
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5071
5102
  ...rest,
5072
5103
  children: [
5073
- /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
5074
- /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
5075
- /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
5104
+ /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
5105
+ /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M21 3v5h-5" }),
5106
+ /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
5107
+ /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M3 21v-5h5" })
5076
5108
  ]
5077
5109
  }
5078
5110
  );
5079
5111
  }
5080
5112
 
5081
- // src/components/icons/search/index.tsx
5113
+ // src/components/icons/save/index.tsx
5082
5114
  var import_jsx_runtime116 = require("react/jsx-runtime");
5083
- function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5115
+ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5084
5116
  return /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
5085
5117
  "svg",
5086
5118
  {
@@ -5093,19 +5125,20 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5093
5125
  strokeWidth,
5094
5126
  strokeLinecap: "round",
5095
5127
  strokeLinejoin: "round",
5096
- "aria-hidden": "true",
5128
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5097
5129
  ...rest,
5098
5130
  children: [
5099
- /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
5100
- /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "m21 21-4.3-4.3" })
5131
+ /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
5132
+ /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
5133
+ /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
5101
5134
  ]
5102
5135
  }
5103
5136
  );
5104
5137
  }
5105
5138
 
5106
- // src/components/icons/send/index.tsx
5139
+ // src/components/icons/search/index.tsx
5107
5140
  var import_jsx_runtime117 = require("react/jsx-runtime");
5108
- function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5141
+ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5109
5142
  return /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
5110
5143
  "svg",
5111
5144
  {
@@ -5118,19 +5151,19 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5118
5151
  strokeWidth,
5119
5152
  strokeLinecap: "round",
5120
5153
  strokeLinejoin: "round",
5121
- "aria-hidden": "true",
5154
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5122
5155
  ...rest,
5123
5156
  children: [
5124
- /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
5125
- /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
5157
+ /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
5158
+ /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("path", { d: "m21 21-4.3-4.3" })
5126
5159
  ]
5127
5160
  }
5128
5161
  );
5129
5162
  }
5130
5163
 
5131
- // src/components/icons/settings/index.tsx
5164
+ // src/components/icons/send/index.tsx
5132
5165
  var import_jsx_runtime118 = require("react/jsx-runtime");
5133
- function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5166
+ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5134
5167
  return /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)(
5135
5168
  "svg",
5136
5169
  {
@@ -5143,19 +5176,19 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5143
5176
  strokeWidth,
5144
5177
  strokeLinecap: "round",
5145
5178
  strokeLinejoin: "round",
5146
- "aria-hidden": "true",
5179
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5147
5180
  ...rest,
5148
5181
  children: [
5149
- /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
5150
- /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("circle", { cx: "12", cy: "12", r: "3" })
5182
+ /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
5183
+ /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
5151
5184
  ]
5152
5185
  }
5153
5186
  );
5154
5187
  }
5155
5188
 
5156
- // src/components/icons/share/index.tsx
5189
+ // src/components/icons/settings/index.tsx
5157
5190
  var import_jsx_runtime119 = require("react/jsx-runtime");
5158
- function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5191
+ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5159
5192
  return /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(
5160
5193
  "svg",
5161
5194
  {
@@ -5168,21 +5201,20 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5168
5201
  strokeWidth,
5169
5202
  strokeLinecap: "round",
5170
5203
  strokeLinejoin: "round",
5171
- "aria-hidden": "true",
5204
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5172
5205
  ...rest,
5173
5206
  children: [
5174
- /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
5175
- /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("polyline", { points: "16 6 12 2 8 6" }),
5176
- /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
5207
+ /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
5208
+ /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("circle", { cx: "12", cy: "12", r: "3" })
5177
5209
  ]
5178
5210
  }
5179
5211
  );
5180
5212
  }
5181
5213
 
5182
- // src/components/icons/shield/index.tsx
5214
+ // src/components/icons/share/index.tsx
5183
5215
  var import_jsx_runtime120 = require("react/jsx-runtime");
5184
- function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5185
- return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
5216
+ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5217
+ return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
5186
5218
  "svg",
5187
5219
  {
5188
5220
  xmlns: "http://www.w3.org/2000/svg",
@@ -5194,17 +5226,21 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5194
5226
  strokeWidth,
5195
5227
  strokeLinecap: "round",
5196
5228
  strokeLinejoin: "round",
5197
- "aria-hidden": "true",
5229
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5198
5230
  ...rest,
5199
- children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" })
5231
+ children: [
5232
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
5233
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("polyline", { points: "16 6 12 2 8 6" }),
5234
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
5235
+ ]
5200
5236
  }
5201
5237
  );
5202
5238
  }
5203
5239
 
5204
- // src/components/icons/shield-check/index.tsx
5240
+ // src/components/icons/shield/index.tsx
5205
5241
  var import_jsx_runtime121 = require("react/jsx-runtime");
5206
- function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5207
- return /* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(
5242
+ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5243
+ return /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
5208
5244
  "svg",
5209
5245
  {
5210
5246
  xmlns: "http://www.w3.org/2000/svg",
@@ -5216,19 +5252,16 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5216
5252
  strokeWidth,
5217
5253
  strokeLinecap: "round",
5218
5254
  strokeLinejoin: "round",
5219
- "aria-hidden": "true",
5255
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5220
5256
  ...rest,
5221
- children: [
5222
- /* @__PURE__ */ (0, import_jsx_runtime121.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
5223
- /* @__PURE__ */ (0, import_jsx_runtime121.jsx)("path", { d: "m9 12 2 2 4-4" })
5224
- ]
5257
+ children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" })
5225
5258
  }
5226
5259
  );
5227
5260
  }
5228
5261
 
5229
- // src/components/icons/shopping-bag/index.tsx
5262
+ // src/components/icons/shield-check/index.tsx
5230
5263
  var import_jsx_runtime122 = require("react/jsx-runtime");
5231
- function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5264
+ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5232
5265
  return /* @__PURE__ */ (0, import_jsx_runtime122.jsxs)(
5233
5266
  "svg",
5234
5267
  {
@@ -5241,20 +5274,19 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5241
5274
  strokeWidth,
5242
5275
  strokeLinecap: "round",
5243
5276
  strokeLinejoin: "round",
5244
- "aria-hidden": "true",
5277
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5245
5278
  ...rest,
5246
5279
  children: [
5247
- /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
5248
- /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M3 6h18" }),
5249
- /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M16 10a4 4 0 0 1-8 0" })
5280
+ /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
5281
+ /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "m9 12 2 2 4-4" })
5250
5282
  ]
5251
5283
  }
5252
5284
  );
5253
5285
  }
5254
5286
 
5255
- // src/components/icons/shopping-cart/index.tsx
5287
+ // src/components/icons/shopping-bag/index.tsx
5256
5288
  var import_jsx_runtime123 = require("react/jsx-runtime");
5257
- function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5289
+ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5258
5290
  return /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(
5259
5291
  "svg",
5260
5292
  {
@@ -5267,20 +5299,20 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5267
5299
  strokeWidth,
5268
5300
  strokeLinecap: "round",
5269
5301
  strokeLinejoin: "round",
5270
- "aria-hidden": "true",
5302
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5271
5303
  ...rest,
5272
5304
  children: [
5273
- /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("circle", { cx: "8", cy: "21", r: "1" }),
5274
- /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("circle", { cx: "19", cy: "21", r: "1" }),
5275
- /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" })
5305
+ /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
5306
+ /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M3 6h18" }),
5307
+ /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M16 10a4 4 0 0 1-8 0" })
5276
5308
  ]
5277
5309
  }
5278
5310
  );
5279
5311
  }
5280
5312
 
5281
- // src/components/icons/sidebar/index.tsx
5313
+ // src/components/icons/shopping-cart/index.tsx
5282
5314
  var import_jsx_runtime124 = require("react/jsx-runtime");
5283
- function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5315
+ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5284
5316
  return /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)(
5285
5317
  "svg",
5286
5318
  {
@@ -5293,19 +5325,20 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5293
5325
  strokeWidth,
5294
5326
  strokeLinecap: "round",
5295
5327
  strokeLinejoin: "round",
5296
- "aria-hidden": "true",
5328
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5297
5329
  ...rest,
5298
5330
  children: [
5299
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
5300
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { d: "M9 3v18" })
5331
+ /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("circle", { cx: "8", cy: "21", r: "1" }),
5332
+ /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("circle", { cx: "19", cy: "21", r: "1" }),
5333
+ /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" })
5301
5334
  ]
5302
5335
  }
5303
5336
  );
5304
5337
  }
5305
5338
 
5306
- // src/components/icons/skip-back/index.tsx
5339
+ // src/components/icons/sidebar/index.tsx
5307
5340
  var import_jsx_runtime125 = require("react/jsx-runtime");
5308
- function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5341
+ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5309
5342
  return /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)(
5310
5343
  "svg",
5311
5344
  {
@@ -5318,19 +5351,19 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5318
5351
  strokeWidth,
5319
5352
  strokeLinecap: "round",
5320
5353
  strokeLinejoin: "round",
5321
- "aria-hidden": "true",
5354
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5322
5355
  ...rest,
5323
5356
  children: [
5324
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("polygon", { points: "19 20 9 12 19 4 19 20" }),
5325
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
5357
+ /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
5358
+ /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("path", { d: "M9 3v18" })
5326
5359
  ]
5327
5360
  }
5328
5361
  );
5329
5362
  }
5330
5363
 
5331
- // src/components/icons/skip-forward/index.tsx
5364
+ // src/components/icons/skip-back/index.tsx
5332
5365
  var import_jsx_runtime126 = require("react/jsx-runtime");
5333
- function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5366
+ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5334
5367
  return /* @__PURE__ */ (0, import_jsx_runtime126.jsxs)(
5335
5368
  "svg",
5336
5369
  {
@@ -5343,19 +5376,19 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5343
5376
  strokeWidth,
5344
5377
  strokeLinecap: "round",
5345
5378
  strokeLinejoin: "round",
5346
- "aria-hidden": "true",
5379
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5347
5380
  ...rest,
5348
5381
  children: [
5349
- /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("polygon", { points: "5 4 15 12 5 20 5 4" }),
5350
- /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
5382
+ /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("polygon", { points: "19 20 9 12 19 4 19 20" }),
5383
+ /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
5351
5384
  ]
5352
5385
  }
5353
5386
  );
5354
5387
  }
5355
5388
 
5356
- // src/components/icons/sliders/index.tsx
5389
+ // src/components/icons/skip-forward/index.tsx
5357
5390
  var import_jsx_runtime127 = require("react/jsx-runtime");
5358
- function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5391
+ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5359
5392
  return /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)(
5360
5393
  "svg",
5361
5394
  {
@@ -5368,26 +5401,19 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5368
5401
  strokeWidth,
5369
5402
  strokeLinecap: "round",
5370
5403
  strokeLinejoin: "round",
5371
- "aria-hidden": "true",
5404
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5372
5405
  ...rest,
5373
5406
  children: [
5374
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
5375
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
5376
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
5377
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
5378
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
5379
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
5380
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
5381
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
5382
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
5407
+ /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("polygon", { points: "5 4 15 12 5 20 5 4" }),
5408
+ /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
5383
5409
  ]
5384
5410
  }
5385
5411
  );
5386
5412
  }
5387
5413
 
5388
- // src/components/icons/smile/index.tsx
5414
+ // src/components/icons/sliders/index.tsx
5389
5415
  var import_jsx_runtime128 = require("react/jsx-runtime");
5390
- function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5416
+ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5391
5417
  return /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)(
5392
5418
  "svg",
5393
5419
  {
@@ -5400,22 +5426,27 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5400
5426
  strokeWidth,
5401
5427
  strokeLinecap: "round",
5402
5428
  strokeLinejoin: "round",
5403
- "aria-hidden": "true",
5429
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5404
5430
  ...rest,
5405
5431
  children: [
5406
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
5407
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
5408
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
5409
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
5432
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
5433
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
5434
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
5435
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
5436
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
5437
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
5438
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
5439
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
5440
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
5410
5441
  ]
5411
5442
  }
5412
5443
  );
5413
5444
  }
5414
5445
 
5415
- // src/components/icons/star/index.tsx
5446
+ // src/components/icons/smile/index.tsx
5416
5447
  var import_jsx_runtime129 = require("react/jsx-runtime");
5417
- function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5418
- return /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
5448
+ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5449
+ return /* @__PURE__ */ (0, import_jsx_runtime129.jsxs)(
5419
5450
  "svg",
5420
5451
  {
5421
5452
  xmlns: "http://www.w3.org/2000/svg",
@@ -5427,17 +5458,22 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5427
5458
  strokeWidth,
5428
5459
  strokeLinecap: "round",
5429
5460
  strokeLinejoin: "round",
5430
- "aria-hidden": "true",
5461
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5431
5462
  ...rest,
5432
- children: /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
5463
+ children: [
5464
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
5465
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
5466
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
5467
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
5468
+ ]
5433
5469
  }
5434
5470
  );
5435
5471
  }
5436
5472
 
5437
- // src/components/icons/sun/index.tsx
5473
+ // src/components/icons/star/index.tsx
5438
5474
  var import_jsx_runtime130 = require("react/jsx-runtime");
5439
- function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5440
- return /* @__PURE__ */ (0, import_jsx_runtime130.jsxs)(
5475
+ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5476
+ return /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
5441
5477
  "svg",
5442
5478
  {
5443
5479
  xmlns: "http://www.w3.org/2000/svg",
@@ -5449,26 +5485,16 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5449
5485
  strokeWidth,
5450
5486
  strokeLinecap: "round",
5451
5487
  strokeLinejoin: "round",
5452
- "aria-hidden": "true",
5488
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5453
5489
  ...rest,
5454
- children: [
5455
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
5456
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M12 2v2" }),
5457
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M12 20v2" }),
5458
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m4.93 4.93 1.41 1.41" }),
5459
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m17.66 17.66 1.41 1.41" }),
5460
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M2 12h2" }),
5461
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M20 12h2" }),
5462
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m6.34 17.66-1.41 1.41" }),
5463
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m19.07 4.93-1.41 1.41" })
5464
- ]
5490
+ children: /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
5465
5491
  }
5466
5492
  );
5467
5493
  }
5468
5494
 
5469
- // src/components/icons/tag/index.tsx
5495
+ // src/components/icons/sun/index.tsx
5470
5496
  var import_jsx_runtime131 = require("react/jsx-runtime");
5471
- function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5497
+ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5472
5498
  return /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)(
5473
5499
  "svg",
5474
5500
  {
@@ -5481,19 +5507,26 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5481
5507
  strokeWidth,
5482
5508
  strokeLinecap: "round",
5483
5509
  strokeLinejoin: "round",
5484
- "aria-hidden": "true",
5510
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5485
5511
  ...rest,
5486
5512
  children: [
5487
- /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
5488
- /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
5513
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
5514
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M12 2v2" }),
5515
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M12 20v2" }),
5516
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m4.93 4.93 1.41 1.41" }),
5517
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m17.66 17.66 1.41 1.41" }),
5518
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M2 12h2" }),
5519
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M20 12h2" }),
5520
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m6.34 17.66-1.41 1.41" }),
5521
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m19.07 4.93-1.41 1.41" })
5489
5522
  ]
5490
5523
  }
5491
5524
  );
5492
5525
  }
5493
5526
 
5494
- // src/components/icons/thumbs-down/index.tsx
5527
+ // src/components/icons/tag/index.tsx
5495
5528
  var import_jsx_runtime132 = require("react/jsx-runtime");
5496
- function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5529
+ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5497
5530
  return /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(
5498
5531
  "svg",
5499
5532
  {
@@ -5506,19 +5539,19 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5506
5539
  strokeWidth,
5507
5540
  strokeLinecap: "round",
5508
5541
  strokeLinejoin: "round",
5509
- "aria-hidden": "true",
5542
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5510
5543
  ...rest,
5511
5544
  children: [
5512
- /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M17 14V2" }),
5513
- /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
5545
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
5546
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
5514
5547
  ]
5515
5548
  }
5516
5549
  );
5517
5550
  }
5518
5551
 
5519
- // src/components/icons/thumbs-up/index.tsx
5552
+ // src/components/icons/thumbs-down/index.tsx
5520
5553
  var import_jsx_runtime133 = require("react/jsx-runtime");
5521
- function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5554
+ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5522
5555
  return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)(
5523
5556
  "svg",
5524
5557
  {
@@ -5531,19 +5564,19 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5531
5564
  strokeWidth,
5532
5565
  strokeLinecap: "round",
5533
5566
  strokeLinejoin: "round",
5534
- "aria-hidden": "true",
5567
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5535
5568
  ...rest,
5536
5569
  children: [
5537
- /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M7 10v12" }),
5538
- /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
5570
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M17 14V2" }),
5571
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
5539
5572
  ]
5540
5573
  }
5541
5574
  );
5542
5575
  }
5543
5576
 
5544
- // src/components/icons/trash/index.tsx
5577
+ // src/components/icons/thumbs-up/index.tsx
5545
5578
  var import_jsx_runtime134 = require("react/jsx-runtime");
5546
- function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5579
+ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5547
5580
  return /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)(
5548
5581
  "svg",
5549
5582
  {
@@ -5556,20 +5589,19 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5556
5589
  strokeWidth,
5557
5590
  strokeLinecap: "round",
5558
5591
  strokeLinejoin: "round",
5559
- "aria-hidden": "true",
5592
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5560
5593
  ...rest,
5561
5594
  children: [
5562
- /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M3 6h18" }),
5563
- /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
5564
- /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
5595
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M7 10v12" }),
5596
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
5565
5597
  ]
5566
5598
  }
5567
5599
  );
5568
5600
  }
5569
5601
 
5570
- // src/components/icons/undo/index.tsx
5602
+ // src/components/icons/trash/index.tsx
5571
5603
  var import_jsx_runtime135 = require("react/jsx-runtime");
5572
- function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5604
+ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5573
5605
  return /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
5574
5606
  "svg",
5575
5607
  {
@@ -5582,19 +5614,20 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5582
5614
  strokeWidth,
5583
5615
  strokeLinecap: "round",
5584
5616
  strokeLinejoin: "round",
5585
- "aria-hidden": "true",
5617
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5586
5618
  ...rest,
5587
5619
  children: [
5588
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M3 7v6h6" }),
5589
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
5620
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M3 6h18" }),
5621
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
5622
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
5590
5623
  ]
5591
5624
  }
5592
5625
  );
5593
5626
  }
5594
5627
 
5595
- // src/components/icons/unlock/index.tsx
5628
+ // src/components/icons/undo/index.tsx
5596
5629
  var import_jsx_runtime136 = require("react/jsx-runtime");
5597
- function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5630
+ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5598
5631
  return /* @__PURE__ */ (0, import_jsx_runtime136.jsxs)(
5599
5632
  "svg",
5600
5633
  {
@@ -5607,19 +5640,19 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5607
5640
  strokeWidth,
5608
5641
  strokeLinecap: "round",
5609
5642
  strokeLinejoin: "round",
5610
- "aria-hidden": "true",
5643
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5611
5644
  ...rest,
5612
5645
  children: [
5613
- /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
5614
- /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
5646
+ /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M3 7v6h6" }),
5647
+ /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
5615
5648
  ]
5616
5649
  }
5617
5650
  );
5618
5651
  }
5619
5652
 
5620
- // src/components/icons/upload/index.tsx
5653
+ // src/components/icons/unlock/index.tsx
5621
5654
  var import_jsx_runtime137 = require("react/jsx-runtime");
5622
- function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5655
+ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5623
5656
  return /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(
5624
5657
  "svg",
5625
5658
  {
@@ -5632,20 +5665,19 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5632
5665
  strokeWidth,
5633
5666
  strokeLinecap: "round",
5634
5667
  strokeLinejoin: "round",
5635
- "aria-hidden": "true",
5668
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5636
5669
  ...rest,
5637
5670
  children: [
5638
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
5639
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("polyline", { points: "17 8 12 3 7 8" }),
5640
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
5671
+ /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
5672
+ /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
5641
5673
  ]
5642
5674
  }
5643
5675
  );
5644
5676
  }
5645
5677
 
5646
- // src/components/icons/user/index.tsx
5678
+ // src/components/icons/upload/index.tsx
5647
5679
  var import_jsx_runtime138 = require("react/jsx-runtime");
5648
- function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5680
+ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5649
5681
  return /* @__PURE__ */ (0, import_jsx_runtime138.jsxs)(
5650
5682
  "svg",
5651
5683
  {
@@ -5658,19 +5690,20 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5658
5690
  strokeWidth,
5659
5691
  strokeLinecap: "round",
5660
5692
  strokeLinejoin: "round",
5661
- "aria-hidden": "true",
5693
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5662
5694
  ...rest,
5663
5695
  children: [
5664
- /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
5665
- /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("circle", { cx: "12", cy: "7", r: "4" })
5696
+ /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
5697
+ /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("polyline", { points: "17 8 12 3 7 8" }),
5698
+ /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
5666
5699
  ]
5667
5700
  }
5668
5701
  );
5669
5702
  }
5670
5703
 
5671
- // src/components/icons/user-check/index.tsx
5704
+ // src/components/icons/user/index.tsx
5672
5705
  var import_jsx_runtime139 = require("react/jsx-runtime");
5673
- function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5706
+ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5674
5707
  return /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)(
5675
5708
  "svg",
5676
5709
  {
@@ -5683,20 +5716,19 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5683
5716
  strokeWidth,
5684
5717
  strokeLinecap: "round",
5685
5718
  strokeLinejoin: "round",
5686
- "aria-hidden": "true",
5719
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5687
5720
  ...rest,
5688
5721
  children: [
5689
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5690
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5691
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("polyline", { points: "16 11 18 13 22 9" })
5722
+ /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
5723
+ /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("circle", { cx: "12", cy: "7", r: "4" })
5692
5724
  ]
5693
5725
  }
5694
5726
  );
5695
5727
  }
5696
5728
 
5697
- // src/components/icons/user-plus/index.tsx
5729
+ // src/components/icons/user-check/index.tsx
5698
5730
  var import_jsx_runtime140 = require("react/jsx-runtime");
5699
- function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5731
+ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5700
5732
  return /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(
5701
5733
  "svg",
5702
5734
  {
@@ -5709,21 +5741,20 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5709
5741
  strokeWidth,
5710
5742
  strokeLinecap: "round",
5711
5743
  strokeLinejoin: "round",
5712
- "aria-hidden": "true",
5744
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5713
5745
  ...rest,
5714
5746
  children: [
5715
5747
  /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5716
5748
  /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5717
- /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
5718
- /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
5749
+ /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("polyline", { points: "16 11 18 13 22 9" })
5719
5750
  ]
5720
5751
  }
5721
5752
  );
5722
5753
  }
5723
5754
 
5724
- // src/components/icons/users/index.tsx
5755
+ // src/components/icons/user-plus/index.tsx
5725
5756
  var import_jsx_runtime141 = require("react/jsx-runtime");
5726
- function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5757
+ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5727
5758
  return /* @__PURE__ */ (0, import_jsx_runtime141.jsxs)(
5728
5759
  "svg",
5729
5760
  {
@@ -5736,21 +5767,21 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5736
5767
  strokeWidth,
5737
5768
  strokeLinecap: "round",
5738
5769
  strokeLinejoin: "round",
5739
- "aria-hidden": "true",
5770
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5740
5771
  ...rest,
5741
5772
  children: [
5742
5773
  /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5743
5774
  /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5744
- /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
5745
- /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
5775
+ /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
5776
+ /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
5746
5777
  ]
5747
5778
  }
5748
5779
  );
5749
5780
  }
5750
5781
 
5751
- // src/components/icons/volume-2/index.tsx
5782
+ // src/components/icons/users/index.tsx
5752
5783
  var import_jsx_runtime142 = require("react/jsx-runtime");
5753
- function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5784
+ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5754
5785
  return /* @__PURE__ */ (0, import_jsx_runtime142.jsxs)(
5755
5786
  "svg",
5756
5787
  {
@@ -5763,20 +5794,21 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5763
5794
  strokeWidth,
5764
5795
  strokeLinecap: "round",
5765
5796
  strokeLinejoin: "round",
5766
- "aria-hidden": "true",
5797
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5767
5798
  ...rest,
5768
5799
  children: [
5769
- /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5770
- /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
5771
- /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
5800
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5801
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5802
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
5803
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
5772
5804
  ]
5773
5805
  }
5774
5806
  );
5775
5807
  }
5776
5808
 
5777
- // src/components/icons/volume-x/index.tsx
5809
+ // src/components/icons/volume-2/index.tsx
5778
5810
  var import_jsx_runtime143 = require("react/jsx-runtime");
5779
- function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5811
+ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5780
5812
  return /* @__PURE__ */ (0, import_jsx_runtime143.jsxs)(
5781
5813
  "svg",
5782
5814
  {
@@ -5789,20 +5821,20 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5789
5821
  strokeWidth,
5790
5822
  strokeLinecap: "round",
5791
5823
  strokeLinejoin: "round",
5792
- "aria-hidden": "true",
5824
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5793
5825
  ...rest,
5794
5826
  children: [
5795
5827
  /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5796
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
5797
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
5828
+ /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
5829
+ /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
5798
5830
  ]
5799
5831
  }
5800
5832
  );
5801
5833
  }
5802
5834
 
5803
- // src/components/icons/wifi/index.tsx
5835
+ // src/components/icons/volume-x/index.tsx
5804
5836
  var import_jsx_runtime144 = require("react/jsx-runtime");
5805
- function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5837
+ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5806
5838
  return /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)(
5807
5839
  "svg",
5808
5840
  {
@@ -5815,22 +5847,48 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5815
5847
  strokeWidth,
5816
5848
  strokeLinecap: "round",
5817
5849
  strokeLinejoin: "round",
5818
- "aria-hidden": "true",
5850
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5819
5851
  ...rest,
5820
5852
  children: [
5821
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M12 20h.01" }),
5822
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
5823
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
5824
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
5853
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5854
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
5855
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
5825
5856
  ]
5826
5857
  }
5827
5858
  );
5828
5859
  }
5829
5860
 
5830
- // src/components/icons/zap/index.tsx
5861
+ // src/components/icons/wifi/index.tsx
5831
5862
  var import_jsx_runtime145 = require("react/jsx-runtime");
5832
- function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5833
- return /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
5863
+ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5864
+ return /* @__PURE__ */ (0, import_jsx_runtime145.jsxs)(
5865
+ "svg",
5866
+ {
5867
+ xmlns: "http://www.w3.org/2000/svg",
5868
+ width: size3,
5869
+ height: size3,
5870
+ viewBox: "0 0 24 24",
5871
+ fill: "none",
5872
+ stroke: "currentColor",
5873
+ strokeWidth,
5874
+ strokeLinecap: "round",
5875
+ strokeLinejoin: "round",
5876
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5877
+ ...rest,
5878
+ children: [
5879
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M12 20h.01" }),
5880
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
5881
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
5882
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
5883
+ ]
5884
+ }
5885
+ );
5886
+ }
5887
+
5888
+ // src/components/icons/zap/index.tsx
5889
+ var import_jsx_runtime146 = require("react/jsx-runtime");
5890
+ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5891
+ return /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
5834
5892
  "svg",
5835
5893
  {
5836
5894
  xmlns: "http://www.w3.org/2000/svg",
@@ -5842,9 +5900,9 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5842
5900
  strokeWidth,
5843
5901
  strokeLinecap: "round",
5844
5902
  strokeLinejoin: "round",
5845
- "aria-hidden": "true",
5903
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5846
5904
  ...rest,
5847
- children: /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
5905
+ children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
5848
5906
  }
5849
5907
  );
5850
5908
  }
@@ -5890,6 +5948,7 @@ var iconCatalog = [
5890
5948
  { name: "FolderIcon", Icon: FolderIcon },
5891
5949
  { name: "FolderOpenIcon", Icon: FolderOpenIcon },
5892
5950
  { name: "GiftIcon", Icon: GiftIcon },
5951
+ { name: "GitHubIcon", Icon: GitHubIcon },
5893
5952
  { name: "GlobeIcon", Icon: GlobeIcon },
5894
5953
  { name: "GridIcon", Icon: GridIcon },
5895
5954
  { name: "HeartIcon", Icon: HeartIcon },
@@ -6016,6 +6075,7 @@ var iconCatalog = [
6016
6075
  FolderIcon,
6017
6076
  FolderOpenIcon,
6018
6077
  GiftIcon,
6078
+ GitHubIcon,
6019
6079
  GlobeIcon,
6020
6080
  GridIcon,
6021
6081
  HeartIcon,