@octavius2929-personal/design-system 1.0.1 → 1.2.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,
@@ -1116,7 +1117,7 @@ var import_react23 = require("react");
1116
1117
 
1117
1118
  // src/components/icons/x/index.tsx
1118
1119
  var import_jsx_runtime11 = require("react/jsx-runtime");
1119
- function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1120
+ function XIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1120
1121
  return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
1121
1122
  "svg",
1122
1123
  {
@@ -1129,7 +1130,7 @@ function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1129
1130
  strokeWidth,
1130
1131
  strokeLinecap: "round",
1131
1132
  strokeLinejoin: "round",
1132
- "aria-hidden": "true",
1133
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1133
1134
  ...rest,
1134
1135
  children: [
1135
1136
  /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "M18 6 6 18" }),
@@ -1212,7 +1213,7 @@ var import_react25 = require("react");
1212
1213
 
1213
1214
  // src/components/icons/check/index.tsx
1214
1215
  var import_jsx_runtime13 = require("react/jsx-runtime");
1215
- function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1216
+ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1216
1217
  return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1217
1218
  "svg",
1218
1219
  {
@@ -1225,7 +1226,7 @@ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1225
1226
  strokeWidth,
1226
1227
  strokeLinecap: "round",
1227
1228
  strokeLinejoin: "round",
1228
- "aria-hidden": "true",
1229
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1229
1230
  ...rest,
1230
1231
  children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "M20 6 9 17l-5-5" })
1231
1232
  }
@@ -1556,7 +1557,7 @@ var import_react34 = require("react");
1556
1557
 
1557
1558
  // src/components/icons/eye/index.tsx
1558
1559
  var import_jsx_runtime19 = require("react/jsx-runtime");
1559
- function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1560
+ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1560
1561
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
1561
1562
  "svg",
