@octavius2929-personal/design-system 1.1.0 → 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 +528 -503
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +128 -111
- package/dist/index.d.ts +128 -111
- package/dist/index.js +512 -488
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -937,7 +937,7 @@ import { forwardRef as forwardRef9 } from "react";
|
|
|
937
937
|
|
|
938
938
|
// src/components/icons/x/index.tsx
|
|
939
939
|
import { jsx as jsx11, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
940
|
-
function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
940
|
+
function XIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
941
941
|
return /* @__PURE__ */ jsxs4(
|
|
942
942
|
"svg",
|
|
943
943
|
{
|
|
@@ -950,7 +950,7 @@ function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
950
950
|
strokeWidth,
|
|
951
951
|
strokeLinecap: "round",
|
|
952
952
|
strokeLinejoin: "round",
|
|
953
|
-
"aria-hidden":
|
|
953
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
954
954
|
...rest,
|
|
955
955
|
children: [
|
|
956
956
|
/* @__PURE__ */ jsx11("path", { d: "M18 6 6 18" }),
|
|
@@ -1033,7 +1033,7 @@ import { forwardRef as forwardRef10 } from "react";
|
|
|
1033
1033
|
|
|
1034
1034
|
// src/components/icons/check/index.tsx
|
|
1035
1035
|
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
1036
|
-
function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1036
|
+
function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1037
1037
|
return /* @__PURE__ */ jsx13(
|
|
1038
1038
|
"svg",
|
|
1039
1039
|
{
|
|
@@ -1046,7 +1046,7 @@ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1046
1046
|
strokeWidth,
|
|
1047
1047
|
strokeLinecap: "round",
|
|
1048
1048
|
strokeLinejoin: "round",
|
|
1049
|
-
"aria-hidden":
|
|
1049
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1050
1050
|
...rest,
|
|
1051
1051
|
children: /* @__PURE__ */ jsx13("path", { d: "M20 6 9 17l-5-5" })
|
|
1052
1052
|
}
|
|
@@ -1377,7 +1377,7 @@ import { forwardRef as forwardRef15, useState as useState3 } from "react";
|
|
|
1377
1377
|
|
|
1378
1378
|
// src/components/icons/eye/index.tsx
|
|
1379
1379
|
import { jsx as jsx19, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1380
|
-
function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1380
|
+
function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1381
1381
|
return /* @__PURE__ */ jsxs10(
|
|
1382
1382
|
"svg",
|
|
1383
1383
|
{
|
|
@@ -1390,7 +1390,7 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1390
1390
|
strokeWidth,
|
|
1391
1391
|
strokeLinecap: "round",
|
|
1392
1392
|
strokeLinejoin: "round",
|
|
1393
|
-
"aria-hidden":
|
|
1393
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1394
1394
|
...rest,
|
|
1395
1395
|
children: [
|
|
1396
1396
|
/* @__PURE__ */ jsx19("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }),
|
|
@@ -1402,7 +1402,7 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1402
1402
|
|
|
1403
1403
|
// src/components/icons/eye-off/index.tsx
|
|
1404
1404
|
import { jsx as jsx20, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1405
|
-
function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1405
|
+
function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1406
1406
|
return /* @__PURE__ */ jsxs11(
|
|
1407
1407
|
"svg",
|
|
1408
1408
|
{
|
|
@@ -1415,7 +1415,7 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1415
1415
|
strokeWidth,
|
|
1416
1416
|
strokeLinecap: "round",
|
|
1417
1417
|
strokeLinejoin: "round",
|
|
1418
|
-
"aria-hidden":
|
|
1418
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1419
1419
|
...rest,
|
|
1420
1420
|
children: [
|
|
1421
1421
|
/* @__PURE__ */ jsx20("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
|
|
@@ -1660,7 +1660,7 @@ import { forwardRef as forwardRef19 } from "react";
|
|
|
1660
1660
|
|
|
1661
1661
|
// src/components/icons/circle-check/index.tsx
|
|
1662
1662
|
import { jsx as jsx25, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1663
|
-
function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1663
|
+
function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1664
1664
|
return /* @__PURE__ */ jsxs12(
|
|
1665
1665
|
"svg",
|
|
1666
1666
|
{
|
|
@@ -1673,7 +1673,7 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1673
1673
|
strokeWidth,
|
|
1674
1674
|
strokeLinecap: "round",
|
|
1675
1675
|
strokeLinejoin: "round",
|
|
1676
|
-
"aria-hidden":
|
|
1676
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1677
1677
|
...rest,
|
|
1678
1678
|
children: [
|
|
1679
1679
|
/* @__PURE__ */ jsx25("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -1685,7 +1685,7 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1685
1685
|
|
|
1686
1686
|
// src/components/icons/circle-x/index.tsx
|
|
1687
1687
|
import { jsx as jsx26, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1688
|
-
function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1688
|
+
function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1689
1689
|
return /* @__PURE__ */ jsxs13(
|
|
1690
1690
|
"svg",
|
|
1691
1691
|
{
|
|
@@ -1698,7 +1698,7 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1698
1698
|
strokeWidth,
|
|
1699
1699
|
strokeLinecap: "round",
|
|
1700
1700
|
strokeLinejoin: "round",
|
|
1701
|
-
"aria-hidden":
|
|
1701
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1702
1702
|
...rest,
|
|
1703
1703
|
children: [
|
|
1704
1704
|
/* @__PURE__ */ jsx26("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -1711,7 +1711,7 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1711
1711
|
|
|
1712
1712
|
// src/components/icons/info/index.tsx
|
|
1713
1713
|
import { jsx as jsx27, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1714
|
-
function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1714
|
+
function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1715
1715
|
return /* @__PURE__ */ jsxs14(
|
|
1716
1716
|
"svg",
|
|
1717
1717
|
{
|
|
@@ -1724,7 +1724,7 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1724
1724
|
strokeWidth,
|
|
1725
1725
|
strokeLinecap: "round",
|
|
1726
1726
|
strokeLinejoin: "round",
|
|
1727
|
-
"aria-hidden":
|
|
1727
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1728
1728
|
...rest,
|
|
1729
1729
|
children: [
|
|
1730
1730
|
/* @__PURE__ */ jsx27("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -1737,7 +1737,7 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1737
1737
|
|
|
1738
1738
|
// src/components/icons/triangle-alert/index.tsx
|
|
1739
1739
|
import { jsx as jsx28, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1740
|
-
function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1740
|
+
function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1741
1741
|
return /* @__PURE__ */ jsxs15(
|
|
1742
1742
|
"svg",
|
|
1743
1743
|
{
|
|
@@ -1750,7 +1750,7 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1750
1750
|
strokeWidth,
|
|
1751
1751
|
strokeLinecap: "round",
|
|
1752
1752
|
strokeLinejoin: "round",
|
|
1753
|
-
"aria-hidden":
|
|
1753
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1754
1754
|
...rest,
|
|
1755
1755
|
children: [
|
|
1756
1756
|
/* @__PURE__ */ jsx28("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }),
|
|
@@ -1934,7 +1934,7 @@ import { forwardRef as forwardRef21, useEffect as useEffect5, useId as useId3, u
|
|
|
1934
1934
|
|
|
1935
1935
|
// src/components/icons/chevron-down/index.tsx
|
|
1936
1936
|
import { jsx as jsx31 } from "react/jsx-runtime";
|
|
1937
|
-
function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1937
|
+
function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1938
1938
|
return /* @__PURE__ */ jsx31(
|
|
1939
1939
|
"svg",
|
|
1940
1940
|
{
|
|
@@ -1947,7 +1947,7 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1947
1947
|
strokeWidth,
|
|
1948
1948
|
strokeLinecap: "round",
|
|
1949
1949
|
strokeLinejoin: "round",
|
|
1950
|
-
"aria-hidden":
|
|
1950
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1951
1951
|
...rest,
|
|
1952
1952
|
children: /* @__PURE__ */ jsx31("path", { d: "m6 9 6 6 6-6" })
|
|
1953
1953
|
}
|
|
@@ -2293,7 +2293,7 @@ import { Fragment, forwardRef as forwardRef24 } from "react";
|
|
|
2293
2293
|
|
|
2294
2294
|
// src/components/icons/chevron-right/index.tsx
|
|
2295
2295
|
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
2296
|
-
function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2296
|
+
function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2297
2297
|
return /* @__PURE__ */ jsx35(
|
|
2298
2298
|
"svg",
|
|
2299
2299
|
{
|
|
@@ -2306,7 +2306,7 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2306
2306
|
strokeWidth,
|
|
2307
2307
|
strokeLinecap: "round",
|
|
2308
2308
|
strokeLinejoin: "round",
|
|
2309
|
-
"aria-hidden":
|
|
2309
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2310
2310
|
...rest,
|
|
2311
2311
|
children: /* @__PURE__ */ jsx35("path", { d: "m9 18 6-6-6-6" })
|
|
2312
2312
|
}
|
|
@@ -2352,7 +2352,7 @@ import { forwardRef as forwardRef25 } from "react";
|
|
|
2352
2352
|
|
|
2353
2353
|
// src/components/icons/chevron-left/index.tsx
|
|
2354
2354
|
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
2355
|
-
function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2355
|
+
function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2356
2356
|
return /* @__PURE__ */ jsx37(
|
|
2357
2357
|
"svg",
|
|
2358
2358
|
{
|
|
@@ -2365,7 +2365,7 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2365
2365
|
strokeWidth,
|
|
2366
2366
|
strokeLinecap: "round",
|
|
2367
2367
|
strokeLinejoin: "round",
|
|
2368
|
-
"aria-hidden":
|
|
2368
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2369
2369
|
...rest,
|
|
2370
2370
|
children: /* @__PURE__ */ jsx37("path", { d: "m15 18-6-6 6-6" })
|
|
2371
2371
|
}
|
|
@@ -3183,7 +3183,7 @@ var ListItem = forwardRef33(function ListItem2({ leading: leading2, trailing: tr
|
|
|
3183
3183
|
|
|
3184
3184
|
// src/components/icons/alert-circle/index.tsx
|
|
3185
3185
|
import { jsx as jsx47, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
3186
|
-
function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3186
|
+
function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3187
3187
|
return /* @__PURE__ */ jsxs31(
|
|
3188
3188
|
"svg",
|
|
3189
3189
|
{
|
|
@@ -3196,7 +3196,7 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3196
3196
|
strokeWidth,
|
|
3197
3197
|
strokeLinecap: "round",
|
|
3198
3198
|
strokeLinejoin: "round",
|
|
3199
|
-
"aria-hidden":
|
|
3199
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3200
3200
|
...rest,
|
|
3201
3201
|
children: [
|
|
3202
3202
|
/* @__PURE__ */ jsx47("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -3209,7 +3209,7 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3209
3209
|
|
|
3210
3210
|
// src/components/icons/archive/index.tsx
|
|
3211
3211
|
import { jsx as jsx48, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
3212
|
-
function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3212
|
+
function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3213
3213
|
return /* @__PURE__ */ jsxs32(
|
|
3214
3214
|
"svg",
|
|
3215
3215
|
{
|
|
@@ -3222,7 +3222,7 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3222
3222
|
strokeWidth,
|
|
3223
3223
|
strokeLinecap: "round",
|
|
3224
3224
|
strokeLinejoin: "round",
|
|
3225
|
-
"aria-hidden":
|
|
3225
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3226
3226
|
...rest,
|
|
3227
3227
|
children: [
|
|
3228
3228
|
/* @__PURE__ */ jsx48("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
|
|
@@ -3235,7 +3235,7 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3235
3235
|
|
|
3236
3236
|
// src/components/icons/arrow-down/index.tsx
|
|
3237
3237
|
import { jsx as jsx49, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
3238
|
-
function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3238
|
+
function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3239
3239
|
return /* @__PURE__ */ jsxs33(
|
|
3240
3240
|
"svg",
|
|
3241
3241
|
{
|
|
@@ -3248,7 +3248,7 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3248
3248
|
strokeWidth,
|
|
3249
3249
|
strokeLinecap: "round",
|
|
3250
3250
|
strokeLinejoin: "round",
|
|
3251
|
-
"aria-hidden":
|
|
3251
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3252
3252
|
...rest,
|
|
3253
3253
|
children: [
|
|
3254
3254
|
/* @__PURE__ */ jsx49("path", { d: "M12 5v14" }),
|
|
@@ -3260,7 +3260,7 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3260
3260
|
|
|
3261
3261
|
// src/components/icons/arrow-left/index.tsx
|
|
3262
3262
|
import { jsx as jsx50, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
3263
|
-
function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3263
|
+
function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3264
3264
|
return /* @__PURE__ */ jsxs34(
|
|
3265
3265
|
"svg",
|
|
3266
3266
|
{
|
|
@@ -3273,7 +3273,7 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3273
3273
|
strokeWidth,
|
|
3274
3274
|
strokeLinecap: "round",
|
|
3275
3275
|
strokeLinejoin: "round",
|
|
3276
|
-
"aria-hidden":
|
|
3276
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3277
3277
|
...rest,
|
|
3278
3278
|
children: [
|
|
3279
3279
|
/* @__PURE__ */ jsx50("path", { d: "m12 19-7-7 7-7" }),
|
|
@@ -3285,7 +3285,7 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3285
3285
|
|
|
3286
3286
|
// src/components/icons/arrow-right/index.tsx
|
|
3287
3287
|
import { jsx as jsx51, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
3288
|
-
function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3288
|
+
function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3289
3289
|
return /* @__PURE__ */ jsxs35(
|
|
3290
3290
|
"svg",
|
|
3291
3291
|
{
|
|
@@ -3298,7 +3298,7 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3298
3298
|
strokeWidth,
|
|
3299
3299
|
strokeLinecap: "round",
|
|
3300
3300
|
strokeLinejoin: "round",
|
|
3301
|
-
"aria-hidden":
|
|
3301
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3302
3302
|
...rest,
|
|
3303
3303
|
children: [
|
|
3304
3304
|
/* @__PURE__ */ jsx51("path", { d: "M5 12h14" }),
|
|
@@ -3310,7 +3310,7 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3310
3310
|
|
|
3311
3311
|
// src/components/icons/arrow-up/index.tsx
|
|
3312
3312
|
import { jsx as jsx52, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
3313
|
-
function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3313
|
+
function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3314
3314
|
return /* @__PURE__ */ jsxs36(
|
|
3315
3315
|
"svg",
|
|
3316
3316
|
{
|
|
@@ -3323,7 +3323,7 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3323
3323
|
strokeWidth,
|
|
3324
3324
|
strokeLinecap: "round",
|
|
3325
3325
|
strokeLinejoin: "round",
|
|
3326
|
-
"aria-hidden":
|
|
3326
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3327
3327
|
...rest,
|
|
3328
3328
|
children: [
|
|
3329
3329
|
/* @__PURE__ */ jsx52("path", { d: "m5 12 7-7 7 7" }),
|
|
@@ -3335,7 +3335,7 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3335
3335
|
|
|
3336
3336
|
// src/components/icons/at-sign/index.tsx
|
|
3337
3337
|
import { jsx as jsx53, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
3338
|
-
function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3338
|
+
function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3339
3339
|
return /* @__PURE__ */ jsxs37(
|
|
3340
3340
|
"svg",
|
|
3341
3341
|
{
|
|
@@ -3348,7 +3348,7 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3348
3348
|
strokeWidth,
|
|
3349
3349
|
strokeLinecap: "round",
|
|
3350
3350
|
strokeLinejoin: "round",
|
|
3351
|
-
"aria-hidden":
|
|
3351
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3352
3352
|
...rest,
|
|
3353
3353
|
children: [
|
|
3354
3354
|
/* @__PURE__ */ jsx53("circle", { cx: "12", cy: "12", r: "4" }),
|
|
@@ -3360,7 +3360,7 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3360
3360
|
|
|
3361
3361
|
// src/components/icons/bell/index.tsx
|
|
3362
3362
|
import { jsx as jsx54, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
3363
|
-
function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3363
|
+
function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3364
3364
|
return /* @__PURE__ */ jsxs38(
|
|
3365
3365
|
"svg",
|
|
3366
3366
|
{
|
|
@@ -3373,7 +3373,7 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3373
3373
|
strokeWidth,
|
|
3374
3374
|
strokeLinecap: "round",
|
|
3375
3375
|
strokeLinejoin: "round",
|
|
3376
|
-
"aria-hidden":
|
|
3376
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3377
3377
|
...rest,
|
|
3378
3378
|
children: [
|
|
3379
3379
|
/* @__PURE__ */ jsx54("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
|
|
@@ -3385,7 +3385,7 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3385
3385
|
|
|
3386
3386
|
// src/components/icons/bell-off/index.tsx
|
|
3387
3387
|
import { jsx as jsx55, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
3388
|
-
function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3388
|
+
function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3389
3389
|
return /* @__PURE__ */ jsxs39(
|
|
3390
3390
|
"svg",
|
|
3391
3391
|
{
|
|
@@ -3398,7 +3398,7 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3398
3398
|
strokeWidth,
|
|
3399
3399
|
strokeLinecap: "round",
|
|
3400
3400
|
strokeLinejoin: "round",
|
|
3401
|
-
"aria-hidden":
|
|
3401
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3402
3402
|
...rest,
|
|
3403
3403
|
children: [
|
|
3404
3404
|
/* @__PURE__ */ jsx55("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
|
|
@@ -3412,7 +3412,7 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3412
3412
|
|
|
3413
3413
|
// src/components/icons/bookmark/index.tsx
|
|
3414
3414
|
import { jsx as jsx56 } from "react/jsx-runtime";
|
|
3415
|
-
function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3415
|
+
function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3416
3416
|
return /* @__PURE__ */ jsx56(
|
|
3417
3417
|
"svg",
|
|
3418
3418
|
{
|
|
@@ -3425,7 +3425,7 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3425
3425
|
strokeWidth,
|
|
3426
3426
|
strokeLinecap: "round",
|
|
3427
3427
|
strokeLinejoin: "round",
|
|
3428
|
-
"aria-hidden":
|
|
3428
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3429
3429
|
...rest,
|
|
3430
3430
|
children: /* @__PURE__ */ jsx56("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
|
|
3431
3431
|
}
|
|
@@ -3434,7 +3434,7 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3434
3434
|
|
|
3435
3435
|
// src/components/icons/calendar/index.tsx
|
|
3436
3436
|
import { jsx as jsx57, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
3437
|
-
function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3437
|
+
function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3438
3438
|
return /* @__PURE__ */ jsxs40(
|
|
3439
3439
|
"svg",
|
|
3440
3440
|
{
|
|
@@ -3447,7 +3447,7 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3447
3447
|
strokeWidth,
|
|
3448
3448
|
strokeLinecap: "round",
|
|
3449
3449
|
strokeLinejoin: "round",
|
|
3450
|
-
"aria-hidden":
|
|
3450
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3451
3451
|
...rest,
|
|
3452
3452
|
children: [
|
|
3453
3453
|
/* @__PURE__ */ jsx57("path", { d: "M8 2v4" }),
|
|
@@ -3461,7 +3461,7 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3461
3461
|
|
|
3462
3462
|
// src/components/icons/camera/index.tsx
|
|
3463
3463
|
import { jsx as jsx58, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
3464
|
-
function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3464
|
+
function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3465
3465
|
return /* @__PURE__ */ jsxs41(
|
|
3466
3466
|
"svg",
|
|
3467
3467
|
{
|
|
@@ -3474,7 +3474,7 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3474
3474
|
strokeWidth,
|
|
3475
3475
|
strokeLinecap: "round",
|
|
3476
3476
|
strokeLinejoin: "round",
|
|
3477
|
-
"aria-hidden":
|
|
3477
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3478
3478
|
...rest,
|
|
3479
3479
|
children: [
|
|
3480
3480
|
/* @__PURE__ */ jsx58("path", { d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z" }),
|
|
@@ -3486,7 +3486,7 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3486
3486
|
|
|
3487
3487
|
// src/components/icons/chevron-up/index.tsx
|
|
3488
3488
|
import { jsx as jsx59 } from "react/jsx-runtime";
|
|
3489
|
-
function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3489
|
+
function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3490
3490
|
return /* @__PURE__ */ jsx59(
|
|
3491
3491
|
"svg",
|
|
3492
3492
|
{
|
|
@@ -3499,7 +3499,7 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3499
3499
|
strokeWidth,
|
|
3500
3500
|
strokeLinecap: "round",
|
|
3501
3501
|
strokeLinejoin: "round",
|
|
3502
|
-
"aria-hidden":
|
|
3502
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3503
3503
|
...rest,
|
|
3504
3504
|
children: /* @__PURE__ */ jsx59("path", { d: "m18 15-6-6-6 6" })
|
|
3505
3505
|
}
|
|
@@ -3508,7 +3508,7 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3508
3508
|
|
|
3509
3509
|
// src/components/icons/chevrons-left/index.tsx
|
|
3510
3510
|
import { jsx as jsx60, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
3511
|
-
function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3511
|
+
function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3512
3512
|
return /* @__PURE__ */ jsxs42(
|
|
3513
3513
|
"svg",
|
|
3514
3514
|
{
|
|
@@ -3521,7 +3521,7 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3521
3521
|
strokeWidth,
|
|
3522
3522
|
strokeLinecap: "round",
|
|
3523
3523
|
strokeLinejoin: "round",
|
|
3524
|
-
"aria-hidden":
|
|
3524
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3525
3525
|
...rest,
|
|
3526
3526
|
children: [
|
|
3527
3527
|
/* @__PURE__ */ jsx60("path", { d: "m11 17-5-5 5-5" }),
|
|
@@ -3533,7 +3533,7 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3533
3533
|
|
|
3534
3534
|
// src/components/icons/chevrons-right/index.tsx
|
|
3535
3535
|
import { jsx as jsx61, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
3536
|
-
function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3536
|
+
function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3537
3537
|
return /* @__PURE__ */ jsxs43(
|
|
3538
3538
|
"svg",
|
|
3539
3539
|
{
|
|
@@ -3546,7 +3546,7 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3546
3546
|
strokeWidth,
|
|
3547
3547
|
strokeLinecap: "round",
|
|
3548
3548
|
strokeLinejoin: "round",
|
|
3549
|
-
"aria-hidden":
|
|
3549
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3550
3550
|
...rest,
|
|
3551
3551
|
children: [
|
|
3552
3552
|
/* @__PURE__ */ jsx61("path", { d: "m6 17 5-5-5-5" }),
|
|
@@ -3558,7 +3558,7 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3558
3558
|
|
|
3559
3559
|
// src/components/icons/clipboard/index.tsx
|
|
3560
3560
|
import { jsx as jsx62, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
3561
|
-
function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3561
|
+
function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3562
3562
|
return /* @__PURE__ */ jsxs44(
|
|
3563
3563
|
"svg",
|
|
3564
3564
|
{
|
|
@@ -3571,7 +3571,7 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3571
3571
|
strokeWidth,
|
|
3572
3572
|
strokeLinecap: "round",
|
|
3573
3573
|
strokeLinejoin: "round",
|
|
3574
|
-
"aria-hidden":
|
|
3574
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3575
3575
|
...rest,
|
|
3576
3576
|
children: [
|
|
3577
3577
|
/* @__PURE__ */ jsx62("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
@@ -3583,7 +3583,7 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3583
3583
|
|
|
3584
3584
|
// src/components/icons/clock/index.tsx
|
|
3585
3585
|
import { jsx as jsx63, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
3586
|
-
function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3586
|
+
function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3587
3587
|
return /* @__PURE__ */ jsxs45(
|
|
3588
3588
|
"svg",
|
|
3589
3589
|
{
|
|
@@ -3596,7 +3596,7 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3596
3596
|
strokeWidth,
|
|
3597
3597
|
strokeLinecap: "round",
|
|
3598
3598
|
strokeLinejoin: "round",
|
|
3599
|
-
"aria-hidden":
|
|
3599
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3600
3600
|
...rest,
|
|
3601
3601
|
children: [
|
|
3602
3602
|
/* @__PURE__ */ jsx63("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -3608,7 +3608,7 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3608
3608
|
|
|
3609
3609
|
// src/components/icons/cloud/index.tsx
|
|
3610
3610
|
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
3611
|
-
function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3611
|
+
function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3612
3612
|
return /* @__PURE__ */ jsx64(
|
|
3613
3613
|
"svg",
|
|
3614
3614
|
{
|
|
@@ -3621,7 +3621,7 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3621
3621
|
strokeWidth,
|
|
3622
3622
|
strokeLinecap: "round",
|
|
3623
3623
|
strokeLinejoin: "round",
|
|
3624
|
-
"aria-hidden":
|
|
3624
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3625
3625
|
...rest,
|
|
3626
3626
|
children: /* @__PURE__ */ jsx64("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
|
|
3627
3627
|
}
|
|
@@ -3630,7 +3630,7 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3630
3630
|
|
|
3631
3631
|
// src/components/icons/copy/index.tsx
|
|
3632
3632
|
import { jsx as jsx65, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3633
|
-
function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3633
|
+
function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3634
3634
|
return /* @__PURE__ */ jsxs46(
|
|
3635
3635
|
"svg",
|
|
3636
3636
|
{
|
|
@@ -3643,7 +3643,7 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3643
3643
|
strokeWidth,
|
|
3644
3644
|
strokeLinecap: "round",
|
|
3645
3645
|
strokeLinejoin: "round",
|
|
3646
|
-
"aria-hidden":
|
|
3646
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3647
3647
|
...rest,
|
|
3648
3648
|
children: [
|
|
3649
3649
|
/* @__PURE__ */ jsx65("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
@@ -3655,7 +3655,7 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3655
3655
|
|
|
3656
3656
|
// src/components/icons/corner-down-right/index.tsx
|
|
3657
3657
|
import { jsx as jsx66, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
3658
|
-
function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3658
|
+
function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3659
3659
|
return /* @__PURE__ */ jsxs47(
|
|
3660
3660
|
"svg",
|
|
3661
3661
|
{
|
|
@@ -3668,7 +3668,7 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
|
|
|
3668
3668
|
strokeWidth,
|
|
3669
3669
|
strokeLinecap: "round",
|
|
3670
3670
|
strokeLinejoin: "round",
|
|
3671
|
-
"aria-hidden":
|
|
3671
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3672
3672
|
...rest,
|
|
3673
3673
|
children: [
|
|
3674
3674
|
/* @__PURE__ */ jsx66("polyline", { points: "15 10 20 15 15 20" }),
|
|
@@ -3680,7 +3680,7 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
|
|
|
3680
3680
|
|
|
3681
3681
|
// src/components/icons/credit-card/index.tsx
|
|
3682
3682
|
import { jsx as jsx67, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
3683
|
-
function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3683
|
+
function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3684
3684
|
return /* @__PURE__ */ jsxs48(
|
|
3685
3685
|
"svg",
|
|
3686
3686
|
{
|
|
@@ -3693,7 +3693,7 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3693
3693
|
strokeWidth,
|
|
3694
3694
|
strokeLinecap: "round",
|
|
3695
3695
|
strokeLinejoin: "round",
|
|
3696
|
-
"aria-hidden":
|
|
3696
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3697
3697
|
...rest,
|
|
3698
3698
|
children: [
|
|
3699
3699
|
/* @__PURE__ */ jsx67("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
|
|
@@ -3705,7 +3705,7 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3705
3705
|
|
|
3706
3706
|
// src/components/icons/dollar-sign/index.tsx
|
|
3707
3707
|
import { jsx as jsx68, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
3708
|
-
function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3708
|
+
function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3709
3709
|
return /* @__PURE__ */ jsxs49(
|
|
3710
3710
|
"svg",
|
|
3711
3711
|
{
|
|
@@ -3718,7 +3718,7 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3718
3718
|
strokeWidth,
|
|
3719
3719
|
strokeLinecap: "round",
|
|
3720
3720
|
strokeLinejoin: "round",
|
|
3721
|
-
"aria-hidden":
|
|
3721
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3722
3722
|
...rest,
|
|
3723
3723
|
children: [
|
|
3724
3724
|
/* @__PURE__ */ jsx68("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
|
|
@@ -3730,7 +3730,7 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3730
3730
|
|
|
3731
3731
|
// src/components/icons/download/index.tsx
|
|
3732
3732
|
import { jsx as jsx69, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
3733
|
-
function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3733
|
+
function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3734
3734
|
return /* @__PURE__ */ jsxs50(
|
|
3735
3735
|
"svg",
|
|
3736
3736
|
{
|
|
@@ -3743,7 +3743,7 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3743
3743
|
strokeWidth,
|
|
3744
3744
|
strokeLinecap: "round",
|
|
3745
3745
|
strokeLinejoin: "round",
|
|
3746
|
-
"aria-hidden":
|
|
3746
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3747
3747
|
...rest,
|
|
3748
3748
|
children: [
|
|
3749
3749
|
/* @__PURE__ */ jsx69("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
@@ -3756,7 +3756,7 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3756
3756
|
|
|
3757
3757
|
// src/components/icons/external-link/index.tsx
|
|
3758
3758
|
import { jsx as jsx70, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
3759
|
-
function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3759
|
+
function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3760
3760
|
return /* @__PURE__ */ jsxs51(
|
|
3761
3761
|
"svg",
|
|
3762
3762
|
{
|
|
@@ -3769,7 +3769,7 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3769
3769
|
strokeWidth,
|
|
3770
3770
|
strokeLinecap: "round",
|
|
3771
3771
|
strokeLinejoin: "round",
|
|
3772
|
-
"aria-hidden":
|
|
3772
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3773
3773
|
...rest,
|
|
3774
3774
|
children: [
|
|
3775
3775
|
/* @__PURE__ */ jsx70("path", { d: "M15 3h6v6" }),
|
|
@@ -3782,7 +3782,7 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3782
3782
|
|
|
3783
3783
|
// src/components/icons/file/index.tsx
|
|
3784
3784
|
import { jsx as jsx71, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3785
|
-
function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3785
|
+
function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3786
3786
|
return /* @__PURE__ */ jsxs52(
|
|
3787
3787
|
"svg",
|
|
3788
3788
|
{
|
|
@@ -3795,7 +3795,7 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3795
3795
|
strokeWidth,
|
|
3796
3796
|
strokeLinecap: "round",
|
|
3797
3797
|
strokeLinejoin: "round",
|
|
3798
|
-
"aria-hidden":
|
|
3798
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3799
3799
|
...rest,
|
|
3800
3800
|
children: [
|
|
3801
3801
|
/* @__PURE__ */ jsx71("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
@@ -3807,7 +3807,7 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3807
3807
|
|
|
3808
3808
|
// src/components/icons/file-text/index.tsx
|
|
3809
3809
|
import { jsx as jsx72, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3810
|
-
function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3810
|
+
function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3811
3811
|
return /* @__PURE__ */ jsxs53(
|
|
3812
3812
|
"svg",
|
|
3813
3813
|
{
|
|
@@ -3820,7 +3820,7 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3820
3820
|
strokeWidth,
|
|
3821
3821
|
strokeLinecap: "round",
|
|
3822
3822
|
strokeLinejoin: "round",
|
|
3823
|
-
"aria-hidden":
|
|
3823
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3824
3824
|
...rest,
|
|
3825
3825
|
children: [
|
|
3826
3826
|
/* @__PURE__ */ jsx72("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
@@ -3835,7 +3835,7 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3835
3835
|
|
|
3836
3836
|
// src/components/icons/filter/index.tsx
|
|
3837
3837
|
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
3838
|
-
function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3838
|
+
function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3839
3839
|
return /* @__PURE__ */ jsx73(
|
|
3840
3840
|
"svg",
|
|
3841
3841
|
{
|
|
@@ -3848,7 +3848,7 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3848
3848
|
strokeWidth,
|
|
3849
3849
|
strokeLinecap: "round",
|
|
3850
3850
|
strokeLinejoin: "round",
|
|
3851
|
-
"aria-hidden":
|
|
3851
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3852
3852
|
...rest,
|
|
3853
3853
|
children: /* @__PURE__ */ jsx73("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
|
3854
3854
|
}
|
|
@@ -3857,7 +3857,7 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3857
3857
|
|
|
3858
3858
|
// src/components/icons/fingerprint/index.tsx
|
|
3859
3859
|
import { jsx as jsx74, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3860
|
-
function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3860
|
+
function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3861
3861
|
return /* @__PURE__ */ jsxs54(
|
|
3862
3862
|
"svg",
|
|
3863
3863
|
{
|
|
@@ -3870,7 +3870,7 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3870
3870
|
strokeWidth,
|
|
3871
3871
|
strokeLinecap: "round",
|
|
3872
3872
|
strokeLinejoin: "round",
|
|
3873
|
-
"aria-hidden":
|
|
3873
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3874
3874
|
...rest,
|
|
3875
3875
|
children: [
|
|
3876
3876
|
/* @__PURE__ */ jsx74("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
|
|
@@ -3889,7 +3889,7 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3889
3889
|
|
|
3890
3890
|
// src/components/icons/folder/index.tsx
|
|
3891
3891
|
import { jsx as jsx75 } from "react/jsx-runtime";
|
|
3892
|
-
function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3892
|
+
function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3893
3893
|
return /* @__PURE__ */ jsx75(
|
|
3894
3894
|
"svg",
|
|
3895
3895
|
{
|
|
@@ -3902,7 +3902,7 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3902
3902
|
strokeWidth,
|
|
3903
3903
|
strokeLinecap: "round",
|
|
3904
3904
|
strokeLinejoin: "round",
|
|
3905
|
-
"aria-hidden":
|
|
3905
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3906
3906
|
...rest,
|
|
3907
3907
|
children: /* @__PURE__ */ jsx75("path", { d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" })
|
|
3908
3908
|
}
|
|
@@ -3911,7 +3911,7 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3911
3911
|
|
|
3912
3912
|
// src/components/icons/folder-open/index.tsx
|
|
3913
3913
|
import { jsx as jsx76 } from "react/jsx-runtime";
|
|
3914
|
-
function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3914
|
+
function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3915
3915
|
return /* @__PURE__ */ jsx76(
|
|
3916
3916
|
"svg",
|
|
3917
3917
|
{
|
|
@@ -3924,7 +3924,7 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3924
3924
|
strokeWidth,
|
|
3925
3925
|
strokeLinecap: "round",
|
|
3926
3926
|
strokeLinejoin: "round",
|
|
3927
|
-
"aria-hidden":
|
|
3927
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3928
3928
|
...rest,
|
|
3929
3929
|
children: /* @__PURE__ */ jsx76("path", { d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" })
|
|
3930
3930
|
}
|
|
@@ -3933,7 +3933,7 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3933
3933
|
|
|
3934
3934
|
// src/components/icons/gift/index.tsx
|
|
3935
3935
|
import { jsx as jsx77, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3936
|
-
function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3936
|
+
function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3937
3937
|
return /* @__PURE__ */ jsxs55(
|
|
3938
3938
|
"svg",
|
|
3939
3939
|
{
|
|
@@ -3946,7 +3946,7 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3946
3946
|
strokeWidth,
|
|
3947
3947
|
strokeLinecap: "round",
|
|
3948
3948
|
strokeLinejoin: "round",
|
|
3949
|
-
"aria-hidden":
|
|
3949
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3950
3950
|
...rest,
|
|
3951
3951
|
children: [
|
|
3952
3952
|
/* @__PURE__ */ jsx77("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
|
|
@@ -3958,9 +3958,31 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3958
3958
|
);
|
|
3959
3959
|
}
|
|
3960
3960
|
|
|
3961
|
+
// src/components/icons/github/index.tsx
|
|
3962
|
+
import { jsx as jsx78 } from "react/jsx-runtime";
|
|
3963
|
+
function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3964
|
+
return /* @__PURE__ */ jsx78(
|
|
3965
|
+
"svg",
|
|
3966
|
+
{
|
|
3967
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3968
|
+
width: size3,
|
|
3969
|
+
height: size3,
|
|
3970
|
+
viewBox: "0 0 24 24",
|
|
3971
|
+
fill: "none",
|
|
3972
|
+
stroke: "currentColor",
|
|
3973
|
+
strokeWidth,
|
|
3974
|
+
strokeLinecap: "round",
|
|
3975
|
+
strokeLinejoin: "round",
|
|
3976
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3977
|
+
...rest,
|
|
3978
|
+
children: /* @__PURE__ */ jsx78("path", { d: "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" })
|
|
3979
|
+
}
|
|
3980
|
+
);
|
|
3981
|
+
}
|
|
3982
|
+
|
|
3961
3983
|
// src/components/icons/globe/index.tsx
|
|
3962
|
-
import { jsx as
|
|
3963
|
-
function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3984
|
+
import { jsx as jsx79, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3985
|
+
function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3964
3986
|
return /* @__PURE__ */ jsxs56(
|
|
3965
3987
|
"svg",
|
|
3966
3988
|
{
|
|
@@ -3973,20 +3995,20 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3973
3995
|
strokeWidth,
|
|
3974
3996
|
strokeLinecap: "round",
|
|
3975
3997
|
strokeLinejoin: "round",
|
|
3976
|
-
"aria-hidden":
|
|
3998
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3977
3999
|
...rest,
|
|
3978
4000
|
children: [
|
|
3979
|
-
/* @__PURE__ */
|
|
3980
|
-
/* @__PURE__ */
|
|
3981
|
-
/* @__PURE__ */
|
|
4001
|
+
/* @__PURE__ */ jsx79("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4002
|
+
/* @__PURE__ */ jsx79("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
4003
|
+
/* @__PURE__ */ jsx79("path", { d: "M2 12h20" })
|
|
3982
4004
|
]
|
|
3983
4005
|
}
|
|
3984
4006
|
);
|
|
3985
4007
|
}
|
|
3986
4008
|
|
|
3987
4009
|
// src/components/icons/grid/index.tsx
|
|
3988
|
-
import { jsx as
|
|
3989
|
-
function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4010
|
+
import { jsx as jsx80, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
4011
|
+
function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3990
4012
|
return /* @__PURE__ */ jsxs57(
|
|
3991
4013
|
"svg",
|
|
3992
4014
|
{
|
|
@@ -3999,23 +4021,23 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3999
4021
|
strokeWidth,
|
|
4000
4022
|
strokeLinecap: "round",
|
|
4001
4023
|
strokeLinejoin: "round",
|
|
4002
|
-
"aria-hidden":
|
|
4024
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4003
4025
|
...rest,
|
|
4004
4026
|
children: [
|
|
4005
|
-
/* @__PURE__ */
|
|
4006
|
-
/* @__PURE__ */
|
|
4007
|
-
/* @__PURE__ */
|
|
4008
|
-
/* @__PURE__ */
|
|
4009
|
-
/* @__PURE__ */
|
|
4027
|
+
/* @__PURE__ */ jsx80("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
4028
|
+
/* @__PURE__ */ jsx80("path", { d: "M3 9h18" }),
|
|
4029
|
+
/* @__PURE__ */ jsx80("path", { d: "M3 15h18" }),
|
|
4030
|
+
/* @__PURE__ */ jsx80("path", { d: "M9 3v18" }),
|
|
4031
|
+
/* @__PURE__ */ jsx80("path", { d: "M15 3v18" })
|
|
4010
4032
|
]
|
|
4011
4033
|
}
|
|
4012
4034
|
);
|
|
4013
4035
|
}
|
|
4014
4036
|
|
|
4015
4037
|
// src/components/icons/heart/index.tsx
|
|
4016
|
-
import { jsx as
|
|
4017
|
-
function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4018
|
-
return /* @__PURE__ */
|
|
4038
|
+
import { jsx as jsx81 } from "react/jsx-runtime";
|
|
4039
|
+
function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4040
|
+
return /* @__PURE__ */ jsx81(
|
|
4019
4041
|
"svg",
|
|
4020
4042
|
{
|
|
4021
4043
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4027,16 +4049,16 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4027
4049
|
strokeWidth,
|
|
4028
4050
|
strokeLinecap: "round",
|
|
4029
4051
|
strokeLinejoin: "round",
|
|
4030
|
-
"aria-hidden":
|
|
4052
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4031
4053
|
...rest,
|
|
4032
|
-
children: /* @__PURE__ */
|
|
4054
|
+
children: /* @__PURE__ */ jsx81("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
|
|
4033
4055
|
}
|
|
4034
4056
|
);
|
|
4035
4057
|
}
|
|
4036
4058
|
|
|
4037
4059
|
// src/components/icons/help-circle/index.tsx
|
|
4038
|
-
import { jsx as
|
|
4039
|
-
function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4060
|
+
import { jsx as jsx82, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
4061
|
+
function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4040
4062
|
return /* @__PURE__ */ jsxs58(
|
|
4041
4063
|
"svg",
|
|
4042
4064
|
{
|
|
@@ -4049,20 +4071,20 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4049
4071
|
strokeWidth,
|
|
4050
4072
|
strokeLinecap: "round",
|
|
4051
4073
|
strokeLinejoin: "round",
|
|
4052
|
-
"aria-hidden":
|
|
4074
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4053
4075
|
...rest,
|
|
4054
4076
|
children: [
|
|
4055
|
-
/* @__PURE__ */
|
|
4056
|
-
/* @__PURE__ */
|
|
4057
|
-
/* @__PURE__ */
|
|
4077
|
+
/* @__PURE__ */ jsx82("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4078
|
+
/* @__PURE__ */ jsx82("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
4079
|
+
/* @__PURE__ */ jsx82("path", { d: "M12 17h.01" })
|
|
4058
4080
|
]
|
|
4059
4081
|
}
|
|
4060
4082
|
);
|
|
4061
4083
|
}
|
|
4062
4084
|
|
|
4063
4085
|
// src/components/icons/home/index.tsx
|
|
4064
|
-
import { jsx as
|
|
4065
|
-
function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4086
|
+
import { jsx as jsx83, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
4087
|
+
function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4066
4088
|
return /* @__PURE__ */ jsxs59(
|
|
4067
4089
|
"svg",
|
|
4068
4090
|
{
|
|
@@ -4075,19 +4097,19 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4075
4097
|
strokeWidth,
|
|
4076
4098
|
strokeLinecap: "round",
|
|
4077
4099
|
strokeLinejoin: "round",
|
|
4078
|
-
"aria-hidden":
|
|
4100
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4079
4101
|
...rest,
|
|
4080
4102
|
children: [
|
|
4081
|
-
/* @__PURE__ */
|
|
4082
|
-
/* @__PURE__ */
|
|
4103
|
+
/* @__PURE__ */ jsx83("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
|
|
4104
|
+
/* @__PURE__ */ jsx83("polyline", { points: "9 22 9 12 15 12 15 22" })
|
|
4083
4105
|
]
|
|
4084
4106
|
}
|
|
4085
4107
|
);
|
|
4086
4108
|
}
|
|
4087
4109
|
|
|
4088
4110
|
// src/components/icons/image/index.tsx
|
|
4089
|
-
import { jsx as
|
|
4090
|
-
function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4111
|
+
import { jsx as jsx84, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
4112
|
+
function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4091
4113
|
return /* @__PURE__ */ jsxs60(
|
|
4092
4114
|
"svg",
|
|
4093
4115
|
{
|
|
@@ -4100,20 +4122,20 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4100
4122
|
strokeWidth,
|
|
4101
4123
|
strokeLinecap: "round",
|
|
4102
4124
|
strokeLinejoin: "round",
|
|
4103
|
-
"aria-hidden":
|
|
4125
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4104
4126
|
...rest,
|
|
4105
4127
|
children: [
|
|
4106
|
-
/* @__PURE__ */
|
|
4107
|
-
/* @__PURE__ */
|
|
4108
|
-
/* @__PURE__ */
|
|
4128
|
+
/* @__PURE__ */ jsx84("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
|
|
4129
|
+
/* @__PURE__ */ jsx84("circle", { cx: "9", cy: "9", r: "2" }),
|
|
4130
|
+
/* @__PURE__ */ jsx84("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
|
|
4109
4131
|
]
|
|
4110
4132
|
}
|
|
4111
4133
|
);
|
|
4112
4134
|
}
|
|
4113
4135
|
|
|
4114
4136
|
// src/components/icons/inbox/index.tsx
|
|
4115
|
-
import { jsx as
|
|
4116
|
-
function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4137
|
+
import { jsx as jsx85, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
4138
|
+
function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4117
4139
|
return /* @__PURE__ */ jsxs61(
|
|
4118
4140
|
"svg",
|
|
4119
4141
|
{
|
|
@@ -4126,19 +4148,19 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4126
4148
|
strokeWidth,
|
|
4127
4149
|
strokeLinecap: "round",
|
|
4128
4150
|
strokeLinejoin: "round",
|
|
4129
|
-
"aria-hidden":
|
|
4151
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4130
4152
|
...rest,
|
|
4131
4153
|
children: [
|
|
4132
|
-
/* @__PURE__ */
|
|
4133
|
-
/* @__PURE__ */
|
|
4154
|
+
/* @__PURE__ */ jsx85("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
4155
|
+
/* @__PURE__ */ jsx85("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
|
|
4134
4156
|
]
|
|
4135
4157
|
}
|
|
4136
4158
|
);
|
|
4137
4159
|
}
|
|
4138
4160
|
|
|
4139
4161
|
// src/components/icons/key/index.tsx
|
|
4140
|
-
import { jsx as
|
|
4141
|
-
function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4162
|
+
import { jsx as jsx86, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
4163
|
+
function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4142
4164
|
return /* @__PURE__ */ jsxs62(
|
|
4143
4165
|
"svg",
|
|
4144
4166
|
{
|
|
@@ -4151,20 +4173,20 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4151
4173
|
strokeWidth,
|
|
4152
4174
|
strokeLinecap: "round",
|
|
4153
4175
|
strokeLinejoin: "round",
|
|
4154
|
-
"aria-hidden":
|
|
4176
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4155
4177
|
...rest,
|
|
4156
4178
|
children: [
|
|
4157
|
-
/* @__PURE__ */
|
|
4158
|
-
/* @__PURE__ */
|
|
4159
|
-
/* @__PURE__ */
|
|
4179
|
+
/* @__PURE__ */ jsx86("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L21 4.5" }),
|
|
4180
|
+
/* @__PURE__ */ jsx86("path", { d: "m21 2-9.6 9.6" }),
|
|
4181
|
+
/* @__PURE__ */ jsx86("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
|
|
4160
4182
|
]
|
|
4161
4183
|
}
|
|
4162
4184
|
);
|
|
4163
4185
|
}
|
|
4164
4186
|
|
|
4165
4187
|
// src/components/icons/layout/index.tsx
|
|
4166
|
-
import { jsx as
|
|
4167
|
-
function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4188
|
+
import { jsx as jsx87, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
4189
|
+
function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4168
4190
|
return /* @__PURE__ */ jsxs63(
|
|
4169
4191
|
"svg",
|
|
4170
4192
|
{
|
|
@@ -4177,21 +4199,21 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4177
4199
|
strokeWidth,
|
|
4178
4200
|
strokeLinecap: "round",
|
|
4179
4201
|
strokeLinejoin: "round",
|
|
4180
|
-
"aria-hidden":
|
|
4202
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4181
4203
|
...rest,
|
|
4182
4204
|
children: [
|
|
4183
|
-
/* @__PURE__ */
|
|
4184
|
-
/* @__PURE__ */
|
|
4185
|
-
/* @__PURE__ */
|
|
4186
|
-
/* @__PURE__ */
|
|
4205
|
+
/* @__PURE__ */ jsx87("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
|
|
4206
|
+
/* @__PURE__ */ jsx87("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
|
|
4207
|
+
/* @__PURE__ */ jsx87("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
|
|
4208
|
+
/* @__PURE__ */ jsx87("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
|
|
4187
4209
|
]
|
|
4188
4210
|
}
|
|
4189
4211
|
);
|
|
4190
4212
|
}
|
|
4191
4213
|
|
|
4192
4214
|
// src/components/icons/link/index.tsx
|
|
4193
|
-
import { jsx as
|
|
4194
|
-
function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4215
|
+
import { jsx as jsx88, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
4216
|
+
function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4195
4217
|
return /* @__PURE__ */ jsxs64(
|
|
4196
4218
|
"svg",
|
|
4197
4219
|
{
|
|
@@ -4204,19 +4226,19 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4204
4226
|
strokeWidth,
|
|
4205
4227
|
strokeLinecap: "round",
|
|
4206
4228
|
strokeLinejoin: "round",
|
|
4207
|
-
"aria-hidden":
|
|
4229
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4208
4230
|
...rest,
|
|
4209
4231
|
children: [
|
|
4210
|
-
/* @__PURE__ */
|
|
4211
|
-
/* @__PURE__ */
|
|
4232
|
+
/* @__PURE__ */ jsx88("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
|
|
4233
|
+
/* @__PURE__ */ jsx88("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
|
|
4212
4234
|
]
|
|
4213
4235
|
}
|
|
4214
4236
|
);
|
|
4215
4237
|
}
|
|
4216
4238
|
|
|
4217
4239
|
// src/components/icons/list/index.tsx
|
|
4218
|
-
import { jsx as
|
|
4219
|
-
function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4240
|
+
import { jsx as jsx89, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
4241
|
+
function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4220
4242
|
return /* @__PURE__ */ jsxs65(
|
|
4221
4243
|
"svg",
|
|
4222
4244
|
{
|
|
@@ -4229,23 +4251,23 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4229
4251
|
strokeWidth,
|
|
4230
4252
|
strokeLinecap: "round",
|
|
4231
4253
|
strokeLinejoin: "round",
|
|
4232
|
-
"aria-hidden":
|
|
4254
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4233
4255
|
...rest,
|
|
4234
4256
|
children: [
|
|
4235
|
-
/* @__PURE__ */
|
|
4236
|
-
/* @__PURE__ */
|
|
4237
|
-
/* @__PURE__ */
|
|
4238
|
-
/* @__PURE__ */
|
|
4239
|
-
/* @__PURE__ */
|
|
4240
|
-
/* @__PURE__ */
|
|
4257
|
+
/* @__PURE__ */ jsx89("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
|
|
4258
|
+
/* @__PURE__ */ jsx89("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
|
|
4259
|
+
/* @__PURE__ */ jsx89("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
|
|
4260
|
+
/* @__PURE__ */ jsx89("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
|
|
4261
|
+
/* @__PURE__ */ jsx89("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
|
|
4262
|
+
/* @__PURE__ */ jsx89("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
|
|
4241
4263
|
]
|
|
4242
4264
|
}
|
|
4243
4265
|
);
|
|
4244
4266
|
}
|
|
4245
4267
|
|
|
4246
4268
|
// src/components/icons/loader/index.tsx
|
|
4247
|
-
import { jsx as
|
|
4248
|
-
function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4269
|
+
import { jsx as jsx90, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
4270
|
+
function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4249
4271
|
return /* @__PURE__ */ jsxs66(
|
|
4250
4272
|
"svg",
|
|
4251
4273
|
{
|
|
@@ -4258,25 +4280,25 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4258
4280
|
strokeWidth,
|
|
4259
4281
|
strokeLinecap: "round",
|
|
4260
4282
|
strokeLinejoin: "round",
|
|
4261
|
-
"aria-hidden":
|
|
4283
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4262
4284
|
...rest,
|
|
4263
4285
|
children: [
|
|
4264
|
-
/* @__PURE__ */
|
|
4265
|
-
/* @__PURE__ */
|
|
4266
|
-
/* @__PURE__ */
|
|
4267
|
-
/* @__PURE__ */
|
|
4268
|
-
/* @__PURE__ */
|
|
4269
|
-
/* @__PURE__ */
|
|
4270
|
-
/* @__PURE__ */
|
|
4271
|
-
/* @__PURE__ */
|
|
4286
|
+
/* @__PURE__ */ jsx90("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
|
|
4287
|
+
/* @__PURE__ */ jsx90("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
|
|
4288
|
+
/* @__PURE__ */ jsx90("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
|
|
4289
|
+
/* @__PURE__ */ jsx90("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
|
|
4290
|
+
/* @__PURE__ */ jsx90("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
|
|
4291
|
+
/* @__PURE__ */ jsx90("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
|
|
4292
|
+
/* @__PURE__ */ jsx90("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
|
|
4293
|
+
/* @__PURE__ */ jsx90("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
|
|
4272
4294
|
]
|
|
4273
4295
|
}
|
|
4274
4296
|
);
|
|
4275
4297
|
}
|
|
4276
4298
|
|
|
4277
4299
|
// src/components/icons/lock/index.tsx
|
|
4278
|
-
import { jsx as
|
|
4279
|
-
function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4300
|
+
import { jsx as jsx91, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
4301
|
+
function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4280
4302
|
return /* @__PURE__ */ jsxs67(
|
|
4281
4303
|
"svg",
|
|
4282
4304
|
{
|
|
@@ -4289,19 +4311,19 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4289
4311
|
strokeWidth,
|
|
4290
4312
|
strokeLinecap: "round",
|
|
4291
4313
|
strokeLinejoin: "round",
|
|
4292
|
-
"aria-hidden":
|
|
4314
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4293
4315
|
...rest,
|
|
4294
4316
|
children: [
|
|
4295
|
-
/* @__PURE__ */
|
|
4296
|
-
/* @__PURE__ */
|
|
4317
|
+
/* @__PURE__ */ jsx91("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
4318
|
+
/* @__PURE__ */ jsx91("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
|
|
4297
4319
|
]
|
|
4298
4320
|
}
|
|
4299
4321
|
);
|
|
4300
4322
|
}
|
|
4301
4323
|
|
|
4302
4324
|
// src/components/icons/log-in/index.tsx
|
|
4303
|
-
import { jsx as
|
|
4304
|
-
function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4325
|
+
import { jsx as jsx92, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
4326
|
+
function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4305
4327
|
return /* @__PURE__ */ jsxs68(
|
|
4306
4328
|
"svg",
|
|
4307
4329
|
{
|
|
@@ -4314,20 +4336,20 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4314
4336
|
strokeWidth,
|
|
4315
4337
|
strokeLinecap: "round",
|
|
4316
4338
|
strokeLinejoin: "round",
|
|
4317
|
-
"aria-hidden":
|
|
4339
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4318
4340
|
...rest,
|
|
4319
4341
|
children: [
|
|
4320
|
-
/* @__PURE__ */
|
|
4321
|
-
/* @__PURE__ */
|
|
4322
|
-
/* @__PURE__ */
|
|
4342
|
+
/* @__PURE__ */ jsx92("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
|
|
4343
|
+
/* @__PURE__ */ jsx92("polyline", { points: "10 17 15 12 10 7" }),
|
|
4344
|
+
/* @__PURE__ */ jsx92("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
|
|
4323
4345
|
]
|
|
4324
4346
|
}
|
|
4325
4347
|
);
|
|
4326
4348
|
}
|
|
4327
4349
|
|
|
4328
4350
|
// src/components/icons/log-out/index.tsx
|
|
4329
|
-
import { jsx as
|
|
4330
|
-
function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4351
|
+
import { jsx as jsx93, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4352
|
+
function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4331
4353
|
return /* @__PURE__ */ jsxs69(
|
|
4332
4354
|
"svg",
|
|
4333
4355
|
{
|
|
@@ -4340,20 +4362,20 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4340
4362
|
strokeWidth,
|
|
4341
4363
|
strokeLinecap: "round",
|
|
4342
4364
|
strokeLinejoin: "round",
|
|
4343
|
-
"aria-hidden":
|
|
4365
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4344
4366
|
...rest,
|
|
4345
4367
|
children: [
|
|
4346
|
-
/* @__PURE__ */
|
|
4347
|
-
/* @__PURE__ */
|
|
4348
|
-
/* @__PURE__ */
|
|
4368
|
+
/* @__PURE__ */ jsx93("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
4369
|
+
/* @__PURE__ */ jsx93("polyline", { points: "16 17 21 12 16 7" }),
|
|
4370
|
+
/* @__PURE__ */ jsx93("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
|
|
4349
4371
|
]
|
|
4350
4372
|
}
|
|
4351
4373
|
);
|
|
4352
4374
|
}
|
|
4353
4375
|
|
|
4354
4376
|
// src/components/icons/mail/index.tsx
|
|
4355
|
-
import { jsx as
|
|
4356
|
-
function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4377
|
+
import { jsx as jsx94, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
4378
|
+
function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4357
4379
|
return /* @__PURE__ */ jsxs70(
|
|
4358
4380
|
"svg",
|
|
4359
4381
|
{
|
|
@@ -4366,19 +4388,19 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4366
4388
|
strokeWidth,
|
|
4367
4389
|
strokeLinecap: "round",
|
|
4368
4390
|
strokeLinejoin: "round",
|
|
4369
|
-
"aria-hidden":
|
|
4391
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4370
4392
|
...rest,
|
|
4371
4393
|
children: [
|
|
4372
|
-
/* @__PURE__ */
|
|
4373
|
-
/* @__PURE__ */
|
|
4394
|
+
/* @__PURE__ */ jsx94("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
|
|
4395
|
+
/* @__PURE__ */ jsx94("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
|
|
4374
4396
|
]
|
|
4375
4397
|
}
|
|
4376
4398
|
);
|
|
4377
4399
|
}
|
|
4378
4400
|
|
|
4379
4401
|
// src/components/icons/map-pin/index.tsx
|
|
4380
|
-
import { jsx as
|
|
4381
|
-
function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4402
|
+
import { jsx as jsx95, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
4403
|
+
function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4382
4404
|
return /* @__PURE__ */ jsxs71(
|
|
4383
4405
|
"svg",
|
|
4384
4406
|
{
|
|
@@ -4391,19 +4413,19 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4391
4413
|
strokeWidth,
|
|
4392
4414
|
strokeLinecap: "round",
|
|
4393
4415
|
strokeLinejoin: "round",
|
|
4394
|
-
"aria-hidden":
|
|
4416
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4395
4417
|
...rest,
|
|
4396
4418
|
children: [
|
|
4397
|
-
/* @__PURE__ */
|
|
4398
|
-
/* @__PURE__ */
|
|
4419
|
+
/* @__PURE__ */ jsx95("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
|
|
4420
|
+
/* @__PURE__ */ jsx95("circle", { cx: "12", cy: "10", r: "3" })
|
|
4399
4421
|
]
|
|
4400
4422
|
}
|
|
4401
4423
|
);
|
|
4402
4424
|
}
|
|
4403
4425
|
|
|
4404
4426
|
// src/components/icons/maximize/index.tsx
|
|
4405
|
-
import { jsx as
|
|
4406
|
-
function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4427
|
+
import { jsx as jsx96, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
4428
|
+
function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4407
4429
|
return /* @__PURE__ */ jsxs72(
|
|
4408
4430
|
"svg",
|
|
4409
4431
|
{
|
|
@@ -4416,21 +4438,21 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4416
4438
|
strokeWidth,
|
|
4417
4439
|
strokeLinecap: "round",
|
|
4418
4440
|
strokeLinejoin: "round",
|
|
4419
|
-
"aria-hidden":
|
|
4441
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4420
4442
|
...rest,
|
|
4421
4443
|
children: [
|
|
4422
|
-
/* @__PURE__ */
|
|
4423
|
-
/* @__PURE__ */
|
|
4424
|
-
/* @__PURE__ */
|
|
4425
|
-
/* @__PURE__ */
|
|
4444
|
+
/* @__PURE__ */ jsx96("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
|
|
4445
|
+
/* @__PURE__ */ jsx96("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
|
|
4446
|
+
/* @__PURE__ */ jsx96("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
|
|
4447
|
+
/* @__PURE__ */ jsx96("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
|
|
4426
4448
|
]
|
|
4427
4449
|
}
|
|
4428
4450
|
);
|
|
4429
4451
|
}
|
|
4430
4452
|
|
|
4431
4453
|
// src/components/icons/menu/index.tsx
|
|
4432
|
-
import { jsx as
|
|
4433
|
-
function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4454
|
+
import { jsx as jsx97, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
4455
|
+
function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4434
4456
|
return /* @__PURE__ */ jsxs73(
|
|
4435
4457
|
"svg",
|
|
4436
4458
|
{
|
|
@@ -4443,21 +4465,21 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4443
4465
|
strokeWidth,
|
|
4444
4466
|
strokeLinecap: "round",
|
|
4445
4467
|
strokeLinejoin: "round",
|
|
4446
|
-
"aria-hidden":
|
|
4468
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4447
4469
|
...rest,
|
|
4448
4470
|
children: [
|
|
4449
|
-
/* @__PURE__ */
|
|
4450
|
-
/* @__PURE__ */
|
|
4451
|
-
/* @__PURE__ */
|
|
4471
|
+
/* @__PURE__ */ jsx97("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
|
|
4472
|
+
/* @__PURE__ */ jsx97("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
|
|
4473
|
+
/* @__PURE__ */ jsx97("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
|
|
4452
4474
|
]
|
|
4453
4475
|
}
|
|
4454
4476
|
);
|
|
4455
4477
|
}
|
|
4456
4478
|
|
|
4457
4479
|
// src/components/icons/message-circle/index.tsx
|
|
4458
|
-
import { jsx as
|
|
4459
|
-
function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4460
|
-
return /* @__PURE__ */
|
|
4480
|
+
import { jsx as jsx98 } from "react/jsx-runtime";
|
|
4481
|
+
function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4482
|
+
return /* @__PURE__ */ jsx98(
|
|
4461
4483
|
"svg",
|
|
4462
4484
|
{
|
|
4463
4485
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4469,17 +4491,17 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4469
4491
|
strokeWidth,
|
|
4470
4492
|
strokeLinecap: "round",
|
|
4471
4493
|
strokeLinejoin: "round",
|
|
4472
|
-
"aria-hidden":
|
|
4494
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4473
4495
|
...rest,
|
|
4474
|
-
children: /* @__PURE__ */
|
|
4496
|
+
children: /* @__PURE__ */ jsx98("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
|
|
4475
4497
|
}
|
|
4476
4498
|
);
|
|
4477
4499
|
}
|
|
4478
4500
|
|
|
4479
4501
|
// src/components/icons/message-square/index.tsx
|
|
4480
|
-
import { jsx as
|
|
4481
|
-
function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4482
|
-
return /* @__PURE__ */
|
|
4502
|
+
import { jsx as jsx99 } from "react/jsx-runtime";
|
|
4503
|
+
function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4504
|
+
return /* @__PURE__ */ jsx99(
|
|
4483
4505
|
"svg",
|
|
4484
4506
|
{
|
|
4485
4507
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4491,16 +4513,16 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4491
4513
|
strokeWidth,
|
|
4492
4514
|
strokeLinecap: "round",
|
|
4493
4515
|
strokeLinejoin: "round",
|
|
4494
|
-
"aria-hidden":
|
|
4516
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4495
4517
|
...rest,
|
|
4496
|
-
children: /* @__PURE__ */
|
|
4518
|
+
children: /* @__PURE__ */ jsx99("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
|
|
4497
4519
|
}
|
|
4498
4520
|
);
|
|
4499
4521
|
}
|
|
4500
4522
|
|
|
4501
4523
|
// src/components/icons/mic/index.tsx
|
|
4502
|
-
import { jsx as
|
|
4503
|
-
function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4524
|
+
import { jsx as jsx100, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
4525
|
+
function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4504
4526
|
return /* @__PURE__ */ jsxs74(
|
|
4505
4527
|
"svg",
|
|
4506
4528
|
{
|
|
@@ -4513,20 +4535,20 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4513
4535
|
strokeWidth,
|
|
4514
4536
|
strokeLinecap: "round",
|
|
4515
4537
|
strokeLinejoin: "round",
|
|
4516
|
-
"aria-hidden":
|
|
4538
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4517
4539
|
...rest,
|
|
4518
4540
|
children: [
|
|
4519
|
-
/* @__PURE__ */
|
|
4520
|
-
/* @__PURE__ */
|
|
4521
|
-
/* @__PURE__ */
|
|
4541
|
+
/* @__PURE__ */ jsx100("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
|
|
4542
|
+
/* @__PURE__ */ jsx100("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
|
|
4543
|
+
/* @__PURE__ */ jsx100("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
|
|
4522
4544
|
]
|
|
4523
4545
|
}
|
|
4524
4546
|
);
|
|
4525
4547
|
}
|
|
4526
4548
|
|
|
4527
4549
|
// src/components/icons/minimize/index.tsx
|
|
4528
|
-
import { jsx as
|
|
4529
|
-
function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4550
|
+
import { jsx as jsx101, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
4551
|
+
function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4530
4552
|
return /* @__PURE__ */ jsxs75(
|
|
4531
4553
|
"svg",
|
|
4532
4554
|
{
|
|
@@ -4539,22 +4561,22 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4539
4561
|
strokeWidth,
|
|
4540
4562
|
strokeLinecap: "round",
|
|
4541
4563
|
strokeLinejoin: "round",
|
|
4542
|
-
"aria-hidden":
|
|
4564
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4543
4565
|
...rest,
|
|
4544
4566
|
children: [
|
|
4545
|
-
/* @__PURE__ */
|
|
4546
|
-
/* @__PURE__ */
|
|
4547
|
-
/* @__PURE__ */
|
|
4548
|
-
/* @__PURE__ */
|
|
4567
|
+
/* @__PURE__ */ jsx101("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
|
|
4568
|
+
/* @__PURE__ */ jsx101("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
|
|
4569
|
+
/* @__PURE__ */ jsx101("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
|
|
4570
|
+
/* @__PURE__ */ jsx101("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
|
|
4549
4571
|
]
|
|
4550
4572
|
}
|
|
4551
4573
|
);
|
|
4552
4574
|
}
|
|
4553
4575
|
|
|
4554
4576
|
// src/components/icons/minus/index.tsx
|
|
4555
|
-
import { jsx as
|
|
4556
|
-
function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4557
|
-
return /* @__PURE__ */
|
|
4577
|
+
import { jsx as jsx102 } from "react/jsx-runtime";
|
|
4578
|
+
function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4579
|
+
return /* @__PURE__ */ jsx102(
|
|
4558
4580
|
"svg",
|
|
4559
4581
|
{
|
|
4560
4582
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4566,17 +4588,17 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4566
4588
|
strokeWidth,
|
|
4567
4589
|
strokeLinecap: "round",
|
|
4568
4590
|
strokeLinejoin: "round",
|
|
4569
|
-
"aria-hidden":
|
|
4591
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4570
4592
|
...rest,
|
|
4571
|
-
children: /* @__PURE__ */
|
|
4593
|
+
children: /* @__PURE__ */ jsx102("path", { d: "M5 12h14" })
|
|
4572
4594
|
}
|
|
4573
4595
|
);
|
|
4574
4596
|
}
|
|
4575
4597
|
|
|
4576
4598
|
// src/components/icons/moon/index.tsx
|
|
4577
|
-
import { jsx as
|
|
4578
|
-
function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4579
|
-
return /* @__PURE__ */
|
|
4599
|
+
import { jsx as jsx103 } from "react/jsx-runtime";
|
|
4600
|
+
function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4601
|
+
return /* @__PURE__ */ jsx103(
|
|
4580
4602
|
"svg",
|
|
4581
4603
|
{
|
|
4582
4604
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4588,16 +4610,16 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4588
4610
|
strokeWidth,
|
|
4589
4611
|
strokeLinecap: "round",
|
|
4590
4612
|
strokeLinejoin: "round",
|
|
4591
|
-
"aria-hidden":
|
|
4613
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4592
4614
|
...rest,
|
|
4593
|
-
children: /* @__PURE__ */
|
|
4615
|
+
children: /* @__PURE__ */ jsx103("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
|
|
4594
4616
|
}
|
|
4595
4617
|
);
|
|
4596
4618
|
}
|
|
4597
4619
|
|
|
4598
4620
|
// src/components/icons/more-horizontal/index.tsx
|
|
4599
|
-
import { jsx as
|
|
4600
|
-
function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4621
|
+
import { jsx as jsx104, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
4622
|
+
function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4601
4623
|
return /* @__PURE__ */ jsxs76(
|
|
4602
4624
|
"svg",
|
|
4603
4625
|
{
|
|
@@ -4610,20 +4632,20 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4610
4632
|
strokeWidth,
|
|
4611
4633
|
strokeLinecap: "round",
|
|
4612
4634
|
strokeLinejoin: "round",
|
|
4613
|
-
"aria-hidden":
|
|
4635
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4614
4636
|
...rest,
|
|
4615
4637
|
children: [
|
|
4616
|
-
/* @__PURE__ */
|
|
4617
|
-
/* @__PURE__ */
|
|
4618
|
-
/* @__PURE__ */
|
|
4638
|
+
/* @__PURE__ */ jsx104("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4639
|
+
/* @__PURE__ */ jsx104("circle", { cx: "19", cy: "12", r: "1" }),
|
|
4640
|
+
/* @__PURE__ */ jsx104("circle", { cx: "5", cy: "12", r: "1" })
|
|
4619
4641
|
]
|
|
4620
4642
|
}
|
|
4621
4643
|
);
|
|
4622
4644
|
}
|
|
4623
4645
|
|
|
4624
4646
|
// src/components/icons/more-vertical/index.tsx
|
|
4625
|
-
import { jsx as
|
|
4626
|
-
function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4647
|
+
import { jsx as jsx105, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
4648
|
+
function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4627
4649
|
return /* @__PURE__ */ jsxs77(
|
|
4628
4650
|
"svg",
|
|
4629
4651
|
{
|
|
@@ -4636,20 +4658,20 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4636
4658
|
strokeWidth,
|
|
4637
4659
|
strokeLinecap: "round",
|
|
4638
4660
|
strokeLinejoin: "round",
|
|
4639
|
-
"aria-hidden":
|
|
4661
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4640
4662
|
...rest,
|
|
4641
4663
|
children: [
|
|
4642
|
-
/* @__PURE__ */
|
|
4643
|
-
/* @__PURE__ */
|
|
4644
|
-
/* @__PURE__ */
|
|
4664
|
+
/* @__PURE__ */ jsx105("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4665
|
+
/* @__PURE__ */ jsx105("circle", { cx: "12", cy: "5", r: "1" }),
|
|
4666
|
+
/* @__PURE__ */ jsx105("circle", { cx: "12", cy: "19", r: "1" })
|
|
4645
4667
|
]
|
|
4646
4668
|
}
|
|
4647
4669
|
);
|
|
4648
4670
|
}
|
|
4649
4671
|
|
|
4650
4672
|
// src/components/icons/package/index.tsx
|
|
4651
|
-
import { jsx as
|
|
4652
|
-
function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4673
|
+
import { jsx as jsx106, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
4674
|
+
function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4653
4675
|
return /* @__PURE__ */ jsxs78(
|
|
4654
4676
|
"svg",
|
|
4655
4677
|
{
|
|
@@ -4662,21 +4684,21 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4662
4684
|
strokeWidth,
|
|
4663
4685
|
strokeLinecap: "round",
|
|
4664
4686
|
strokeLinejoin: "round",
|
|
4665
|
-
"aria-hidden":
|
|
4687
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4666
4688
|
...rest,
|
|
4667
4689
|
children: [
|
|
4668
|
-
/* @__PURE__ */
|
|
4669
|
-
/* @__PURE__ */
|
|
4670
|
-
/* @__PURE__ */
|
|
4690
|
+
/* @__PURE__ */ jsx106("path", { d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" }),
|
|
4691
|
+
/* @__PURE__ */ jsx106("path", { d: "M3.3 7 12 12l8.7-5" }),
|
|
4692
|
+
/* @__PURE__ */ jsx106("path", { d: "M12 22V12" })
|
|
4671
4693
|
]
|
|
4672
4694
|
}
|
|
4673
4695
|
);
|
|
4674
4696
|
}
|
|
4675
4697
|
|
|
4676
4698
|
// src/components/icons/paperclip/index.tsx
|
|
4677
|
-
import { jsx as
|
|
4678
|
-
function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4679
|
-
return /* @__PURE__ */
|
|
4699
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
4700
|
+
function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4701
|
+
return /* @__PURE__ */ jsx107(
|
|
4680
4702
|
"svg",
|
|
4681
4703
|
{
|
|
4682
4704
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4688,16 +4710,16 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4688
4710
|
strokeWidth,
|
|
4689
4711
|
strokeLinecap: "round",
|
|
4690
4712
|
strokeLinejoin: "round",
|
|
4691
|
-
"aria-hidden":
|
|
4713
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4692
4714
|
...rest,
|
|
4693
|
-
children: /* @__PURE__ */
|
|
4715
|
+
children: /* @__PURE__ */ jsx107("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" })
|
|
4694
4716
|
}
|
|
4695
4717
|
);
|
|
4696
4718
|
}
|
|
4697
4719
|
|
|
4698
4720
|
// src/components/icons/pause/index.tsx
|
|
4699
|
-
import { jsx as
|
|
4700
|
-
function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4721
|
+
import { jsx as jsx108, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
4722
|
+
function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4701
4723
|
return /* @__PURE__ */ jsxs79(
|
|
4702
4724
|
"svg",
|
|
4703
4725
|
{
|
|
@@ -4710,19 +4732,19 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4710
4732
|
strokeWidth,
|
|
4711
4733
|
strokeLinecap: "round",
|
|
4712
4734
|
strokeLinejoin: "round",
|
|
4713
|
-
"aria-hidden":
|
|
4735
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4714
4736
|
...rest,
|
|
4715
4737
|
children: [
|
|
4716
|
-
/* @__PURE__ */
|
|
4717
|
-
/* @__PURE__ */
|
|
4738
|
+
/* @__PURE__ */ jsx108("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
|
|
4739
|
+
/* @__PURE__ */ jsx108("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
|
|
4718
4740
|
]
|
|
4719
4741
|
}
|
|
4720
4742
|
);
|
|
4721
4743
|
}
|
|
4722
4744
|
|
|
4723
4745
|
// src/components/icons/pencil/index.tsx
|
|
4724
|
-
import { jsx as
|
|
4725
|
-
function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4746
|
+
import { jsx as jsx109, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
4747
|
+
function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4726
4748
|
return /* @__PURE__ */ jsxs80(
|
|
4727
4749
|
"svg",
|
|
4728
4750
|
{
|
|
@@ -4735,20 +4757,20 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4735
4757
|
strokeWidth,
|
|
4736
4758
|
strokeLinecap: "round",
|
|
4737
4759
|
strokeLinejoin: "round",
|
|
4738
|
-
"aria-hidden":
|
|
4760
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4739
4761
|
...rest,
|
|
4740
4762
|
children: [
|
|
4741
|
-
/* @__PURE__ */
|
|
4742
|
-
/* @__PURE__ */
|
|
4763
|
+
/* @__PURE__ */ jsx109("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
|
|
4764
|
+
/* @__PURE__ */ jsx109("path", { d: "m15 5 4 4" })
|
|
4743
4765
|
]
|
|
4744
4766
|
}
|
|
4745
4767
|
);
|
|
4746
4768
|
}
|
|
4747
4769
|
|
|
4748
4770
|
// src/components/icons/phone/index.tsx
|
|
4749
|
-
import { jsx as
|
|
4750
|
-
function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4751
|
-
return /* @__PURE__ */
|
|
4771
|
+
import { jsx as jsx110 } from "react/jsx-runtime";
|
|
4772
|
+
function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4773
|
+
return /* @__PURE__ */ jsx110(
|
|
4752
4774
|
"svg",
|
|
4753
4775
|
{
|
|
4754
4776
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4760,17 +4782,17 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4760
4782
|
strokeWidth,
|
|
4761
4783
|
strokeLinecap: "round",
|
|
4762
4784
|
strokeLinejoin: "round",
|
|
4763
|
-
"aria-hidden":
|
|
4785
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4764
4786
|
...rest,
|
|
4765
|
-
children: /* @__PURE__ */
|
|
4787
|
+
children: /* @__PURE__ */ jsx110("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
|
|
4766
4788
|
}
|
|
4767
4789
|
);
|
|
4768
4790
|
}
|
|
4769
4791
|
|
|
4770
4792
|
// src/components/icons/play/index.tsx
|
|
4771
|
-
import { jsx as
|
|
4772
|
-
function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4773
|
-
return /* @__PURE__ */
|
|
4793
|
+
import { jsx as jsx111 } from "react/jsx-runtime";
|
|
4794
|
+
function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4795
|
+
return /* @__PURE__ */ jsx111(
|
|
4774
4796
|
"svg",
|
|
4775
4797
|
{
|
|
4776
4798
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4782,16 +4804,16 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4782
4804
|
strokeWidth,
|
|
4783
4805
|
strokeLinecap: "round",
|
|
4784
4806
|
strokeLinejoin: "round",
|
|
4785
|
-
"aria-hidden":
|
|
4807
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4786
4808
|
...rest,
|
|
4787
|
-
children: /* @__PURE__ */
|
|
4809
|
+
children: /* @__PURE__ */ jsx111("polygon", { points: "6 3 20 12 6 21 6 3" })
|
|
4788
4810
|
}
|
|
4789
4811
|
);
|
|
4790
4812
|
}
|
|
4791
4813
|
|
|
4792
4814
|
// src/components/icons/plus/index.tsx
|
|
4793
|
-
import { jsx as
|
|
4794
|
-
function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4815
|
+
import { jsx as jsx112, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
4816
|
+
function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4795
4817
|
return /* @__PURE__ */ jsxs81(
|
|
4796
4818
|
"svg",
|
|
4797
4819
|
{
|
|
@@ -4804,19 +4826,19 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4804
4826
|
strokeWidth,
|
|
4805
4827
|
strokeLinecap: "round",
|
|
4806
4828
|
strokeLinejoin: "round",
|
|
4807
|
-
"aria-hidden":
|
|
4829
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4808
4830
|
...rest,
|
|
4809
4831
|
children: [
|
|
4810
|
-
/* @__PURE__ */
|
|
4811
|
-
/* @__PURE__ */
|
|
4832
|
+
/* @__PURE__ */ jsx112("path", { d: "M5 12h14" }),
|
|
4833
|
+
/* @__PURE__ */ jsx112("path", { d: "M12 5v14" })
|
|
4812
4834
|
]
|
|
4813
4835
|
}
|
|
4814
4836
|
);
|
|
4815
4837
|
}
|
|
4816
4838
|
|
|
4817
4839
|
// src/components/icons/printer/index.tsx
|
|
4818
|
-
import { jsx as
|
|
4819
|
-
function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4840
|
+
import { jsx as jsx113, jsxs as jsxs82 } from "react/jsx-runtime";
|
|
4841
|
+
function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4820
4842
|
return /* @__PURE__ */ jsxs82(
|
|
4821
4843
|
"svg",
|
|
4822
4844
|
{
|
|
@@ -4829,20 +4851,20 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4829
4851
|
strokeWidth,
|
|
4830
4852
|
strokeLinecap: "round",
|
|
4831
4853
|
strokeLinejoin: "round",
|
|
4832
|
-
"aria-hidden":
|
|
4854
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4833
4855
|
...rest,
|
|
4834
4856
|
children: [
|
|
4835
|
-
/* @__PURE__ */
|
|
4836
|
-
/* @__PURE__ */
|
|
4837
|
-
/* @__PURE__ */
|
|
4857
|
+
/* @__PURE__ */ jsx113("polyline", { points: "6 9 6 2 18 2 18 9" }),
|
|
4858
|
+
/* @__PURE__ */ jsx113("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
|
|
4859
|
+
/* @__PURE__ */ jsx113("rect", { width: "12", height: "8", x: "6", y: "14" })
|
|
4838
4860
|
]
|
|
4839
4861
|
}
|
|
4840
4862
|
);
|
|
4841
4863
|
}
|
|
4842
4864
|
|
|
4843
4865
|
// src/components/icons/redo/index.tsx
|
|
4844
|
-
import { jsx as
|
|
4845
|
-
function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4866
|
+
import { jsx as jsx114, jsxs as jsxs83 } from "react/jsx-runtime";
|
|
4867
|
+
function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4846
4868
|
return /* @__PURE__ */ jsxs83(
|
|
4847
4869
|
"svg",
|
|
4848
4870
|
{
|
|
@@ -4855,19 +4877,19 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4855
4877
|
strokeWidth,
|
|
4856
4878
|
strokeLinecap: "round",
|
|
4857
4879
|
strokeLinejoin: "round",
|
|
4858
|
-
"aria-hidden":
|
|
4880
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4859
4881
|
...rest,
|
|
4860
4882
|
children: [
|
|
4861
|
-
/* @__PURE__ */
|
|
4862
|
-
/* @__PURE__ */
|
|
4883
|
+
/* @__PURE__ */ jsx114("path", { d: "M21 7v6h-6" }),
|
|
4884
|
+
/* @__PURE__ */ jsx114("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
|
|
4863
4885
|
]
|
|
4864
4886
|
}
|
|
4865
4887
|
);
|
|
4866
4888
|
}
|
|
4867
4889
|
|
|
4868
4890
|
// src/components/icons/refresh-cw/index.tsx
|
|
4869
|
-
import { jsx as
|
|
4870
|
-
function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4891
|
+
import { jsx as jsx115, jsxs as jsxs84 } from "react/jsx-runtime";
|
|
4892
|
+
function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4871
4893
|
return /* @__PURE__ */ jsxs84(
|
|
4872
4894
|
"svg",
|
|
4873
4895
|
{
|
|
@@ -4880,21 +4902,21 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4880
4902
|
strokeWidth,
|
|
4881
4903
|
strokeLinecap: "round",
|
|
4882
4904
|
strokeLinejoin: "round",
|
|
4883
|
-
"aria-hidden":
|
|
4905
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4884
4906
|
...rest,
|
|
4885
4907
|
children: [
|
|
4886
|
-
/* @__PURE__ */
|
|
4887
|
-
/* @__PURE__ */
|
|
4888
|
-
/* @__PURE__ */
|
|
4889
|
-
/* @__PURE__ */
|
|
4908
|
+
/* @__PURE__ */ jsx115("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
|
|
4909
|
+
/* @__PURE__ */ jsx115("path", { d: "M21 3v5h-5" }),
|
|
4910
|
+
/* @__PURE__ */ jsx115("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
|
|
4911
|
+
/* @__PURE__ */ jsx115("path", { d: "M3 21v-5h5" })
|
|
4890
4912
|
]
|
|
4891
4913
|
}
|
|
4892
4914
|
);
|
|
4893
4915
|
}
|
|
4894
4916
|
|
|
4895
4917
|
// src/components/icons/save/index.tsx
|
|
4896
|
-
import { jsx as
|
|
4897
|
-
function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4918
|
+
import { jsx as jsx116, jsxs as jsxs85 } from "react/jsx-runtime";
|
|
4919
|
+
function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4898
4920
|
return /* @__PURE__ */ jsxs85(
|
|
4899
4921
|
"svg",
|
|
4900
4922
|
{
|
|
@@ -4907,20 +4929,20 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4907
4929
|
strokeWidth,
|
|
4908
4930
|
strokeLinecap: "round",
|
|
4909
4931
|
strokeLinejoin: "round",
|
|
4910
|
-
"aria-hidden":
|
|
4932
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4911
4933
|
...rest,
|
|
4912
4934
|
children: [
|
|
4913
|
-
/* @__PURE__ */
|
|
4914
|
-
/* @__PURE__ */
|
|
4915
|
-
/* @__PURE__ */
|
|
4935
|
+
/* @__PURE__ */ jsx116("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
|
|
4936
|
+
/* @__PURE__ */ jsx116("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
4937
|
+
/* @__PURE__ */ jsx116("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
4916
4938
|
]
|
|
4917
4939
|
}
|
|
4918
4940
|
);
|
|
4919
4941
|
}
|
|
4920
4942
|
|
|
4921
4943
|
// src/components/icons/search/index.tsx
|
|
4922
|
-
import { jsx as
|
|
4923
|
-
function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4944
|
+
import { jsx as jsx117, jsxs as jsxs86 } from "react/jsx-runtime";
|
|
4945
|
+
function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4924
4946
|
return /* @__PURE__ */ jsxs86(
|
|
4925
4947
|
"svg",
|
|
4926
4948
|
{
|
|
@@ -4933,19 +4955,19 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4933
4955
|
strokeWidth,
|
|
4934
4956
|
strokeLinecap: "round",
|
|
4935
4957
|
strokeLinejoin: "round",
|
|
4936
|
-
"aria-hidden":
|
|
4958
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4937
4959
|
...rest,
|
|
4938
4960
|
children: [
|
|
4939
|
-
/* @__PURE__ */
|
|
4940
|
-
/* @__PURE__ */
|
|
4961
|
+
/* @__PURE__ */ jsx117("circle", { cx: "11", cy: "11", r: "8" }),
|
|
4962
|
+
/* @__PURE__ */ jsx117("path", { d: "m21 21-4.3-4.3" })
|
|
4941
4963
|
]
|
|
4942
4964
|
}
|
|
4943
4965
|
);
|
|
4944
4966
|
}
|
|
4945
4967
|
|
|
4946
4968
|
// src/components/icons/send/index.tsx
|
|
4947
|
-
import { jsx as
|
|
4948
|
-
function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4969
|
+
import { jsx as jsx118, jsxs as jsxs87 } from "react/jsx-runtime";
|
|
4970
|
+
function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4949
4971
|
return /* @__PURE__ */ jsxs87(
|
|
4950
4972
|
"svg",
|
|
4951
4973
|
{
|
|
@@ -4958,19 +4980,19 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4958
4980
|
strokeWidth,
|
|
4959
4981
|
strokeLinecap: "round",
|
|
4960
4982
|
strokeLinejoin: "round",
|
|
4961
|
-
"aria-hidden":
|
|
4983
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4962
4984
|
...rest,
|
|
4963
4985
|
children: [
|
|
4964
|
-
/* @__PURE__ */
|
|
4965
|
-
/* @__PURE__ */
|
|
4986
|
+
/* @__PURE__ */ jsx118("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
|
|
4987
|
+
/* @__PURE__ */ jsx118("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
|
|
4966
4988
|
]
|
|
4967
4989
|
}
|
|
4968
4990
|
);
|
|
4969
4991
|
}
|
|
4970
4992
|
|
|
4971
4993
|
// src/components/icons/settings/index.tsx
|
|
4972
|
-
import { jsx as
|
|
4973
|
-
function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4994
|
+
import { jsx as jsx119, jsxs as jsxs88 } from "react/jsx-runtime";
|
|
4995
|
+
function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4974
4996
|
return /* @__PURE__ */ jsxs88(
|
|
4975
4997
|
"svg",
|
|
4976
4998
|
{
|
|
@@ -4983,19 +5005,19 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4983
5005
|
strokeWidth,
|
|
4984
5006
|
strokeLinecap: "round",
|
|
4985
5007
|
strokeLinejoin: "round",
|
|
4986
|
-
"aria-hidden":
|
|
5008
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4987
5009
|
...rest,
|
|
4988
5010
|
children: [
|
|
4989
|
-
/* @__PURE__ */
|
|
4990
|
-
/* @__PURE__ */
|
|
5011
|
+
/* @__PURE__ */ jsx119("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
|
|
5012
|
+
/* @__PURE__ */ jsx119("circle", { cx: "12", cy: "12", r: "3" })
|
|
4991
5013
|
]
|
|
4992
5014
|
}
|
|
4993
5015
|
);
|
|
4994
5016
|
}
|
|
4995
5017
|
|
|
4996
5018
|
// src/components/icons/share/index.tsx
|
|
4997
|
-
import { jsx as
|
|
4998
|
-
function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5019
|
+
import { jsx as jsx120, jsxs as jsxs89 } from "react/jsx-runtime";
|
|
5020
|
+
function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4999
5021
|
return /* @__PURE__ */ jsxs89(
|
|
5000
5022
|
"svg",
|
|
5001
5023
|
{
|
|
@@ -5008,21 +5030,21 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5008
5030
|
strokeWidth,
|
|
5009
5031
|
strokeLinecap: "round",
|
|
5010
5032
|
strokeLinejoin: "round",
|
|
5011
|
-
"aria-hidden":
|
|
5033
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5012
5034
|
...rest,
|
|
5013
5035
|
children: [
|
|
5014
|
-
/* @__PURE__ */
|
|
5015
|
-
/* @__PURE__ */
|
|
5016
|
-
/* @__PURE__ */
|
|
5036
|
+
/* @__PURE__ */ jsx120("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
5037
|
+
/* @__PURE__ */ jsx120("polyline", { points: "16 6 12 2 8 6" }),
|
|
5038
|
+
/* @__PURE__ */ jsx120("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
|
|
5017
5039
|
]
|
|
5018
5040
|
}
|
|
5019
5041
|
);
|
|
5020
5042
|
}
|
|
5021
5043
|
|
|
5022
5044
|
// src/components/icons/shield/index.tsx
|
|
5023
|
-
import { jsx as
|
|
5024
|
-
function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5025
|
-
return /* @__PURE__ */
|
|
5045
|
+
import { jsx as jsx121 } from "react/jsx-runtime";
|
|
5046
|
+
function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5047
|
+
return /* @__PURE__ */ jsx121(
|
|
5026
5048
|
"svg",
|
|
5027
5049
|
{
|
|
5028
5050
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5034,16 +5056,16 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5034
5056
|
strokeWidth,
|
|
5035
5057
|
strokeLinecap: "round",
|
|
5036
5058
|
strokeLinejoin: "round",
|
|
5037
|
-
"aria-hidden":
|
|
5059
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5038
5060
|
...rest,
|
|
5039
|
-
children: /* @__PURE__ */
|
|
5061
|
+
children: /* @__PURE__ */ jsx121("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" })
|
|
5040
5062
|
}
|
|
5041
5063
|
);
|
|
5042
5064
|
}
|
|
5043
5065
|
|
|
5044
5066
|
// src/components/icons/shield-check/index.tsx
|
|
5045
|
-
import { jsx as
|
|
5046
|
-
function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5067
|
+
import { jsx as jsx122, jsxs as jsxs90 } from "react/jsx-runtime";
|
|
5068
|
+
function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5047
5069
|
return /* @__PURE__ */ jsxs90(
|
|
5048
5070
|
"svg",
|
|
5049
5071
|
{
|
|
@@ -5056,19 +5078,19 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5056
5078
|
strokeWidth,
|
|
5057
5079
|
strokeLinecap: "round",
|
|
5058
5080
|
strokeLinejoin: "round",
|
|
5059
|
-
"aria-hidden":
|
|
5081
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5060
5082
|
...rest,
|
|
5061
5083
|
children: [
|
|
5062
|
-
/* @__PURE__ */
|
|
5063
|
-
/* @__PURE__ */
|
|
5084
|
+
/* @__PURE__ */ jsx122("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
5085
|
+
/* @__PURE__ */ jsx122("path", { d: "m9 12 2 2 4-4" })
|
|
5064
5086
|
]
|
|
5065
5087
|
}
|
|
5066
5088
|
);
|
|
5067
5089
|
}
|
|
5068
5090
|
|
|
5069
5091
|
// src/components/icons/shopping-bag/index.tsx
|
|
5070
|
-
import { jsx as
|
|
5071
|
-
function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5092
|
+
import { jsx as jsx123, jsxs as jsxs91 } from "react/jsx-runtime";
|
|
5093
|
+
function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5072
5094
|
return /* @__PURE__ */ jsxs91(
|
|
5073
5095
|
"svg",
|
|
5074
5096
|
{
|
|
@@ -5081,20 +5103,20 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5081
5103
|
strokeWidth,
|
|
5082
5104
|
strokeLinecap: "round",
|
|
5083
5105
|
strokeLinejoin: "round",
|
|
5084
|
-
"aria-hidden":
|
|
5106
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5085
5107
|
...rest,
|
|
5086
5108
|
children: [
|
|
5087
|
-
/* @__PURE__ */
|
|
5088
|
-
/* @__PURE__ */
|
|
5089
|
-
/* @__PURE__ */
|
|
5109
|
+
/* @__PURE__ */ jsx123("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
|
|
5110
|
+
/* @__PURE__ */ jsx123("path", { d: "M3 6h18" }),
|
|
5111
|
+
/* @__PURE__ */ jsx123("path", { d: "M16 10a4 4 0 0 1-8 0" })
|
|
5090
5112
|
]
|
|
5091
5113
|
}
|
|
5092
5114
|
);
|
|
5093
5115
|
}
|
|
5094
5116
|
|
|
5095
5117
|
// src/components/icons/shopping-cart/index.tsx
|
|
5096
|
-
import { jsx as
|
|
5097
|
-
function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5118
|
+
import { jsx as jsx124, jsxs as jsxs92 } from "react/jsx-runtime";
|
|
5119
|
+
function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5098
5120
|
return /* @__PURE__ */ jsxs92(
|
|
5099
5121
|
"svg",
|
|
5100
5122
|
{
|
|
@@ -5107,20 +5129,20 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5107
5129
|
strokeWidth,
|
|
5108
5130
|
strokeLinecap: "round",
|
|
5109
5131
|
strokeLinejoin: "round",
|
|
5110
|
-
"aria-hidden":
|
|
5132
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5111
5133
|
...rest,
|
|
5112
5134
|
children: [
|
|
5113
|
-
/* @__PURE__ */
|
|
5114
|
-
/* @__PURE__ */
|
|
5115
|
-
/* @__PURE__ */
|
|
5135
|
+
/* @__PURE__ */ jsx124("circle", { cx: "8", cy: "21", r: "1" }),
|
|
5136
|
+
/* @__PURE__ */ jsx124("circle", { cx: "19", cy: "21", r: "1" }),
|
|
5137
|
+
/* @__PURE__ */ jsx124("path", { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" })
|
|
5116
5138
|
]
|
|
5117
5139
|
}
|
|
5118
5140
|
);
|
|
5119
5141
|
}
|
|
5120
5142
|
|
|
5121
5143
|
// src/components/icons/sidebar/index.tsx
|
|
5122
|
-
import { jsx as
|
|
5123
|
-
function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5144
|
+
import { jsx as jsx125, jsxs as jsxs93 } from "react/jsx-runtime";
|
|
5145
|
+
function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5124
5146
|
return /* @__PURE__ */ jsxs93(
|
|
5125
5147
|
"svg",
|
|
5126
5148
|
{
|
|
@@ -5133,19 +5155,19 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5133
5155
|
strokeWidth,
|
|
5134
5156
|
strokeLinecap: "round",
|
|
5135
5157
|
strokeLinejoin: "round",
|
|
5136
|
-
"aria-hidden":
|
|
5158
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5137
5159
|
...rest,
|
|
5138
5160
|
children: [
|
|
5139
|
-
/* @__PURE__ */
|
|
5140
|
-
/* @__PURE__ */
|
|
5161
|
+
/* @__PURE__ */ jsx125("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
5162
|
+
/* @__PURE__ */ jsx125("path", { d: "M9 3v18" })
|
|
5141
5163
|
]
|
|
5142
5164
|
}
|
|
5143
5165
|
);
|
|
5144
5166
|
}
|
|
5145
5167
|
|
|
5146
5168
|
// src/components/icons/skip-back/index.tsx
|
|
5147
|
-
import { jsx as
|
|
5148
|
-
function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5169
|
+
import { jsx as jsx126, jsxs as jsxs94 } from "react/jsx-runtime";
|
|
5170
|
+
function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5149
5171
|
return /* @__PURE__ */ jsxs94(
|
|
5150
5172
|
"svg",
|
|
5151
5173
|
{
|
|
@@ -5158,19 +5180,19 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5158
5180
|
strokeWidth,
|
|
5159
5181
|
strokeLinecap: "round",
|
|
5160
5182
|
strokeLinejoin: "round",
|
|
5161
|
-
"aria-hidden":
|
|
5183
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5162
5184
|
...rest,
|
|
5163
5185
|
children: [
|
|
5164
|
-
/* @__PURE__ */
|
|
5165
|
-
/* @__PURE__ */
|
|
5186
|
+
/* @__PURE__ */ jsx126("polygon", { points: "19 20 9 12 19 4 19 20" }),
|
|
5187
|
+
/* @__PURE__ */ jsx126("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
|
|
5166
5188
|
]
|
|
5167
5189
|
}
|
|
5168
5190
|
);
|
|
5169
5191
|
}
|
|
5170
5192
|
|
|
5171
5193
|
// src/components/icons/skip-forward/index.tsx
|
|
5172
|
-
import { jsx as
|
|
5173
|
-
function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5194
|
+
import { jsx as jsx127, jsxs as jsxs95 } from "react/jsx-runtime";
|
|
5195
|
+
function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5174
5196
|
return /* @__PURE__ */ jsxs95(
|
|
5175
5197
|
"svg",
|
|
5176
5198
|
{
|
|
@@ -5183,19 +5205,19 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5183
5205
|
strokeWidth,
|
|
5184
5206
|
strokeLinecap: "round",
|
|
5185
5207
|
strokeLinejoin: "round",
|
|
5186
|
-
"aria-hidden":
|
|
5208
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5187
5209
|
...rest,
|
|
5188
5210
|
children: [
|
|
5189
|
-
/* @__PURE__ */
|
|
5190
|
-
/* @__PURE__ */
|
|
5211
|
+
/* @__PURE__ */ jsx127("polygon", { points: "5 4 15 12 5 20 5 4" }),
|
|
5212
|
+
/* @__PURE__ */ jsx127("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
|
|
5191
5213
|
]
|
|
5192
5214
|
}
|
|
5193
5215
|
);
|
|
5194
5216
|
}
|
|
5195
5217
|
|
|
5196
5218
|
// src/components/icons/sliders/index.tsx
|
|
5197
|
-
import { jsx as
|
|
5198
|
-
function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5219
|
+
import { jsx as jsx128, jsxs as jsxs96 } from "react/jsx-runtime";
|
|
5220
|
+
function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5199
5221
|
return /* @__PURE__ */ jsxs96(
|
|
5200
5222
|
"svg",
|
|
5201
5223
|
{
|
|
@@ -5208,26 +5230,26 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5208
5230
|
strokeWidth,
|
|
5209
5231
|
strokeLinecap: "round",
|
|
5210
5232
|
strokeLinejoin: "round",
|
|
5211
|
-
"aria-hidden":
|
|
5233
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5212
5234
|
...rest,
|
|
5213
5235
|
children: [
|
|
5214
|
-
/* @__PURE__ */
|
|
5215
|
-
/* @__PURE__ */
|
|
5216
|
-
/* @__PURE__ */
|
|
5217
|
-
/* @__PURE__ */
|
|
5218
|
-
/* @__PURE__ */
|
|
5219
|
-
/* @__PURE__ */
|
|
5220
|
-
/* @__PURE__ */
|
|
5221
|
-
/* @__PURE__ */
|
|
5222
|
-
/* @__PURE__ */
|
|
5236
|
+
/* @__PURE__ */ jsx128("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
|
|
5237
|
+
/* @__PURE__ */ jsx128("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
|
|
5238
|
+
/* @__PURE__ */ jsx128("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
|
|
5239
|
+
/* @__PURE__ */ jsx128("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
|
|
5240
|
+
/* @__PURE__ */ jsx128("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
|
|
5241
|
+
/* @__PURE__ */ jsx128("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
|
|
5242
|
+
/* @__PURE__ */ jsx128("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
|
|
5243
|
+
/* @__PURE__ */ jsx128("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
|
|
5244
|
+
/* @__PURE__ */ jsx128("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
|
|
5223
5245
|
]
|
|
5224
5246
|
}
|
|
5225
5247
|
);
|
|
5226
5248
|
}
|
|
5227
5249
|
|
|
5228
5250
|
// src/components/icons/smile/index.tsx
|
|
5229
|
-
import { jsx as
|
|
5230
|
-
function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5251
|
+
import { jsx as jsx129, jsxs as jsxs97 } from "react/jsx-runtime";
|
|
5252
|
+
function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5231
5253
|
return /* @__PURE__ */ jsxs97(
|
|
5232
5254
|
"svg",
|
|
5233
5255
|
{
|
|
@@ -5240,22 +5262,22 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5240
5262
|
strokeWidth,
|
|
5241
5263
|
strokeLinecap: "round",
|
|
5242
5264
|
strokeLinejoin: "round",
|
|
5243
|
-
"aria-hidden":
|
|
5265
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5244
5266
|
...rest,
|
|
5245
5267
|
children: [
|
|
5246
|
-
/* @__PURE__ */
|
|
5247
|
-
/* @__PURE__ */
|
|
5248
|
-
/* @__PURE__ */
|
|
5249
|
-
/* @__PURE__ */
|
|
5268
|
+
/* @__PURE__ */ jsx129("circle", { cx: "12", cy: "12", r: "10" }),
|
|
5269
|
+
/* @__PURE__ */ jsx129("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
|
|
5270
|
+
/* @__PURE__ */ jsx129("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
|
|
5271
|
+
/* @__PURE__ */ jsx129("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
|
|
5250
5272
|
]
|
|
5251
5273
|
}
|
|
5252
5274
|
);
|
|
5253
5275
|
}
|
|
5254
5276
|
|
|
5255
5277
|
// src/components/icons/star/index.tsx
|
|
5256
|
-
import { jsx as
|
|
5257
|
-
function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5258
|
-
return /* @__PURE__ */
|
|
5278
|
+
import { jsx as jsx130 } from "react/jsx-runtime";
|
|
5279
|
+
function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5280
|
+
return /* @__PURE__ */ jsx130(
|
|
5259
5281
|
"svg",
|
|
5260
5282
|
{
|
|
5261
5283
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5267,16 +5289,16 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5267
5289
|
strokeWidth,
|
|
5268
5290
|
strokeLinecap: "round",
|
|
5269
5291
|
strokeLinejoin: "round",
|
|
5270
|
-
"aria-hidden":
|
|
5292
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5271
5293
|
...rest,
|
|
5272
|
-
children: /* @__PURE__ */
|
|
5294
|
+
children: /* @__PURE__ */ jsx130("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
|
|
5273
5295
|
}
|
|
5274
5296
|
);
|
|
5275
5297
|
}
|
|
5276
5298
|
|
|
5277
5299
|
// src/components/icons/sun/index.tsx
|
|
5278
|
-
import { jsx as
|
|
5279
|
-
function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5300
|
+
import { jsx as jsx131, jsxs as jsxs98 } from "react/jsx-runtime";
|
|
5301
|
+
function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5280
5302
|
return /* @__PURE__ */ jsxs98(
|
|
5281
5303
|
"svg",
|
|
5282
5304
|
{
|
|
@@ -5289,26 +5311,26 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5289
5311
|
strokeWidth,
|
|
5290
5312
|
strokeLinecap: "round",
|
|
5291
5313
|
strokeLinejoin: "round",
|
|
5292
|
-
"aria-hidden":
|
|
5314
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5293
5315
|
...rest,
|
|
5294
5316
|
children: [
|
|
5295
|
-
/* @__PURE__ */
|
|
5296
|
-
/* @__PURE__ */
|
|
5297
|
-
/* @__PURE__ */
|
|
5298
|
-
/* @__PURE__ */
|
|
5299
|
-
/* @__PURE__ */
|
|
5300
|
-
/* @__PURE__ */
|
|
5301
|
-
/* @__PURE__ */
|
|
5302
|
-
/* @__PURE__ */
|
|
5303
|
-
/* @__PURE__ */
|
|
5317
|
+
/* @__PURE__ */ jsx131("circle", { cx: "12", cy: "12", r: "4" }),
|
|
5318
|
+
/* @__PURE__ */ jsx131("path", { d: "M12 2v2" }),
|
|
5319
|
+
/* @__PURE__ */ jsx131("path", { d: "M12 20v2" }),
|
|
5320
|
+
/* @__PURE__ */ jsx131("path", { d: "m4.93 4.93 1.41 1.41" }),
|
|
5321
|
+
/* @__PURE__ */ jsx131("path", { d: "m17.66 17.66 1.41 1.41" }),
|
|
5322
|
+
/* @__PURE__ */ jsx131("path", { d: "M2 12h2" }),
|
|
5323
|
+
/* @__PURE__ */ jsx131("path", { d: "M20 12h2" }),
|
|
5324
|
+
/* @__PURE__ */ jsx131("path", { d: "m6.34 17.66-1.41 1.41" }),
|
|
5325
|
+
/* @__PURE__ */ jsx131("path", { d: "m19.07 4.93-1.41 1.41" })
|
|
5304
5326
|
]
|
|
5305
5327
|
}
|
|
5306
5328
|
);
|
|
5307
5329
|
}
|
|
5308
5330
|
|
|
5309
5331
|
// src/components/icons/tag/index.tsx
|
|
5310
|
-
import { jsx as
|
|
5311
|
-
function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5332
|
+
import { jsx as jsx132, jsxs as jsxs99 } from "react/jsx-runtime";
|
|
5333
|
+
function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5312
5334
|
return /* @__PURE__ */ jsxs99(
|
|
5313
5335
|
"svg",
|
|
5314
5336
|
{
|
|
@@ -5321,19 +5343,19 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5321
5343
|
strokeWidth,
|
|
5322
5344
|
strokeLinecap: "round",
|
|
5323
5345
|
strokeLinejoin: "round",
|
|
5324
|
-
"aria-hidden":
|
|
5346
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5325
5347
|
...rest,
|
|
5326
5348
|
children: [
|
|
5327
|
-
/* @__PURE__ */
|
|
5328
|
-
/* @__PURE__ */
|
|
5349
|
+
/* @__PURE__ */ jsx132("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
|
|
5350
|
+
/* @__PURE__ */ jsx132("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
|
|
5329
5351
|
]
|
|
5330
5352
|
}
|
|
5331
5353
|
);
|
|
5332
5354
|
}
|
|
5333
5355
|
|
|
5334
5356
|
// src/components/icons/thumbs-down/index.tsx
|
|
5335
|
-
import { jsx as
|
|
5336
|
-
function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5357
|
+
import { jsx as jsx133, jsxs as jsxs100 } from "react/jsx-runtime";
|
|
5358
|
+
function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5337
5359
|
return /* @__PURE__ */ jsxs100(
|
|
5338
5360
|
"svg",
|
|
5339
5361
|
{
|
|
@@ -5346,19 +5368,19 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5346
5368
|
strokeWidth,
|
|
5347
5369
|
strokeLinecap: "round",
|
|
5348
5370
|
strokeLinejoin: "round",
|
|
5349
|
-
"aria-hidden":
|
|
5371
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5350
5372
|
...rest,
|
|
5351
5373
|
children: [
|
|
5352
|
-
/* @__PURE__ */
|
|
5353
|
-
/* @__PURE__ */
|
|
5374
|
+
/* @__PURE__ */ jsx133("path", { d: "M17 14V2" }),
|
|
5375
|
+
/* @__PURE__ */ jsx133("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
|
|
5354
5376
|
]
|
|
5355
5377
|
}
|
|
5356
5378
|
);
|
|
5357
5379
|
}
|
|
5358
5380
|
|
|
5359
5381
|
// src/components/icons/thumbs-up/index.tsx
|
|
5360
|
-
import { jsx as
|
|
5361
|
-
function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5382
|
+
import { jsx as jsx134, jsxs as jsxs101 } from "react/jsx-runtime";
|
|
5383
|
+
function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5362
5384
|
return /* @__PURE__ */ jsxs101(
|
|
5363
5385
|
"svg",
|
|
5364
5386
|
{
|
|
@@ -5371,19 +5393,19 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5371
5393
|
strokeWidth,
|
|
5372
5394
|
strokeLinecap: "round",
|
|
5373
5395
|
strokeLinejoin: "round",
|
|
5374
|
-
"aria-hidden":
|
|
5396
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5375
5397
|
...rest,
|
|
5376
5398
|
children: [
|
|
5377
|
-
/* @__PURE__ */
|
|
5378
|
-
/* @__PURE__ */
|
|
5399
|
+
/* @__PURE__ */ jsx134("path", { d: "M7 10v12" }),
|
|
5400
|
+
/* @__PURE__ */ jsx134("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
|
|
5379
5401
|
]
|
|
5380
5402
|
}
|
|
5381
5403
|
);
|
|
5382
5404
|
}
|
|
5383
5405
|
|
|
5384
5406
|
// src/components/icons/trash/index.tsx
|
|
5385
|
-
import { jsx as
|
|
5386
|
-
function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5407
|
+
import { jsx as jsx135, jsxs as jsxs102 } from "react/jsx-runtime";
|
|
5408
|
+
function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5387
5409
|
return /* @__PURE__ */ jsxs102(
|
|
5388
5410
|
"svg",
|
|
5389
5411
|
{
|
|
@@ -5396,20 +5418,20 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5396
5418
|
strokeWidth,
|
|
5397
5419
|
strokeLinecap: "round",
|
|
5398
5420
|
strokeLinejoin: "round",
|
|
5399
|
-
"aria-hidden":
|
|
5421
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5400
5422
|
...rest,
|
|
5401
5423
|
children: [
|
|
5402
|
-
/* @__PURE__ */
|
|
5403
|
-
/* @__PURE__ */
|
|
5404
|
-
/* @__PURE__ */
|
|
5424
|
+
/* @__PURE__ */ jsx135("path", { d: "M3 6h18" }),
|
|
5425
|
+
/* @__PURE__ */ jsx135("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
5426
|
+
/* @__PURE__ */ jsx135("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
5405
5427
|
]
|
|
5406
5428
|
}
|
|
5407
5429
|
);
|
|
5408
5430
|
}
|
|
5409
5431
|
|
|
5410
5432
|
// src/components/icons/undo/index.tsx
|
|
5411
|
-
import { jsx as
|
|
5412
|
-
function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5433
|
+
import { jsx as jsx136, jsxs as jsxs103 } from "react/jsx-runtime";
|
|
5434
|
+
function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5413
5435
|
return /* @__PURE__ */ jsxs103(
|
|
5414
5436
|
"svg",
|
|
5415
5437
|
{
|
|
@@ -5422,19 +5444,19 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5422
5444
|
strokeWidth,
|
|
5423
5445
|
strokeLinecap: "round",
|
|
5424
5446
|
strokeLinejoin: "round",
|
|
5425
|
-
"aria-hidden":
|
|
5447
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5426
5448
|
...rest,
|
|
5427
5449
|
children: [
|
|
5428
|
-
/* @__PURE__ */
|
|
5429
|
-
/* @__PURE__ */
|
|
5450
|
+
/* @__PURE__ */ jsx136("path", { d: "M3 7v6h6" }),
|
|
5451
|
+
/* @__PURE__ */ jsx136("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
|
|
5430
5452
|
]
|
|
5431
5453
|
}
|
|
5432
5454
|
);
|
|
5433
5455
|
}
|
|
5434
5456
|
|
|
5435
5457
|
// src/components/icons/unlock/index.tsx
|
|
5436
|
-
import { jsx as
|
|
5437
|
-
function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5458
|
+
import { jsx as jsx137, jsxs as jsxs104 } from "react/jsx-runtime";
|
|
5459
|
+
function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5438
5460
|
return /* @__PURE__ */ jsxs104(
|
|
5439
5461
|
"svg",
|
|
5440
5462
|
{
|
|
@@ -5447,19 +5469,19 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5447
5469
|
strokeWidth,
|
|
5448
5470
|
strokeLinecap: "round",
|
|
5449
5471
|
strokeLinejoin: "round",
|
|
5450
|
-
"aria-hidden":
|
|
5472
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5451
5473
|
...rest,
|
|
5452
5474
|
children: [
|
|
5453
|
-
/* @__PURE__ */
|
|
5454
|
-
/* @__PURE__ */
|
|
5475
|
+
/* @__PURE__ */ jsx137("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
5476
|
+
/* @__PURE__ */ jsx137("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
|
|
5455
5477
|
]
|
|
5456
5478
|
}
|
|
5457
5479
|
);
|
|
5458
5480
|
}
|
|
5459
5481
|
|
|
5460
5482
|
// src/components/icons/upload/index.tsx
|
|
5461
|
-
import { jsx as
|
|
5462
|
-
function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5483
|
+
import { jsx as jsx138, jsxs as jsxs105 } from "react/jsx-runtime";
|
|
5484
|
+
function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5463
5485
|
return /* @__PURE__ */ jsxs105(
|
|
5464
5486
|
"svg",
|
|
5465
5487
|
{
|
|
@@ -5472,20 +5494,20 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5472
5494
|
strokeWidth,
|
|
5473
5495
|
strokeLinecap: "round",
|
|
5474
5496
|
strokeLinejoin: "round",
|
|
5475
|
-
"aria-hidden":
|
|
5497
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5476
5498
|
...rest,
|
|
5477
5499
|
children: [
|
|
5478
|
-
/* @__PURE__ */
|
|
5479
|
-
/* @__PURE__ */
|
|
5480
|
-
/* @__PURE__ */
|
|
5500
|
+
/* @__PURE__ */ jsx138("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
5501
|
+
/* @__PURE__ */ jsx138("polyline", { points: "17 8 12 3 7 8" }),
|
|
5502
|
+
/* @__PURE__ */ jsx138("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
|
|
5481
5503
|
]
|
|
5482
5504
|
}
|
|
5483
5505
|
);
|
|
5484
5506
|
}
|
|
5485
5507
|
|
|
5486
5508
|
// src/components/icons/user/index.tsx
|
|
5487
|
-
import { jsx as
|
|
5488
|
-
function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5509
|
+
import { jsx as jsx139, jsxs as jsxs106 } from "react/jsx-runtime";
|
|
5510
|
+
function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5489
5511
|
return /* @__PURE__ */ jsxs106(
|
|
5490
5512
|
"svg",
|
|
5491
5513
|
{
|
|
@@ -5498,19 +5520,19 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5498
5520
|
strokeWidth,
|
|
5499
5521
|
strokeLinecap: "round",
|
|
5500
5522
|
strokeLinejoin: "round",
|
|
5501
|
-
"aria-hidden":
|
|
5523
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5502
5524
|
...rest,
|
|
5503
5525
|
children: [
|
|
5504
|
-
/* @__PURE__ */
|
|
5505
|
-
/* @__PURE__ */
|
|
5526
|
+
/* @__PURE__ */ jsx139("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
|
|
5527
|
+
/* @__PURE__ */ jsx139("circle", { cx: "12", cy: "7", r: "4" })
|
|
5506
5528
|
]
|
|
5507
5529
|
}
|
|
5508
5530
|
);
|
|
5509
5531
|
}
|
|
5510
5532
|
|
|
5511
5533
|
// src/components/icons/user-check/index.tsx
|
|
5512
|
-
import { jsx as
|
|
5513
|
-
function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5534
|
+
import { jsx as jsx140, jsxs as jsxs107 } from "react/jsx-runtime";
|
|
5535
|
+
function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5514
5536
|
return /* @__PURE__ */ jsxs107(
|
|
5515
5537
|
"svg",
|
|
5516
5538
|
{
|
|
@@ -5523,20 +5545,20 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5523
5545
|
strokeWidth,
|
|
5524
5546
|
strokeLinecap: "round",
|
|
5525
5547
|
strokeLinejoin: "round",
|
|
5526
|
-
"aria-hidden":
|
|
5548
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5527
5549
|
...rest,
|
|
5528
5550
|
children: [
|
|
5529
|
-
/* @__PURE__ */
|
|
5530
|
-
/* @__PURE__ */
|
|
5531
|
-
/* @__PURE__ */
|
|
5551
|
+
/* @__PURE__ */ jsx140("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5552
|
+
/* @__PURE__ */ jsx140("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5553
|
+
/* @__PURE__ */ jsx140("polyline", { points: "16 11 18 13 22 9" })
|
|
5532
5554
|
]
|
|
5533
5555
|
}
|
|
5534
5556
|
);
|
|
5535
5557
|
}
|
|
5536
5558
|
|
|
5537
5559
|
// src/components/icons/user-plus/index.tsx
|
|
5538
|
-
import { jsx as
|
|
5539
|
-
function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5560
|
+
import { jsx as jsx141, jsxs as jsxs108 } from "react/jsx-runtime";
|
|
5561
|
+
function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5540
5562
|
return /* @__PURE__ */ jsxs108(
|
|
5541
5563
|
"svg",
|
|
5542
5564
|
{
|
|
@@ -5549,21 +5571,21 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5549
5571
|
strokeWidth,
|
|
5550
5572
|
strokeLinecap: "round",
|
|
5551
5573
|
strokeLinejoin: "round",
|
|
5552
|
-
"aria-hidden":
|
|
5574
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5553
5575
|
...rest,
|
|
5554
5576
|
children: [
|
|
5555
|
-
/* @__PURE__ */
|
|
5556
|
-
/* @__PURE__ */
|
|
5557
|
-
/* @__PURE__ */
|
|
5558
|
-
/* @__PURE__ */
|
|
5577
|
+
/* @__PURE__ */ jsx141("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5578
|
+
/* @__PURE__ */ jsx141("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5579
|
+
/* @__PURE__ */ jsx141("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
|
|
5580
|
+
/* @__PURE__ */ jsx141("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
|
|
5559
5581
|
]
|
|
5560
5582
|
}
|
|
5561
5583
|
);
|
|
5562
5584
|
}
|
|
5563
5585
|
|
|
5564
5586
|
// src/components/icons/users/index.tsx
|
|
5565
|
-
import { jsx as
|
|
5566
|
-
function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5587
|
+
import { jsx as jsx142, jsxs as jsxs109 } from "react/jsx-runtime";
|
|
5588
|
+
function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5567
5589
|
return /* @__PURE__ */ jsxs109(
|
|
5568
5590
|
"svg",
|
|
5569
5591
|
{
|
|
@@ -5576,21 +5598,21 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5576
5598
|
strokeWidth,
|
|
5577
5599
|
strokeLinecap: "round",
|
|
5578
5600
|
strokeLinejoin: "round",
|
|
5579
|
-
"aria-hidden":
|
|
5601
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5580
5602
|
...rest,
|
|
5581
5603
|
children: [
|
|
5582
|
-
/* @__PURE__ */
|
|
5583
|
-
/* @__PURE__ */
|
|
5584
|
-
/* @__PURE__ */
|
|
5585
|
-
/* @__PURE__ */
|
|
5604
|
+
/* @__PURE__ */ jsx142("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5605
|
+
/* @__PURE__ */ jsx142("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5606
|
+
/* @__PURE__ */ jsx142("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
5607
|
+
/* @__PURE__ */ jsx142("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
|
|
5586
5608
|
]
|
|
5587
5609
|
}
|
|
5588
5610
|
);
|
|
5589
5611
|
}
|
|
5590
5612
|
|
|
5591
5613
|
// src/components/icons/volume-2/index.tsx
|
|
5592
|
-
import { jsx as
|
|
5593
|
-
function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5614
|
+
import { jsx as jsx143, jsxs as jsxs110 } from "react/jsx-runtime";
|
|
5615
|
+
function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5594
5616
|
return /* @__PURE__ */ jsxs110(
|
|
5595
5617
|
"svg",
|
|
5596
5618
|
{
|
|
@@ -5603,20 +5625,20 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5603
5625
|
strokeWidth,
|
|
5604
5626
|
strokeLinecap: "round",
|
|
5605
5627
|
strokeLinejoin: "round",
|
|
5606
|
-
"aria-hidden":
|
|
5628
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5607
5629
|
...rest,
|
|
5608
5630
|
children: [
|
|
5609
|
-
/* @__PURE__ */
|
|
5610
|
-
/* @__PURE__ */
|
|
5611
|
-
/* @__PURE__ */
|
|
5631
|
+
/* @__PURE__ */ jsx143("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5632
|
+
/* @__PURE__ */ jsx143("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
|
|
5633
|
+
/* @__PURE__ */ jsx143("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
|
|
5612
5634
|
]
|
|
5613
5635
|
}
|
|
5614
5636
|
);
|
|
5615
5637
|
}
|
|
5616
5638
|
|
|
5617
5639
|
// src/components/icons/volume-x/index.tsx
|
|
5618
|
-
import { jsx as
|
|
5619
|
-
function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5640
|
+
import { jsx as jsx144, jsxs as jsxs111 } from "react/jsx-runtime";
|
|
5641
|
+
function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5620
5642
|
return /* @__PURE__ */ jsxs111(
|
|
5621
5643
|
"svg",
|
|
5622
5644
|
{
|
|
@@ -5629,20 +5651,20 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5629
5651
|
strokeWidth,
|
|
5630
5652
|
strokeLinecap: "round",
|
|
5631
5653
|
strokeLinejoin: "round",
|
|
5632
|
-
"aria-hidden":
|
|
5654
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5633
5655
|
...rest,
|
|
5634
5656
|
children: [
|
|
5635
|
-
/* @__PURE__ */
|
|
5636
|
-
/* @__PURE__ */
|
|
5637
|
-
/* @__PURE__ */
|
|
5657
|
+
/* @__PURE__ */ jsx144("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5658
|
+
/* @__PURE__ */ jsx144("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
|
|
5659
|
+
/* @__PURE__ */ jsx144("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
|
|
5638
5660
|
]
|
|
5639
5661
|
}
|
|
5640
5662
|
);
|
|
5641
5663
|
}
|
|
5642
5664
|
|
|
5643
5665
|
// src/components/icons/wifi/index.tsx
|
|
5644
|
-
import { jsx as
|
|
5645
|
-
function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5666
|
+
import { jsx as jsx145, jsxs as jsxs112 } from "react/jsx-runtime";
|
|
5667
|
+
function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5646
5668
|
return /* @__PURE__ */ jsxs112(
|
|
5647
5669
|
"svg",
|
|
5648
5670
|
{
|
|
@@ -5655,22 +5677,22 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5655
5677
|
strokeWidth,
|
|
5656
5678
|
strokeLinecap: "round",
|
|
5657
5679
|
strokeLinejoin: "round",
|
|
5658
|
-
"aria-hidden":
|
|
5680
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5659
5681
|
...rest,
|
|
5660
5682
|
children: [
|
|
5661
|
-
/* @__PURE__ */
|
|
5662
|
-
/* @__PURE__ */
|
|
5663
|
-
/* @__PURE__ */
|
|
5664
|
-
/* @__PURE__ */
|
|
5683
|
+
/* @__PURE__ */ jsx145("path", { d: "M12 20h.01" }),
|
|
5684
|
+
/* @__PURE__ */ jsx145("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
|
|
5685
|
+
/* @__PURE__ */ jsx145("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
|
|
5686
|
+
/* @__PURE__ */ jsx145("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
|
|
5665
5687
|
]
|
|
5666
5688
|
}
|
|
5667
5689
|
);
|
|
5668
5690
|
}
|
|
5669
5691
|
|
|
5670
5692
|
// src/components/icons/zap/index.tsx
|
|
5671
|
-
import { jsx as
|
|
5672
|
-
function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5673
|
-
return /* @__PURE__ */
|
|
5693
|
+
import { jsx as jsx146 } from "react/jsx-runtime";
|
|
5694
|
+
function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5695
|
+
return /* @__PURE__ */ jsx146(
|
|
5674
5696
|
"svg",
|
|
5675
5697
|
{
|
|
5676
5698
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5682,9 +5704,9 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5682
5704
|
strokeWidth,
|
|
5683
5705
|
strokeLinecap: "round",
|
|
5684
5706
|
strokeLinejoin: "round",
|
|
5685
|
-
"aria-hidden":
|
|
5707
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5686
5708
|
...rest,
|
|
5687
|
-
children: /* @__PURE__ */
|
|
5709
|
+
children: /* @__PURE__ */ jsx146("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
|
|
5688
5710
|
}
|
|
5689
5711
|
);
|
|
5690
5712
|
}
|
|
@@ -5730,6 +5752,7 @@ var iconCatalog = [
|
|
|
5730
5752
|
{ name: "FolderIcon", Icon: FolderIcon },
|
|
5731
5753
|
{ name: "FolderOpenIcon", Icon: FolderOpenIcon },
|
|
5732
5754
|
{ name: "GiftIcon", Icon: GiftIcon },
|
|
5755
|
+
{ name: "GitHubIcon", Icon: GitHubIcon },
|
|
5733
5756
|
{ name: "GlobeIcon", Icon: GlobeIcon },
|
|
5734
5757
|
{ name: "GridIcon", Icon: GridIcon },
|
|
5735
5758
|
{ name: "HeartIcon", Icon: HeartIcon },
|
|
@@ -5855,6 +5878,7 @@ export {
|
|
|
5855
5878
|
FolderIcon,
|
|
5856
5879
|
FolderOpenIcon,
|
|
5857
5880
|
GiftIcon,
|
|
5881
|
+
GitHubIcon,
|
|
5858
5882
|
GlobeIcon,
|
|
5859
5883
|
GridIcon,
|
|
5860
5884
|
HeartIcon,
|