@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.cjs
CHANGED
|
@@ -72,6 +72,7 @@ __export(index_exports, {
|
|
|
72
72
|
FolderIcon: () => FolderIcon,
|
|
73
73
|
FolderOpenIcon: () => FolderOpenIcon,
|
|
74
74
|
GiftIcon: () => GiftIcon,
|
|
75
|
+
GitHubIcon: () => GitHubIcon,
|
|
75
76
|
GlobeIcon: () => GlobeIcon,
|
|
76
77
|
GridIcon: () => GridIcon,
|
|
77
78
|
HeartIcon: () => HeartIcon,
|
|
@@ -1116,7 +1117,7 @@ var import_react23 = require("react");
|
|
|
1116
1117
|
|
|
1117
1118
|
// src/components/icons/x/index.tsx
|
|
1118
1119
|
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
1119
|
-
function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1120
|
+
function XIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1120
1121
|
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
1121
1122
|
"svg",
|
|
1122
1123
|
{
|
|
@@ -1129,7 +1130,7 @@ function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1129
1130
|
strokeWidth,
|
|
1130
1131
|
strokeLinecap: "round",
|
|
1131
1132
|
strokeLinejoin: "round",
|
|
1132
|
-
"aria-hidden":
|
|
1133
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1133
1134
|
...rest,
|
|
1134
1135
|
children: [
|
|
1135
1136
|
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "M18 6 6 18" }),
|
|
@@ -1212,7 +1213,7 @@ var import_react25 = require("react");
|
|
|
1212
1213
|
|
|
1213
1214
|
// src/components/icons/check/index.tsx
|
|
1214
1215
|
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
1215
|
-
function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1216
|
+
function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1216
1217
|
return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1217
1218
|
"svg",
|
|
1218
1219
|
{
|
|
@@ -1225,7 +1226,7 @@ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1225
1226
|
strokeWidth,
|
|
1226
1227
|
strokeLinecap: "round",
|
|
1227
1228
|
strokeLinejoin: "round",
|
|
1228
|
-
"aria-hidden":
|
|
1229
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1229
1230
|
...rest,
|
|
1230
1231
|
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
1231
1232
|
}
|
|
@@ -1556,7 +1557,7 @@ var import_react34 = require("react");
|
|
|
1556
1557
|
|
|
1557
1558
|
// src/components/icons/eye/index.tsx
|
|
1558
1559
|
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
1559
|
-
function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1560
|
+
function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1560
1561
|
return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
1561
1562
|
"svg",
|
|
1562
1563
|
{
|
|
@@ -1569,7 +1570,7 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1569
1570
|
strokeWidth,
|
|
1570
1571
|
strokeLinecap: "round",
|
|
1571
1572
|
strokeLinejoin: "round",
|
|
1572
|
-
"aria-hidden":
|
|
1573
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1573
1574
|
...rest,
|
|
1574
1575
|
children: [
|
|
1575
1576
|
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }),
|
|
@@ -1581,7 +1582,7 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1581
1582
|
|
|
1582
1583
|
// src/components/icons/eye-off/index.tsx
|
|
1583
1584
|
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
1584
|
-
function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1585
|
+
function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1585
1586
|
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
1586
1587
|
"svg",
|
|
1587
1588
|
{
|
|
@@ -1594,7 +1595,7 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1594
1595
|
strokeWidth,
|
|
1595
1596
|
strokeLinecap: "round",
|
|
1596
1597
|
strokeLinejoin: "round",
|
|
1597
|
-
"aria-hidden":
|
|
1598
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1598
1599
|
...rest,
|
|
1599
1600
|
children: [
|
|
1600
1601
|
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
|
|
@@ -1839,7 +1840,7 @@ var import_react41 = require("react");
|
|
|
1839
1840
|
|
|
1840
1841
|
// src/components/icons/circle-check/index.tsx
|
|
1841
1842
|
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
1842
|
-
function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1843
|
+
function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1843
1844
|
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
1844
1845
|
"svg",
|
|
1845
1846
|
{
|
|
@@ -1852,7 +1853,7 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1852
1853
|
strokeWidth,
|
|
1853
1854
|
strokeLinecap: "round",
|
|
1854
1855
|
strokeLinejoin: "round",
|
|
1855
|
-
"aria-hidden":
|
|
1856
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1856
1857
|
...rest,
|
|
1857
1858
|
children: [
|
|
1858
1859
|
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -1864,7 +1865,7 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1864
1865
|
|
|
1865
1866
|
// src/components/icons/circle-x/index.tsx
|
|
1866
1867
|
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
1867
|
-
function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1868
|
+
function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1868
1869
|
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
1869
1870
|
"svg",
|
|
1870
1871
|
{
|
|
@@ -1877,7 +1878,7 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1877
1878
|
strokeWidth,
|
|
1878
1879
|
strokeLinecap: "round",
|
|
1879
1880
|
strokeLinejoin: "round",
|
|
1880
|
-
"aria-hidden":
|
|
1881
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1881
1882
|
...rest,
|
|
1882
1883
|
children: [
|
|
1883
1884
|
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -1890,7 +1891,7 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1890
1891
|
|
|
1891
1892
|
// src/components/icons/info/index.tsx
|
|
1892
1893
|
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
1893
|
-
function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1894
|
+
function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1894
1895
|
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
1895
1896
|
"svg",
|
|
1896
1897
|
{
|
|
@@ -1903,7 +1904,7 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1903
1904
|
strokeWidth,
|
|
1904
1905
|
strokeLinecap: "round",
|
|
1905
1906
|
strokeLinejoin: "round",
|
|
1906
|
-
"aria-hidden":
|
|
1907
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1907
1908
|
...rest,
|
|
1908
1909
|
children: [
|
|
1909
1910
|
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -1916,7 +1917,7 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1916
1917
|
|
|
1917
1918
|
// src/components/icons/triangle-alert/index.tsx
|
|
1918
1919
|
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
1919
|
-
function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1920
|
+
function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1920
1921
|
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
1921
1922
|
"svg",
|
|
1922
1923
|
{
|
|
@@ -1929,7 +1930,7 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1929
1930
|
strokeWidth,
|
|
1930
1931
|
strokeLinecap: "round",
|
|
1931
1932
|
strokeLinejoin: "round",
|
|
1932
|
-
"aria-hidden":
|
|
1933
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1933
1934
|
...rest,
|
|
1934
1935
|
children: [
|
|
1935
1936
|
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }),
|
|
@@ -2106,7 +2107,7 @@ var import_react45 = require("react");
|
|
|
2106
2107
|
|
|
2107
2108
|
// src/components/icons/chevron-down/index.tsx
|
|
2108
2109
|
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
2109
|
-
function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2110
|
+
function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2110
2111
|
return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2111
2112
|
"svg",
|
|
2112
2113
|
{
|
|
@@ -2119,7 +2120,7 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2119
2120
|
strokeWidth,
|
|
2120
2121
|
strokeLinecap: "round",
|
|
2121
2122
|
strokeLinejoin: "round",
|
|
2122
|
-
"aria-hidden":
|
|
2123
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2123
2124
|
...rest,
|
|
2124
2125
|
children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "m6 9 6 6 6-6" })
|
|
2125
2126
|
}
|
|
@@ -2465,7 +2466,7 @@ var import_react51 = require("react");
|
|
|
2465
2466
|
|
|
2466
2467
|
// src/components/icons/chevron-right/index.tsx
|
|
2467
2468
|
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
2468
|
-
function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2469
|
+
function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2469
2470
|
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2470
2471
|
"svg",
|
|
2471
2472
|
{
|
|
@@ -2478,7 +2479,7 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2478
2479
|
strokeWidth,
|
|
2479
2480
|
strokeLinecap: "round",
|
|
2480
2481
|
strokeLinejoin: "round",
|
|
2481
|
-
"aria-hidden":
|
|
2482
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2482
2483
|
...rest,
|
|
2483
2484
|
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "m9 18 6-6-6-6" })
|
|
2484
2485
|
}
|
|
@@ -2524,7 +2525,7 @@ var import_react53 = require("react");
|
|
|
2524
2525
|
|
|
2525
2526
|
// src/components/icons/chevron-left/index.tsx
|
|
2526
2527
|
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
2527
|
-
function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2528
|
+
function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2528
2529
|
return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2529
2530
|
"svg",
|
|
2530
2531
|
{
|
|
@@ -2537,7 +2538,7 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2537
2538
|
strokeWidth,
|
|
2538
2539
|
strokeLinecap: "round",
|
|
2539
2540
|
strokeLinejoin: "round",
|
|
2540
|
-
"aria-hidden":
|
|
2541
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2541
2542
|
...rest,
|
|
2542
2543
|
children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "m15 18-6-6 6-6" })
|
|
2543
2544
|
}
|
|
@@ -3343,7 +3344,7 @@ var ListItem = (0, import_react69.forwardRef)(function ListItem2({ leading: lead
|
|
|
3343
3344
|
|
|
3344
3345
|
// src/components/icons/alert-circle/index.tsx
|
|
3345
3346
|
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
3346
|
-
function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3347
|
+
function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3347
3348
|
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
|
|
3348
3349
|
"svg",
|
|
3349
3350
|
{
|
|
@@ -3356,7 +3357,7 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3356
3357
|
strokeWidth,
|
|
3357
3358
|
strokeLinecap: "round",
|
|
3358
3359
|
strokeLinejoin: "round",
|
|
3359
|
-
"aria-hidden":
|
|
3360
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3360
3361
|
...rest,
|
|
3361
3362
|
children: [
|
|
3362
3363
|
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -3369,7 +3370,7 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3369
3370
|
|
|
3370
3371
|
// src/components/icons/archive/index.tsx
|
|
3371
3372
|
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
3372
|
-
function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3373
|
+
function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3373
3374
|
return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
|
|
3374
3375
|
"svg",
|
|
3375
3376
|
{
|
|
@@ -3382,7 +3383,7 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3382
3383
|
strokeWidth,
|
|
3383
3384
|
strokeLinecap: "round",
|
|
3384
3385
|
strokeLinejoin: "round",
|
|
3385
|
-
"aria-hidden":
|
|
3386
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3386
3387
|
...rest,
|
|
3387
3388
|
children: [
|
|
3388
3389
|
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
|
|
@@ -3395,7 +3396,7 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3395
3396
|
|
|
3396
3397
|
// src/components/icons/arrow-down/index.tsx
|
|
3397
3398
|
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
3398
|
-
function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3399
|
+
function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3399
3400
|
return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
|
|
3400
3401
|
"svg",
|
|
3401
3402
|
{
|
|
@@ -3408,7 +3409,7 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3408
3409
|
strokeWidth,
|
|
3409
3410
|
strokeLinecap: "round",
|
|
3410
3411
|
strokeLinejoin: "round",
|
|
3411
|
-
"aria-hidden":
|
|
3412
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3412
3413
|
...rest,
|
|
3413
3414
|
children: [
|
|
3414
3415
|
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M12 5v14" }),
|
|
@@ -3420,7 +3421,7 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3420
3421
|
|
|
3421
3422
|
// src/components/icons/arrow-left/index.tsx
|
|
3422
3423
|
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
3423
|
-
function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3424
|
+
function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3424
3425
|
return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
|
|
3425
3426
|
"svg",
|
|
3426
3427
|
{
|
|
@@ -3433,7 +3434,7 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3433
3434
|
strokeWidth,
|
|
3434
3435
|
strokeLinecap: "round",
|
|
3435
3436
|
strokeLinejoin: "round",
|
|
3436
|
-
"aria-hidden":
|
|
3437
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3437
3438
|
...rest,
|
|
3438
3439
|
children: [
|
|
3439
3440
|
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "m12 19-7-7 7-7" }),
|
|
@@ -3445,7 +3446,7 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3445
3446
|
|
|
3446
3447
|
// src/components/icons/arrow-right/index.tsx
|
|
3447
3448
|
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
3448
|
-
function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3449
|
+
function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3449
3450
|
return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
|
|
3450
3451
|
"svg",
|
|
3451
3452
|
{
|
|
@@ -3458,7 +3459,7 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3458
3459
|
strokeWidth,
|
|
3459
3460
|
strokeLinecap: "round",
|
|
3460
3461
|
strokeLinejoin: "round",
|
|
3461
|
-
"aria-hidden":
|
|
3462
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3462
3463
|
...rest,
|
|
3463
3464
|
children: [
|
|
3464
3465
|
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M5 12h14" }),
|
|
@@ -3470,7 +3471,7 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3470
3471
|
|
|
3471
3472
|
// src/components/icons/arrow-up/index.tsx
|
|
3472
3473
|
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
3473
|
-
function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3474
|
+
function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3474
3475
|
return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
|
|
3475
3476
|
"svg",
|
|
3476
3477
|
{
|
|
@@ -3483,7 +3484,7 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3483
3484
|
strokeWidth,
|
|
3484
3485
|
strokeLinecap: "round",
|
|
3485
3486
|
strokeLinejoin: "round",
|
|
3486
|
-
"aria-hidden":
|
|
3487
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3487
3488
|
...rest,
|
|
3488
3489
|
children: [
|
|
3489
3490
|
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "m5 12 7-7 7 7" }),
|
|
@@ -3495,7 +3496,7 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3495
3496
|
|
|
3496
3497
|
// src/components/icons/at-sign/index.tsx
|
|
3497
3498
|
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
3498
|
-
function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3499
|
+
function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3499
3500
|
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
|
|
3500
3501
|
"svg",
|
|
3501
3502
|
{
|
|
@@ -3508,7 +3509,7 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3508
3509
|
strokeWidth,
|
|
3509
3510
|
strokeLinecap: "round",
|
|
3510
3511
|
strokeLinejoin: "round",
|
|
3511
|
-
"aria-hidden":
|
|
3512
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3512
3513
|
...rest,
|
|
3513
3514
|
children: [
|
|
3514
3515
|
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
|
|
@@ -3520,7 +3521,7 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3520
3521
|
|
|
3521
3522
|
// src/components/icons/bell/index.tsx
|
|
3522
3523
|
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
3523
|
-
function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3524
|
+
function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3524
3525
|
return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
|
|
3525
3526
|
"svg",
|
|
3526
3527
|
{
|
|
@@ -3533,7 +3534,7 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3533
3534
|
strokeWidth,
|
|
3534
3535
|
strokeLinecap: "round",
|
|
3535
3536
|
strokeLinejoin: "round",
|
|
3536
|
-
"aria-hidden":
|
|
3537
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3537
3538
|
...rest,
|
|
3538
3539
|
children: [
|
|
3539
3540
|
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
|
|
@@ -3545,7 +3546,7 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3545
3546
|
|
|
3546
3547
|
// src/components/icons/bell-off/index.tsx
|
|
3547
3548
|
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
3548
|
-
function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3549
|
+
function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3549
3550
|
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
|
|
3550
3551
|
"svg",
|
|
3551
3552
|
{
|
|
@@ -3558,7 +3559,7 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3558
3559
|
strokeWidth,
|
|
3559
3560
|
strokeLinecap: "round",
|
|
3560
3561
|
strokeLinejoin: "round",
|
|
3561
|
-
"aria-hidden":
|
|
3562
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3562
3563
|
...rest,
|
|
3563
3564
|
children: [
|
|
3564
3565
|
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
|
|
@@ -3572,7 +3573,7 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3572
3573
|
|
|
3573
3574
|
// src/components/icons/bookmark/index.tsx
|
|
3574
3575
|
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
3575
|
-
function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3576
|
+
function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3576
3577
|
return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
3577
3578
|
"svg",
|
|
3578
3579
|
{
|
|
@@ -3585,7 +3586,7 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3585
3586
|
strokeWidth,
|
|
3586
3587
|
strokeLinecap: "round",
|
|
3587
3588
|
strokeLinejoin: "round",
|
|
3588
|
-
"aria-hidden":
|
|
3589
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3589
3590
|
...rest,
|
|
3590
3591
|
children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
|
|
3591
3592
|
}
|
|
@@ -3594,7 +3595,7 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3594
3595
|
|
|
3595
3596
|
// src/components/icons/calendar/index.tsx
|
|
3596
3597
|
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
3597
|
-
function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3598
|
+
function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3598
3599
|
return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
|
|
3599
3600
|
"svg",
|
|
3600
3601
|
{
|
|
@@ -3607,7 +3608,7 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3607
3608
|
strokeWidth,
|
|
3608
3609
|
strokeLinecap: "round",
|
|
3609
3610
|
strokeLinejoin: "round",
|
|
3610
|
-
"aria-hidden":
|
|
3611
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3611
3612
|
...rest,
|
|
3612
3613
|
children: [
|
|
3613
3614
|
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M8 2v4" }),
|
|
@@ -3621,7 +3622,7 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3621
3622
|
|
|
3622
3623
|
// src/components/icons/camera/index.tsx
|
|
3623
3624
|
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
3624
|
-
function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3625
|
+
function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3625
3626
|
return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
|
|
3626
3627
|
"svg",
|
|
3627
3628
|
{
|
|
@@ -3634,7 +3635,7 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3634
3635
|
strokeWidth,
|
|
3635
3636
|
strokeLinecap: "round",
|
|
3636
3637
|
strokeLinejoin: "round",
|
|
3637
|
-
"aria-hidden":
|
|
3638
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3638
3639
|
...rest,
|
|
3639
3640
|
children: [
|
|
3640
3641
|
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z" }),
|
|
@@ -3646,7 +3647,7 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3646
3647
|
|
|
3647
3648
|
// src/components/icons/chevron-up/index.tsx
|
|
3648
3649
|
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
3649
|
-
function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3650
|
+
function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3650
3651
|
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
3651
3652
|
"svg",
|
|
3652
3653
|
{
|
|
@@ -3659,7 +3660,7 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3659
3660
|
strokeWidth,
|
|
3660
3661
|
strokeLinecap: "round",
|
|
3661
3662
|
strokeLinejoin: "round",
|
|
3662
|
-
"aria-hidden":
|
|
3663
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3663
3664
|
...rest,
|
|
3664
3665
|
children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("path", { d: "m18 15-6-6-6 6" })
|
|
3665
3666
|
}
|
|
@@ -3668,7 +3669,7 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3668
3669
|
|
|
3669
3670
|
// src/components/icons/chevrons-left/index.tsx
|
|
3670
3671
|
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
3671
|
-
function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3672
|
+
function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3672
3673
|
return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
|
|
3673
3674
|
"svg",
|
|
3674
3675
|
{
|
|
@@ -3681,7 +3682,7 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3681
3682
|
strokeWidth,
|
|
3682
3683
|
strokeLinecap: "round",
|
|
3683
3684
|
strokeLinejoin: "round",
|
|
3684
|
-
"aria-hidden":
|
|
3685
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3685
3686
|
...rest,
|
|
3686
3687
|
children: [
|
|
3687
3688
|
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { d: "m11 17-5-5 5-5" }),
|
|
@@ -3693,7 +3694,7 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3693
3694
|
|
|
3694
3695
|
// src/components/icons/chevrons-right/index.tsx
|
|
3695
3696
|
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
3696
|
-
function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3697
|
+
function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3697
3698
|
return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
|
|
3698
3699
|
"svg",
|
|
3699
3700
|
{
|
|
@@ -3706,7 +3707,7 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3706
3707
|
strokeWidth,
|
|
3707
3708
|
strokeLinecap: "round",
|
|
3708
3709
|
strokeLinejoin: "round",
|
|
3709
|
-
"aria-hidden":
|
|
3710
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3710
3711
|
...rest,
|
|
3711
3712
|
children: [
|
|
3712
3713
|
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "m6 17 5-5-5-5" }),
|
|
@@ -3718,7 +3719,7 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3718
3719
|
|
|
3719
3720
|
// src/components/icons/clipboard/index.tsx
|
|
3720
3721
|
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
3721
|
-
function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3722
|
+
function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3722
3723
|
return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
|
|
3723
3724
|
"svg",
|
|
3724
3725
|
{
|
|
@@ -3731,7 +3732,7 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3731
3732
|
strokeWidth,
|
|
3732
3733
|
strokeLinecap: "round",
|
|
3733
3734
|
strokeLinejoin: "round",
|
|
3734
|
-
"aria-hidden":
|
|
3735
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3735
3736
|
...rest,
|
|
3736
3737
|
children: [
|
|
3737
3738
|
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
@@ -3743,7 +3744,7 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3743
3744
|
|
|
3744
3745
|
// src/components/icons/clock/index.tsx
|
|
3745
3746
|
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
3746
|
-
function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3747
|
+
function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3747
3748
|
return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
|
|
3748
3749
|
"svg",
|
|
3749
3750
|
{
|
|
@@ -3756,7 +3757,7 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3756
3757
|
strokeWidth,
|
|
3757
3758
|
strokeLinecap: "round",
|
|
3758
3759
|
strokeLinejoin: "round",
|
|
3759
|
-
"aria-hidden":
|
|
3760
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3760
3761
|
...rest,
|
|
3761
3762
|
children: [
|
|
3762
3763
|
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -3768,7 +3769,7 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3768
3769
|
|
|
3769
3770
|
// src/components/icons/cloud/index.tsx
|
|
3770
3771
|
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
3771
|
-
function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3772
|
+
function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3772
3773
|
return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
3773
3774
|
"svg",
|
|
3774
3775
|
{
|
|
@@ -3781,7 +3782,7 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3781
3782
|
strokeWidth,
|
|
3782
3783
|
strokeLinecap: "round",
|
|
3783
3784
|
strokeLinejoin: "round",
|
|
3784
|
-
"aria-hidden":
|
|
3785
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3785
3786
|
...rest,
|
|
3786
3787
|
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
|
|
3787
3788
|
}
|
|
@@ -3790,7 +3791,7 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3790
3791
|
|
|
3791
3792
|
// src/components/icons/copy/index.tsx
|
|
3792
3793
|
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
3793
|
-
function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3794
|
+
function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3794
3795
|
return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
|
|
3795
3796
|
"svg",
|
|
3796
3797
|
{
|
|
@@ -3803,7 +3804,7 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3803
3804
|
strokeWidth,
|
|
3804
3805
|
strokeLinecap: "round",
|
|
3805
3806
|
strokeLinejoin: "round",
|
|
3806
|
-
"aria-hidden":
|
|
3807
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3807
3808
|
...rest,
|
|
3808
3809
|
children: [
|
|
3809
3810
|
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
@@ -3815,7 +3816,7 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3815
3816
|
|
|
3816
3817
|
// src/components/icons/corner-down-right/index.tsx
|
|
3817
3818
|
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
3818
|
-
function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3819
|
+
function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3819
3820
|
return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
|
|
3820
3821
|
"svg",
|
|
3821
3822
|
{
|
|
@@ -3828,7 +3829,7 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
|
|
|
3828
3829
|
strokeWidth,
|
|
3829
3830
|
strokeLinecap: "round",
|
|
3830
3831
|
strokeLinejoin: "round",
|
|
3831
|
-
"aria-hidden":
|
|
3832
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3832
3833
|
...rest,
|
|
3833
3834
|
children: [
|
|
3834
3835
|
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("polyline", { points: "15 10 20 15 15 20" }),
|
|
@@ -3840,7 +3841,7 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
|
|
|
3840
3841
|
|
|
3841
3842
|
// src/components/icons/credit-card/index.tsx
|
|
3842
3843
|
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
3843
|
-
function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3844
|
+
function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3844
3845
|
return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
|
|
3845
3846
|
"svg",
|
|
3846
3847
|
{
|
|
@@ -3853,7 +3854,7 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3853
3854
|
strokeWidth,
|
|
3854
3855
|
strokeLinecap: "round",
|
|
3855
3856
|
strokeLinejoin: "round",
|
|
3856
|
-
"aria-hidden":
|
|
3857
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3857
3858
|
...rest,
|
|
3858
3859
|
children: [
|
|
3859
3860
|
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
|
|
@@ -3865,7 +3866,7 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3865
3866
|
|
|
3866
3867
|
// src/components/icons/dollar-sign/index.tsx
|
|
3867
3868
|
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
3868
|
-
function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3869
|
+
function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3869
3870
|
return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
|
|
3870
3871
|
"svg",
|
|
3871
3872
|
{
|
|
@@ -3878,7 +3879,7 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3878
3879
|
strokeWidth,
|
|
3879
3880
|
strokeLinecap: "round",
|
|
3880
3881
|
strokeLinejoin: "round",
|
|
3881
|
-
"aria-hidden":
|
|
3882
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3882
3883
|
...rest,
|
|
3883
3884
|
children: [
|
|
3884
3885
|
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
|
|
@@ -3890,7 +3891,7 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3890
3891
|
|
|
3891
3892
|
// src/components/icons/download/index.tsx
|
|
3892
3893
|
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
3893
|
-
function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3894
|
+
function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3894
3895
|
return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
|
|
3895
3896
|
"svg",
|
|
3896
3897
|
{
|
|
@@ -3903,7 +3904,7 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3903
3904
|
strokeWidth,
|
|
3904
3905
|
strokeLinecap: "round",
|
|
3905
3906
|
strokeLinejoin: "round",
|
|
3906
|
-
"aria-hidden":
|
|
3907
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3907
3908
|
...rest,
|
|
3908
3909
|
children: [
|
|
3909
3910
|
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
@@ -3916,7 +3917,7 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3916
3917
|
|
|
3917
3918
|
// src/components/icons/external-link/index.tsx
|
|
3918
3919
|
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
3919
|
-
function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3920
|
+
function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3920
3921
|
return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
|
|
3921
3922
|
"svg",
|
|
3922
3923
|
{
|
|
@@ -3929,7 +3930,7 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3929
3930
|
strokeWidth,
|
|
3930
3931
|
strokeLinecap: "round",
|
|
3931
3932
|
strokeLinejoin: "round",
|
|
3932
|
-
"aria-hidden":
|
|
3933
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3933
3934
|
...rest,
|
|
3934
3935
|
children: [
|
|
3935
3936
|
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", { d: "M15 3h6v6" }),
|
|
@@ -3942,7 +3943,7 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3942
3943
|
|
|
3943
3944
|
// src/components/icons/file/index.tsx
|
|
3944
3945
|
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
3945
|
-
function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3946
|
+
function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3946
3947
|
return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
|
|
3947
3948
|
"svg",
|
|
3948
3949
|
{
|
|
@@ -3955,7 +3956,7 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3955
3956
|
strokeWidth,
|
|
3956
3957
|
strokeLinecap: "round",
|
|
3957
3958
|
strokeLinejoin: "round",
|
|
3958
|
-
"aria-hidden":
|
|
3959
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3959
3960
|
...rest,
|
|
3960
3961
|
children: [
|
|
3961
3962
|
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
@@ -3967,7 +3968,7 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3967
3968
|
|
|
3968
3969
|
// src/components/icons/file-text/index.tsx
|
|
3969
3970
|
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
3970
|
-
function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3971
|
+
function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3971
3972
|
return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
|
|
3972
3973
|
"svg",
|
|
3973
3974
|
{
|
|
@@ -3980,7 +3981,7 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3980
3981
|
strokeWidth,
|
|
3981
3982
|
strokeLinecap: "round",
|
|
3982
3983
|
strokeLinejoin: "round",
|
|
3983
|
-
"aria-hidden":
|
|
3984
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3984
3985
|
...rest,
|
|
3985
3986
|
children: [
|
|
3986
3987
|
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
@@ -3995,7 +3996,7 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3995
3996
|
|
|
3996
3997
|
// src/components/icons/filter/index.tsx
|
|
3997
3998
|
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
3998
|
-
function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3999
|
+
function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3999
4000
|
return /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
4000
4001
|
"svg",
|
|
4001
4002
|
{
|
|
@@ -4008,7 +4009,7 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4008
4009
|
strokeWidth,
|
|
4009
4010
|
strokeLinecap: "round",
|
|
4010
4011
|
strokeLinejoin: "round",
|
|
4011
|
-
"aria-hidden":
|
|
4012
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4012
4013
|
...rest,
|
|
4013
4014
|
children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
|
4014
4015
|
}
|
|
@@ -4017,7 +4018,7 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4017
4018
|
|
|
4018
4019
|
// src/components/icons/fingerprint/index.tsx
|
|
4019
4020
|
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
4020
|
-
function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4021
|
+
function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4021
4022
|
return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
|
|
4022
4023
|
"svg",
|
|
4023
4024
|
{
|
|
@@ -4030,7 +4031,7 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4030
4031
|
strokeWidth,
|
|
4031
4032
|
strokeLinecap: "round",
|
|
4032
4033
|
strokeLinejoin: "round",
|
|
4033
|
-
"aria-hidden":
|
|
4034
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4034
4035
|
...rest,
|
|
4035
4036
|
children: [
|
|
4036
4037
|
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
|
|
@@ -4049,7 +4050,7 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4049
4050
|
|
|
4050
4051
|
// src/components/icons/folder/index.tsx
|
|
4051
4052
|
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
4052
|
-
function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4053
|
+
function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4053
4054
|
return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4054
4055
|
"svg",
|
|
4055
4056
|
{
|
|
@@ -4062,7 +4063,7 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4062
4063
|
strokeWidth,
|
|
4063
4064
|
strokeLinecap: "round",
|
|
4064
4065
|
strokeLinejoin: "round",
|
|
4065
|
-
"aria-hidden":
|
|
4066
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4066
4067
|
...rest,
|
|
4067
4068
|
children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" })
|
|
4068
4069
|
}
|
|
@@ -4071,7 +4072,7 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4071
4072
|
|
|
4072
4073
|
// src/components/icons/folder-open/index.tsx
|
|
4073
4074
|
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
4074
|
-
function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4075
|
+
function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4075
4076
|
return /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
4076
4077
|
"svg",
|
|
4077
4078
|
{
|
|
@@ -4084,7 +4085,7 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4084
4085
|
strokeWidth,
|
|
4085
4086
|
strokeLinecap: "round",
|
|
4086
4087
|
strokeLinejoin: "round",
|
|
4087
|
-
"aria-hidden":
|
|
4088
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4088
4089
|
...rest,
|
|
4089
4090
|
children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("path", { d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" })
|
|
4090
4091
|
}
|
|
@@ -4093,7 +4094,7 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4093
4094
|
|
|
4094
4095
|
// src/components/icons/gift/index.tsx
|
|
4095
4096
|
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
4096
|
-
function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4097
|
+
function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4097
4098
|
return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
|
|
4098
4099
|
"svg",
|
|
4099
4100
|
{
|
|
@@ -4106,7 +4107,7 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4106
4107
|
strokeWidth,
|
|
4107
4108
|
strokeLinecap: "round",
|
|
4108
4109
|
strokeLinejoin: "round",
|
|
4109
|
-
"aria-hidden":
|
|
4110
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4110
4111
|
...rest,
|
|
4111
4112
|
children: [
|
|
4112
4113
|
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
|
|
@@ -4118,10 +4119,10 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4118
4119
|
);
|
|
4119
4120
|
}
|
|
4120
4121
|
|
|
4121
|
-
// src/components/icons/
|
|
4122
|
+
// src/components/icons/github/index.tsx
|
|
4122
4123
|
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
4123
|
-
function
|
|
4124
|
-
return /* @__PURE__ */ (0, import_jsx_runtime78.
|
|
4124
|
+
function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4125
|
+
return /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
4125
4126
|
"svg",
|
|
4126
4127
|
{
|
|
4127
4128
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4133,20 +4134,16 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4133
4134
|
strokeWidth,
|
|
4134
4135
|
strokeLinecap: "round",
|
|
4135
4136
|
strokeLinejoin: "round",
|
|
4136
|
-
"aria-hidden":
|
|
4137
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4137
4138
|
...rest,
|
|
4138
|
-
children:
|
|
4139
|
-
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4140
|
-
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
4141
|
-
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M2 12h20" })
|
|
4142
|
-
]
|
|
4139
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" })
|
|
4143
4140
|
}
|
|
4144
4141
|
);
|
|
4145
4142
|
}
|
|
4146
4143
|
|
|
4147
|
-
// src/components/icons/
|
|
4144
|
+
// src/components/icons/globe/index.tsx
|
|
4148
4145
|
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
4149
|
-
function
|
|
4146
|
+
function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4150
4147
|
return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
|
|
4151
4148
|
"svg",
|
|
4152
4149
|
{
|
|
@@ -4159,23 +4156,21 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4159
4156
|
strokeWidth,
|
|
4160
4157
|
strokeLinecap: "round",
|
|
4161
4158
|
strokeLinejoin: "round",
|
|
4162
|
-
"aria-hidden":
|
|
4159
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4163
4160
|
...rest,
|
|
4164
4161
|
children: [
|
|
4165
|
-
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("
|
|
4166
|
-
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "
|
|
4167
|
-
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "
|
|
4168
|
-
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M9 3v18" }),
|
|
4169
|
-
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M15 3v18" })
|
|
4162
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4163
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
4164
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M2 12h20" })
|
|
4170
4165
|
]
|
|
4171
4166
|
}
|
|
4172
4167
|
);
|
|
4173
4168
|
}
|
|
4174
4169
|
|
|
4175
|
-
// src/components/icons/
|
|
4170
|
+
// src/components/icons/grid/index.tsx
|
|
4176
4171
|
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
4177
|
-
function
|
|
4178
|
-
return /* @__PURE__ */ (0, import_jsx_runtime80.
|
|
4172
|
+
function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4173
|
+
return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
|
|
4179
4174
|
"svg",
|
|
4180
4175
|
{
|
|
4181
4176
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4187,17 +4182,23 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4187
4182
|
strokeWidth,
|
|
4188
4183
|
strokeLinecap: "round",
|
|
4189
4184
|
strokeLinejoin: "round",
|
|
4190
|
-
"aria-hidden":
|
|
4185
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4191
4186
|
...rest,
|
|
4192
|
-
children:
|
|
4187
|
+
children: [
|
|
4188
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
4189
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M3 9h18" }),
|
|
4190
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M3 15h18" }),
|
|
4191
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M9 3v18" }),
|
|
4192
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M15 3v18" })
|
|
4193
|
+
]
|
|
4193
4194
|
}
|
|
4194
4195
|
);
|
|
4195
4196
|
}
|
|
4196
4197
|
|
|
4197
|
-
// src/components/icons/
|
|
4198
|
+
// src/components/icons/heart/index.tsx
|
|
4198
4199
|
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
4199
|
-
function
|
|
4200
|
-
return /* @__PURE__ */ (0, import_jsx_runtime81.
|
|
4200
|
+
function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4201
|
+
return /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
4201
4202
|
"svg",
|
|
4202
4203
|
{
|
|
4203
4204
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4209,20 +4210,16 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4209
4210
|
strokeWidth,
|
|
4210
4211
|
strokeLinecap: "round",
|
|
4211
4212
|
strokeLinejoin: "round",
|
|
4212
|
-
"aria-hidden":
|
|
4213
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4213
4214
|
...rest,
|
|
4214
|
-
children:
|
|
4215
|
-
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4216
|
-
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
4217
|
-
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M12 17h.01" })
|
|
4218
|
-
]
|
|
4215
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
|
|
4219
4216
|
}
|
|
4220
4217
|
);
|
|
4221
4218
|
}
|
|
4222
4219
|
|
|
4223
|
-
// src/components/icons/
|
|
4220
|
+
// src/components/icons/help-circle/index.tsx
|
|
4224
4221
|
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
4225
|
-
function
|
|
4222
|
+
function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4226
4223
|
return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)(
|
|
4227
4224
|
"svg",
|
|
4228
4225
|
{
|
|
@@ -4235,19 +4232,20 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4235
4232
|
strokeWidth,
|
|
4236
4233
|
strokeLinecap: "round",
|
|
4237
4234
|
strokeLinejoin: "round",
|
|
4238
|
-
"aria-hidden":
|
|
4235
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4239
4236
|
...rest,
|
|
4240
4237
|
children: [
|
|
4241
|
-
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)("
|
|
4242
|
-
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)("
|
|
4238
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4239
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
4240
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)("path", { d: "M12 17h.01" })
|
|
4243
4241
|
]
|
|
4244
4242
|
}
|
|
4245
4243
|
);
|
|
4246
4244
|
}
|
|
4247
4245
|
|
|
4248
|
-
// src/components/icons/
|
|
4246
|
+
// src/components/icons/home/index.tsx
|
|
4249
4247
|
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
4250
|
-
function
|
|
4248
|
+
function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4251
4249
|
return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(
|
|
4252
4250
|
"svg",
|
|
4253
4251
|
{
|
|
@@ -4260,20 +4258,19 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4260
4258
|
strokeWidth,
|
|
4261
4259
|
strokeLinecap: "round",
|
|
4262
4260
|
strokeLinejoin: "round",
|
|
4263
|
-
"aria-hidden":
|
|
4261
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4264
4262
|
...rest,
|
|
4265
4263
|
children: [
|
|
4266
|
-
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("
|
|
4267
|
-
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("
|
|
4268
|
-
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
|
|
4264
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
|
|
4265
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("polyline", { points: "9 22 9 12 15 12 15 22" })
|
|
4269
4266
|
]
|
|
4270
4267
|
}
|
|
4271
4268
|
);
|
|
4272
4269
|
}
|
|
4273
4270
|
|
|
4274
|
-
// src/components/icons/
|
|
4271
|
+
// src/components/icons/image/index.tsx
|
|
4275
4272
|
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
4276
|
-
function
|
|
4273
|
+
function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4277
4274
|
return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
|
|
4278
4275
|
"svg",
|
|
4279
4276
|
{
|
|
@@ -4286,19 +4283,20 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4286
4283
|
strokeWidth,
|
|
4287
4284
|
strokeLinecap: "round",
|
|
4288
4285
|
strokeLinejoin: "round",
|
|
4289
|
-
"aria-hidden":
|
|
4286
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4290
4287
|
...rest,
|
|
4291
4288
|
children: [
|
|
4292
|
-
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("
|
|
4293
|
-
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("
|
|
4289
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
|
|
4290
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
|
|
4291
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
|
|
4294
4292
|
]
|
|
4295
4293
|
}
|
|
4296
4294
|
);
|
|
4297
4295
|
}
|
|
4298
4296
|
|
|
4299
|
-
// src/components/icons/
|
|
4297
|
+
// src/components/icons/inbox/index.tsx
|
|
4300
4298
|
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
4301
|
-
function
|
|
4299
|
+
function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4302
4300
|
return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
4303
4301
|
"svg",
|
|
4304
4302
|
{
|
|
@@ -4311,20 +4309,19 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4311
4309
|
strokeWidth,
|
|
4312
4310
|
strokeLinecap: "round",
|
|
4313
4311
|
strokeLinejoin: "round",
|
|
4314
|
-
"aria-hidden":
|
|
4312
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4315
4313
|
...rest,
|
|
4316
4314
|
children: [
|
|
4317
|
-
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("
|
|
4318
|
-
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("path", { d: "
|
|
4319
|
-
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
|
|
4315
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
4316
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
|
|
4320
4317
|
]
|
|
4321
4318
|
}
|
|
4322
4319
|
);
|
|
4323
4320
|
}
|
|
4324
4321
|
|
|
4325
|
-
// src/components/icons/
|
|
4322
|
+
// src/components/icons/key/index.tsx
|
|
4326
4323
|
var import_jsx_runtime86 = require("react/jsx-runtime");
|
|
4327
|
-
function
|
|
4324
|
+
function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4328
4325
|
return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
|
|
4329
4326
|
"svg",
|
|
4330
4327
|
{
|
|
@@ -4337,21 +4334,20 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4337
4334
|
strokeWidth,
|
|
4338
4335
|
strokeLinecap: "round",
|
|
4339
4336
|
strokeLinejoin: "round",
|
|
4340
|
-
"aria-hidden":
|
|
4337
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4341
4338
|
...rest,
|
|
4342
4339
|
children: [
|
|
4343
|
-
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("
|
|
4344
|
-
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("
|
|
4345
|
-
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("
|
|
4346
|
-
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
|
|
4340
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L21 4.5" }),
|
|
4341
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("path", { d: "m21 2-9.6 9.6" }),
|
|
4342
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
|
|
4347
4343
|
]
|
|
4348
4344
|
}
|
|
4349
4345
|
);
|
|
4350
4346
|
}
|
|
4351
4347
|
|
|
4352
|
-
// src/components/icons/
|
|
4348
|
+
// src/components/icons/layout/index.tsx
|
|
4353
4349
|
var import_jsx_runtime87 = require("react/jsx-runtime");
|
|
4354
|
-
function
|
|
4350
|
+
function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4355
4351
|
return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
4356
4352
|
"svg",
|
|
4357
4353
|
{
|
|
@@ -4364,19 +4360,21 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4364
4360
|
strokeWidth,
|
|
4365
4361
|
strokeLinecap: "round",
|
|
4366
4362
|
strokeLinejoin: "round",
|
|
4367
|
-
"aria-hidden":
|
|
4363
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4368
4364
|
...rest,
|
|
4369
4365
|
children: [
|
|
4370
|
-
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("
|
|
4371
|
-
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("
|
|
4366
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
|
|
4367
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
|
|
4368
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
|
|
4369
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
|
|
4372
4370
|
]
|
|
4373
4371
|
}
|
|
4374
4372
|
);
|
|
4375
4373
|
}
|
|
4376
4374
|
|
|
4377
|
-
// src/components/icons/
|
|
4375
|
+
// src/components/icons/link/index.tsx
|
|
4378
4376
|
var import_jsx_runtime88 = require("react/jsx-runtime");
|
|
4379
|
-
function
|
|
4377
|
+
function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4380
4378
|
return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(
|
|
4381
4379
|
"svg",
|
|
4382
4380
|
{
|
|
@@ -4389,23 +4387,19 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4389
4387
|
strokeWidth,
|
|
4390
4388
|
strokeLinecap: "round",
|
|
4391
4389
|
strokeLinejoin: "round",
|
|
4392
|
-
"aria-hidden":
|
|
4390
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4393
4391
|
...rest,
|
|
4394
4392
|
children: [
|
|
4395
|
-
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("
|
|
4396
|
-
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("
|
|
4397
|
-
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
|
|
4398
|
-
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
|
|
4399
|
-
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
|
|
4400
|
-
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
|
|
4393
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
|
|
4394
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
|
|
4401
4395
|
]
|
|
4402
4396
|
}
|
|
4403
4397
|
);
|
|
4404
4398
|
}
|
|
4405
4399
|
|
|
4406
|
-
// src/components/icons/
|
|
4400
|
+
// src/components/icons/list/index.tsx
|
|
4407
4401
|
var import_jsx_runtime89 = require("react/jsx-runtime");
|
|
4408
|
-
function
|
|
4402
|
+
function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4409
4403
|
return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
|
|
4410
4404
|
"svg",
|
|
4411
4405
|
{
|
|
@@ -4418,25 +4412,23 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4418
4412
|
strokeWidth,
|
|
4419
4413
|
strokeLinecap: "round",
|
|
4420
4414
|
strokeLinejoin: "round",
|
|
4421
|
-
"aria-hidden":
|
|
4415
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4422
4416
|
...rest,
|
|
4423
4417
|
children: [
|
|
4424
|
-
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "
|
|
4425
|
-
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "
|
|
4426
|
-
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "
|
|
4427
|
-
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "
|
|
4428
|
-
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "
|
|
4429
|
-
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "
|
|
4430
|
-
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
|
|
4431
|
-
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
|
|
4418
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
|
|
4419
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
|
|
4420
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
|
|
4421
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
|
|
4422
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
|
|
4423
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
|
|
4432
4424
|
]
|
|
4433
4425
|
}
|
|
4434
4426
|
);
|
|
4435
4427
|
}
|
|
4436
4428
|
|
|
4437
|
-
// src/components/icons/
|
|
4429
|
+
// src/components/icons/loader/index.tsx
|
|
4438
4430
|
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
4439
|
-
function
|
|
4431
|
+
function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4440
4432
|
return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
|
|
4441
4433
|
"svg",
|
|
4442
4434
|
{
|
|
@@ -4449,19 +4441,25 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4449
4441
|
strokeWidth,
|
|
4450
4442
|
strokeLinecap: "round",
|
|
4451
4443
|
strokeLinejoin: "round",
|
|
4452
|
-
"aria-hidden":
|
|
4444
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4453
4445
|
...rest,
|
|
4454
4446
|
children: [
|
|
4455
|
-
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("
|
|
4456
|
-
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("
|
|
4447
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
|
|
4448
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
|
|
4449
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
|
|
4450
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
|
|
4451
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
|
|
4452
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
|
|
4453
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
|
|
4454
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
|
|
4457
4455
|
]
|
|
4458
4456
|
}
|
|
4459
4457
|
);
|
|
4460
4458
|
}
|
|
4461
4459
|
|
|
4462
|
-
// src/components/icons/
|
|
4460
|
+
// src/components/icons/lock/index.tsx
|
|
4463
4461
|
var import_jsx_runtime91 = require("react/jsx-runtime");
|
|
4464
|
-
function
|
|
4462
|
+
function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4465
4463
|
return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
|
|
4466
4464
|
"svg",
|
|
4467
4465
|
{
|
|
@@ -4474,20 +4472,19 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4474
4472
|
strokeWidth,
|
|
4475
4473
|
strokeLinecap: "round",
|
|
4476
4474
|
strokeLinejoin: "round",
|
|
4477
|
-
"aria-hidden":
|
|
4475
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4478
4476
|
...rest,
|
|
4479
4477
|
children: [
|
|
4480
|
-
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("
|
|
4481
|
-
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("
|
|
4482
|
-
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
|
|
4478
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
4479
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
|
|
4483
4480
|
]
|
|
4484
4481
|
}
|
|
4485
4482
|
);
|
|
4486
4483
|
}
|
|
4487
4484
|
|
|
4488
|
-
// src/components/icons/log-
|
|
4485
|
+
// src/components/icons/log-in/index.tsx
|
|
4489
4486
|
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
4490
|
-
function
|
|
4487
|
+
function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4491
4488
|
return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
|
|
4492
4489
|
"svg",
|
|
4493
4490
|
{
|
|
@@ -4500,20 +4497,20 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4500
4497
|
strokeWidth,
|
|
4501
4498
|
strokeLinecap: "round",
|
|
4502
4499
|
strokeLinejoin: "round",
|
|
4503
|
-
"aria-hidden":
|
|
4500
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4504
4501
|
...rest,
|
|
4505
4502
|
children: [
|
|
4506
|
-
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "
|
|
4507
|
-
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("polyline", { points: "
|
|
4508
|
-
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("line", { x1: "
|
|
4503
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
|
|
4504
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("polyline", { points: "10 17 15 12 10 7" }),
|
|
4505
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
|
|
4509
4506
|
]
|
|
4510
4507
|
}
|
|
4511
4508
|
);
|
|
4512
4509
|
}
|
|
4513
4510
|
|
|
4514
|
-
// src/components/icons/
|
|
4511
|
+
// src/components/icons/log-out/index.tsx
|
|
4515
4512
|
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
4516
|
-
function
|
|
4513
|
+
function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4517
4514
|
return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
|
|
4518
4515
|
"svg",
|
|
4519
4516
|
{
|
|
@@ -4526,19 +4523,20 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4526
4523
|
strokeWidth,
|
|
4527
4524
|
strokeLinecap: "round",
|
|
4528
4525
|
strokeLinejoin: "round",
|
|
4529
|
-
"aria-hidden":
|
|
4526
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4530
4527
|
...rest,
|
|
4531
4528
|
children: [
|
|
4532
|
-
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("
|
|
4533
|
-
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("
|
|
4529
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
4530
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("polyline", { points: "16 17 21 12 16 7" }),
|
|
4531
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
|
|
4534
4532
|
]
|
|
4535
4533
|
}
|
|
4536
4534
|
);
|
|
4537
4535
|
}
|
|
4538
4536
|
|
|
4539
|
-
// src/components/icons/
|
|
4537
|
+
// src/components/icons/mail/index.tsx
|
|
4540
4538
|
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
4541
|
-
function
|
|
4539
|
+
function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4542
4540
|
return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
|
|
4543
4541
|
"svg",
|
|
4544
4542
|
{
|
|
@@ -4551,19 +4549,19 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4551
4549
|
strokeWidth,
|
|
4552
4550
|
strokeLinecap: "round",
|
|
4553
4551
|
strokeLinejoin: "round",
|
|
4554
|
-
"aria-hidden":
|
|
4552
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4555
4553
|
...rest,
|
|
4556
4554
|
children: [
|
|
4557
|
-
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("
|
|
4558
|
-
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("
|
|
4555
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
|
|
4556
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
|
|
4559
4557
|
]
|
|
4560
4558
|
}
|
|
4561
4559
|
);
|
|
4562
4560
|
}
|
|
4563
4561
|
|
|
4564
|
-
// src/components/icons/
|
|
4562
|
+
// src/components/icons/map-pin/index.tsx
|
|
4565
4563
|
var import_jsx_runtime95 = require("react/jsx-runtime");
|
|
4566
|
-
function
|
|
4564
|
+
function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4567
4565
|
return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
|
|
4568
4566
|
"svg",
|
|
4569
4567
|
{
|
|
@@ -4576,21 +4574,19 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4576
4574
|
strokeWidth,
|
|
4577
4575
|
strokeLinecap: "round",
|
|
4578
4576
|
strokeLinejoin: "round",
|
|
4579
|
-
"aria-hidden":
|
|
4577
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4580
4578
|
...rest,
|
|
4581
4579
|
children: [
|
|
4582
|
-
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "
|
|
4583
|
-
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("
|
|
4584
|
-
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
|
|
4585
|
-
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
|
|
4580
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
|
|
4581
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("circle", { cx: "12", cy: "10", r: "3" })
|
|
4586
4582
|
]
|
|
4587
4583
|
}
|
|
4588
4584
|
);
|
|
4589
4585
|
}
|
|
4590
4586
|
|
|
4591
|
-
// src/components/icons/
|
|
4587
|
+
// src/components/icons/maximize/index.tsx
|
|
4592
4588
|
var import_jsx_runtime96 = require("react/jsx-runtime");
|
|
4593
|
-
function
|
|
4589
|
+
function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4594
4590
|
return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
4595
4591
|
"svg",
|
|
4596
4592
|
{
|
|
@@ -4603,21 +4599,22 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4603
4599
|
strokeWidth,
|
|
4604
4600
|
strokeLinecap: "round",
|
|
4605
4601
|
strokeLinejoin: "round",
|
|
4606
|
-
"aria-hidden":
|
|
4602
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4607
4603
|
...rest,
|
|
4608
4604
|
children: [
|
|
4609
|
-
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("
|
|
4610
|
-
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("
|
|
4611
|
-
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("
|
|
4605
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
|
|
4606
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
|
|
4607
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
|
|
4608
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
|
|
4612
4609
|
]
|
|
4613
4610
|
}
|
|
4614
4611
|
);
|
|
4615
4612
|
}
|
|
4616
4613
|
|
|
4617
|
-
// src/components/icons/
|
|
4614
|
+
// src/components/icons/menu/index.tsx
|
|
4618
4615
|
var import_jsx_runtime97 = require("react/jsx-runtime");
|
|
4619
|
-
function
|
|
4620
|
-
return /* @__PURE__ */ (0, import_jsx_runtime97.
|
|
4616
|
+
function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4617
|
+
return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)(
|
|
4621
4618
|
"svg",
|
|
4622
4619
|
{
|
|
4623
4620
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4629,16 +4626,20 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4629
4626
|
strokeWidth,
|
|
4630
4627
|
strokeLinecap: "round",
|
|
4631
4628
|
strokeLinejoin: "round",
|
|
4632
|
-
"aria-hidden":
|
|
4629
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4633
4630
|
...rest,
|
|
4634
|
-
children:
|
|
4631
|
+
children: [
|
|
4632
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
|
|
4633
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
|
|
4634
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
|
|
4635
|
+
]
|
|
4635
4636
|
}
|
|
4636
4637
|
);
|
|
4637
4638
|
}
|
|
4638
4639
|
|
|
4639
|
-
// src/components/icons/message-
|
|
4640
|
+
// src/components/icons/message-circle/index.tsx
|
|
4640
4641
|
var import_jsx_runtime98 = require("react/jsx-runtime");
|
|
4641
|
-
function
|
|
4642
|
+
function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4642
4643
|
return /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
4643
4644
|
"svg",
|
|
4644
4645
|
{
|
|
@@ -4651,17 +4652,17 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4651
4652
|
strokeWidth,
|
|
4652
4653
|
strokeLinecap: "round",
|
|
4653
4654
|
strokeLinejoin: "round",
|
|
4654
|
-
"aria-hidden":
|
|
4655
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4655
4656
|
...rest,
|
|
4656
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { d: "
|
|
4657
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
|
|
4657
4658
|
}
|
|
4658
4659
|
);
|
|
4659
4660
|
}
|
|
4660
4661
|
|
|
4661
|
-
// src/components/icons/
|
|
4662
|
+
// src/components/icons/message-square/index.tsx
|
|
4662
4663
|
var import_jsx_runtime99 = require("react/jsx-runtime");
|
|
4663
|
-
function
|
|
4664
|
-
return /* @__PURE__ */ (0, import_jsx_runtime99.
|
|
4664
|
+
function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4665
|
+
return /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
4665
4666
|
"svg",
|
|
4666
4667
|
{
|
|
4667
4668
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4673,20 +4674,16 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4673
4674
|
strokeWidth,
|
|
4674
4675
|
strokeLinecap: "round",
|
|
4675
4676
|
strokeLinejoin: "round",
|
|
4676
|
-
"aria-hidden":
|
|
4677
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4677
4678
|
...rest,
|
|
4678
|
-
children:
|
|
4679
|
-
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
|
|
4680
|
-
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
|
|
4681
|
-
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
|
|
4682
|
-
]
|
|
4679
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
|
|
4683
4680
|
}
|
|
4684
4681
|
);
|
|
4685
4682
|
}
|
|
4686
4683
|
|
|
4687
|
-
// src/components/icons/
|
|
4684
|
+
// src/components/icons/mic/index.tsx
|
|
4688
4685
|
var import_jsx_runtime100 = require("react/jsx-runtime");
|
|
4689
|
-
function
|
|
4686
|
+
function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4690
4687
|
return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(
|
|
4691
4688
|
"svg",
|
|
4692
4689
|
{
|
|
@@ -4699,22 +4696,21 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4699
4696
|
strokeWidth,
|
|
4700
4697
|
strokeLinecap: "round",
|
|
4701
4698
|
strokeLinejoin: "round",
|
|
4702
|
-
"aria-hidden":
|
|
4699
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4703
4700
|
...rest,
|
|
4704
4701
|
children: [
|
|
4705
|
-
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "
|
|
4706
|
-
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "
|
|
4707
|
-
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("
|
|
4708
|
-
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
|
|
4702
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
|
|
4703
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
|
|
4704
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
|
|
4709
4705
|
]
|
|
4710
4706
|
}
|
|
4711
4707
|
);
|
|
4712
4708
|
}
|
|
4713
4709
|
|
|
4714
|
-
// src/components/icons/
|
|
4710
|
+
// src/components/icons/minimize/index.tsx
|
|
4715
4711
|
var import_jsx_runtime101 = require("react/jsx-runtime");
|
|
4716
|
-
function
|
|
4717
|
-
return /* @__PURE__ */ (0, import_jsx_runtime101.
|
|
4712
|
+
function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4713
|
+
return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(
|
|
4718
4714
|
"svg",
|
|
4719
4715
|
{
|
|
4720
4716
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4726,16 +4722,21 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4726
4722
|
strokeWidth,
|
|
4727
4723
|
strokeLinecap: "round",
|
|
4728
4724
|
strokeLinejoin: "round",
|
|
4729
|
-
"aria-hidden":
|
|
4725
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4730
4726
|
...rest,
|
|
4731
|
-
children:
|
|
4727
|
+
children: [
|
|
4728
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
|
|
4729
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
|
|
4730
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
|
|
4731
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
|
|
4732
|
+
]
|
|
4732
4733
|
}
|
|
4733
4734
|
);
|
|
4734
4735
|
}
|
|
4735
4736
|
|
|
4736
|
-
// src/components/icons/
|
|
4737
|
+
// src/components/icons/minus/index.tsx
|
|
4737
4738
|
var import_jsx_runtime102 = require("react/jsx-runtime");
|
|
4738
|
-
function
|
|
4739
|
+
function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4739
4740
|
return /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
4740
4741
|
"svg",
|
|
4741
4742
|
{
|
|
@@ -4748,17 +4749,17 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4748
4749
|
strokeWidth,
|
|
4749
4750
|
strokeLinecap: "round",
|
|
4750
4751
|
strokeLinejoin: "round",
|
|
4751
|
-
"aria-hidden":
|
|
4752
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4752
4753
|
...rest,
|
|
4753
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "
|
|
4754
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M5 12h14" })
|
|
4754
4755
|
}
|
|
4755
4756
|
);
|
|
4756
4757
|
}
|
|
4757
4758
|
|
|
4758
|
-
// src/components/icons/
|
|
4759
|
+
// src/components/icons/moon/index.tsx
|
|
4759
4760
|
var import_jsx_runtime103 = require("react/jsx-runtime");
|
|
4760
|
-
function
|
|
4761
|
-
return /* @__PURE__ */ (0, import_jsx_runtime103.
|
|
4761
|
+
function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4762
|
+
return /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
4762
4763
|
"svg",
|
|
4763
4764
|
{
|
|
4764
4765
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4770,20 +4771,16 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4770
4771
|
strokeWidth,
|
|
4771
4772
|
strokeLinecap: "round",
|
|
4772
4773
|
strokeLinejoin: "round",
|
|
4773
|
-
"aria-hidden":
|
|
4774
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4774
4775
|
...rest,
|
|
4775
|
-
children:
|
|
4776
|
-
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4777
|
-
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
|
|
4778
|
-
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)("circle", { cx: "5", cy: "12", r: "1" })
|
|
4779
|
-
]
|
|
4776
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
|
|
4780
4777
|
}
|
|
4781
4778
|
);
|
|
4782
4779
|
}
|
|
4783
4780
|
|
|
4784
|
-
// src/components/icons/more-
|
|
4781
|
+
// src/components/icons/more-horizontal/index.tsx
|
|
4785
4782
|
var import_jsx_runtime104 = require("react/jsx-runtime");
|
|
4786
|
-
function
|
|
4783
|
+
function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4787
4784
|
return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
|
|
4788
4785
|
"svg",
|
|
4789
4786
|
{
|
|
@@ -4796,20 +4793,20 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4796
4793
|
strokeWidth,
|
|
4797
4794
|
strokeLinecap: "round",
|
|
4798
4795
|
strokeLinejoin: "round",
|
|
4799
|
-
"aria-hidden":
|
|
4796
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4800
4797
|
...rest,
|
|
4801
4798
|
children: [
|
|
4802
4799
|
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4803
|
-
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "
|
|
4804
|
-
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "
|
|
4800
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
|
|
4801
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "5", cy: "12", r: "1" })
|
|
4805
4802
|
]
|
|
4806
4803
|
}
|
|
4807
4804
|
);
|
|
4808
4805
|
}
|
|
4809
4806
|
|
|
4810
|
-
// src/components/icons/
|
|
4807
|
+
// src/components/icons/more-vertical/index.tsx
|
|
4811
4808
|
var import_jsx_runtime105 = require("react/jsx-runtime");
|
|
4812
|
-
function
|
|
4809
|
+
function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4813
4810
|
return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
|
|
4814
4811
|
"svg",
|
|
4815
4812
|
{
|
|
@@ -4822,21 +4819,21 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4822
4819
|
strokeWidth,
|
|
4823
4820
|
strokeLinecap: "round",
|
|
4824
4821
|
strokeLinejoin: "round",
|
|
4825
|
-
"aria-hidden":
|
|
4822
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4826
4823
|
...rest,
|
|
4827
4824
|
children: [
|
|
4828
|
-
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)("
|
|
4829
|
-
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)("
|
|
4830
|
-
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)("
|
|
4825
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4826
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "5", r: "1" }),
|
|
4827
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "19", r: "1" })
|
|
4831
4828
|
]
|
|
4832
4829
|
}
|
|
4833
4830
|
);
|
|
4834
4831
|
}
|
|
4835
4832
|
|
|
4836
|
-
// src/components/icons/
|
|
4833
|
+
// src/components/icons/package/index.tsx
|
|
4837
4834
|
var import_jsx_runtime106 = require("react/jsx-runtime");
|
|
4838
|
-
function
|
|
4839
|
-
return /* @__PURE__ */ (0, import_jsx_runtime106.
|
|
4835
|
+
function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4836
|
+
return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(
|
|
4840
4837
|
"svg",
|
|
4841
4838
|
{
|
|
4842
4839
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4848,17 +4845,21 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4848
4845
|
strokeWidth,
|
|
4849
4846
|
strokeLinecap: "round",
|
|
4850
4847
|
strokeLinejoin: "round",
|
|
4851
|
-
"aria-hidden":
|
|
4848
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4852
4849
|
...rest,
|
|
4853
|
-
children:
|
|
4850
|
+
children: [
|
|
4851
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)("path", { d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" }),
|
|
4852
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)("path", { d: "M3.3 7 12 12l8.7-5" }),
|
|
4853
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)("path", { d: "M12 22V12" })
|
|
4854
|
+
]
|
|
4854
4855
|
}
|
|
4855
4856
|
);
|
|
4856
4857
|
}
|
|
4857
4858
|
|
|
4858
|
-
// src/components/icons/
|
|
4859
|
+
// src/components/icons/paperclip/index.tsx
|
|
4859
4860
|
var import_jsx_runtime107 = require("react/jsx-runtime");
|
|
4860
|
-
function
|
|
4861
|
-
return /* @__PURE__ */ (0, import_jsx_runtime107.
|
|
4861
|
+
function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4862
|
+
return /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
4862
4863
|
"svg",
|
|
4863
4864
|
{
|
|
4864
4865
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4870,19 +4871,16 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4870
4871
|
strokeWidth,
|
|
4871
4872
|
strokeLinecap: "round",
|
|
4872
4873
|
strokeLinejoin: "round",
|
|
4873
|
-
"aria-hidden":
|
|
4874
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4874
4875
|
...rest,
|
|
4875
|
-
children:
|
|
4876
|
-
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
|
|
4877
|
-
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
|
|
4878
|
-
]
|
|
4876
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" })
|
|
4879
4877
|
}
|
|
4880
4878
|
);
|
|
4881
4879
|
}
|
|
4882
4880
|
|
|
4883
|
-
// src/components/icons/
|
|
4881
|
+
// src/components/icons/pause/index.tsx
|
|
4884
4882
|
var import_jsx_runtime108 = require("react/jsx-runtime");
|
|
4885
|
-
function
|
|
4883
|
+
function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4886
4884
|
return /* @__PURE__ */ (0, import_jsx_runtime108.jsxs)(
|
|
4887
4885
|
"svg",
|
|
4888
4886
|
{
|
|
@@ -4895,20 +4893,20 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4895
4893
|
strokeWidth,
|
|
4896
4894
|
strokeLinecap: "round",
|
|
4897
4895
|
strokeLinejoin: "round",
|
|
4898
|
-
"aria-hidden":
|
|
4896
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4899
4897
|
...rest,
|
|
4900
4898
|
children: [
|
|
4901
|
-
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)("
|
|
4902
|
-
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)("
|
|
4899
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
|
|
4900
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
|
|
4903
4901
|
]
|
|
4904
4902
|
}
|
|
4905
4903
|
);
|
|
4906
4904
|
}
|
|
4907
4905
|
|
|
4908
|
-
// src/components/icons/
|
|
4906
|
+
// src/components/icons/pencil/index.tsx
|
|
4909
4907
|
var import_jsx_runtime109 = require("react/jsx-runtime");
|
|
4910
|
-
function
|
|
4911
|
-
return /* @__PURE__ */ (0, import_jsx_runtime109.
|
|
4908
|
+
function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4909
|
+
return /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)(
|
|
4912
4910
|
"svg",
|
|
4913
4911
|
{
|
|
4914
4912
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4920,16 +4918,19 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4920
4918
|
strokeWidth,
|
|
4921
4919
|
strokeLinecap: "round",
|
|
4922
4920
|
strokeLinejoin: "round",
|
|
4923
|
-
"aria-hidden":
|
|
4921
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4924
4922
|
...rest,
|
|
4925
|
-
children:
|
|
4923
|
+
children: [
|
|
4924
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
|
|
4925
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)("path", { d: "m15 5 4 4" })
|
|
4926
|
+
]
|
|
4926
4927
|
}
|
|
4927
4928
|
);
|
|
4928
4929
|
}
|
|
4929
4930
|
|
|
4930
|
-
// src/components/icons/
|
|
4931
|
+
// src/components/icons/phone/index.tsx
|
|
4931
4932
|
var import_jsx_runtime110 = require("react/jsx-runtime");
|
|
4932
|
-
function
|
|
4933
|
+
function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4933
4934
|
return /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
4934
4935
|
"svg",
|
|
4935
4936
|
{
|
|
@@ -4942,17 +4943,17 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4942
4943
|
strokeWidth,
|
|
4943
4944
|
strokeLinecap: "round",
|
|
4944
4945
|
strokeLinejoin: "round",
|
|
4945
|
-
"aria-hidden":
|
|
4946
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4946
4947
|
...rest,
|
|
4947
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("
|
|
4948
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
|
|
4948
4949
|
}
|
|
4949
4950
|
);
|
|
4950
4951
|
}
|
|
4951
4952
|
|
|
4952
|
-
// src/components/icons/
|
|
4953
|
+
// src/components/icons/play/index.tsx
|
|
4953
4954
|
var import_jsx_runtime111 = require("react/jsx-runtime");
|
|
4954
|
-
function
|
|
4955
|
-
return /* @__PURE__ */ (0, import_jsx_runtime111.
|
|
4955
|
+
function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4956
|
+
return /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
4956
4957
|
"svg",
|
|
4957
4958
|
{
|
|
4958
4959
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4964,19 +4965,16 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4964
4965
|
strokeWidth,
|
|
4965
4966
|
strokeLinecap: "round",
|
|
4966
4967
|
strokeLinejoin: "round",
|
|
4967
|
-
"aria-hidden":
|
|
4968
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4968
4969
|
...rest,
|
|
4969
|
-
children:
|
|
4970
|
-
/* @__PURE__ */ (0, import_jsx_runtime111.jsx)("path", { d: "M5 12h14" }),
|
|
4971
|
-
/* @__PURE__ */ (0, import_jsx_runtime111.jsx)("path", { d: "M12 5v14" })
|
|
4972
|
-
]
|
|
4970
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("polygon", { points: "6 3 20 12 6 21 6 3" })
|
|
4973
4971
|
}
|
|
4974
4972
|
);
|
|
4975
4973
|
}
|
|
4976
4974
|
|
|
4977
|
-
// src/components/icons/
|
|
4975
|
+
// src/components/icons/plus/index.tsx
|
|
4978
4976
|
var import_jsx_runtime112 = require("react/jsx-runtime");
|
|
4979
|
-
function
|
|
4977
|
+
function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4980
4978
|
return /* @__PURE__ */ (0, import_jsx_runtime112.jsxs)(
|
|
4981
4979
|
"svg",
|
|
4982
4980
|
{
|
|
@@ -4989,20 +4987,19 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4989
4987
|
strokeWidth,
|
|
4990
4988
|
strokeLinecap: "round",
|
|
4991
4989
|
strokeLinejoin: "round",
|
|
4992
|
-
"aria-hidden":
|
|
4990
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4993
4991
|
...rest,
|
|
4994
4992
|
children: [
|
|
4995
|
-
/* @__PURE__ */ (0, import_jsx_runtime112.jsx)("
|
|
4996
|
-
/* @__PURE__ */ (0, import_jsx_runtime112.jsx)("path", { d: "
|
|
4997
|
-
/* @__PURE__ */ (0, import_jsx_runtime112.jsx)("rect", { width: "12", height: "8", x: "6", y: "14" })
|
|
4993
|
+
/* @__PURE__ */ (0, import_jsx_runtime112.jsx)("path", { d: "M5 12h14" }),
|
|
4994
|
+
/* @__PURE__ */ (0, import_jsx_runtime112.jsx)("path", { d: "M12 5v14" })
|
|
4998
4995
|
]
|
|
4999
4996
|
}
|
|
5000
4997
|
);
|
|
5001
4998
|
}
|
|
5002
4999
|
|
|
5003
|
-
// src/components/icons/
|
|
5000
|
+
// src/components/icons/printer/index.tsx
|
|
5004
5001
|
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
5005
|
-
function
|
|
5002
|
+
function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5006
5003
|
return /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
|
|
5007
5004
|
"svg",
|
|
5008
5005
|
{
|
|
@@ -5015,19 +5012,20 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5015
5012
|
strokeWidth,
|
|
5016
5013
|
strokeLinecap: "round",
|
|
5017
5014
|
strokeLinejoin: "round",
|
|
5018
|
-
"aria-hidden":
|
|
5015
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5019
5016
|
...rest,
|
|
5020
5017
|
children: [
|
|
5021
|
-
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)("
|
|
5022
|
-
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "
|
|
5018
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)("polyline", { points: "6 9 6 2 18 2 18 9" }),
|
|
5019
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
|
|
5020
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)("rect", { width: "12", height: "8", x: "6", y: "14" })
|
|
5023
5021
|
]
|
|
5024
5022
|
}
|
|
5025
5023
|
);
|
|
5026
5024
|
}
|
|
5027
5025
|
|
|
5028
|
-
// src/components/icons/
|
|
5026
|
+
// src/components/icons/redo/index.tsx
|
|
5029
5027
|
var import_jsx_runtime114 = require("react/jsx-runtime");
|
|
5030
|
-
function
|
|
5028
|
+
function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5031
5029
|
return /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
|
|
5032
5030
|
"svg",
|
|
5033
5031
|
{
|
|
@@ -5040,21 +5038,19 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5040
5038
|
strokeWidth,
|
|
5041
5039
|
strokeLinecap: "round",
|
|
5042
5040
|
strokeLinejoin: "round",
|
|
5043
|
-
"aria-hidden":
|
|
5041
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5044
5042
|
...rest,
|
|
5045
5043
|
children: [
|
|
5046
|
-
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "
|
|
5047
|
-
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "
|
|
5048
|
-
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
|
|
5049
|
-
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M3 21v-5h5" })
|
|
5044
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M21 7v6h-6" }),
|
|
5045
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
|
|
5050
5046
|
]
|
|
5051
5047
|
}
|
|
5052
5048
|
);
|
|
5053
5049
|
}
|
|
5054
5050
|
|
|
5055
|
-
// src/components/icons/
|
|
5051
|
+
// src/components/icons/refresh-cw/index.tsx
|
|
5056
5052
|
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
5057
|
-
function
|
|
5053
|
+
function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5058
5054
|
return /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
|
|
5059
5055
|
"svg",
|
|
5060
5056
|
{
|
|
@@ -5067,20 +5063,21 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5067
5063
|
strokeWidth,
|
|
5068
5064
|
strokeLinecap: "round",
|
|
5069
5065
|
strokeLinejoin: "round",
|
|
5070
|
-
"aria-hidden":
|
|
5066
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5071
5067
|
...rest,
|
|
5072
5068
|
children: [
|
|
5073
|
-
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "
|
|
5074
|
-
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "
|
|
5075
|
-
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "
|
|
5069
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
|
|
5070
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M21 3v5h-5" }),
|
|
5071
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
|
|
5072
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M3 21v-5h5" })
|
|
5076
5073
|
]
|
|
5077
5074
|
}
|
|
5078
5075
|
);
|
|
5079
5076
|
}
|
|
5080
5077
|
|
|
5081
|
-
// src/components/icons/
|
|
5078
|
+
// src/components/icons/save/index.tsx
|
|
5082
5079
|
var import_jsx_runtime116 = require("react/jsx-runtime");
|
|
5083
|
-
function
|
|
5080
|
+
function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5084
5081
|
return /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
|
|
5085
5082
|
"svg",
|
|
5086
5083
|
{
|
|
@@ -5093,19 +5090,20 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5093
5090
|
strokeWidth,
|
|
5094
5091
|
strokeLinecap: "round",
|
|
5095
5092
|
strokeLinejoin: "round",
|
|
5096
|
-
"aria-hidden":
|
|
5093
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5097
5094
|
...rest,
|
|
5098
5095
|
children: [
|
|
5099
|
-
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("
|
|
5100
|
-
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "
|
|
5096
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
|
|
5097
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
5098
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
5101
5099
|
]
|
|
5102
5100
|
}
|
|
5103
5101
|
);
|
|
5104
5102
|
}
|
|
5105
5103
|
|
|
5106
|
-
// src/components/icons/
|
|
5104
|
+
// src/components/icons/search/index.tsx
|
|
5107
5105
|
var import_jsx_runtime117 = require("react/jsx-runtime");
|
|
5108
|
-
function
|
|
5106
|
+
function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5109
5107
|
return /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
|
|
5110
5108
|
"svg",
|
|
5111
5109
|
{
|
|
@@ -5118,19 +5116,19 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5118
5116
|
strokeWidth,
|
|
5119
5117
|
strokeLinecap: "round",
|
|
5120
5118
|
strokeLinejoin: "round",
|
|
5121
|
-
"aria-hidden":
|
|
5119
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5122
5120
|
...rest,
|
|
5123
5121
|
children: [
|
|
5124
|
-
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("
|
|
5125
|
-
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("
|
|
5122
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
|
|
5123
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("path", { d: "m21 21-4.3-4.3" })
|
|
5126
5124
|
]
|
|
5127
5125
|
}
|
|
5128
5126
|
);
|
|
5129
5127
|
}
|
|
5130
5128
|
|
|
5131
|
-
// src/components/icons/
|
|
5129
|
+
// src/components/icons/send/index.tsx
|
|
5132
5130
|
var import_jsx_runtime118 = require("react/jsx-runtime");
|
|
5133
|
-
function
|
|
5131
|
+
function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5134
5132
|
return /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)(
|
|
5135
5133
|
"svg",
|
|
5136
5134
|
{
|
|
@@ -5143,19 +5141,19 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5143
5141
|
strokeWidth,
|
|
5144
5142
|
strokeLinecap: "round",
|
|
5145
5143
|
strokeLinejoin: "round",
|
|
5146
|
-
"aria-hidden":
|
|
5144
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5147
5145
|
...rest,
|
|
5148
5146
|
children: [
|
|
5149
|
-
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("
|
|
5150
|
-
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("
|
|
5147
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
|
|
5148
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
|
|
5151
5149
|
]
|
|
5152
5150
|
}
|
|
5153
5151
|
);
|
|
5154
5152
|
}
|
|
5155
5153
|
|
|
5156
|
-
// src/components/icons/
|
|
5154
|
+
// src/components/icons/settings/index.tsx
|
|
5157
5155
|
var import_jsx_runtime119 = require("react/jsx-runtime");
|
|
5158
|
-
function
|
|
5156
|
+
function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5159
5157
|
return /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(
|
|
5160
5158
|
"svg",
|
|
5161
5159
|
{
|
|
@@ -5168,21 +5166,20 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5168
5166
|
strokeWidth,
|
|
5169
5167
|
strokeLinecap: "round",
|
|
5170
5168
|
strokeLinejoin: "round",
|
|
5171
|
-
"aria-hidden":
|
|
5169
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5172
5170
|
...rest,
|
|
5173
5171
|
children: [
|
|
5174
|
-
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("path", { d: "
|
|
5175
|
-
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("
|
|
5176
|
-
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
|
|
5172
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
|
|
5173
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
5177
5174
|
]
|
|
5178
5175
|
}
|
|
5179
5176
|
);
|
|
5180
5177
|
}
|
|
5181
5178
|
|
|
5182
|
-
// src/components/icons/
|
|
5179
|
+
// src/components/icons/share/index.tsx
|
|
5183
5180
|
var import_jsx_runtime120 = require("react/jsx-runtime");
|
|
5184
|
-
function
|
|
5185
|
-
return /* @__PURE__ */ (0, import_jsx_runtime120.
|
|
5181
|
+
function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5182
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
5186
5183
|
"svg",
|
|
5187
5184
|
{
|
|
5188
5185
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5194,17 +5191,21 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5194
5191
|
strokeWidth,
|
|
5195
5192
|
strokeLinecap: "round",
|
|
5196
5193
|
strokeLinejoin: "round",
|
|
5197
|
-
"aria-hidden":
|
|
5194
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5198
5195
|
...rest,
|
|
5199
|
-
children:
|
|
5196
|
+
children: [
|
|
5197
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
5198
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("polyline", { points: "16 6 12 2 8 6" }),
|
|
5199
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
|
|
5200
|
+
]
|
|
5200
5201
|
}
|
|
5201
5202
|
);
|
|
5202
5203
|
}
|
|
5203
5204
|
|
|
5204
|
-
// src/components/icons/shield
|
|
5205
|
+
// src/components/icons/shield/index.tsx
|
|
5205
5206
|
var import_jsx_runtime121 = require("react/jsx-runtime");
|
|
5206
|
-
function
|
|
5207
|
-
return /* @__PURE__ */ (0, import_jsx_runtime121.
|
|
5207
|
+
function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5208
|
+
return /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
5208
5209
|
"svg",
|
|
5209
5210
|
{
|
|
5210
5211
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5216,19 +5217,16 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5216
5217
|
strokeWidth,
|
|
5217
5218
|
strokeLinecap: "round",
|
|
5218
5219
|
strokeLinejoin: "round",
|
|
5219
|
-
"aria-hidden":
|
|
5220
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5220
5221
|
...rest,
|
|
5221
|
-
children:
|
|
5222
|
-
/* @__PURE__ */ (0, import_jsx_runtime121.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
5223
|
-
/* @__PURE__ */ (0, import_jsx_runtime121.jsx)("path", { d: "m9 12 2 2 4-4" })
|
|
5224
|
-
]
|
|
5222
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" })
|
|
5225
5223
|
}
|
|
5226
5224
|
);
|
|
5227
5225
|
}
|
|
5228
5226
|
|
|
5229
|
-
// src/components/icons/
|
|
5227
|
+
// src/components/icons/shield-check/index.tsx
|
|
5230
5228
|
var import_jsx_runtime122 = require("react/jsx-runtime");
|
|
5231
|
-
function
|
|
5229
|
+
function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5232
5230
|
return /* @__PURE__ */ (0, import_jsx_runtime122.jsxs)(
|
|
5233
5231
|
"svg",
|
|
5234
5232
|
{
|
|
@@ -5241,20 +5239,19 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5241
5239
|
strokeWidth,
|
|
5242
5240
|
strokeLinecap: "round",
|
|
5243
5241
|
strokeLinejoin: "round",
|
|
5244
|
-
"aria-hidden":
|
|
5242
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5245
5243
|
...rest,
|
|
5246
5244
|
children: [
|
|
5247
|
-
/* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "
|
|
5248
|
-
/* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "
|
|
5249
|
-
/* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M16 10a4 4 0 0 1-8 0" })
|
|
5245
|
+
/* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
5246
|
+
/* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "m9 12 2 2 4-4" })
|
|
5250
5247
|
]
|
|
5251
5248
|
}
|
|
5252
5249
|
);
|
|
5253
5250
|
}
|
|
5254
5251
|
|
|
5255
|
-
// src/components/icons/shopping-
|
|
5252
|
+
// src/components/icons/shopping-bag/index.tsx
|
|
5256
5253
|
var import_jsx_runtime123 = require("react/jsx-runtime");
|
|
5257
|
-
function
|
|
5254
|
+
function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5258
5255
|
return /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(
|
|
5259
5256
|
"svg",
|
|
5260
5257
|
{
|
|
@@ -5267,20 +5264,20 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5267
5264
|
strokeWidth,
|
|
5268
5265
|
strokeLinecap: "round",
|
|
5269
5266
|
strokeLinejoin: "round",
|
|
5270
|
-
"aria-hidden":
|
|
5267
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5271
5268
|
...rest,
|
|
5272
5269
|
children: [
|
|
5273
|
-
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("
|
|
5274
|
-
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("
|
|
5275
|
-
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "
|
|
5270
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
|
|
5271
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M3 6h18" }),
|
|
5272
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M16 10a4 4 0 0 1-8 0" })
|
|
5276
5273
|
]
|
|
5277
5274
|
}
|
|
5278
5275
|
);
|
|
5279
5276
|
}
|
|
5280
5277
|
|
|
5281
|
-
// src/components/icons/
|
|
5278
|
+
// src/components/icons/shopping-cart/index.tsx
|
|
5282
5279
|
var import_jsx_runtime124 = require("react/jsx-runtime");
|
|
5283
|
-
function
|
|
5280
|
+
function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5284
5281
|
return /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)(
|
|
5285
5282
|
"svg",
|
|
5286
5283
|
{
|
|
@@ -5293,19 +5290,20 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5293
5290
|
strokeWidth,
|
|
5294
5291
|
strokeLinecap: "round",
|
|
5295
5292
|
strokeLinejoin: "round",
|
|
5296
|
-
"aria-hidden":
|
|
5293
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5297
5294
|
...rest,
|
|
5298
5295
|
children: [
|
|
5299
|
-
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)("
|
|
5300
|
-
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)("
|
|
5296
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)("circle", { cx: "8", cy: "21", r: "1" }),
|
|
5297
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)("circle", { cx: "19", cy: "21", r: "1" }),
|
|
5298
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" })
|
|
5301
5299
|
]
|
|
5302
5300
|
}
|
|
5303
5301
|
);
|
|
5304
5302
|
}
|
|
5305
5303
|
|
|
5306
|
-
// src/components/icons/
|
|
5304
|
+
// src/components/icons/sidebar/index.tsx
|
|
5307
5305
|
var import_jsx_runtime125 = require("react/jsx-runtime");
|
|
5308
|
-
function
|
|
5306
|
+
function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5309
5307
|
return /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)(
|
|
5310
5308
|
"svg",
|
|
5311
5309
|
{
|
|
@@ -5318,19 +5316,19 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5318
5316
|
strokeWidth,
|
|
5319
5317
|
strokeLinecap: "round",
|
|
5320
5318
|
strokeLinejoin: "round",
|
|
5321
|
-
"aria-hidden":
|
|
5319
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5322
5320
|
...rest,
|
|
5323
5321
|
children: [
|
|
5324
|
-
/* @__PURE__ */ (0, import_jsx_runtime125.jsx)("
|
|
5325
|
-
/* @__PURE__ */ (0, import_jsx_runtime125.jsx)("
|
|
5322
|
+
/* @__PURE__ */ (0, import_jsx_runtime125.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
5323
|
+
/* @__PURE__ */ (0, import_jsx_runtime125.jsx)("path", { d: "M9 3v18" })
|
|
5326
5324
|
]
|
|
5327
5325
|
}
|
|
5328
5326
|
);
|
|
5329
5327
|
}
|
|
5330
5328
|
|
|
5331
|
-
// src/components/icons/skip-
|
|
5329
|
+
// src/components/icons/skip-back/index.tsx
|
|
5332
5330
|
var import_jsx_runtime126 = require("react/jsx-runtime");
|
|
5333
|
-
function
|
|
5331
|
+
function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5334
5332
|
return /* @__PURE__ */ (0, import_jsx_runtime126.jsxs)(
|
|
5335
5333
|
"svg",
|
|
5336
5334
|
{
|
|
@@ -5343,19 +5341,19 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5343
5341
|
strokeWidth,
|
|
5344
5342
|
strokeLinecap: "round",
|
|
5345
5343
|
strokeLinejoin: "round",
|
|
5346
|
-
"aria-hidden":
|
|
5344
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5347
5345
|
...rest,
|
|
5348
5346
|
children: [
|
|
5349
|
-
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)("polygon", { points: "
|
|
5350
|
-
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)("line", { x1: "
|
|
5347
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)("polygon", { points: "19 20 9 12 19 4 19 20" }),
|
|
5348
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
|
|
5351
5349
|
]
|
|
5352
5350
|
}
|
|
5353
5351
|
);
|
|
5354
5352
|
}
|
|
5355
5353
|
|
|
5356
|
-
// src/components/icons/
|
|
5354
|
+
// src/components/icons/skip-forward/index.tsx
|
|
5357
5355
|
var import_jsx_runtime127 = require("react/jsx-runtime");
|
|
5358
|
-
function
|
|
5356
|
+
function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5359
5357
|
return /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)(
|
|
5360
5358
|
"svg",
|
|
5361
5359
|
{
|
|
@@ -5368,26 +5366,19 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5368
5366
|
strokeWidth,
|
|
5369
5367
|
strokeLinecap: "round",
|
|
5370
5368
|
strokeLinejoin: "round",
|
|
5371
|
-
"aria-hidden":
|
|
5369
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5372
5370
|
...rest,
|
|
5373
5371
|
children: [
|
|
5374
|
-
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("
|
|
5375
|
-
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "
|
|
5376
|
-
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
|
|
5377
|
-
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
|
|
5378
|
-
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
|
|
5379
|
-
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
|
|
5380
|
-
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
|
|
5381
|
-
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
|
|
5382
|
-
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
|
|
5372
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("polygon", { points: "5 4 15 12 5 20 5 4" }),
|
|
5373
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
|
|
5383
5374
|
]
|
|
5384
5375
|
}
|
|
5385
5376
|
);
|
|
5386
5377
|
}
|
|
5387
5378
|
|
|
5388
|
-
// src/components/icons/
|
|
5379
|
+
// src/components/icons/sliders/index.tsx
|
|
5389
5380
|
var import_jsx_runtime128 = require("react/jsx-runtime");
|
|
5390
|
-
function
|
|
5381
|
+
function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5391
5382
|
return /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)(
|
|
5392
5383
|
"svg",
|
|
5393
5384
|
{
|
|
@@ -5400,22 +5391,27 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5400
5391
|
strokeWidth,
|
|
5401
5392
|
strokeLinecap: "round",
|
|
5402
5393
|
strokeLinejoin: "round",
|
|
5403
|
-
"aria-hidden":
|
|
5394
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5404
5395
|
...rest,
|
|
5405
5396
|
children: [
|
|
5406
|
-
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("
|
|
5407
|
-
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("
|
|
5408
|
-
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "
|
|
5409
|
-
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "
|
|
5397
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
|
|
5398
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
|
|
5399
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
|
|
5400
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
|
|
5401
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
|
|
5402
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
|
|
5403
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
|
|
5404
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
|
|
5405
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
|
|
5410
5406
|
]
|
|
5411
5407
|
}
|
|
5412
5408
|
);
|
|
5413
5409
|
}
|
|
5414
5410
|
|
|
5415
|
-
// src/components/icons/
|
|
5411
|
+
// src/components/icons/smile/index.tsx
|
|
5416
5412
|
var import_jsx_runtime129 = require("react/jsx-runtime");
|
|
5417
|
-
function
|
|
5418
|
-
return /* @__PURE__ */ (0, import_jsx_runtime129.
|
|
5413
|
+
function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5414
|
+
return /* @__PURE__ */ (0, import_jsx_runtime129.jsxs)(
|
|
5419
5415
|
"svg",
|
|
5420
5416
|
{
|
|
5421
5417
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5427,17 +5423,22 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5427
5423
|
strokeWidth,
|
|
5428
5424
|
strokeLinecap: "round",
|
|
5429
5425
|
strokeLinejoin: "round",
|
|
5430
|
-
"aria-hidden":
|
|
5426
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5431
5427
|
...rest,
|
|
5432
|
-
children:
|
|
5428
|
+
children: [
|
|
5429
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
5430
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
|
|
5431
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
|
|
5432
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
|
|
5433
|
+
]
|
|
5433
5434
|
}
|
|
5434
5435
|
);
|
|
5435
5436
|
}
|
|
5436
5437
|
|
|
5437
|
-
// src/components/icons/
|
|
5438
|
+
// src/components/icons/star/index.tsx
|
|
5438
5439
|
var import_jsx_runtime130 = require("react/jsx-runtime");
|
|
5439
|
-
function
|
|
5440
|
-
return /* @__PURE__ */ (0, import_jsx_runtime130.
|
|
5440
|
+
function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5441
|
+
return /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
5441
5442
|
"svg",
|
|
5442
5443
|
{
|
|
5443
5444
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5449,26 +5450,16 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5449
5450
|
strokeWidth,
|
|
5450
5451
|
strokeLinecap: "round",
|
|
5451
5452
|
strokeLinejoin: "round",
|
|
5452
|
-
"aria-hidden":
|
|
5453
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5453
5454
|
...rest,
|
|
5454
|
-
children:
|
|
5455
|
-
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
|
|
5456
|
-
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M12 2v2" }),
|
|
5457
|
-
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M12 20v2" }),
|
|
5458
|
-
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m4.93 4.93 1.41 1.41" }),
|
|
5459
|
-
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m17.66 17.66 1.41 1.41" }),
|
|
5460
|
-
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M2 12h2" }),
|
|
5461
|
-
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M20 12h2" }),
|
|
5462
|
-
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m6.34 17.66-1.41 1.41" }),
|
|
5463
|
-
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m19.07 4.93-1.41 1.41" })
|
|
5464
|
-
]
|
|
5455
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
|
|
5465
5456
|
}
|
|
5466
5457
|
);
|
|
5467
5458
|
}
|
|
5468
5459
|
|
|
5469
|
-
// src/components/icons/
|
|
5460
|
+
// src/components/icons/sun/index.tsx
|
|
5470
5461
|
var import_jsx_runtime131 = require("react/jsx-runtime");
|
|
5471
|
-
function
|
|
5462
|
+
function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5472
5463
|
return /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)(
|
|
5473
5464
|
"svg",
|
|
5474
5465
|
{
|
|
@@ -5481,19 +5472,26 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5481
5472
|
strokeWidth,
|
|
5482
5473
|
strokeLinecap: "round",
|
|
5483
5474
|
strokeLinejoin: "round",
|
|
5484
|
-
"aria-hidden":
|
|
5475
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5485
5476
|
...rest,
|
|
5486
5477
|
children: [
|
|
5487
|
-
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("
|
|
5488
|
-
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("
|
|
5478
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
|
|
5479
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M12 2v2" }),
|
|
5480
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M12 20v2" }),
|
|
5481
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m4.93 4.93 1.41 1.41" }),
|
|
5482
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m17.66 17.66 1.41 1.41" }),
|
|
5483
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M2 12h2" }),
|
|
5484
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "M20 12h2" }),
|
|
5485
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m6.34 17.66-1.41 1.41" }),
|
|
5486
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("path", { d: "m19.07 4.93-1.41 1.41" })
|
|
5489
5487
|
]
|
|
5490
5488
|
}
|
|
5491
5489
|
);
|
|
5492
5490
|
}
|
|
5493
5491
|
|
|
5494
|
-
// src/components/icons/
|
|
5492
|
+
// src/components/icons/tag/index.tsx
|
|
5495
5493
|
var import_jsx_runtime132 = require("react/jsx-runtime");
|
|
5496
|
-
function
|
|
5494
|
+
function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5497
5495
|
return /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(
|
|
5498
5496
|
"svg",
|
|
5499
5497
|
{
|
|
@@ -5506,19 +5504,19 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5506
5504
|
strokeWidth,
|
|
5507
5505
|
strokeLinecap: "round",
|
|
5508
5506
|
strokeLinejoin: "round",
|
|
5509
|
-
"aria-hidden":
|
|
5507
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5510
5508
|
...rest,
|
|
5511
5509
|
children: [
|
|
5512
|
-
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "
|
|
5513
|
-
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("
|
|
5510
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
|
|
5511
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
|
|
5514
5512
|
]
|
|
5515
5513
|
}
|
|
5516
5514
|
);
|
|
5517
5515
|
}
|
|
5518
5516
|
|
|
5519
|
-
// src/components/icons/thumbs-
|
|
5517
|
+
// src/components/icons/thumbs-down/index.tsx
|
|
5520
5518
|
var import_jsx_runtime133 = require("react/jsx-runtime");
|
|
5521
|
-
function
|
|
5519
|
+
function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5522
5520
|
return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)(
|
|
5523
5521
|
"svg",
|
|
5524
5522
|
{
|
|
@@ -5531,19 +5529,19 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5531
5529
|
strokeWidth,
|
|
5532
5530
|
strokeLinecap: "round",
|
|
5533
5531
|
strokeLinejoin: "round",
|
|
5534
|
-
"aria-hidden":
|
|
5532
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5535
5533
|
...rest,
|
|
5536
5534
|
children: [
|
|
5537
|
-
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "
|
|
5538
|
-
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "
|
|
5535
|
+
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M17 14V2" }),
|
|
5536
|
+
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
|
|
5539
5537
|
]
|
|
5540
5538
|
}
|
|
5541
5539
|
);
|
|
5542
5540
|
}
|
|
5543
5541
|
|
|
5544
|
-
// src/components/icons/
|
|
5542
|
+
// src/components/icons/thumbs-up/index.tsx
|
|
5545
5543
|
var import_jsx_runtime134 = require("react/jsx-runtime");
|
|
5546
|
-
function
|
|
5544
|
+
function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5547
5545
|
return /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)(
|
|
5548
5546
|
"svg",
|
|
5549
5547
|
{
|
|
@@ -5556,20 +5554,19 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5556
5554
|
strokeWidth,
|
|
5557
5555
|
strokeLinecap: "round",
|
|
5558
5556
|
strokeLinejoin: "round",
|
|
5559
|
-
"aria-hidden":
|
|
5557
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5560
5558
|
...rest,
|
|
5561
5559
|
children: [
|
|
5562
|
-
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "
|
|
5563
|
-
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "
|
|
5564
|
-
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
5560
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M7 10v12" }),
|
|
5561
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
|
|
5565
5562
|
]
|
|
5566
5563
|
}
|
|
5567
5564
|
);
|
|
5568
5565
|
}
|
|
5569
5566
|
|
|
5570
|
-
// src/components/icons/
|
|
5567
|
+
// src/components/icons/trash/index.tsx
|
|
5571
5568
|
var import_jsx_runtime135 = require("react/jsx-runtime");
|
|
5572
|
-
function
|
|
5569
|
+
function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5573
5570
|
return /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
|
|
5574
5571
|
"svg",
|
|
5575
5572
|
{
|
|
@@ -5582,19 +5579,20 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5582
5579
|
strokeWidth,
|
|
5583
5580
|
strokeLinecap: "round",
|
|
5584
5581
|
strokeLinejoin: "round",
|
|
5585
|
-
"aria-hidden":
|
|
5582
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5586
5583
|
...rest,
|
|
5587
5584
|
children: [
|
|
5588
|
-
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M3
|
|
5589
|
-
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "
|
|
5585
|
+
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M3 6h18" }),
|
|
5586
|
+
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
5587
|
+
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
5590
5588
|
]
|
|
5591
5589
|
}
|
|
5592
5590
|
);
|
|
5593
5591
|
}
|
|
5594
5592
|
|
|
5595
|
-
// src/components/icons/
|
|
5593
|
+
// src/components/icons/undo/index.tsx
|
|
5596
5594
|
var import_jsx_runtime136 = require("react/jsx-runtime");
|
|
5597
|
-
function
|
|
5595
|
+
function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5598
5596
|
return /* @__PURE__ */ (0, import_jsx_runtime136.jsxs)(
|
|
5599
5597
|
"svg",
|
|
5600
5598
|
{
|
|
@@ -5607,19 +5605,19 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5607
5605
|
strokeWidth,
|
|
5608
5606
|
strokeLinecap: "round",
|
|
5609
5607
|
strokeLinejoin: "round",
|
|
5610
|
-
"aria-hidden":
|
|
5608
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5611
5609
|
...rest,
|
|
5612
5610
|
children: [
|
|
5613
|
-
/* @__PURE__ */ (0, import_jsx_runtime136.jsx)("
|
|
5614
|
-
/* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "
|
|
5611
|
+
/* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M3 7v6h6" }),
|
|
5612
|
+
/* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
|
|
5615
5613
|
]
|
|
5616
5614
|
}
|
|
5617
5615
|
);
|
|
5618
5616
|
}
|
|
5619
5617
|
|
|
5620
|
-
// src/components/icons/
|
|
5618
|
+
// src/components/icons/unlock/index.tsx
|
|
5621
5619
|
var import_jsx_runtime137 = require("react/jsx-runtime");
|
|
5622
|
-
function
|
|
5620
|
+
function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5623
5621
|
return /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(
|
|
5624
5622
|
"svg",
|
|
5625
5623
|
{
|
|
@@ -5632,20 +5630,19 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5632
5630
|
strokeWidth,
|
|
5633
5631
|
strokeLinecap: "round",
|
|
5634
5632
|
strokeLinejoin: "round",
|
|
5635
|
-
"aria-hidden":
|
|
5633
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5636
5634
|
...rest,
|
|
5637
5635
|
children: [
|
|
5638
|
-
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)("
|
|
5639
|
-
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)("
|
|
5640
|
-
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
|
|
5636
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
5637
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
|
|
5641
5638
|
]
|
|
5642
5639
|
}
|
|
5643
5640
|
);
|
|
5644
5641
|
}
|
|
5645
5642
|
|
|
5646
|
-
// src/components/icons/
|
|
5643
|
+
// src/components/icons/upload/index.tsx
|
|
5647
5644
|
var import_jsx_runtime138 = require("react/jsx-runtime");
|
|
5648
|
-
function
|
|
5645
|
+
function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5649
5646
|
return /* @__PURE__ */ (0, import_jsx_runtime138.jsxs)(
|
|
5650
5647
|
"svg",
|
|
5651
5648
|
{
|
|
@@ -5658,19 +5655,20 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5658
5655
|
strokeWidth,
|
|
5659
5656
|
strokeLinecap: "round",
|
|
5660
5657
|
strokeLinejoin: "round",
|
|
5661
|
-
"aria-hidden":
|
|
5658
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5662
5659
|
...rest,
|
|
5663
5660
|
children: [
|
|
5664
|
-
/* @__PURE__ */ (0, import_jsx_runtime138.jsx)("path", { d: "
|
|
5665
|
-
/* @__PURE__ */ (0, import_jsx_runtime138.jsx)("
|
|
5661
|
+
/* @__PURE__ */ (0, import_jsx_runtime138.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
5662
|
+
/* @__PURE__ */ (0, import_jsx_runtime138.jsx)("polyline", { points: "17 8 12 3 7 8" }),
|
|
5663
|
+
/* @__PURE__ */ (0, import_jsx_runtime138.jsx)("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
|
|
5666
5664
|
]
|
|
5667
5665
|
}
|
|
5668
5666
|
);
|
|
5669
5667
|
}
|
|
5670
5668
|
|
|
5671
|
-
// src/components/icons/user
|
|
5669
|
+
// src/components/icons/user/index.tsx
|
|
5672
5670
|
var import_jsx_runtime139 = require("react/jsx-runtime");
|
|
5673
|
-
function
|
|
5671
|
+
function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5674
5672
|
return /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)(
|
|
5675
5673
|
"svg",
|
|
5676
5674
|
{
|
|
@@ -5683,20 +5681,19 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5683
5681
|
strokeWidth,
|
|
5684
5682
|
strokeLinecap: "round",
|
|
5685
5683
|
strokeLinejoin: "round",
|
|
5686
|
-
"aria-hidden":
|
|
5684
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5687
5685
|
...rest,
|
|
5688
5686
|
children: [
|
|
5689
|
-
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)("path", { d: "
|
|
5690
|
-
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)("circle", { cx: "
|
|
5691
|
-
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)("polyline", { points: "16 11 18 13 22 9" })
|
|
5687
|
+
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
|
|
5688
|
+
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)("circle", { cx: "12", cy: "7", r: "4" })
|
|
5692
5689
|
]
|
|
5693
5690
|
}
|
|
5694
5691
|
);
|
|
5695
5692
|
}
|
|
5696
5693
|
|
|
5697
|
-
// src/components/icons/user-
|
|
5694
|
+
// src/components/icons/user-check/index.tsx
|
|
5698
5695
|
var import_jsx_runtime140 = require("react/jsx-runtime");
|
|
5699
|
-
function
|
|
5696
|
+
function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5700
5697
|
return /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(
|
|
5701
5698
|
"svg",
|
|
5702
5699
|
{
|
|
@@ -5709,21 +5706,20 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5709
5706
|
strokeWidth,
|
|
5710
5707
|
strokeLinecap: "round",
|
|
5711
5708
|
strokeLinejoin: "round",
|
|
5712
|
-
"aria-hidden":
|
|
5709
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5713
5710
|
...rest,
|
|
5714
5711
|
children: [
|
|
5715
5712
|
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5716
5713
|
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5717
|
-
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("
|
|
5718
|
-
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
|
|
5714
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("polyline", { points: "16 11 18 13 22 9" })
|
|
5719
5715
|
]
|
|
5720
5716
|
}
|
|
5721
5717
|
);
|
|
5722
5718
|
}
|
|
5723
5719
|
|
|
5724
|
-
// src/components/icons/
|
|
5720
|
+
// src/components/icons/user-plus/index.tsx
|
|
5725
5721
|
var import_jsx_runtime141 = require("react/jsx-runtime");
|
|
5726
|
-
function
|
|
5722
|
+
function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5727
5723
|
return /* @__PURE__ */ (0, import_jsx_runtime141.jsxs)(
|
|
5728
5724
|
"svg",
|
|
5729
5725
|
{
|
|
@@ -5736,21 +5732,21 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5736
5732
|
strokeWidth,
|
|
5737
5733
|
strokeLinecap: "round",
|
|
5738
5734
|
strokeLinejoin: "round",
|
|
5739
|
-
"aria-hidden":
|
|
5735
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5740
5736
|
...rest,
|
|
5741
5737
|
children: [
|
|
5742
5738
|
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5743
5739
|
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5744
|
-
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("
|
|
5745
|
-
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("
|
|
5740
|
+
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
|
|
5741
|
+
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
|
|
5746
5742
|
]
|
|
5747
5743
|
}
|
|
5748
5744
|
);
|
|
5749
5745
|
}
|
|
5750
5746
|
|
|
5751
|
-
// src/components/icons/
|
|
5747
|
+
// src/components/icons/users/index.tsx
|
|
5752
5748
|
var import_jsx_runtime142 = require("react/jsx-runtime");
|
|
5753
|
-
function
|
|
5749
|
+
function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5754
5750
|
return /* @__PURE__ */ (0, import_jsx_runtime142.jsxs)(
|
|
5755
5751
|
"svg",
|
|
5756
5752
|
{
|
|
@@ -5763,20 +5759,21 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5763
5759
|
strokeWidth,
|
|
5764
5760
|
strokeLinecap: "round",
|
|
5765
5761
|
strokeLinejoin: "round",
|
|
5766
|
-
"aria-hidden":
|
|
5762
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5767
5763
|
...rest,
|
|
5768
5764
|
children: [
|
|
5769
|
-
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("
|
|
5770
|
-
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("
|
|
5771
|
-
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "
|
|
5765
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5766
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5767
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
5768
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
|
|
5772
5769
|
]
|
|
5773
5770
|
}
|
|
5774
5771
|
);
|
|
5775
5772
|
}
|
|
5776
5773
|
|
|
5777
|
-
// src/components/icons/volume-
|
|
5774
|
+
// src/components/icons/volume-2/index.tsx
|
|
5778
5775
|
var import_jsx_runtime143 = require("react/jsx-runtime");
|
|
5779
|
-
function
|
|
5776
|
+
function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5780
5777
|
return /* @__PURE__ */ (0, import_jsx_runtime143.jsxs)(
|
|
5781
5778
|
"svg",
|
|
5782
5779
|
{
|
|
@@ -5789,20 +5786,20 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5789
5786
|
strokeWidth,
|
|
5790
5787
|
strokeLinecap: "round",
|
|
5791
5788
|
strokeLinejoin: "round",
|
|
5792
|
-
"aria-hidden":
|
|
5789
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5793
5790
|
...rest,
|
|
5794
5791
|
children: [
|
|
5795
5792
|
/* @__PURE__ */ (0, import_jsx_runtime143.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5796
|
-
/* @__PURE__ */ (0, import_jsx_runtime143.jsx)("
|
|
5797
|
-
/* @__PURE__ */ (0, import_jsx_runtime143.jsx)("
|
|
5793
|
+
/* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
|
|
5794
|
+
/* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
|
|
5798
5795
|
]
|
|
5799
5796
|
}
|
|
5800
5797
|
);
|
|
5801
5798
|
}
|
|
5802
5799
|
|
|
5803
|
-
// src/components/icons/
|
|
5800
|
+
// src/components/icons/volume-x/index.tsx
|
|
5804
5801
|
var import_jsx_runtime144 = require("react/jsx-runtime");
|
|
5805
|
-
function
|
|
5802
|
+
function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5806
5803
|
return /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)(
|
|
5807
5804
|
"svg",
|
|
5808
5805
|
{
|
|
@@ -5815,22 +5812,48 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5815
5812
|
strokeWidth,
|
|
5816
5813
|
strokeLinecap: "round",
|
|
5817
5814
|
strokeLinejoin: "round",
|
|
5818
|
-
"aria-hidden":
|
|
5815
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5819
5816
|
...rest,
|
|
5820
5817
|
children: [
|
|
5821
|
-
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("
|
|
5822
|
-
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("
|
|
5823
|
-
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("
|
|
5824
|
-
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
|
|
5818
|
+
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5819
|
+
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
|
|
5820
|
+
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
|
|
5825
5821
|
]
|
|
5826
5822
|
}
|
|
5827
5823
|
);
|
|
5828
5824
|
}
|
|
5829
5825
|
|
|
5830
|
-
// src/components/icons/
|
|
5826
|
+
// src/components/icons/wifi/index.tsx
|
|
5831
5827
|
var import_jsx_runtime145 = require("react/jsx-runtime");
|
|
5832
|
-
function
|
|
5833
|
-
return /* @__PURE__ */ (0, import_jsx_runtime145.
|
|
5828
|
+
function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5829
|
+
return /* @__PURE__ */ (0, import_jsx_runtime145.jsxs)(
|
|
5830
|
+
"svg",
|
|
5831
|
+
{
|
|
5832
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5833
|
+
width: size3,
|
|
5834
|
+
height: size3,
|
|
5835
|
+
viewBox: "0 0 24 24",
|
|
5836
|
+
fill: "none",
|
|
5837
|
+
stroke: "currentColor",
|
|
5838
|
+
strokeWidth,
|
|
5839
|
+
strokeLinecap: "round",
|
|
5840
|
+
strokeLinejoin: "round",
|
|
5841
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5842
|
+
...rest,
|
|
5843
|
+
children: [
|
|
5844
|
+
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M12 20h.01" }),
|
|
5845
|
+
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
|
|
5846
|
+
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
|
|
5847
|
+
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
|
|
5848
|
+
]
|
|
5849
|
+
}
|
|
5850
|
+
);
|
|
5851
|
+
}
|
|
5852
|
+
|
|
5853
|
+
// src/components/icons/zap/index.tsx
|
|
5854
|
+
var import_jsx_runtime146 = require("react/jsx-runtime");
|
|
5855
|
+
function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5856
|
+
return /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
5834
5857
|
"svg",
|
|
5835
5858
|
{
|
|
5836
5859
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5842,9 +5865,9 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5842
5865
|
strokeWidth,
|
|
5843
5866
|
strokeLinecap: "round",
|
|
5844
5867
|
strokeLinejoin: "round",
|
|
5845
|
-
"aria-hidden":
|
|
5868
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5846
5869
|
...rest,
|
|
5847
|
-
children: /* @__PURE__ */ (0,
|
|
5870
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
|
|
5848
5871
|
}
|
|
5849
5872
|
);
|
|
5850
5873
|
}
|
|
@@ -5890,6 +5913,7 @@ var iconCatalog = [
|
|
|
5890
5913
|
{ name: "FolderIcon", Icon: FolderIcon },
|
|
5891
5914
|
{ name: "FolderOpenIcon", Icon: FolderOpenIcon },
|
|
5892
5915
|
{ name: "GiftIcon", Icon: GiftIcon },
|
|
5916
|
+
{ name: "GitHubIcon", Icon: GitHubIcon },
|
|
5893
5917
|
{ name: "GlobeIcon", Icon: GlobeIcon },
|
|
5894
5918
|
{ name: "GridIcon", Icon: GridIcon },
|
|
5895
5919
|
{ name: "HeartIcon", Icon: HeartIcon },
|
|
@@ -6016,6 +6040,7 @@ var iconCatalog = [
|
|
|
6016
6040
|
FolderIcon,
|
|
6017
6041
|
FolderOpenIcon,
|
|
6018
6042
|
GiftIcon,
|
|
6043
|
+
GitHubIcon,
|
|
6019
6044
|
GlobeIcon,
|
|
6020
6045
|
GridIcon,
|
|
6021
6046
|
HeartIcon,
|