1562
1563
  {
@@ -1569,7 +1570,7 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1569
1570
  strokeWidth,
1570
1571
  strokeLinecap: "round",
1571
1572
  strokeLinejoin: "round",
1572
- "aria-hidden": "true",
1573
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1573
1574
  ...rest,
1574
1575
  children: [
1575
1576
  /* @__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 +1582,7 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1581
1582
 
1582
1583
  // src/components/icons/eye-off/index.tsx
1583
1584
  var import_jsx_runtime20 = require("react/jsx-runtime");
1584
- function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1585
+ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1585
1586
  return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
1586
1587
  "svg",
1587
1588
  {
@@ -1594,7 +1595,7 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1594
1595
  strokeWidth,
1595
1596
  strokeLinecap: "round",
1596
1597
  strokeLinejoin: "round",
1597
- "aria-hidden": "true",
1598
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1598
1599
  ...rest,
1599
1600
  children: [
1600
1601
  /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
@@ -1839,7 +1840,7 @@ var import_react41 = require("react");
1839
1840
 
1840
1841
  // src/components/icons/circle-check/index.tsx
1841
1842
  var import_jsx_runtime25 = require("react/jsx-runtime");
1842
- function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1843
+ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1843
1844
  return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
1844
1845
  "svg",
1845
1846
  {
@@ -1852,7 +1853,7 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1852
1853
  strokeWidth,
1853
1854
  strokeLinecap: "round",
1854
1855
  strokeLinejoin: "round",
1855
- "aria-hidden": "true",
1856
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1856
1857
  ...rest,
1857
1858
  children: [
1858
1859
  /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
@@ -1864,7 +1865,7 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1864
1865
 
1865
1866
  // src/components/icons/circle-x/index.tsx
1866
1867
  var import_jsx_runtime26 = require("react/jsx-runtime");
1867
- function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1868
+ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1868
1869
  return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
1869
1870
  "svg",
1870
1871
  {
@@ -1877,7 +1878,7 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1877
1878
  strokeWidth,
1878
1879
  strokeLinecap: "round",
1879
1880
  strokeLinejoin: "round",
1880
- "aria-hidden": "true",
1881
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1881
1882
  ...rest,
1882
1883
  children: [
1883
1884
  /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
@@ -1890,7 +1891,7 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1890
1891
 
1891
1892
  // src/components/icons/info/index.tsx
1892
1893
  var import_jsx_runtime27 = require("react/jsx-runtime");
1893
- function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1894
+ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1894
1895
  return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
1895
1896
  "svg",
1896
1897
  {
@@ -1903,7 +1904,7 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1903
1904
  strokeWidth,
1904
1905
  strokeLinecap: "round",
1905
1906
  strokeLinejoin: "round",
1906
- "aria-hidden": "true",
1907
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1907
1908
  ...rest,
1908
1909
  children: [
1909
1910
  /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
@@ -1916,7 +1917,7 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1916
1917
 
1917
1918
  // src/components/icons/triangle-alert/index.tsx
1918
1919
  var import_jsx_runtime28 = require("react/jsx-runtime");
1919
- function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1920
+ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
1920
1921
  return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
1921
1922
  "svg",
1922
1923
  {
@@ -1929,7 +1930,7 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1929
1930
  strokeWidth,
1930
1931
  strokeLinecap: "round",
1931
1932
  strokeLinejoin: "round",
1932
- "aria-hidden": "true",
1933
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
1933
1934
  ...rest,
1934
1935
  children: [
1935
1936
  /* @__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" }),
@@ -1974,17 +1975,33 @@ var defaultIcons = {
1974
1975
  warn: TriangleAlertIcon,
1975
1976
  danger: CircleXIcon
1976
1977
  };
1978
+ var roleBySeverity = {
1979
+ info: "status",
1980
+ ok: "status",
1981
+ warn: "alert",
1982
+ danger: "alert"
1983
+ };
1977
1984
  var Alert = (0, import_react41.forwardRef)(function Alert2({ severity: severity2 = "info", title, icon, className, testId, children, ...rest }, ref) {
1978
1985
  const styles = useStyles17({ severity: severity2, className });
1979
1986
  const { testId: dataTestId, slot } = useTestId("feedback", testId);
1980
1987
  const IconComponent = icon ?? defaultIcons[severity2];
1981
- return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { ref, role: "alert", className: styles.root, "data-testid": dataTestId, ...rest, children: [
1982
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("span", { className: styles.iconSlot, "data-testid": slot("icon"), children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(IconComponent, {}) }),
1983
- /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { className: styles.content, "data-testid": slot("content"), children: [
1984
- title != null && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Typography, { variant: "h4", children: title }),
1985
- children != null && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Typography, { variant: "body", color: "muted", children })
1986
- ] })
1987
- ] });
1988
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
1989
+ "div",
1990
+ {
1991
+ ref,
1992
+ role: roleBySeverity[severity2],
1993
+ className: styles.root,
1994
+ "data-testid": dataTestId,
1995
+ ...rest,
1996
+ children: [
1997
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("span", { className: styles.iconSlot, "data-testid": slot("icon"), children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(IconComponent, {}) }),
1998
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { className: styles.content, "data-testid": slot("content"), children: [
1999
+ title != null && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Typography, { variant: "h4", children: title }),
2000
+ children != null && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Typography, { variant: "body", color: "muted", children })
2001
+ ] })
2002
+ ]
2003
+ }
2004
+ );
1988
2005
  });
1989
2006
 
1990
2007
  // src/components/tooltip/index.tsx
@@ -2090,7 +2107,7 @@ var import_react45 = require("react");
2090
2107
 
2091
2108
  // src/components/icons/chevron-down/index.tsx
2092
2109
  var import_jsx_runtime31 = require("react/jsx-runtime");
2093
- function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2110
+ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
2094
2111
  return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
2095
2112
  "svg",
2096
2113
  {
@@ -2103,7 +2120,7 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2103
2120
  strokeWidth,
2104
2121
  strokeLinecap: "round",
2105
2122
  strokeLinejoin: "round",
2106
- "aria-hidden": "true",
2123
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
2107
2124
  ...rest,
2108
2125
  children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "m6 9 6 6 6-6" })
2109
2126
  }
@@ -2449,7 +2466,7 @@ var import_react51 = require("react");
2449
2466
 
2450
2467
  // src/components/icons/chevron-right/index.tsx
2451
2468
  var import_jsx_runtime35 = require("react/jsx-runtime");
2452
- function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2469
+ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
2453
2470
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2454
2471
  "svg",
2455
2472
  {
@@ -2462,7 +2479,7 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2462
2479
  strokeWidth,
2463
2480
  strokeLinecap: "round",
2464
2481
  strokeLinejoin: "round",
2465
- "aria-hidden": "true",
2482
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
2466
2483
  ...rest,
2467
2484
  children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "m9 18 6-6-6-6" })
2468
2485
  }
@@ -2508,7 +2525,7 @@ var import_react53 = require("react");
2508
2525
 
2509
2526
  // src/components/icons/chevron-left/index.tsx
2510
2527
  var import_jsx_runtime37 = require("react/jsx-runtime");
2511
- function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2528
+ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
2512
2529
  return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2513
2530
  "svg",
2514
2531
  {
@@ -2521,7 +2538,7 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2521
2538
  strokeWidth,
2522
2539
  strokeLinecap: "round",
2523
2540
  strokeLinejoin: "round",
2524
- "aria-hidden": "true",
2541
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
2525
2542
  ...rest,
2526
2543
  children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "m15 18-6-6 6-6" })
2527
2544
  }
@@ -3120,26 +3137,80 @@ function useStyles28() {
3120
3137
 
3121
3138
  // src/components/snackbar/index.tsx
3122
3139
  var import_jsx_runtime43 = require("react/jsx-runtime");
3123
- var Snackbar = (0, import_react63.forwardRef)(function Snackbar2({ open, message: message2, action, onClose, testId }, ref) {
3140
+ var DEFAULT_DURATION = 5e3;
3141
+ var Snackbar = (0, import_react63.forwardRef)(function Snackbar2({ open, message: message2, action, onClose, duration = DEFAULT_DURATION, testId }, ref) {
3124
3142
  const { root: root24, message: messageClass, closeBtn: closeBtn2 } = useStyles28();
3125
3143
  const { testId: dataTestId, slot } = useTestId("feedback", testId);
3144
+ const onCloseRef = (0, import_react63.useRef)(onClose);
3145
+ (0, import_react63.useEffect)(() => {
3146
+ onCloseRef.current = onClose;
3147
+ }, [onClose]);
3148
+ const interactingRef = (0, import_react63.useRef)({ hover: false, focus: false });
3149
+ const timeoutRef = (0, import_react63.useRef)();
3150
+ const clearTimer = (0, import_react63.useCallback)(() => {
3151
+ if (timeoutRef.current !== void 0) {
3152
+ clearTimeout(timeoutRef.current);
3153
+ timeoutRef.current = void 0;
3154
+ }
3155
+ }, []);
3156
+ const scheduleTimer = (0, import_react63.useCallback)(() => {
3157
+ clearTimer();
3158
+ if (!open || duration == null || !onCloseRef.current) return;
3159
+ if (interactingRef.current.hover || interactingRef.current.focus) return;
3160
+ timeoutRef.current = setTimeout(() => {
3161
+ onCloseRef.current?.();
3162
+ }, duration);
3163
+ }, [open, duration, clearTimer]);
3164
+ (0, import_react63.useEffect)(() => {
3165
+ scheduleTimer();
3166
+ return clearTimer;
3167
+ }, [scheduleTimer, clearTimer]);
3168
+ const handleMouseEnter = () => {
3169
+ interactingRef.current.hover = true;
3170
+ clearTimer();
3171
+ };
3172
+ const handleMouseLeave = () => {
3173
+ interactingRef.current.hover = false;
3174
+ scheduleTimer();
3175
+ };
3176
+ const handleFocus = () => {
3177
+ interactingRef.current.focus = true;
3178
+ clearTimer();
3179
+ };
3180
+ const handleBlur = () => {
3181
+ interactingRef.current.focus = false;
3182
+ scheduleTimer();
3183
+ };
3126
3184
  if (!open || typeof document === "undefined") return null;
3127
3185
  return (0, import_react_dom2.createPortal)(
3128
- /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)("div", { ref, role: "status", className: root24, "data-testid": dataTestId, children: [
3129
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("span", { className: messageClass, "data-testid": slot("message"), children: message2 }),
3130
- action,
3131
- onClose && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
3132
- "button",
3133
- {
3134
- type: "button",
3135
- "aria-label": "Close",
3136
- className: closeBtn2,
3137
- "data-testid": slot("close"),
3138
- onClick: onClose,
3139
- children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(XIcon, { size: 18 })
3140
- }
3141
- )
3142
- ] }),
3186
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
3187
+ "div",
3188
+ {
3189
+ ref,
3190
+ role: "status",
3191
+ className: root24,
3192
+ "data-testid": dataTestId,
3193
+ onMouseEnter: handleMouseEnter,
3194
+ onMouseLeave: handleMouseLeave,
3195
+ onFocus: handleFocus,
3196
+ onBlur: handleBlur,
3197
+ children: [
3198
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("span", { className: messageClass, "data-testid": slot("message"), children: message2 }),
3199
+ action,
3200
+ onClose && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
3201
+ "button",
3202
+ {
3203
+ type: "button",
3204
+ "aria-label": "Close",
3205
+ className: closeBtn2,
3206
+ "data-testid": slot("close"),
3207
+ onClick: onClose,
3208
+ children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(XIcon, { size: 18 })
3209
+ }
3210
+ )
3211
+ ]
3212
+ }
3213
+ ),
3143
3214
  document.body
3144
3215
  );
3145
3216
  });
@@ -3273,7 +3344,7 @@ var ListItem = (0, import_react69.forwardRef)(function ListItem2({ leading: lead
3273
3344
 
3274
3345
  // src/components/icons/alert-circle/index.tsx
3275
3346
  var import_jsx_runtime47 = require("react/jsx-runtime");
3276
- function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3347
+ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3277
3348
  return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
3278
3349
  "svg",
3279
3350
  {
@@ -3286,7 +3357,7 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3286
3357
  strokeWidth,
3287
3358
  strokeLinecap: "round",
3288
3359
  strokeLinejoin: "round",
3289
- "aria-hidden": "true",
3360
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3290
3361
  ...rest,
3291
3362
  children: [
3292
3363
  /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
@@ -3299,7 +3370,7 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3299
3370
 
3300
3371
  // src/components/icons/archive/index.tsx
3301
3372
  var import_jsx_runtime48 = require("react/jsx-runtime");
3302
- function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3373
+ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3303
3374
  return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
3304
3375
  "svg",
3305
3376
  {
@@ -3312,7 +3383,7 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3312
3383
  strokeWidth,
3313
3384
  strokeLinecap: "round",
3314
3385
  strokeLinejoin: "round",
3315
- "aria-hidden": "true",
3386
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3316
3387
  ...rest,
3317
3388
  children: [
3318
3389
  /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
@@ -3325,7 +3396,7 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3325
3396
 
3326
3397
  // src/components/icons/arrow-down/index.tsx
3327
3398
  var import_jsx_runtime49 = require("react/jsx-runtime");
3328
- function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3399
+ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3329
3400
  return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
3330
3401
  "svg",
3331
3402
  {
@@ -3338,7 +3409,7 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3338
3409
  strokeWidth,
3339
3410
  strokeLinecap: "round",
3340
3411
  strokeLinejoin: "round",
3341
- "aria-hidden": "true",
3412
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3342
3413
  ...rest,
3343
3414
  children: [
3344
3415
  /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M12 5v14" }),
@@ -3350,7 +3421,7 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3350
3421
 
3351
3422
  // src/components/icons/arrow-left/index.tsx
3352
3423
  var import_jsx_runtime50 = require("react/jsx-runtime");
3353
- function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3424
+ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3354
3425
  return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
3355
3426
  "svg",
3356
3427
  {
@@ -3363,7 +3434,7 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3363
3434
  strokeWidth,
3364
3435
  strokeLinecap: "round",
3365
3436
  strokeLinejoin: "round",
3366
- "aria-hidden": "true",
3437
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3367
3438
  ...rest,
3368
3439
  children: [
3369
3440
  /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "m12 19-7-7 7-7" }),
@@ -3375,7 +3446,7 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3375
3446
 
3376
3447
  // src/components/icons/arrow-right/index.tsx
3377
3448
  var import_jsx_runtime51 = require("react/jsx-runtime");
3378
- function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3449
+ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3379
3450
  return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
3380
3451
  "svg",
3381
3452
  {
@@ -3388,7 +3459,7 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3388
3459
  strokeWidth,
3389
3460
  strokeLinecap: "round",
3390
3461
  strokeLinejoin: "round",
3391
- "aria-hidden": "true",
3462
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3392
3463
  ...rest,
3393
3464
  children: [
3394
3465
  /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M5 12h14" }),
@@ -3400,7 +3471,7 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3400
3471
 
3401
3472
  // src/components/icons/arrow-up/index.tsx
3402
3473
  var import_jsx_runtime52 = require("react/jsx-runtime");
3403
- function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3474
+ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3404
3475
  return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
3405
3476
  "svg",
3406
3477
  {
@@ -3413,7 +3484,7 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3413
3484
  strokeWidth,
3414
3485
  strokeLinecap: "round",
3415
3486
  strokeLinejoin: "round",
3416
- "aria-hidden": "true",
3487
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3417
3488
  ...rest,
3418
3489
  children: [
3419
3490
  /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "m5 12 7-7 7 7" }),
@@ -3425,7 +3496,7 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3425
3496
 
3426
3497
  // src/components/icons/at-sign/index.tsx
3427
3498
  var import_jsx_runtime53 = require("react/jsx-runtime");
3428
- function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3499
+ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3429
3500
  return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
3430
3501
  "svg",
3431
3502
  {
@@ -3438,7 +3509,7 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3438
3509
  strokeWidth,
3439
3510
  strokeLinecap: "round",
3440
3511
  strokeLinejoin: "round",
3441
- "aria-hidden": "true",
3512
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3442
3513
  ...rest,
3443
3514
  children: [
3444
3515
  /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
@@ -3450,7 +3521,7 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3450
3521
 
3451
3522
  // src/components/icons/bell/index.tsx
3452
3523
  var import_jsx_runtime54 = require("react/jsx-runtime");
3453
- function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3524
+ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3454
3525
  return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
3455
3526
  "svg",
3456
3527
  {
@@ -3463,7 +3534,7 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3463
3534
  strokeWidth,
3464
3535
  strokeLinecap: "round",
3465
3536
  strokeLinejoin: "round",
3466
- "aria-hidden": "true",
3537
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3467
3538
  ...rest,
3468
3539
  children: [
3469
3540
  /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
@@ -3475,7 +3546,7 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3475
3546
 
3476
3547
  // src/components/icons/bell-off/index.tsx
3477
3548
  var import_jsx_runtime55 = require("react/jsx-runtime");
3478
- function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3549
+ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3479
3550
  return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
3480
3551
  "svg",
3481
3552
  {
@@ -3488,7 +3559,7 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3488
3559
  strokeWidth,
3489
3560
  strokeLinecap: "round",
3490
3561
  strokeLinejoin: "round",
3491
- "aria-hidden": "true",
3562
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3492
3563
  ...rest,
3493
3564
  children: [
3494
3565
  /* @__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" }),
@@ -3502,7 +3573,7 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3502
3573
 
3503
3574
  // src/components/icons/bookmark/index.tsx
3504
3575
  var import_jsx_runtime56 = require("react/jsx-runtime");
3505
- function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3576
+ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3506
3577
  return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
3507
3578
  "svg",
3508
3579
  {
@@ -3515,7 +3586,7 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3515
3586
  strokeWidth,
3516
3587
  strokeLinecap: "round",
3517
3588
  strokeLinejoin: "round",
3518
- "aria-hidden": "true",
3589
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3519
3590
  ...rest,
3520
3591
  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" })
3521
3592
  }
@@ -3524,7 +3595,7 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3524
3595
 
3525
3596
  // src/components/icons/calendar/index.tsx
3526
3597
  var import_jsx_runtime57 = require("react/jsx-runtime");
3527
- function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3598
+ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3528
3599
  return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
3529
3600
  "svg",
3530
3601
  {
@@ -3537,7 +3608,7 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3537
3608
  strokeWidth,
3538
3609
  strokeLinecap: "round",
3539
3610
  strokeLinejoin: "round",
3540
- "aria-hidden": "true",
3611
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3541
3612
  ...rest,
3542
3613
  children: [
3543
3614
  /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M8 2v4" }),
@@ -3551,7 +3622,7 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3551
3622
 
3552
3623
  // src/components/icons/camera/index.tsx
3553
3624
  var import_jsx_runtime58 = require("react/jsx-runtime");
3554
- function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3625
+ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3555
3626
  return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
3556
3627
  "svg",
3557
3628
  {
@@ -3564,7 +3635,7 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3564
3635
  strokeWidth,
3565
3636
  strokeLinecap: "round",
3566
3637
  strokeLinejoin: "round",
3567
- "aria-hidden": "true",
3638
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3568
3639
  ...rest,
3569
3640
  children: [
3570
3641
  /* @__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" }),
@@ -3576,7 +3647,7 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3576
3647
 
3577
3648
  // src/components/icons/chevron-up/index.tsx
3578
3649
  var import_jsx_runtime59 = require("react/jsx-runtime");
3579
- function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3650
+ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3580
3651
  return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
3581
3652
  "svg",
3582
3653
  {
@@ -3589,7 +3660,7 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3589
3660
  strokeWidth,
3590
3661
  strokeLinecap: "round",
3591
3662
  strokeLinejoin: "round",
3592
- "aria-hidden": "true",
3663
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3593
3664
  ...rest,
3594
3665
  children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("path", { d: "m18 15-6-6-6 6" })
3595
3666
  }
@@ -3598,7 +3669,7 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3598
3669
 
3599
3670
  // src/components/icons/chevrons-left/index.tsx
3600
3671
  var import_jsx_runtime60 = require("react/jsx-runtime");
3601
- function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3672
+ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3602
3673
  return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
3603
3674
  "svg",
3604
3675
  {
@@ -3611,7 +3682,7 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3611
3682
  strokeWidth,
3612
3683
  strokeLinecap: "round",
3613
3684
  strokeLinejoin: "round",
3614
- "aria-hidden": "true",
3685
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3615
3686
  ...rest,
3616
3687
  children: [
3617
3688
  /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { d: "m11 17-5-5 5-5" }),
@@ -3623,7 +3694,7 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3623
3694
 
3624
3695
  // src/components/icons/chevrons-right/index.tsx
3625
3696
  var import_jsx_runtime61 = require("react/jsx-runtime");
3626
- function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3697
+ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3627
3698
  return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
3628
3699
  "svg",
3629
3700
  {
@@ -3636,7 +3707,7 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3636
3707
  strokeWidth,
3637
3708
  strokeLinecap: "round",
3638
3709
  strokeLinejoin: "round",
3639
- "aria-hidden": "true",
3710
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3640
3711
  ...rest,
3641
3712
  children: [
3642
3713
  /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "m6 17 5-5-5-5" }),
@@ -3648,7 +3719,7 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3648
3719
 
3649
3720
  // src/components/icons/clipboard/index.tsx
3650
3721
  var import_jsx_runtime62 = require("react/jsx-runtime");
3651
- function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3722
+ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3652
3723
  return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
3653
3724
  "svg",
3654
3725
  {
@@ -3661,7 +3732,7 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3661
3732
  strokeWidth,
3662
3733
  strokeLinecap: "round",
3663
3734
  strokeLinejoin: "round",
3664
- "aria-hidden": "true",
3735
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3665
3736
  ...rest,
3666
3737
  children: [
3667
3738
  /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
@@ -3673,7 +3744,7 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3673
3744
 
3674
3745
  // src/components/icons/clock/index.tsx
3675
3746
  var import_jsx_runtime63 = require("react/jsx-runtime");
3676
- function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3747
+ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3677
3748
  return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
3678
3749
  "svg",
3679
3750
  {
@@ -3686,7 +3757,7 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3686
3757
  strokeWidth,
3687
3758
  strokeLinecap: "round",
3688
3759
  strokeLinejoin: "round",
3689
- "aria-hidden": "true",
3760
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3690
3761
  ...rest,
3691
3762
  children: [
3692
3763
  /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
@@ -3698,7 +3769,7 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3698
3769
 
3699
3770
  // src/components/icons/cloud/index.tsx
3700
3771
  var import_jsx_runtime64 = require("react/jsx-runtime");
3701
- function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3772
+ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3702
3773
  return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3703
3774
  "svg",
3704
3775
  {
@@ -3711,7 +3782,7 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3711
3782
  strokeWidth,
3712
3783
  strokeLinecap: "round",
3713
3784
  strokeLinejoin: "round",
3714
- "aria-hidden": "true",
3785
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3715
3786
  ...rest,
3716
3787
  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" })
3717
3788
  }
@@ -3720,7 +3791,7 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3720
3791
 
3721
3792
  // src/components/icons/copy/index.tsx
3722
3793
  var import_jsx_runtime65 = require("react/jsx-runtime");
3723
- function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3794
+ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3724
3795
  return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
3725
3796
  "svg",
3726
3797
  {
@@ -3733,7 +3804,7 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3733
3804
  strokeWidth,
3734
3805
  strokeLinecap: "round",
3735
3806
  strokeLinejoin: "round",
3736
- "aria-hidden": "true",
3807
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3737
3808
  ...rest,
3738
3809
  children: [
3739
3810
  /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
@@ -3745,7 +3816,7 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3745
3816
 
3746
3817
  // src/components/icons/corner-down-right/index.tsx
3747
3818
  var import_jsx_runtime66 = require("react/jsx-runtime");
3748
- function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3819
+ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3749
3820
  return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
3750
3821
  "svg",
3751
3822
  {
@@ -3758,7 +3829,7 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
3758
3829
  strokeWidth,
3759
3830
  strokeLinecap: "round",
3760
3831
  strokeLinejoin: "round",
3761
- "aria-hidden": "true",
3832
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3762
3833
  ...rest,
3763
3834
  children: [
3764
3835
  /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("polyline", { points: "15 10 20 15 15 20" }),
@@ -3770,7 +3841,7 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
3770
3841
 
3771
3842
  // src/components/icons/credit-card/index.tsx
3772
3843
  var import_jsx_runtime67 = require("react/jsx-runtime");
3773
- function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3844
+ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3774
3845
  return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
3775
3846
  "svg",
3776
3847
  {
@@ -3783,7 +3854,7 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3783
3854
  strokeWidth,
3784
3855
  strokeLinecap: "round",
3785
3856
  strokeLinejoin: "round",
3786
- "aria-hidden": "true",
3857
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3787
3858
  ...rest,
3788
3859
  children: [
3789
3860
  /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
@@ -3795,7 +3866,7 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3795
3866
 
3796
3867
  // src/components/icons/dollar-sign/index.tsx
3797
3868
  var import_jsx_runtime68 = require("react/jsx-runtime");
3798
- function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3869
+ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3799
3870
  return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
3800
3871
  "svg",
3801
3872
  {
@@ -3808,7 +3879,7 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3808
3879
  strokeWidth,
3809
3880
  strokeLinecap: "round",
3810
3881
  strokeLinejoin: "round",
3811
- "aria-hidden": "true",
3882
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3812
3883
  ...rest,
3813
3884
  children: [
3814
3885
  /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
@@ -3820,7 +3891,7 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3820
3891
 
3821
3892
  // src/components/icons/download/index.tsx
3822
3893
  var import_jsx_runtime69 = require("react/jsx-runtime");
3823
- function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3894
+ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3824
3895
  return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
3825
3896
  "svg",
3826
3897
  {
@@ -3833,7 +3904,7 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3833
3904
  strokeWidth,
3834
3905
  strokeLinecap: "round",
3835
3906
  strokeLinejoin: "round",
3836
- "aria-hidden": "true",
3907
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3837
3908
  ...rest,
3838
3909
  children: [
3839
3910
  /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
@@ -3846,7 +3917,7 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3846
3917
 
3847
3918
  // src/components/icons/external-link/index.tsx
3848
3919
  var import_jsx_runtime70 = require("react/jsx-runtime");
3849
- function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3920
+ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3850
3921
  return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
3851
3922
  "svg",
3852
3923
  {
@@ -3859,7 +3930,7 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3859
3930
  strokeWidth,
3860
3931
  strokeLinecap: "round",
3861
3932
  strokeLinejoin: "round",
3862
- "aria-hidden": "true",
3933
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3863
3934
  ...rest,
3864
3935
  children: [
3865
3936
  /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", { d: "M15 3h6v6" }),
@@ -3872,7 +3943,7 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3872
3943
 
3873
3944
  // src/components/icons/file/index.tsx
3874
3945
  var import_jsx_runtime71 = require("react/jsx-runtime");
3875
- function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3946
+ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3876
3947
  return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
3877
3948
  "svg",
3878
3949
  {
@@ -3885,7 +3956,7 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3885
3956
  strokeWidth,
3886
3957
  strokeLinecap: "round",
3887
3958
  strokeLinejoin: "round",
3888
- "aria-hidden": "true",
3959
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3889
3960
  ...rest,
3890
3961
  children: [
3891
3962
  /* @__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" }),
@@ -3897,7 +3968,7 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3897
3968
 
3898
3969
  // src/components/icons/file-text/index.tsx
3899
3970
  var import_jsx_runtime72 = require("react/jsx-runtime");
3900
- function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3971
+ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3901
3972
  return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
3902
3973
  "svg",
3903
3974
  {
@@ -3910,7 +3981,7 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3910
3981
  strokeWidth,
3911
3982
  strokeLinecap: "round",
3912
3983
  strokeLinejoin: "round",
3913
- "aria-hidden": "true",
3984
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3914
3985
  ...rest,
3915
3986
  children: [
3916
3987
  /* @__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" }),
@@ -3925,7 +3996,7 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3925
3996
 
3926
3997
  // src/components/icons/filter/index.tsx
3927
3998
  var import_jsx_runtime73 = require("react/jsx-runtime");
3928
- function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3999
+ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3929
4000
  return /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3930
4001
  "svg",
3931
4002
  {
@@ -3938,7 +4009,7 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3938
4009
  strokeWidth,
3939
4010
  strokeLinecap: "round",
3940
4011
  strokeLinejoin: "round",
3941
- "aria-hidden": "true",
4012
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3942
4013
  ...rest,
3943
4014
  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" })
3944
4015
  }
@@ -3947,7 +4018,7 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3947
4018
 
3948
4019
  // src/components/icons/fingerprint/index.tsx
3949
4020
  var import_jsx_runtime74 = require("react/jsx-runtime");
3950
- function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4021
+ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3951
4022
  return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
3952
4023
  "svg",
3953
4024
  {
@@ -3960,7 +4031,7 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3960
4031
  strokeWidth,
3961
4032
  strokeLinecap: "round",
3962
4033
  strokeLinejoin: "round",
3963
- "aria-hidden": "true",
4034
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3964
4035
  ...rest,
3965
4036
  children: [
3966
4037
  /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
@@ -3979,7 +4050,7 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3979
4050
 
3980
4051
  // src/components/icons/folder/index.tsx
3981
4052
  var import_jsx_runtime75 = require("react/jsx-runtime");
3982
- function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4053
+ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
3983
4054
  return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
3984
4055
  "svg",
3985
4056
  {
@@ -3992,7 +4063,7 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3992
4063
  strokeWidth,
3993
4064
  strokeLinecap: "round",
3994
4065
  strokeLinejoin: "round",
3995
- "aria-hidden": "true",
4066
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
3996
4067
  ...rest,
3997
4068
  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" })
3998
4069
  }
@@ -4001,7 +4072,7 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4001
4072
 
4002
4073
  // src/components/icons/folder-open/index.tsx
4003
4074
  var import_jsx_runtime76 = require("react/jsx-runtime");
4004
- function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4075
+ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4005
4076
  return /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
4006
4077
  "svg",
4007
4078
  {
@@ -4014,7 +4085,7 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4014
4085
  strokeWidth,
4015
4086
  strokeLinecap: "round",
4016
4087
  strokeLinejoin: "round",
4017
- "aria-hidden": "true",
4088
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4018
4089
  ...rest,
4019
4090
  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" })
4020
4091
  }
@@ -4023,7 +4094,7 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4023
4094
 
4024
4095
  // src/components/icons/gift/index.tsx
4025
4096
  var import_jsx_runtime77 = require("react/jsx-runtime");
4026
- function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4097
+ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4027
4098
  return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
4028
4099
  "svg",
4029
4100
  {
@@ -4036,7 +4107,7 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4036
4107
  strokeWidth,
4037
4108
  strokeLinecap: "round",
4038
4109
  strokeLinejoin: "round",
4039
- "aria-hidden": "true",
4110
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4040
4111
  ...rest,
4041
4112
  children: [
4042
4113
  /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
@@ -4048,10 +4119,10 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4048
4119
  );
4049
4120
  }
4050
4121
 
4051
- // src/components/icons/globe/index.tsx
4122
+ // src/components/icons/github/index.tsx
4052
4123
  var import_jsx_runtime78 = require("react/jsx-runtime");
4053
- function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4054
- return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
4124
+ function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4125
+ return /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
4055
4126
  "svg",
4056
4127
  {
4057
4128
  xmlns: "http://www.w3.org/2000/svg",
@@ -4063,20 +4134,16 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4063
4134
  strokeWidth,
4064
4135
  strokeLinecap: "round",
4065
4136
  strokeLinejoin: "round",
4066
- "aria-hidden": "true",
4137
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4067
4138
  ...rest,
4068
- children: [
4069
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
4070
- /* @__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" }),
4071
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M2 12h20" })
4072
- ]
4139
+ 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" })
4073
4140
  }
4074
4141
  );
4075
4142
  }
4076
4143
 
4077
- // src/components/icons/grid/index.tsx
4144
+ // src/components/icons/globe/index.tsx
4078
4145
  var import_jsx_runtime79 = require("react/jsx-runtime");
4079
- function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4146
+ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4080
4147
  return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
4081
4148
  "svg",
4082
4149
  {
@@ -4089,23 +4156,21 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4089
4156
  strokeWidth,
4090
4157
  strokeLinecap: "round",
4091
4158
  strokeLinejoin: "round",
4092
- "aria-hidden": "true",
4159
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4093
4160
  ...rest,
4094
4161
  children: [
4095
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
4096
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M3 9h18" }),
4097
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M3 15h18" }),
4098
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M9 3v18" }),
4099
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M15 3v18" })
4162
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
4163
+ /* @__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" }),
4164
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M2 12h20" })
4100
4165
  ]
4101
4166
  }
4102
4167
  );
4103
4168
  }
4104
4169
 
4105
- // src/components/icons/heart/index.tsx
4170
+ // src/components/icons/grid/index.tsx
4106
4171
  var import_jsx_runtime80 = require("react/jsx-runtime");
4107
- function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4108
- return /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
4172
+ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4173
+ return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
4109
4174
  "svg",
4110
4175
  {
4111
4176
  xmlns: "http://www.w3.org/2000/svg",
@@ -4117,17 +4182,23 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4117
4182
  strokeWidth,
4118
4183
  strokeLinecap: "round",
4119
4184
  strokeLinejoin: "round",
4120
- "aria-hidden": "true",
4185
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4121
4186
  ...rest,
4122
- 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" })
4187
+ children: [
4188
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
4189
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M3 9h18" }),
4190
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M3 15h18" }),
4191
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M9 3v18" }),
4192
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M15 3v18" })
4193
+ ]
4123
4194
  }
4124
4195
  );
4125
4196
  }
4126
4197
 
4127
- // src/components/icons/help-circle/index.tsx
4198
+ // src/components/icons/heart/index.tsx
4128
4199
  var import_jsx_runtime81 = require("react/jsx-runtime");
4129
- function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4130
- return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
4200
+ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4201
+ return /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
4131
4202
  "svg",
4132
4203
  {
4133
4204
  xmlns: "http://www.w3.org/2000/svg",
@@ -4139,20 +4210,16 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4139
4210
  strokeWidth,
4140
4211
  strokeLinecap: "round",
4141
4212
  strokeLinejoin: "round",
4142
- "aria-hidden": "true",
4213
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4143
4214
  ...rest,
4144
- children: [
4145
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
4146
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
4147
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M12 17h.01" })
4148
- ]
4215
+ 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" })
4149
4216
  }
4150
4217
  );
4151
4218
  }
4152
4219
 
4153
- // src/components/icons/home/index.tsx
4220
+ // src/components/icons/help-circle/index.tsx
4154
4221
  var import_jsx_runtime82 = require("react/jsx-runtime");
4155
- function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4222
+ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4156
4223
  return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)(
4157
4224
  "svg",
4158
4225
  {
@@ -4165,19 +4232,20 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4165
4232
  strokeWidth,
4166
4233
  strokeLinecap: "round",
4167
4234
  strokeLinejoin: "round",
4168
- "aria-hidden": "true",
4235
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4169
4236
  ...rest,
4170
4237
  children: [
4171
- /* @__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" }),
4172
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("polyline", { points: "9 22 9 12 15 12 15 22" })
4238
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
4239
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
4240
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("path", { d: "M12 17h.01" })
4173
4241
  ]
4174
4242
  }
4175
4243
  );
4176
4244
  }
4177
4245
 
4178
- // src/components/icons/image/index.tsx
4246
+ // src/components/icons/home/index.tsx
4179
4247
  var import_jsx_runtime83 = require("react/jsx-runtime");
4180
- function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4248
+ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4181
4249
  return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(
4182
4250
  "svg",
4183
4251
  {
@@ -4190,20 +4258,19 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4190
4258
  strokeWidth,
4191
4259
  strokeLinecap: "round",
4192
4260
  strokeLinejoin: "round",
4193
- "aria-hidden": "true",
4261
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4194
4262
  ...rest,
4195
4263
  children: [
4196
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
4197
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
4198
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
4264
+ /* @__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" }),
4265
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("polyline", { points: "9 22 9 12 15 12 15 22" })
4199
4266
  ]
4200
4267
  }
4201
4268
  );
4202
4269
  }
4203
4270
 
4204
- // src/components/icons/inbox/index.tsx
4271
+ // src/components/icons/image/index.tsx
4205
4272
  var import_jsx_runtime84 = require("react/jsx-runtime");
4206
- function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4273
+ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4207
4274
  return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
4208
4275
  "svg",
4209
4276
  {
@@ -4216,19 +4283,20 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4216
4283
  strokeWidth,
4217
4284
  strokeLinecap: "round",
4218
4285
  strokeLinejoin: "round",
4219
- "aria-hidden": "true",
4286
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4220
4287
  ...rest,
4221
4288
  children: [
4222
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
4223
- /* @__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" })
4289
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
4290
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
4291
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
4224
4292
  ]
4225
4293
  }
4226
4294
  );
4227
4295
  }
4228
4296
 
4229
- // src/components/icons/key/index.tsx
4297
+ // src/components/icons/inbox/index.tsx
4230
4298
  var import_jsx_runtime85 = require("react/jsx-runtime");
4231
- function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4299
+ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4232
4300
  return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
4233
4301
  "svg",
4234
4302
  {
@@ -4241,20 +4309,19 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4241
4309
  strokeWidth,
4242
4310
  strokeLinecap: "round",
4243
4311
  strokeLinejoin: "round",
4244
- "aria-hidden": "true",
4312
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4245
4313
  ...rest,
4246
4314
  children: [
4247
- /* @__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" }),
4248
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("path", { d: "m21 2-9.6 9.6" }),
4249
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
4315
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
4316
+ /* @__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" })
4250
4317
  ]
4251
4318
  }
4252
4319
  );
4253
4320
  }
4254
4321
 
4255
- // src/components/icons/layout/index.tsx
4322
+ // src/components/icons/key/index.tsx
4256
4323
  var import_jsx_runtime86 = require("react/jsx-runtime");
4257
- function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4324
+ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4258
4325
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
4259
4326
  "svg",
4260
4327
  {
@@ -4267,21 +4334,20 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4267
4334
  strokeWidth,
4268
4335
  strokeLinecap: "round",
4269
4336
  strokeLinejoin: "round",
4270
- "aria-hidden": "true",
4337
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4271
4338
  ...rest,
4272
4339
  children: [
4273
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
4274
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
4275
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
4276
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
4340
+ /* @__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" }),
4341
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("path", { d: "m21 2-9.6 9.6" }),
4342
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
4277
4343
  ]
4278
4344
  }
4279
4345
  );
4280
4346
  }
4281
4347
 
4282
- // src/components/icons/link/index.tsx
4348
+ // src/components/icons/layout/index.tsx
4283
4349
  var import_jsx_runtime87 = require("react/jsx-runtime");
4284
- function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4350
+ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4285
4351
  return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
4286
4352
  "svg",
4287
4353
  {
@@ -4294,19 +4360,21 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4294
4360
  strokeWidth,
4295
4361
  strokeLinecap: "round",
4296
4362
  strokeLinejoin: "round",
4297
- "aria-hidden": "true",
4363
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4298
4364
  ...rest,
4299
4365
  children: [
4300
- /* @__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" }),
4301
- /* @__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" })
4366
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
4367
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
4368
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
4369
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
4302
4370
  ]
4303
4371
  }
4304
4372
  );
4305
4373
  }
4306
4374
 
4307
- // src/components/icons/list/index.tsx
4375
+ // src/components/icons/link/index.tsx
4308
4376
  var import_jsx_runtime88 = require("react/jsx-runtime");
4309
- function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4377
+ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4310
4378
  return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(
4311
4379
  "svg",
4312
4380
  {
@@ -4319,23 +4387,19 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4319
4387
  strokeWidth,
4320
4388
  strokeLinecap: "round",
4321
4389
  strokeLinejoin: "round",
4322
- "aria-hidden": "true",
4390
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4323
4391
  ...rest,
4324
4392
  children: [
4325
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
4326
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
4327
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
4328
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
4329
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
4330
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
4393
+ /* @__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" }),
4394
+ /* @__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" })
4331
4395
  ]
4332
4396
  }
4333
4397
  );
4334
4398
  }
4335
4399
 
4336
- // src/components/icons/loader/index.tsx
4400
+ // src/components/icons/list/index.tsx
4337
4401
  var import_jsx_runtime89 = require("react/jsx-runtime");
4338
- function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4402
+ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4339
4403
  return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
4340
4404
  "svg",
4341
4405
  {
@@ -4348,25 +4412,23 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4348
4412
  strokeWidth,
4349
4413
  strokeLinecap: "round",
4350
4414
  strokeLinejoin: "round",
4351
- "aria-hidden": "true",
4415
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4352
4416
  ...rest,
4353
4417
  children: [
4354
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
4355
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
4356
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
4357
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
4358
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
4359
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
4360
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
4361
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
4418
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
4419
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
4420
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
4421
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
4422
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
4423
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
4362
4424
  ]
4363
4425
  }
4364
4426
  );
4365
4427
  }
4366
4428
 
4367
- // src/components/icons/lock/index.tsx
4429
+ // src/components/icons/loader/index.tsx
4368
4430
  var import_jsx_runtime90 = require("react/jsx-runtime");
4369
- function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4431
+ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4370
4432
  return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
4371
4433
  "svg",
4372
4434
  {
@@ -4379,19 +4441,25 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4379
4441
  strokeWidth,
4380
4442
  strokeLinecap: "round",
4381
4443
  strokeLinejoin: "round",
4382
- "aria-hidden": "true",
4444
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4383
4445
  ...rest,
4384
4446
  children: [
4385
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
4386
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
4447
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
4448
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
4449
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
4450
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
4451
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
4452
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
4453
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
4454
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
4387
4455
  ]
4388
4456
  }
4389
4457
  );
4390
4458
  }
4391
4459
 
4392
- // src/components/icons/log-in/index.tsx
4460
+ // src/components/icons/lock/index.tsx
4393
4461
  var import_jsx_runtime91 = require("react/jsx-runtime");
4394
- function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4462
+ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4395
4463
  return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
4396
4464
  "svg",
4397
4465
  {
@@ -4404,20 +4472,19 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4404
4472
  strokeWidth,
4405
4473
  strokeLinecap: "round",
4406
4474
  strokeLinejoin: "round",
4407
- "aria-hidden": "true",
4475
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4408
4476
  ...rest,
4409
4477
  children: [
4410
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
4411
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("polyline", { points: "10 17 15 12 10 7" }),
4412
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
4478
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
4479
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
4413
4480
  ]
4414
4481
  }
4415
4482
  );
4416
4483
  }
4417
4484
 
4418
- // src/components/icons/log-out/index.tsx
4485
+ // src/components/icons/log-in/index.tsx
4419
4486
  var import_jsx_runtime92 = require("react/jsx-runtime");
4420
- function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4487
+ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4421
4488
  return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
4422
4489
  "svg",
4423
4490
  {
@@ -4430,20 +4497,20 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4430
4497
  strokeWidth,
4431
4498
  strokeLinecap: "round",
4432
4499
  strokeLinejoin: "round",
4433
- "aria-hidden": "true",
4500
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4434
4501
  ...rest,
4435
4502
  children: [
4436
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
4437
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("polyline", { points: "16 17 21 12 16 7" }),
4438
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
4503
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
4504
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("polyline", { points: "10 17 15 12 10 7" }),
4505
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
4439
4506
  ]
4440
4507
  }
4441
4508
  );
4442
4509
  }
4443
4510
 
4444
- // src/components/icons/mail/index.tsx
4511
+ // src/components/icons/log-out/index.tsx
4445
4512
  var import_jsx_runtime93 = require("react/jsx-runtime");
4446
- function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4513
+ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4447
4514
  return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
4448
4515
  "svg",
4449
4516
  {
@@ -4456,19 +4523,20 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4456
4523
  strokeWidth,
4457
4524
  strokeLinecap: "round",
4458
4525
  strokeLinejoin: "round",
4459
- "aria-hidden": "true",
4526
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4460
4527
  ...rest,
4461
4528
  children: [
4462
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
4463
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
4529
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
4530
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("polyline", { points: "16 17 21 12 16 7" }),
4531
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
4464
4532
  ]
4465
4533
  }
4466
4534
  );
4467
4535
  }
4468
4536
 
4469
- // src/components/icons/map-pin/index.tsx
4537
+ // src/components/icons/mail/index.tsx
4470
4538
  var import_jsx_runtime94 = require("react/jsx-runtime");
4471
- function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4539
+ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4472
4540
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
4473
4541
  "svg",
4474
4542
  {
@@ -4481,19 +4549,19 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4481
4549
  strokeWidth,
4482
4550
  strokeLinecap: "round",
4483
4551
  strokeLinejoin: "round",
4484
- "aria-hidden": "true",
4552
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4485
4553
  ...rest,
4486
4554
  children: [
4487
- /* @__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" }),
4488
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("circle", { cx: "12", cy: "10", r: "3" })
4555
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
4556
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
4489
4557
  ]
4490
4558
  }
4491
4559
  );
4492
4560
  }
4493
4561
 
4494
- // src/components/icons/maximize/index.tsx
4562
+ // src/components/icons/map-pin/index.tsx
4495
4563
  var import_jsx_runtime95 = require("react/jsx-runtime");
4496
- function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4564
+ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4497
4565
  return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
4498
4566
  "svg",
4499
4567
  {
@@ -4506,21 +4574,19 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4506
4574
  strokeWidth,
4507
4575
  strokeLinecap: "round",
4508
4576
  strokeLinejoin: "round",
4509
- "aria-hidden": "true",
4577
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4510
4578
  ...rest,
4511
4579
  children: [
4512
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
4513
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
4514
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
4515
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
4580
+ /* @__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" }),
4581
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("circle", { cx: "12", cy: "10", r: "3" })
4516
4582
  ]
4517
4583
  }
4518
4584
  );
4519
4585
  }
4520
4586
 
4521
- // src/components/icons/menu/index.tsx
4587
+ // src/components/icons/maximize/index.tsx
4522
4588
  var import_jsx_runtime96 = require("react/jsx-runtime");
4523
- function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4589
+ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4524
4590
  return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
4525
4591
  "svg",
4526
4592
  {
@@ -4533,21 +4599,22 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4533
4599
  strokeWidth,
4534
4600
  strokeLinecap: "round",
4535
4601
  strokeLinejoin: "round",
4536
- "aria-hidden": "true",
4602
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4537
4603
  ...rest,
4538
4604
  children: [
4539
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
4540
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
4541
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
4605
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
4606
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
4607
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
4608
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
4542
4609
  ]
4543
4610
  }
4544
4611
  );
4545
4612
  }
4546
4613
 
4547
- // src/components/icons/message-circle/index.tsx
4614
+ // src/components/icons/menu/index.tsx
4548
4615
  var import_jsx_runtime97 = require("react/jsx-runtime");
4549
- function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4550
- return /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
4616
+ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4617
+ return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)(
4551
4618
  "svg",
4552
4619
  {
4553
4620
  xmlns: "http://www.w3.org/2000/svg",
@@ -4559,16 +4626,20 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4559
4626
  strokeWidth,
4560
4627
  strokeLinecap: "round",
4561
4628
  strokeLinejoin: "round",
4562
- "aria-hidden": "true",
4629
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4563
4630
  ...rest,
4564
- children: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
4631
+ children: [
4632
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
4633
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
4634
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
4635
+ ]
4565
4636
  }
4566
4637
  );
4567
4638
  }
4568
4639
 
4569
- // src/components/icons/message-square/index.tsx
4640
+ // src/components/icons/message-circle/index.tsx
4570
4641
  var import_jsx_runtime98 = require("react/jsx-runtime");
4571
- function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4642
+ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4572
4643
  return /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
4573
4644
  "svg",
4574
4645
  {
@@ -4581,17 +4652,17 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4581
4652
  strokeWidth,
4582
4653
  strokeLinecap: "round",
4583
4654
  strokeLinejoin: "round",
4584
- "aria-hidden": "true",
4655
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4585
4656
  ...rest,
4586
- 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" })
4657
+ children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
4587
4658
  }
4588
4659
  );
4589
4660
  }
4590
4661
 
4591
- // src/components/icons/mic/index.tsx
4662
+ // src/components/icons/message-square/index.tsx
4592
4663
  var import_jsx_runtime99 = require("react/jsx-runtime");
4593
- function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4594
- return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)(
4664
+ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4665
+ return /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
4595
4666
  "svg",
4596
4667
  {
4597
4668
  xmlns: "http://www.w3.org/2000/svg",
@@ -4603,20 +4674,16 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4603
4674
  strokeWidth,
4604
4675
  strokeLinecap: "round",
4605
4676
  strokeLinejoin: "round",
4606
- "aria-hidden": "true",
4677
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4607
4678
  ...rest,
4608
- children: [
4609
- /* @__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" }),
4610
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
4611
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
4612
- ]
4679
+ 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" })
4613
4680
  }
4614
4681
  );
4615
4682
  }
4616
4683
 
4617
- // src/components/icons/minimize/index.tsx
4684
+ // src/components/icons/mic/index.tsx
4618
4685
  var import_jsx_runtime100 = require("react/jsx-runtime");
4619
- function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4686
+ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4620
4687
  return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(
4621
4688
  "svg",
4622
4689
  {
@@ -4629,22 +4696,21 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4629
4696
  strokeWidth,
4630
4697
  strokeLinecap: "round",
4631
4698
  strokeLinejoin: "round",
4632
- "aria-hidden": "true",
4699
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4633
4700
  ...rest,
4634
4701
  children: [
4635
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
4636
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
4637
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
4638
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
4702
+ /* @__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" }),
4703
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
4704
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
4639
4705
  ]
4640
4706
  }
4641
4707
  );
4642
4708
  }
4643
4709
 
4644
- // src/components/icons/minus/index.tsx
4710
+ // src/components/icons/minimize/index.tsx
4645
4711
  var import_jsx_runtime101 = require("react/jsx-runtime");
4646
- function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4647
- return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
4712
+ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4713
+ return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(
4648
4714
  "svg",
4649
4715
  {
4650
4716
  xmlns: "http://www.w3.org/2000/svg",
@@ -4656,16 +4722,21 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4656
4722
  strokeWidth,
4657
4723
  strokeLinecap: "round",
4658
4724
  strokeLinejoin: "round",
4659
- "aria-hidden": "true",
4725
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4660
4726
  ...rest,
4661
- children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M5 12h14" })
4727
+ children: [
4728
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
4729
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
4730
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
4731
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
4732
+ ]
4662
4733
  }
4663
4734
  );
4664
4735
  }
4665
4736
 
4666
- // src/components/icons/moon/index.tsx
4737
+ // src/components/icons/minus/index.tsx
4667
4738
  var import_jsx_runtime102 = require("react/jsx-runtime");
4668
- function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4739
+ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4669
4740
  return /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
4670
4741
  "svg",
4671
4742
  {
@@ -4678,17 +4749,17 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4678
4749
  strokeWidth,
4679
4750
  strokeLinecap: "round",
4680
4751
  strokeLinejoin: "round",
4681
- "aria-hidden": "true",
4752
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4682
4753
  ...rest,
4683
- children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
4754
+ children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M5 12h14" })
4684
4755
  }
4685
4756
  );
4686
4757
  }
4687
4758
 
4688
- // src/components/icons/more-horizontal/index.tsx
4759
+ // src/components/icons/moon/index.tsx
4689
4760
  var import_jsx_runtime103 = require("react/jsx-runtime");
4690
- function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4691
- return /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(
4761
+ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4762
+ return /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
4692
4763
  "svg",
4693
4764
  {
4694
4765
  xmlns: "http://www.w3.org/2000/svg",
@@ -4700,20 +4771,16 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4700
4771
  strokeWidth,
4701
4772
  strokeLinecap: "round",
4702
4773
  strokeLinejoin: "round",
4703
- "aria-hidden": "true",
4774
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4704
4775
  ...rest,
4705
- children: [
4706
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
4707
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
4708
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("circle", { cx: "5", cy: "12", r: "1" })
4709
- ]
4776
+ children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
4710
4777
  }
4711
4778
  );
4712
4779
  }
4713
4780
 
4714
- // src/components/icons/more-vertical/index.tsx
4781
+ // src/components/icons/more-horizontal/index.tsx
4715
4782
  var import_jsx_runtime104 = require("react/jsx-runtime");
4716
- function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4783
+ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4717
4784
  return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
4718
4785
  "svg",
4719
4786
  {
@@ -4726,20 +4793,20 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4726
4793
  strokeWidth,
4727
4794
  strokeLinecap: "round",
4728
4795
  strokeLinejoin: "round",
4729
- "aria-hidden": "true",
4796
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4730
4797
  ...rest,
4731
4798
  children: [
4732
4799
  /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
4733
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "12", cy: "5", r: "1" }),
4734
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "12", cy: "19", r: "1" })
4800
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
4801
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "5", cy: "12", r: "1" })
4735
4802
  ]
4736
4803
  }
4737
4804
  );
4738
4805
  }
4739
4806
 
4740
- // src/components/icons/package/index.tsx
4807
+ // src/components/icons/more-vertical/index.tsx
4741
4808
  var import_jsx_runtime105 = require("react/jsx-runtime");
4742
- function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4809
+ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4743
4810
  return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
4744
4811
  "svg",
4745
4812
  {
@@ -4752,21 +4819,21 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4752
4819
  strokeWidth,
4753
4820
  strokeLinecap: "round",
4754
4821
  strokeLinejoin: "round",
4755
- "aria-hidden": "true",
4822
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4756
4823
  ...rest,
4757
4824
  children: [
4758
- /* @__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" }),
4759
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("path", { d: "M3.3 7 12 12l8.7-5" }),
4760
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("path", { d: "M12 22V12" })
4825
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
4826
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "5", r: "1" }),
4827
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "19", r: "1" })
4761
4828
  ]
4762
4829
  }
4763
4830
  );
4764
4831
  }
4765
4832
 
4766
- // src/components/icons/paperclip/index.tsx
4833
+ // src/components/icons/package/index.tsx
4767
4834
  var import_jsx_runtime106 = require("react/jsx-runtime");
4768
- function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4769
- return /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
4835
+ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4836
+ return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(
4770
4837
  "svg",
4771
4838
  {
4772
4839
  xmlns: "http://www.w3.org/2000/svg",
@@ -4778,17 +4845,21 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4778
4845
  strokeWidth,
4779
4846
  strokeLinecap: "round",
4780
4847
  strokeLinejoin: "round",
4781
- "aria-hidden": "true",
4848
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4782
4849
  ...rest,
4783
- 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" })
4850
+ children: [
4851
+ /* @__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" }),
4852
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("path", { d: "M3.3 7 12 12l8.7-5" }),
4853
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("path", { d: "M12 22V12" })
4854
+ ]
4784
4855
  }
4785
4856
  );
4786
4857
  }
4787
4858
 
4788
- // src/components/icons/pause/index.tsx
4859
+ // src/components/icons/paperclip/index.tsx
4789
4860
  var import_jsx_runtime107 = require("react/jsx-runtime");
4790
- function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4791
- return /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(
4861
+ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4862
+ return /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
4792
4863
  "svg",
4793
4864
  {
4794
4865
  xmlns: "http://www.w3.org/2000/svg",
@@ -4800,19 +4871,16 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4800
4871
  strokeWidth,
4801
4872
  strokeLinecap: "round",
4802
4873
  strokeLinejoin: "round",
4803
- "aria-hidden": "true",
4874
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4804
4875
  ...rest,
4805
- children: [
4806
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
4807
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
4808
- ]
4876
+ 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" })
4809
4877
  }
4810
4878
  );
4811
4879
  }
4812
4880
 
4813
- // src/components/icons/pencil/index.tsx
4881
+ // src/components/icons/pause/index.tsx
4814
4882
  var import_jsx_runtime108 = require("react/jsx-runtime");
4815
- function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4883
+ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4816
4884
  return /* @__PURE__ */ (0, import_jsx_runtime108.jsxs)(
4817
4885
  "svg",
4818
4886
  {
@@ -4825,20 +4893,20 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4825
4893
  strokeWidth,
4826
4894
  strokeLinecap: "round",
4827
4895
  strokeLinejoin: "round",
4828
- "aria-hidden": "true",
4896
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4829
4897
  ...rest,
4830
4898
  children: [
4831
- /* @__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" }),
4832
- /* @__PURE__ */ (0, import_jsx_runtime108.jsx)("path", { d: "m15 5 4 4" })
4899
+ /* @__PURE__ */ (0, import_jsx_runtime108.jsx)("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
4900
+ /* @__PURE__ */ (0, import_jsx_runtime108.jsx)("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
4833
4901
  ]
4834
4902
  }
4835
4903
  );
4836
4904
  }
4837
4905
 
4838
- // src/components/icons/phone/index.tsx
4906
+ // src/components/icons/pencil/index.tsx
4839
4907
  var import_jsx_runtime109 = require("react/jsx-runtime");
4840
- function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4841
- return /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
4908
+ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4909
+ return /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)(
4842
4910
  "svg",
4843
4911
  {
4844
4912
  xmlns: "http://www.w3.org/2000/svg",
@@ -4850,16 +4918,19 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4850
4918
  strokeWidth,
4851
4919
  strokeLinecap: "round",
4852
4920
  strokeLinejoin: "round",
4853
- "aria-hidden": "true",
4921
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4854
4922
  ...rest,
4855
- 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" })
4923
+ children: [
4924
+ /* @__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" }),
4925
+ /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("path", { d: "m15 5 4 4" })
4926
+ ]
4856
4927
  }
4857
4928
  );
4858
4929
  }
4859
4930
 
4860
- // src/components/icons/play/index.tsx
4931
+ // src/components/icons/phone/index.tsx
4861
4932
  var import_jsx_runtime110 = require("react/jsx-runtime");
4862
- function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4933
+ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4863
4934
  return /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
4864
4935
  "svg",
4865
4936
  {
@@ -4872,17 +4943,17 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4872
4943
  strokeWidth,
4873
4944
  strokeLinecap: "round",
4874
4945
  strokeLinejoin: "round",
4875
- "aria-hidden": "true",
4946
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4876
4947
  ...rest,
4877
- children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("polygon", { points: "6 3 20 12 6 21 6 3" })
4948
+ 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" })
4878
4949
  }
4879
4950
  );
4880
4951
  }
4881
4952
 
4882
- // src/components/icons/plus/index.tsx
4953
+ // src/components/icons/play/index.tsx
4883
4954
  var import_jsx_runtime111 = require("react/jsx-runtime");
4884
- function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4885
- return /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(
4955
+ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4956
+ return /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
4886
4957
  "svg",
4887
4958
  {
4888
4959
  xmlns: "http://www.w3.org/2000/svg",
@@ -4894,19 +4965,16 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4894
4965
  strokeWidth,
4895
4966
  strokeLinecap: "round",
4896
4967
  strokeLinejoin: "round",
4897
- "aria-hidden": "true",
4968
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4898
4969
  ...rest,
4899
- children: [
4900
- /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("path", { d: "M5 12h14" }),
4901
- /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("path", { d: "M12 5v14" })
4902
- ]
4970
+ children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("polygon", { points: "6 3 20 12 6 21 6 3" })
4903
4971
  }
4904
4972
  );
4905
4973
  }
4906
4974
 
4907
- // src/components/icons/printer/index.tsx
4975
+ // src/components/icons/plus/index.tsx
4908
4976
  var import_jsx_runtime112 = require("react/jsx-runtime");
4909
- function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4977
+ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4910
4978
  return /* @__PURE__ */ (0, import_jsx_runtime112.jsxs)(
4911
4979
  "svg",
4912
4980
  {
@@ -4919,20 +4987,19 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4919
4987
  strokeWidth,
4920
4988
  strokeLinecap: "round",
4921
4989
  strokeLinejoin: "round",
4922
- "aria-hidden": "true",
4990
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4923
4991
  ...rest,
4924
4992
  children: [
4925
- /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("polyline", { points: "6 9 6 2 18 2 18 9" }),
4926
- /* @__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" }),
4927
- /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("rect", { width: "12", height: "8", x: "6", y: "14" })
4993
+ /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("path", { d: "M5 12h14" }),
4994
+ /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("path", { d: "M12 5v14" })
4928
4995
  ]
4929
4996
  }
4930
4997
  );
4931
4998
  }
4932
4999
 
4933
- // src/components/icons/redo/index.tsx
5000
+ // src/components/icons/printer/index.tsx
4934
5001
  var import_jsx_runtime113 = require("react/jsx-runtime");
4935
- function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5002
+ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4936
5003
  return /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
4937
5004
  "svg",
4938
5005
  {
@@ -4945,19 +5012,20 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4945
5012
  strokeWidth,
4946
5013
  strokeLinecap: "round",
4947
5014
  strokeLinejoin: "round",
4948
- "aria-hidden": "true",
5015
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4949
5016
  ...rest,
4950
5017
  children: [
4951
- /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "M21 7v6h-6" }),
4952
- /* @__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" })
5018
+ /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("polyline", { points: "6 9 6 2 18 2 18 9" }),
5019
+ /* @__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" }),
5020
+ /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("rect", { width: "12", height: "8", x: "6", y: "14" })
4953
5021
  ]
4954
5022
  }
4955
5023
  );
4956
5024
  }
4957
5025
 
4958
- // src/components/icons/refresh-cw/index.tsx
5026
+ // src/components/icons/redo/index.tsx
4959
5027
  var import_jsx_runtime114 = require("react/jsx-runtime");
4960
- function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5028
+ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4961
5029
  return /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
4962
5030
  "svg",
4963
5031
  {
@@ -4970,21 +5038,19 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4970
5038
  strokeWidth,
4971
5039
  strokeLinecap: "round",
4972
5040
  strokeLinejoin: "round",
4973
- "aria-hidden": "true",
5041
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
4974
5042
  ...rest,
4975
5043
  children: [
4976
- /* @__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" }),
4977
- /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M21 3v5h-5" }),
4978
- /* @__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" }),
4979
- /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M3 21v-5h5" })
5044
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M21 7v6h-6" }),
5045
+ /* @__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" })
4980
5046
  ]
4981
5047
  }
4982
5048
  );
4983
5049
  }
4984
5050
 
4985
- // src/components/icons/save/index.tsx
5051
+ // src/components/icons/refresh-cw/index.tsx
4986
5052
  var import_jsx_runtime115 = require("react/jsx-runtime");
4987
- function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5053
+ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
4988
5054
  return /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
4989
5055
  "svg",
4990
5056
  {
@@ -4997,20 +5063,21 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4997
5063
  strokeWidth,
4998
5064
  strokeLinecap: "round",
4999
5065
  strokeLinejoin: "round",
5000
- "aria-hidden": "true",
5066
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5001
5067
  ...rest,
5002
5068
  children: [
5003
- /* @__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" }),
5004
- /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
5005
- /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
5069
+ /* @__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" }),
5070
+ /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M21 3v5h-5" }),
5071
+ /* @__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" }),
5072
+ /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M3 21v-5h5" })
5006
5073
  ]
5007
5074
  }
5008
5075
  );
5009
5076
  }
5010
5077
 
5011
- // src/components/icons/search/index.tsx
5078
+ // src/components/icons/save/index.tsx
5012
5079
  var import_jsx_runtime116 = require("react/jsx-runtime");
5013
- function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5080
+ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5014
5081
  return /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
5015
5082
  "svg",
5016
5083
  {
@@ -5023,19 +5090,20 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5023
5090
  strokeWidth,
5024
5091
  strokeLinecap: "round",
5025
5092
  strokeLinejoin: "round",
5026
- "aria-hidden": "true",
5093
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5027
5094
  ...rest,
5028
5095
  children: [
5029
- /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
5030
- /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "m21 21-4.3-4.3" })
5096
+ /* @__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" }),
5097
+ /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
5098
+ /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
5031
5099
  ]
5032
5100
  }
5033
5101
  );
5034
5102
  }
5035
5103
 
5036
- // src/components/icons/send/index.tsx
5104
+ // src/components/icons/search/index.tsx
5037
5105
  var import_jsx_runtime117 = require("react/jsx-runtime");
5038
- function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5106
+ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5039
5107
  return /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
5040
5108
  "svg",
5041
5109
  {
@@ -5048,19 +5116,19 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5048
5116
  strokeWidth,
5049
5117
  strokeLinecap: "round",
5050
5118
  strokeLinejoin: "round",
5051
- "aria-hidden": "true",
5119
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5052
5120
  ...rest,
5053
5121
  children: [
5054
- /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
5055
- /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
5122
+ /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
5123
+ /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("path", { d: "m21 21-4.3-4.3" })
5056
5124
  ]
5057
5125
  }
5058
5126
  );
5059
5127
  }
5060
5128
 
5061
- // src/components/icons/settings/index.tsx
5129
+ // src/components/icons/send/index.tsx
5062
5130
  var import_jsx_runtime118 = require("react/jsx-runtime");
5063
- function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5131
+ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5064
5132
  return /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)(
5065
5133
  "svg",
5066
5134
  {
@@ -5073,19 +5141,19 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5073
5141
  strokeWidth,
5074
5142
  strokeLinecap: "round",
5075
5143
  strokeLinejoin: "round",
5076
- "aria-hidden": "true",
5144
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5077
5145
  ...rest,
5078
5146
  children: [
5079
- /* @__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" }),
5080
- /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("circle", { cx: "12", cy: "12", r: "3" })
5147
+ /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
5148
+ /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
5081
5149
  ]
5082
5150
  }
5083
5151
  );
5084
5152
  }
5085
5153
 
5086
- // src/components/icons/share/index.tsx
5154
+ // src/components/icons/settings/index.tsx
5087
5155
  var import_jsx_runtime119 = require("react/jsx-runtime");
5088
- function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5156
+ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5089
5157
  return /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(
5090
5158
  "svg",
5091
5159
  {
@@ -5098,21 +5166,20 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5098
5166
  strokeWidth,
5099
5167
  strokeLinecap: "round",
5100
5168
  strokeLinejoin: "round",
5101
- "aria-hidden": "true",
5169
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5102
5170
  ...rest,
5103
5171
  children: [
5104
- /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
5105
- /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("polyline", { points: "16 6 12 2 8 6" }),
5106
- /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
5172
+ /* @__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" }),
5173
+ /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("circle", { cx: "12", cy: "12", r: "3" })
5107
5174
  ]
5108
5175
  }
5109
5176
  );
5110
5177
  }
5111
5178
 
5112
- // src/components/icons/shield/index.tsx
5179
+ // src/components/icons/share/index.tsx
5113
5180
  var import_jsx_runtime120 = require("react/jsx-runtime");
5114
- function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5115
- return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
5181
+ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5182
+ return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
5116
5183
  "svg",
5117
5184
  {
5118
5185
  xmlns: "http://www.w3.org/2000/svg",
@@ -5124,17 +5191,21 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5124
5191
  strokeWidth,
5125
5192
  strokeLinecap: "round",
5126
5193
  strokeLinejoin: "round",
5127
- "aria-hidden": "true",
5194
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5128
5195
  ...rest,
5129
- 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" })
5196
+ children: [
5197
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
5198
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("polyline", { points: "16 6 12 2 8 6" }),
5199
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
5200
+ ]
5130
5201
  }
5131
5202
  );
5132
5203
  }
5133
5204
 
5134
- // src/components/icons/shield-check/index.tsx
5205
+ // src/components/icons/shield/index.tsx
5135
5206
  var import_jsx_runtime121 = require("react/jsx-runtime");
5136
- function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5137
- return /* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(
5207
+ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5208
+ return /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
5138
5209
  "svg",
5139
5210
  {
5140
5211
  xmlns: "http://www.w3.org/2000/svg",
@@ -5146,19 +5217,16 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5146
5217
  strokeWidth,
5147
5218
  strokeLinecap: "round",
5148
5219
  strokeLinejoin: "round",
5149
- "aria-hidden": "true",
5220
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5150
5221
  ...rest,
5151
- children: [
5152
- /* @__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" }),
5153
- /* @__PURE__ */ (0, import_jsx_runtime121.jsx)("path", { d: "m9 12 2 2 4-4" })
5154
- ]
5222
+ 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" })
5155
5223
  }
5156
5224
  );
5157
5225
  }
5158
5226
 
5159
- // src/components/icons/shopping-bag/index.tsx
5227
+ // src/components/icons/shield-check/index.tsx
5160
5228
  var import_jsx_runtime122 = require("react/jsx-runtime");
5161
- function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5229
+ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5162
5230
  return /* @__PURE__ */ (0, import_jsx_runtime122.jsxs)(
5163
5231
  "svg",
5164
5232
  {
@@ -5171,20 +5239,19 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5171
5239
  strokeWidth,
5172
5240
  strokeLinecap: "round",
5173
5241
  strokeLinejoin: "round",
5174
- "aria-hidden": "true",
5242
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5175
5243
  ...rest,
5176
5244
  children: [
5177
- /* @__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" }),
5178
- /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M3 6h18" }),
5179
- /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M16 10a4 4 0 0 1-8 0" })
5245
+ /* @__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" }),
5246
+ /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "m9 12 2 2 4-4" })
5180
5247
  ]
5181
5248
  }
5182
5249
  );
5183
5250
  }
5184
5251
 
5185
- // src/components/icons/shopping-cart/index.tsx
5252
+ // src/components/icons/shopping-bag/index.tsx
5186
5253
  var import_jsx_runtime123 = require("react/jsx-runtime");
5187
- function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5254
+ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5188
5255
  return /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(
5189
5256
  "svg",
5190
5257
  {
@@ -5197,20 +5264,20 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5197
5264
  strokeWidth,
5198
5265
  strokeLinecap: "round",
5199
5266
  strokeLinejoin: "round",
5200
- "aria-hidden": "true",
5267
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5201
5268
  ...rest,
5202
5269
  children: [
5203
- /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("circle", { cx: "8", cy: "21", r: "1" }),
5204
- /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("circle", { cx: "19", cy: "21", r: "1" }),
5205
- /* @__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" })
5270
+ /* @__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" }),
5271
+ /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M3 6h18" }),
5272
+ /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M16 10a4 4 0 0 1-8 0" })
5206
5273
  ]
5207
5274
  }
5208
5275
  );
5209
5276
  }
5210
5277
 
5211
- // src/components/icons/sidebar/index.tsx
5278
+ // src/components/icons/shopping-cart/index.tsx
5212
5279
  var import_jsx_runtime124 = require("react/jsx-runtime");
5213
- function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5280
+ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5214
5281
  return /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)(
5215
5282
  "svg",
5216
5283
  {
@@ -5223,19 +5290,20 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5223
5290
  strokeWidth,
5224
5291
  strokeLinecap: "round",
5225
5292
  strokeLinejoin: "round",
5226
- "aria-hidden": "true",
5293
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5227
5294
  ...rest,
5228
5295
  children: [
5229
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
5230
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { d: "M9 3v18" })
5296
+ /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("circle", { cx: "8", cy: "21", r: "1" }),
5297
+ /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("circle", { cx: "19", cy: "21", r: "1" }),
5298
+ /* @__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" })
5231
5299
  ]
5232
5300
  }
5233
5301
  );
5234
5302
  }
5235
5303
 
5236
- // src/components/icons/skip-back/index.tsx
5304
+ // src/components/icons/sidebar/index.tsx
5237
5305
  var import_jsx_runtime125 = require("react/jsx-runtime");
5238
- function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5306
+ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5239
5307
  return /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)(
5240
5308
  "svg",
5241
5309
  {
@@ -5248,19 +5316,19 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5248
5316
  strokeWidth,
5249
5317
  strokeLinecap: "round",
5250
5318
  strokeLinejoin: "round",
5251
- "aria-hidden": "true",
5319
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5252
5320
  ...rest,
5253
5321
  children: [
5254
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("polygon", { points: "19 20 9 12 19 4 19 20" }),
5255
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
5322
+ /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
5323
+ /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("path", { d: "M9 3v18" })
5256
5324
  ]
5257
5325
  }
5258
5326
  );
5259
5327
  }
5260
5328
 
5261
- // src/components/icons/skip-forward/index.tsx
5329
+ // src/components/icons/skip-back/index.tsx
5262
5330
  var import_jsx_runtime126 = require("react/jsx-runtime");
5263
- function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5331
+ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5264
5332
  return /* @__PURE__ */ (0, import_jsx_runtime126.jsxs)(
5265
5333
  "svg",
5266
5334
  {
@@ -5273,19 +5341,19 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5273
5341
  strokeWidth,
5274
5342
  strokeLinecap: "round",
5275
5343
  strokeLinejoin: "round",
5276
- "aria-hidden": "true",
5344
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5277
5345
  ...rest,
5278
5346
  children: [
5279
- /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("polygon", { points: "5 4 15 12 5 20 5 4" }),
5280
- /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
5347
+ /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("polygon", { points: "19 20 9 12 19 4 19 20" }),
5348
+ /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
5281
5349
  ]
5282
5350
  }
5283
5351
  );
5284
5352
  }
5285
5353
 
5286
- // src/components/icons/sliders/index.tsx
5354
+ // src/components/icons/skip-forward/index.tsx
5287
5355
  var import_jsx_runtime127 = require("react/jsx-runtime");
5288
- function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5356
+ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5289
5357
  return /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)(
5290
5358
  "svg",
5291
5359
  {
@@ -5298,26 +5366,19 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5298
5366
  strokeWidth,
5299
5367
  strokeLinecap: "round",
5300
5368
  strokeLinejoin: "round",
5301
- "aria-hidden": "true",
5369
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5302
5370
  ...rest,
5303
5371
  children: [
5304
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
5305
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
5306
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
5307
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
5308
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
5309
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
5310
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
5311
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
5312
- /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
5372
+ /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("polygon", { points: "5 4 15 12 5 20 5 4" }),
5373
+ /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
5313
5374
  ]
5314
5375
  }
5315
5376
  );
5316
5377
  }
5317
5378
 
5318
- // src/components/icons/smile/index.tsx
5379
+ // src/components/icons/sliders/index.tsx
5319
5380
  var import_jsx_runtime128 = require("react/jsx-runtime");
5320
- function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5381
+ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5321
5382
  return /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)(
5322
5383
  "svg",
5323
5384
  {
@@ -5330,22 +5391,27 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5330
5391
  strokeWidth,
5331
5392
  strokeLinecap: "round",
5332
5393
  strokeLinejoin: "round",
5333
- "aria-hidden": "true",
5394
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5334
5395
  ...rest,
5335
5396
  children: [
5336
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
5337
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
5338
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
5339
- /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
5397
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
5398
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
5399
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
5400
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
5401
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
5402
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
5403
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
5404
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
5405
+ /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
5340
5406
  ]
5341
5407
  }
5342
5408
  );
5343
5409
  }
5344
5410
 
5345
- // src/components/icons/star/index.tsx
5411
+ // src/components/icons/smile/index.tsx
5346
5412
  var import_jsx_runtime129 = require("react/jsx-runtime");
5347
- function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5348
- return /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
5413
+ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5414
+ return /* @__PURE__ */ (0, import_jsx_runtime129.jsxs)(
5349
5415
  "svg",
5350
5416
  {
5351
5417
  xmlns: "http://www.w3.org/2000/svg",
@@ -5357,17 +5423,22 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5357
5423
  strokeWidth,
5358
5424
  strokeLinecap: "round",
5359
5425
  strokeLinejoin: "round",
5360
- "aria-hidden": "true",
5426
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5361
5427
  ...rest,
5362
- 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" })
5428
+ children: [
5429
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
5430
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
5431
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
5432
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
5433
+ ]
5363
5434
  }
5364
5435
  );
5365
5436
  }
5366
5437
 
5367
- // src/components/icons/sun/index.tsx
5438
+ // src/components/icons/star/index.tsx
5368
5439
  var import_jsx_runtime130 = require("react/jsx-runtime");
5369
- function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5370
- return /* @__PURE__ */ (0, import_jsx_runtime130.jsxs)(
5440
+ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5441
+ return /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
5371
5442
  "svg",
5372
5443
  {
5373
5444
  xmlns: "http://www.w3.org/2000/svg",
@@ -5379,26 +5450,16 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5379
5450
  strokeWidth,
5380
5451
  strokeLinecap: "round",
5381
5452
  strokeLinejoin: "round",
5382
- "aria-hidden": "true",
5453
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5383
5454
  ...rest,
5384
- children: [
5385
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
5386
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M12 2v2" }),
5387
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M12 20v2" }),
5388
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m4.93 4.93 1.41 1.41" }),
5389
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m17.66 17.66 1.41 1.41" }),
5390
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M2 12h2" }),
5391
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M20 12h2" }),
5392
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m6.34 17.66-1.41 1.41" }),
5393
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m19.07 4.93-1.41 1.41" })
5394
- ]
5455
+ 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" })
5395
5456
  }
5396
5457
  );
5397
5458
  }
5398
5459
 
5399
- // src/components/icons/tag/index.tsx
5460
+ // src/components/icons/sun/index.tsx
5400
5461
  var import_jsx_runtime131 = require("react/jsx-runtime");
5401
- function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5462
+ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5402
5463
  return /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)(
5403
5464
  "svg",
5404
5465
  {
@@ -5411,19 +5472,26 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5411
5472
  strokeWidth,
5412
5473
  strokeLinecap: "round",
5413
5474
  strokeLinejoin: "round",
5414
- "aria-hidden": "true",
5475
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5415
5476
  ...rest,
5416
5477
  children: [
5417
- /* @__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" }),
5418
- /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
5478
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
5479
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M12 2v2" }),
5480
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M12 20v2" }),
5481
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m4.93 4.93 1.41 1.41" }),
5482
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m17.66 17.66 1.41 1.41" }),
5483
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M2 12h2" }),
5484
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M20 12h2" }),
5485
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m6.34 17.66-1.41 1.41" }),
5486
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m19.07 4.93-1.41 1.41" })
5419
5487
  ]
5420
5488
  }
5421
5489
  );
5422
5490
  }
5423
5491
 
5424
- // src/components/icons/thumbs-down/index.tsx
5492
+ // src/components/icons/tag/index.tsx
5425
5493
  var import_jsx_runtime132 = require("react/jsx-runtime");
5426
- function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5494
+ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5427
5495
  return /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(
5428
5496
  "svg",
5429
5497
  {
@@ -5436,19 +5504,19 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5436
5504
  strokeWidth,
5437
5505
  strokeLinecap: "round",
5438
5506
  strokeLinejoin: "round",
5439
- "aria-hidden": "true",
5507
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5440
5508
  ...rest,
5441
5509
  children: [
5442
- /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M17 14V2" }),
5443
- /* @__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" })
5510
+ /* @__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" }),
5511
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
5444
5512
  ]
5445
5513
  }
5446
5514
  );
5447
5515
  }
5448
5516
 
5449
- // src/components/icons/thumbs-up/index.tsx
5517
+ // src/components/icons/thumbs-down/index.tsx
5450
5518
  var import_jsx_runtime133 = require("react/jsx-runtime");
5451
- function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5519
+ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5452
5520
  return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)(
5453
5521
  "svg",
5454
5522
  {
@@ -5461,19 +5529,19 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5461
5529
  strokeWidth,
5462
5530
  strokeLinecap: "round",
5463
5531
  strokeLinejoin: "round",
5464
- "aria-hidden": "true",
5532
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5465
5533
  ...rest,
5466
5534
  children: [
5467
- /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M7 10v12" }),
5468
- /* @__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" })
5535
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M17 14V2" }),
5536
+ /* @__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" })
5469
5537
  ]
5470
5538
  }
5471
5539
  );
5472
5540
  }
5473
5541
 
5474
- // src/components/icons/trash/index.tsx
5542
+ // src/components/icons/thumbs-up/index.tsx
5475
5543
  var import_jsx_runtime134 = require("react/jsx-runtime");
5476
- function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5544
+ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5477
5545
  return /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)(
5478
5546
  "svg",
5479
5547
  {
@@ -5486,20 +5554,19 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5486
5554
  strokeWidth,
5487
5555
  strokeLinecap: "round",
5488
5556
  strokeLinejoin: "round",
5489
- "aria-hidden": "true",
5557
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5490
5558
  ...rest,
5491
5559
  children: [
5492
- /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M3 6h18" }),
5493
- /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
5494
- /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
5560
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M7 10v12" }),
5561
+ /* @__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" })
5495
5562
  ]
5496
5563
  }
5497
5564
  );
5498
5565
  }
5499
5566
 
5500
- // src/components/icons/undo/index.tsx
5567
+ // src/components/icons/trash/index.tsx
5501
5568
  var import_jsx_runtime135 = require("react/jsx-runtime");
5502
- function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5569
+ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5503
5570
  return /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
5504
5571
  "svg",
5505
5572
  {
@@ -5512,19 +5579,20 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5512
5579
  strokeWidth,
5513
5580
  strokeLinecap: "round",
5514
5581
  strokeLinejoin: "round",
5515
- "aria-hidden": "true",
5582
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5516
5583
  ...rest,
5517
5584
  children: [
5518
- /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M3 7v6h6" }),
5519
- /* @__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" })
5585
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M3 6h18" }),
5586
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
5587
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
5520
5588
  ]
5521
5589
  }
5522
5590
  );
5523
5591
  }
5524
5592
 
5525
- // src/components/icons/unlock/index.tsx
5593
+ // src/components/icons/undo/index.tsx
5526
5594
  var import_jsx_runtime136 = require("react/jsx-runtime");
5527
- function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5595
+ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5528
5596
  return /* @__PURE__ */ (0, import_jsx_runtime136.jsxs)(
5529
5597
  "svg",
5530
5598
  {
@@ -5537,19 +5605,19 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5537
5605
  strokeWidth,
5538
5606
  strokeLinecap: "round",
5539
5607
  strokeLinejoin: "round",
5540
- "aria-hidden": "true",
5608
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5541
5609
  ...rest,
5542
5610
  children: [
5543
- /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
5544
- /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
5611
+ /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M3 7v6h6" }),
5612
+ /* @__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" })
5545
5613
  ]
5546
5614
  }
5547
5615
  );
5548
5616
  }
5549
5617
 
5550
- // src/components/icons/upload/index.tsx
5618
+ // src/components/icons/unlock/index.tsx
5551
5619
  var import_jsx_runtime137 = require("react/jsx-runtime");
5552
- function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5620
+ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5553
5621
  return /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(
5554
5622
  "svg",
5555
5623
  {
@@ -5562,20 +5630,19 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5562
5630
  strokeWidth,
5563
5631
  strokeLinecap: "round",
5564
5632
  strokeLinejoin: "round",
5565
- "aria-hidden": "true",
5633
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5566
5634
  ...rest,
5567
5635
  children: [
5568
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
5569
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("polyline", { points: "17 8 12 3 7 8" }),
5570
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
5636
+ /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
5637
+ /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
5571
5638
  ]
5572
5639
  }
5573
5640
  );
5574
5641
  }
5575
5642
 
5576
- // src/components/icons/user/index.tsx
5643
+ // src/components/icons/upload/index.tsx
5577
5644
  var import_jsx_runtime138 = require("react/jsx-runtime");
5578
- function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5645
+ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5579
5646
  return /* @__PURE__ */ (0, import_jsx_runtime138.jsxs)(
5580
5647
  "svg",
5581
5648
  {
@@ -5588,19 +5655,20 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5588
5655
  strokeWidth,
5589
5656
  strokeLinecap: "round",
5590
5657
  strokeLinejoin: "round",
5591
- "aria-hidden": "true",
5658
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5592
5659
  ...rest,
5593
5660
  children: [
5594
- /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
5595
- /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("circle", { cx: "12", cy: "7", r: "4" })
5661
+ /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
5662
+ /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("polyline", { points: "17 8 12 3 7 8" }),
5663
+ /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
5596
5664
  ]
5597
5665
  }
5598
5666
  );
5599
5667
  }
5600
5668
 
5601
- // src/components/icons/user-check/index.tsx
5669
+ // src/components/icons/user/index.tsx
5602
5670
  var import_jsx_runtime139 = require("react/jsx-runtime");
5603
- function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5671
+ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5604
5672
  return /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)(
5605
5673
  "svg",
5606
5674
  {
@@ -5613,20 +5681,19 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5613
5681
  strokeWidth,
5614
5682
  strokeLinecap: "round",
5615
5683
  strokeLinejoin: "round",
5616
- "aria-hidden": "true",
5684
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5617
5685
  ...rest,
5618
5686
  children: [
5619
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5620
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5621
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("polyline", { points: "16 11 18 13 22 9" })
5687
+ /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
5688
+ /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("circle", { cx: "12", cy: "7", r: "4" })
5622
5689
  ]
5623
5690
  }
5624
5691
  );
5625
5692
  }
5626
5693
 
5627
- // src/components/icons/user-plus/index.tsx
5694
+ // src/components/icons/user-check/index.tsx
5628
5695
  var import_jsx_runtime140 = require("react/jsx-runtime");
5629
- function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5696
+ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5630
5697
  return /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(
5631
5698
  "svg",
5632
5699
  {
@@ -5639,21 +5706,20 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5639
5706
  strokeWidth,
5640
5707
  strokeLinecap: "round",
5641
5708
  strokeLinejoin: "round",
5642
- "aria-hidden": "true",
5709
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5643
5710
  ...rest,
5644
5711
  children: [
5645
5712
  /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5646
5713
  /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5647
- /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
5648
- /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
5714
+ /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("polyline", { points: "16 11 18 13 22 9" })
5649
5715
  ]
5650
5716
  }
5651
5717
  );
5652
5718
  }
5653
5719
 
5654
- // src/components/icons/users/index.tsx
5720
+ // src/components/icons/user-plus/index.tsx
5655
5721
  var import_jsx_runtime141 = require("react/jsx-runtime");
5656
- function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5722
+ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5657
5723
  return /* @__PURE__ */ (0, import_jsx_runtime141.jsxs)(
5658
5724
  "svg",
5659
5725
  {
@@ -5666,21 +5732,21 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5666
5732
  strokeWidth,
5667
5733
  strokeLinecap: "round",
5668
5734
  strokeLinejoin: "round",
5669
- "aria-hidden": "true",
5735
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5670
5736
  ...rest,
5671
5737
  children: [
5672
5738
  /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5673
5739
  /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5674
- /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
5675
- /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
5740
+ /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
5741
+ /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
5676
5742
  ]
5677
5743
  }
5678
5744
  );
5679
5745
  }
5680
5746
 
5681
- // src/components/icons/volume-2/index.tsx
5747
+ // src/components/icons/users/index.tsx
5682
5748
  var import_jsx_runtime142 = require("react/jsx-runtime");
5683
- function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5749
+ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5684
5750
  return /* @__PURE__ */ (0, import_jsx_runtime142.jsxs)(
5685
5751
  "svg",
5686
5752
  {
@@ -5693,20 +5759,21 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5693
5759
  strokeWidth,
5694
5760
  strokeLinecap: "round",
5695
5761
  strokeLinejoin: "round",
5696
- "aria-hidden": "true",
5762
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5697
5763
  ...rest,
5698
5764
  children: [
5699
- /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5700
- /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
5701
- /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
5765
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5766
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
5767
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
5768
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
5702
5769
  ]
5703
5770
  }
5704
5771
  );
5705
5772
  }
5706
5773
 
5707
- // src/components/icons/volume-x/index.tsx
5774
+ // src/components/icons/volume-2/index.tsx
5708
5775
  var import_jsx_runtime143 = require("react/jsx-runtime");
5709
- function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5776
+ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5710
5777
  return /* @__PURE__ */ (0, import_jsx_runtime143.jsxs)(
5711
5778
  "svg",
5712
5779
  {
@@ -5719,20 +5786,20 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5719
5786
  strokeWidth,
5720
5787
  strokeLinecap: "round",
5721
5788
  strokeLinejoin: "round",
5722
- "aria-hidden": "true",
5789
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5723
5790
  ...rest,
5724
5791
  children: [
5725
5792
  /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5726
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
5727
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
5793
+ /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
5794
+ /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
5728
5795
  ]
5729
5796
  }
5730
5797
  );
5731
5798
  }
5732
5799
 
5733
- // src/components/icons/wifi/index.tsx
5800
+ // src/components/icons/volume-x/index.tsx
5734
5801
  var import_jsx_runtime144 = require("react/jsx-runtime");
5735
- function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5802
+ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5736
5803
  return /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)(
5737
5804
  "svg",
5738
5805
  {
@@ -5745,22 +5812,48 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5745
5812
  strokeWidth,
5746
5813
  strokeLinecap: "round",
5747
5814
  strokeLinejoin: "round",
5748
- "aria-hidden": "true",
5815
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5749
5816
  ...rest,
5750
5817
  children: [
5751
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M12 20h.01" }),
5752
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
5753
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
5754
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
5818
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5819
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
5820
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
5755
5821
  ]
5756
5822
  }
5757
5823
  );
5758
5824
  }
5759
5825
 
5760
- // src/components/icons/zap/index.tsx
5826
+ // src/components/icons/wifi/index.tsx
5761
5827
  var import_jsx_runtime145 = require("react/jsx-runtime");
5762
- function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5763
- return /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
5828
+ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5829
+ return /* @__PURE__ */ (0, import_jsx_runtime145.jsxs)(
5830
+ "svg",
5831
+ {
5832
+ xmlns: "http://www.w3.org/2000/svg",
5833
+ width: size3,
5834
+ height: size3,
5835
+ viewBox: "0 0 24 24",
5836
+ fill: "none",
5837
+ stroke: "currentColor",
5838
+ strokeWidth,
5839
+ strokeLinecap: "round",
5840
+ strokeLinejoin: "round",
5841
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5842
+ ...rest,
5843
+ children: [
5844
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M12 20h.01" }),
5845
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
5846
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
5847
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
5848
+ ]
5849
+ }
5850
+ );
5851
+ }
5852
+
5853
+ // src/components/icons/zap/index.tsx
5854
+ var import_jsx_runtime146 = require("react/jsx-runtime");
5855
+ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
5856
+ return /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
5764
5857
  "svg",
5765
5858
  {
5766
5859
  xmlns: "http://www.w3.org/2000/svg",
@@ -5772,9 +5865,9 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5772
5865
  strokeWidth,
5773
5866
  strokeLinecap: "round",
5774
5867
  strokeLinejoin: "round",
5775
- "aria-hidden": "true",
5868
+ ...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
5776
5869
  ...rest,
5777
- children: /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
5870
+ children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
5778
5871
  }
5779
5872
  );
5780
5873
  }
@@ -5820,6 +5913,7 @@ var iconCatalog = [
5820
5913
  { name: "FolderIcon", Icon: FolderIcon },
5821
5914
  { name: "FolderOpenIcon", Icon: FolderOpenIcon },
5822
5915
  { name: "GiftIcon", Icon: GiftIcon },
5916
+ { name: "GitHubIcon", Icon: GitHubIcon },
5823
5917
  { name: "GlobeIcon", Icon: GlobeIcon },
5824
5918
  { name: "GridIcon", Icon: GridIcon },
5825
5919
  { name: "HeartIcon", Icon: HeartIcon },
@@ -5946,6 +6040,7 @@ var iconCatalog = [
5946
6040
  FolderIcon,
5947
6041
  FolderOpenIcon,
5948
6042
  GiftIcon,
6043
+ GitHubIcon,
5949
6044
  GlobeIcon,
5950
6045
  GridIcon,
5951
6046
  HeartIcon,