@octavius2929-personal/design-system 1.0.1 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +621 -526
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +143 -111
- package/dist/index.d.ts +143 -111
- package/dist/index.js +606 -512
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -937,7 +937,7 @@ import { forwardRef as forwardRef9 } from "react";
|
|
|
937
937
|
|
|
938
938
|
// src/components/icons/x/index.tsx
|
|
939
939
|
import { jsx as jsx11, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
940
|
-
function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
940
|
+
function XIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
941
941
|
return /* @__PURE__ */ jsxs4(
|
|
942
942
|
"svg",
|
|
943
943
|
{
|
|
@@ -950,7 +950,7 @@ function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
950
950
|
strokeWidth,
|
|
951
951
|
strokeLinecap: "round",
|
|
952
952
|
strokeLinejoin: "round",
|
|
953
|
-
"aria-hidden":
|
|
953
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
954
954
|
...rest,
|
|
955
955
|
children: [
|
|
956
956
|
/* @__PURE__ */ jsx11("path", { d: "M18 6 6 18" }),
|
|
@@ -1033,7 +1033,7 @@ import { forwardRef as forwardRef10 } from "react";
|
|
|
1033
1033
|
|
|
1034
1034
|
// src/components/icons/check/index.tsx
|
|
1035
1035
|
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
1036
|
-
function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1036
|
+
function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1037
1037
|
return /* @__PURE__ */ jsx13(
|
|
1038
1038
|
"svg",
|
|
1039
1039
|
{
|
|
@@ -1046,7 +1046,7 @@ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1046
1046
|
strokeWidth,
|
|
1047
1047
|
strokeLinecap: "round",
|
|
1048
1048
|
strokeLinejoin: "round",
|
|
1049
|
-
"aria-hidden":
|
|
1049
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1050
1050
|
...rest,
|
|
1051
1051
|
children: /* @__PURE__ */ jsx13("path", { d: "M20 6 9 17l-5-5" })
|
|
1052
1052
|
}
|
|
@@ -1377,7 +1377,7 @@ import { forwardRef as forwardRef15, useState as useState3 } from "react";
|
|
|
1377
1377
|
|
|
1378
1378
|
// src/components/icons/eye/index.tsx
|
|
1379
1379
|
import { jsx as jsx19, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1380
|
-
function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1380
|
+
function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1381
1381
|
return /* @__PURE__ */ jsxs10(
|
|
1382
1382
|
"svg",
|
|
1383
1383
|
{
|
|
@@ -1390,7 +1390,7 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1390
1390
|
strokeWidth,
|
|
1391
1391
|
strokeLinecap: "round",
|
|
1392
1392
|
strokeLinejoin: "round",
|
|
1393
|
-
"aria-hidden":
|
|
1393
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1394
1394
|
...rest,
|
|
1395
1395
|
children: [
|
|
1396
1396
|
/* @__PURE__ */ jsx19("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }),
|
|
@@ -1402,7 +1402,7 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1402
1402
|
|
|
1403
1403
|
// src/components/icons/eye-off/index.tsx
|
|
1404
1404
|
import { jsx as jsx20, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1405
|
-
function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1405
|
+
function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1406
1406
|
return /* @__PURE__ */ jsxs11(
|
|
1407
1407
|
"svg",
|
|
1408
1408
|
{
|
|
@@ -1415,7 +1415,7 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1415
1415
|
strokeWidth,
|
|
1416
1416
|
strokeLinecap: "round",
|
|
1417
1417
|
strokeLinejoin: "round",
|
|
1418
|
-
"aria-hidden":
|
|
1418
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1419
1419
|
...rest,
|
|
1420
1420
|
children: [
|
|
1421
1421
|
/* @__PURE__ */ jsx20("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
|
|
@@ -1660,7 +1660,7 @@ import { forwardRef as forwardRef19 } from "react";
|
|
|
1660
1660
|
|
|
1661
1661
|
// src/components/icons/circle-check/index.tsx
|
|
1662
1662
|
import { jsx as jsx25, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1663
|
-
function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1663
|
+
function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1664
1664
|
return /* @__PURE__ */ jsxs12(
|
|
1665
1665
|
"svg",
|
|
1666
1666
|
{
|
|
@@ -1673,7 +1673,7 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1673
1673
|
strokeWidth,
|
|
1674
1674
|
strokeLinecap: "round",
|
|
1675
1675
|
strokeLinejoin: "round",
|
|
1676
|
-
"aria-hidden":
|
|
1676
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1677
1677
|
...rest,
|
|
1678
1678
|
children: [
|
|
1679
1679
|
/* @__PURE__ */ jsx25("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -1685,7 +1685,7 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1685
1685
|
|
|
1686
1686
|
// src/components/icons/circle-x/index.tsx
|
|
1687
1687
|
import { jsx as jsx26, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1688
|
-
function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1688
|
+
function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1689
1689
|
return /* @__PURE__ */ jsxs13(
|
|
1690
1690
|
"svg",
|
|
1691
1691
|
{
|
|
@@ -1698,7 +1698,7 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1698
1698
|
strokeWidth,
|
|
1699
1699
|
strokeLinecap: "round",
|
|
1700
1700
|
strokeLinejoin: "round",
|
|
1701
|
-
"aria-hidden":
|
|
1701
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1702
1702
|
...rest,
|
|
1703
1703
|
children: [
|
|
1704
1704
|
/* @__PURE__ */ jsx26("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -1711,7 +1711,7 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1711
1711
|
|
|
1712
1712
|
// src/components/icons/info/index.tsx
|
|
1713
1713
|
import { jsx as jsx27, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1714
|
-
function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1714
|
+
function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1715
1715
|
return /* @__PURE__ */ jsxs14(
|
|
1716
1716
|
"svg",
|
|
1717
1717
|
{
|
|
@@ -1724,7 +1724,7 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1724
1724
|
strokeWidth,
|
|
1725
1725
|
strokeLinecap: "round",
|
|
1726
1726
|
strokeLinejoin: "round",
|
|
1727
|
-
"aria-hidden":
|
|
1727
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1728
1728
|
...rest,
|
|
1729
1729
|
children: [
|
|
1730
1730
|
/* @__PURE__ */ jsx27("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -1737,7 +1737,7 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1737
1737
|
|
|
1738
1738
|
// src/components/icons/triangle-alert/index.tsx
|
|
1739
1739
|
import { jsx as jsx28, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1740
|
-
function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1740
|
+
function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1741
1741
|
return /* @__PURE__ */ jsxs15(
|
|
1742
1742
|
"svg",
|
|
1743
1743
|
{
|
|
@@ -1750,7 +1750,7 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1750
1750
|
strokeWidth,
|
|
1751
1751
|
strokeLinecap: "round",
|
|
1752
1752
|
strokeLinejoin: "round",
|
|
1753
|
-
"aria-hidden":
|
|
1753
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1754
1754
|
...rest,
|
|
1755
1755
|
children: [
|
|
1756
1756
|
/* @__PURE__ */ jsx28("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }),
|
|
@@ -1795,17 +1795,33 @@ var defaultIcons = {
|
|
|
1795
1795
|
warn: TriangleAlertIcon,
|
|
1796
1796
|
danger: CircleXIcon
|
|
1797
1797
|
};
|
|
1798
|
+
var roleBySeverity = {
|
|
1799
|
+
info: "status",
|
|
1800
|
+
ok: "status",
|
|
1801
|
+
warn: "alert",
|
|
1802
|
+
danger: "alert"
|
|
1803
|
+
};
|
|
1798
1804
|
var Alert = forwardRef19(function Alert2({ severity: severity2 = "info", title, icon, className, testId, children, ...rest }, ref) {
|
|
1799
1805
|
const styles = useStyles17({ severity: severity2, className });
|
|
1800
1806
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
1801
1807
|
const IconComponent = icon ?? defaultIcons[severity2];
|
|
1802
|
-
return /* @__PURE__ */ jsxs16(
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1808
|
+
return /* @__PURE__ */ jsxs16(
|
|
1809
|
+
"div",
|
|
1810
|
+
{
|
|
1811
|
+
ref,
|
|
1812
|
+
role: roleBySeverity[severity2],
|
|
1813
|
+
className: styles.root,
|
|
1814
|
+
"data-testid": dataTestId,
|
|
1815
|
+
...rest,
|
|
1816
|
+
children: [
|
|
1817
|
+
/* @__PURE__ */ jsx29("span", { className: styles.iconSlot, "data-testid": slot("icon"), children: /* @__PURE__ */ jsx29(IconComponent, {}) }),
|
|
1818
|
+
/* @__PURE__ */ jsxs16("div", { className: styles.content, "data-testid": slot("content"), children: [
|
|
1819
|
+
title != null && /* @__PURE__ */ jsx29(Typography, { variant: "h4", children: title }),
|
|
1820
|
+
children != null && /* @__PURE__ */ jsx29(Typography, { variant: "body", color: "muted", children })
|
|
1821
|
+
] })
|
|
1822
|
+
]
|
|
1823
|
+
}
|
|
1824
|
+
);
|
|
1809
1825
|
});
|
|
1810
1826
|
|
|
1811
1827
|
// src/components/tooltip/index.tsx
|
|
@@ -1918,7 +1934,7 @@ import { forwardRef as forwardRef21, useEffect as useEffect5, useId as useId3, u
|
|
|
1918
1934
|
|
|
1919
1935
|
// src/components/icons/chevron-down/index.tsx
|
|
1920
1936
|
import { jsx as jsx31 } from "react/jsx-runtime";
|
|
1921
|
-
function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1937
|
+
function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1922
1938
|
return /* @__PURE__ */ jsx31(
|
|
1923
1939
|
"svg",
|
|
1924
1940
|
{
|
|
@@ -1931,7 +1947,7 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1931
1947
|
strokeWidth,
|
|
1932
1948
|
strokeLinecap: "round",
|
|
1933
1949
|
strokeLinejoin: "round",
|
|
1934
|
-
"aria-hidden":
|
|
1950
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1935
1951
|
...rest,
|
|
1936
1952
|
children: /* @__PURE__ */ jsx31("path", { d: "m6 9 6 6 6-6" })
|
|
1937
1953
|
}
|
|
@@ -2277,7 +2293,7 @@ import { Fragment, forwardRef as forwardRef24 } from "react";
|
|
|
2277
2293
|
|
|
2278
2294
|
// src/components/icons/chevron-right/index.tsx
|
|
2279
2295
|
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
2280
|
-
function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2296
|
+
function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2281
2297
|
return /* @__PURE__ */ jsx35(
|
|
2282
2298
|
"svg",
|
|
2283
2299
|
{
|
|
@@ -2290,7 +2306,7 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2290
2306
|
strokeWidth,
|
|
2291
2307
|
strokeLinecap: "round",
|
|
2292
2308
|
strokeLinejoin: "round",
|
|
2293
|
-
"aria-hidden":
|
|
2309
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2294
2310
|
...rest,
|
|
2295
2311
|
children: /* @__PURE__ */ jsx35("path", { d: "m9 18 6-6-6-6" })
|
|
2296
2312
|
}
|
|
@@ -2336,7 +2352,7 @@ import { forwardRef as forwardRef25 } from "react";
|
|
|
2336
2352
|
|
|
2337
2353
|
// src/components/icons/chevron-left/index.tsx
|
|
2338
2354
|
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
2339
|
-
function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2355
|
+
function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2340
2356
|
return /* @__PURE__ */ jsx37(
|
|
2341
2357
|
"svg",
|
|
2342
2358
|
{
|
|
@@ -2349,7 +2365,7 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2349
2365
|
strokeWidth,
|
|
2350
2366
|
strokeLinecap: "round",
|
|
2351
2367
|
strokeLinejoin: "round",
|
|
2352
|
-
"aria-hidden":
|
|
2368
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2353
2369
|
...rest,
|
|
2354
2370
|
children: /* @__PURE__ */ jsx37("path", { d: "m15 18-6-6 6-6" })
|
|
2355
2371
|
}
|
|
@@ -2934,7 +2950,7 @@ var Dialog = forwardRef29(function Dialog2({ open, onClose, title, actions: acti
|
|
|
2934
2950
|
});
|
|
2935
2951
|
|
|
2936
2952
|
// src/components/snackbar/index.tsx
|
|
2937
|
-
import { forwardRef as forwardRef30 } from "react";
|
|
2953
|
+
import { forwardRef as forwardRef30, useCallback as useCallback2, useEffect as useEffect8, useRef as useRef7 } from "react";
|
|
2938
2954
|
import { createPortal as createPortal2 } from "react-dom";
|
|
2939
2955
|
|
|
2940
2956
|
// src/components/snackbar/use-styles.ts
|
|
@@ -2960,26 +2976,80 @@ function useStyles28() {
|
|
|
2960
2976
|
|
|
2961
2977
|
// src/components/snackbar/index.tsx
|
|
2962
2978
|
import { jsx as jsx43, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
2963
|
-
var
|
|
2979
|
+
var DEFAULT_DURATION = 5e3;
|
|
2980
|
+
var Snackbar = forwardRef30(function Snackbar2({ open, message: message2, action, onClose, duration = DEFAULT_DURATION, testId }, ref) {
|
|
2964
2981
|
const { root: root24, message: messageClass, closeBtn: closeBtn2 } = useStyles28();
|
|
2965
2982
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
2983
|
+
const onCloseRef = useRef7(onClose);
|
|
2984
|
+
useEffect8(() => {
|
|
2985
|
+
onCloseRef.current = onClose;
|
|
2986
|
+
}, [onClose]);
|
|
2987
|
+
const interactingRef = useRef7({ hover: false, focus: false });
|
|
2988
|
+
const timeoutRef = useRef7();
|
|
2989
|
+
const clearTimer = useCallback2(() => {
|
|
2990
|
+
if (timeoutRef.current !== void 0) {
|
|
2991
|
+
clearTimeout(timeoutRef.current);
|
|
2992
|
+
timeoutRef.current = void 0;
|
|
2993
|
+
}
|
|
2994
|
+
}, []);
|
|
2995
|
+
const scheduleTimer = useCallback2(() => {
|
|
2996
|
+
clearTimer();
|
|
2997
|
+
if (!open || duration == null || !onCloseRef.current) return;
|
|
2998
|
+
if (interactingRef.current.hover || interactingRef.current.focus) return;
|
|
2999
|
+
timeoutRef.current = setTimeout(() => {
|
|
3000
|
+
onCloseRef.current?.();
|
|
3001
|
+
}, duration);
|
|
3002
|
+
}, [open, duration, clearTimer]);
|
|
3003
|
+
useEffect8(() => {
|
|
3004
|
+
scheduleTimer();
|
|
3005
|
+
return clearTimer;
|
|
3006
|
+
}, [scheduleTimer, clearTimer]);
|
|
3007
|
+
const handleMouseEnter = () => {
|
|
3008
|
+
interactingRef.current.hover = true;
|
|
3009
|
+
clearTimer();
|
|
3010
|
+
};
|
|
3011
|
+
const handleMouseLeave = () => {
|
|
3012
|
+
interactingRef.current.hover = false;
|
|
3013
|
+
scheduleTimer();
|
|
3014
|
+
};
|
|
3015
|
+
const handleFocus = () => {
|
|
3016
|
+
interactingRef.current.focus = true;
|
|
3017
|
+
clearTimer();
|
|
3018
|
+
};
|
|
3019
|
+
const handleBlur = () => {
|
|
3020
|
+
interactingRef.current.focus = false;
|
|
3021
|
+
scheduleTimer();
|
|
3022
|
+
};
|
|
2966
3023
|
if (!open || typeof document === "undefined") return null;
|
|
2967
3024
|
return createPortal2(
|
|
2968
|
-
/* @__PURE__ */ jsxs27(
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
"
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
3025
|
+
/* @__PURE__ */ jsxs27(
|
|
3026
|
+
"div",
|
|
3027
|
+
{
|
|
3028
|
+
ref,
|
|
3029
|
+
role: "status",
|
|
3030
|
+
className: root24,
|
|
3031
|
+
"data-testid": dataTestId,
|
|
3032
|
+
onMouseEnter: handleMouseEnter,
|
|
3033
|
+
onMouseLeave: handleMouseLeave,
|
|
3034
|
+
onFocus: handleFocus,
|
|
3035
|
+
onBlur: handleBlur,
|
|
3036
|
+
children: [
|
|
3037
|
+
/* @__PURE__ */ jsx43("span", { className: messageClass, "data-testid": slot("message"), children: message2 }),
|
|
3038
|
+
action,
|
|
3039
|
+
onClose && /* @__PURE__ */ jsx43(
|
|
3040
|
+
"button",
|
|
3041
|
+
{
|
|
3042
|
+
type: "button",
|
|
3043
|
+
"aria-label": "Close",
|
|
3044
|
+
className: closeBtn2,
|
|
3045
|
+
"data-testid": slot("close"),
|
|
3046
|
+
onClick: onClose,
|
|
3047
|
+
children: /* @__PURE__ */ jsx43(XIcon, { size: 18 })
|
|
3048
|
+
}
|
|
3049
|
+
)
|
|
3050
|
+
]
|
|
3051
|
+
}
|
|
3052
|
+
),
|
|
2983
3053
|
document.body
|
|
2984
3054
|
);
|
|
2985
3055
|
});
|
|
@@ -3113,7 +3183,7 @@ var ListItem = forwardRef33(function ListItem2({ leading: leading2, trailing: tr
|
|
|
3113
3183
|
|
|
3114
3184
|
// src/components/icons/alert-circle/index.tsx
|
|
3115
3185
|
import { jsx as jsx47, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
3116
|
-
function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3186
|
+
function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3117
3187
|
return /* @__PURE__ */ jsxs31(
|
|
3118
3188
|
"svg",
|
|
3119
3189
|
{
|
|
@@ -3126,7 +3196,7 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3126
3196
|
strokeWidth,
|
|
3127
3197
|
strokeLinecap: "round",
|
|
3128
3198
|
strokeLinejoin: "round",
|
|
3129
|
-
"aria-hidden":
|
|
3199
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3130
3200
|
...rest,
|
|
3131
3201
|
children: [
|
|
3132
3202
|
/* @__PURE__ */ jsx47("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -3139,7 +3209,7 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3139
3209
|
|
|
3140
3210
|
// src/components/icons/archive/index.tsx
|
|
3141
3211
|
import { jsx as jsx48, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
3142
|
-
function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3212
|
+
function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3143
3213
|
return /* @__PURE__ */ jsxs32(
|
|
3144
3214
|
"svg",
|
|
3145
3215
|
{
|
|
@@ -3152,7 +3222,7 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3152
3222
|
strokeWidth,
|
|
3153
3223
|
strokeLinecap: "round",
|
|
3154
3224
|
strokeLinejoin: "round",
|
|
3155
|
-
"aria-hidden":
|
|
3225
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3156
3226
|
...rest,
|
|
3157
3227
|
children: [
|
|
3158
3228
|
/* @__PURE__ */ jsx48("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
|
|
@@ -3165,7 +3235,7 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3165
3235
|
|
|
3166
3236
|
// src/components/icons/arrow-down/index.tsx
|
|
3167
3237
|
import { jsx as jsx49, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
3168
|
-
function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3238
|
+
function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3169
3239
|
return /* @__PURE__ */ jsxs33(
|
|
3170
3240
|
"svg",
|
|
3171
3241
|
{
|
|
@@ -3178,7 +3248,7 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3178
3248
|
strokeWidth,
|
|
3179
3249
|
strokeLinecap: "round",
|
|
3180
3250
|
strokeLinejoin: "round",
|
|
3181
|
-
"aria-hidden":
|
|
3251
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3182
3252
|
...rest,
|
|
3183
3253
|
children: [
|
|
3184
3254
|
/* @__PURE__ */ jsx49("path", { d: "M12 5v14" }),
|
|
@@ -3190,7 +3260,7 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3190
3260
|
|
|
3191
3261
|
// src/components/icons/arrow-left/index.tsx
|
|
3192
3262
|
import { jsx as jsx50, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
3193
|
-
function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3263
|
+
function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3194
3264
|
return /* @__PURE__ */ jsxs34(
|
|
3195
3265
|
"svg",
|
|
3196
3266
|
{
|
|
@@ -3203,7 +3273,7 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3203
3273
|
strokeWidth,
|
|
3204
3274
|
strokeLinecap: "round",
|
|
3205
3275
|
strokeLinejoin: "round",
|
|
3206
|
-
"aria-hidden":
|
|
3276
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3207
3277
|
...rest,
|
|
3208
3278
|
children: [
|
|
3209
3279
|
/* @__PURE__ */ jsx50("path", { d: "m12 19-7-7 7-7" }),
|
|
@@ -3215,7 +3285,7 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3215
3285
|
|
|
3216
3286
|
// src/components/icons/arrow-right/index.tsx
|
|
3217
3287
|
import { jsx as jsx51, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
3218
|
-
function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3288
|
+
function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3219
3289
|
return /* @__PURE__ */ jsxs35(
|
|
3220
3290
|
"svg",
|
|
3221
3291
|
{
|
|
@@ -3228,7 +3298,7 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3228
3298
|
strokeWidth,
|
|
3229
3299
|
strokeLinecap: "round",
|
|
3230
3300
|
strokeLinejoin: "round",
|
|
3231
|
-
"aria-hidden":
|
|
3301
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3232
3302
|
...rest,
|
|
3233
3303
|
children: [
|
|
3234
3304
|
/* @__PURE__ */ jsx51("path", { d: "M5 12h14" }),
|
|
@@ -3240,7 +3310,7 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3240
3310
|
|
|
3241
3311
|
// src/components/icons/arrow-up/index.tsx
|
|
3242
3312
|
import { jsx as jsx52, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
3243
|
-
function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3313
|
+
function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3244
3314
|
return /* @__PURE__ */ jsxs36(
|
|
3245
3315
|
"svg",
|
|
3246
3316
|
{
|
|
@@ -3253,7 +3323,7 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3253
3323
|
strokeWidth,
|
|
3254
3324
|
strokeLinecap: "round",
|
|
3255
3325
|
strokeLinejoin: "round",
|
|
3256
|
-
"aria-hidden":
|
|
3326
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3257
3327
|
...rest,
|
|
3258
3328
|
children: [
|
|
3259
3329
|
/* @__PURE__ */ jsx52("path", { d: "m5 12 7-7 7 7" }),
|
|
@@ -3265,7 +3335,7 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3265
3335
|
|
|
3266
3336
|
// src/components/icons/at-sign/index.tsx
|
|
3267
3337
|
import { jsx as jsx53, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
3268
|
-
function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3338
|
+
function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3269
3339
|
return /* @__PURE__ */ jsxs37(
|
|
3270
3340
|
"svg",
|
|
3271
3341
|
{
|
|
@@ -3278,7 +3348,7 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3278
3348
|
strokeWidth,
|
|
3279
3349
|
strokeLinecap: "round",
|
|
3280
3350
|
strokeLinejoin: "round",
|
|
3281
|
-
"aria-hidden":
|
|
3351
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3282
3352
|
...rest,
|
|
3283
3353
|
children: [
|
|
3284
3354
|
/* @__PURE__ */ jsx53("circle", { cx: "12", cy: "12", r: "4" }),
|
|
@@ -3290,7 +3360,7 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3290
3360
|
|
|
3291
3361
|
// src/components/icons/bell/index.tsx
|
|
3292
3362
|
import { jsx as jsx54, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
3293
|
-
function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3363
|
+
function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3294
3364
|
return /* @__PURE__ */ jsxs38(
|
|
3295
3365
|
"svg",
|
|
3296
3366
|
{
|
|
@@ -3303,7 +3373,7 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3303
3373
|
strokeWidth,
|
|
3304
3374
|
strokeLinecap: "round",
|
|
3305
3375
|
strokeLinejoin: "round",
|
|
3306
|
-
"aria-hidden":
|
|
3376
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3307
3377
|
...rest,
|
|
3308
3378
|
children: [
|
|
3309
3379
|
/* @__PURE__ */ jsx54("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
|
|
@@ -3315,7 +3385,7 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3315
3385
|
|
|
3316
3386
|
// src/components/icons/bell-off/index.tsx
|
|
3317
3387
|
import { jsx as jsx55, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
3318
|
-
function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3388
|
+
function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3319
3389
|
return /* @__PURE__ */ jsxs39(
|
|
3320
3390
|
"svg",
|
|
3321
3391
|
{
|
|
@@ -3328,7 +3398,7 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3328
3398
|
strokeWidth,
|
|
3329
3399
|
strokeLinecap: "round",
|
|
3330
3400
|
strokeLinejoin: "round",
|
|
3331
|
-
"aria-hidden":
|
|
3401
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3332
3402
|
...rest,
|
|
3333
3403
|
children: [
|
|
3334
3404
|
/* @__PURE__ */ jsx55("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
|
|
@@ -3342,7 +3412,7 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3342
3412
|
|
|
3343
3413
|
// src/components/icons/bookmark/index.tsx
|
|
3344
3414
|
import { jsx as jsx56 } from "react/jsx-runtime";
|
|
3345
|
-
function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3415
|
+
function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3346
3416
|
return /* @__PURE__ */ jsx56(
|
|
3347
3417
|
"svg",
|
|
3348
3418
|
{
|
|
@@ -3355,7 +3425,7 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3355
3425
|
strokeWidth,
|
|
3356
3426
|
strokeLinecap: "round",
|
|
3357
3427
|
strokeLinejoin: "round",
|
|
3358
|
-
"aria-hidden":
|
|
3428
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3359
3429
|
...rest,
|
|
3360
3430
|
children: /* @__PURE__ */ jsx56("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
|
|
3361
3431
|
}
|
|
@@ -3364,7 +3434,7 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3364
3434
|
|
|
3365
3435
|
// src/components/icons/calendar/index.tsx
|
|
3366
3436
|
import { jsx as jsx57, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
3367
|
-
function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3437
|
+
function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3368
3438
|
return /* @__PURE__ */ jsxs40(
|
|
3369
3439
|
"svg",
|
|
3370
3440
|
{
|
|
@@ -3377,7 +3447,7 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3377
3447
|
strokeWidth,
|
|
3378
3448
|
strokeLinecap: "round",
|
|
3379
3449
|
strokeLinejoin: "round",
|
|
3380
|
-
"aria-hidden":
|
|
3450
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3381
3451
|
...rest,
|
|
3382
3452
|
children: [
|
|
3383
3453
|
/* @__PURE__ */ jsx57("path", { d: "M8 2v4" }),
|
|
@@ -3391,7 +3461,7 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3391
3461
|
|
|
3392
3462
|
// src/components/icons/camera/index.tsx
|
|
3393
3463
|
import { jsx as jsx58, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
3394
|
-
function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3464
|
+
function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3395
3465
|
return /* @__PURE__ */ jsxs41(
|
|
3396
3466
|
"svg",
|
|
3397
3467
|
{
|
|
@@ -3404,7 +3474,7 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3404
3474
|
strokeWidth,
|
|
3405
3475
|
strokeLinecap: "round",
|
|
3406
3476
|
strokeLinejoin: "round",
|
|
3407
|
-
"aria-hidden":
|
|
3477
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3408
3478
|
...rest,
|
|
3409
3479
|
children: [
|
|
3410
3480
|
/* @__PURE__ */ jsx58("path", { d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z" }),
|
|
@@ -3416,7 +3486,7 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3416
3486
|
|
|
3417
3487
|
// src/components/icons/chevron-up/index.tsx
|
|
3418
3488
|
import { jsx as jsx59 } from "react/jsx-runtime";
|
|
3419
|
-
function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3489
|
+
function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3420
3490
|
return /* @__PURE__ */ jsx59(
|
|
3421
3491
|
"svg",
|
|
3422
3492
|
{
|
|
@@ -3429,7 +3499,7 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3429
3499
|
strokeWidth,
|
|
3430
3500
|
strokeLinecap: "round",
|
|
3431
3501
|
strokeLinejoin: "round",
|
|
3432
|
-
"aria-hidden":
|
|
3502
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3433
3503
|
...rest,
|
|
3434
3504
|
children: /* @__PURE__ */ jsx59("path", { d: "m18 15-6-6-6 6" })
|
|
3435
3505
|
}
|
|
@@ -3438,7 +3508,7 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3438
3508
|
|
|
3439
3509
|
// src/components/icons/chevrons-left/index.tsx
|
|
3440
3510
|
import { jsx as jsx60, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
3441
|
-
function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3511
|
+
function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3442
3512
|
return /* @__PURE__ */ jsxs42(
|
|
3443
3513
|
"svg",
|
|
3444
3514
|
{
|
|
@@ -3451,7 +3521,7 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3451
3521
|
strokeWidth,
|
|
3452
3522
|
strokeLinecap: "round",
|
|
3453
3523
|
strokeLinejoin: "round",
|
|
3454
|
-
"aria-hidden":
|
|
3524
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3455
3525
|
...rest,
|
|
3456
3526
|
children: [
|
|
3457
3527
|
/* @__PURE__ */ jsx60("path", { d: "m11 17-5-5 5-5" }),
|
|
@@ -3463,7 +3533,7 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3463
3533
|
|
|
3464
3534
|
// src/components/icons/chevrons-right/index.tsx
|
|
3465
3535
|
import { jsx as jsx61, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
3466
|
-
function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3536
|
+
function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3467
3537
|
return /* @__PURE__ */ jsxs43(
|
|
3468
3538
|
"svg",
|
|
3469
3539
|
{
|
|
@@ -3476,7 +3546,7 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3476
3546
|
strokeWidth,
|
|
3477
3547
|
strokeLinecap: "round",
|
|
3478
3548
|
strokeLinejoin: "round",
|
|
3479
|
-
"aria-hidden":
|
|
3549
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3480
3550
|
...rest,
|
|
3481
3551
|
children: [
|
|
3482
3552
|
/* @__PURE__ */ jsx61("path", { d: "m6 17 5-5-5-5" }),
|
|
@@ -3488,7 +3558,7 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3488
3558
|
|
|
3489
3559
|
// src/components/icons/clipboard/index.tsx
|
|
3490
3560
|
import { jsx as jsx62, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
3491
|
-
function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3561
|
+
function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3492
3562
|
return /* @__PURE__ */ jsxs44(
|
|
3493
3563
|
"svg",
|
|
3494
3564
|
{
|
|
@@ -3501,7 +3571,7 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3501
3571
|
strokeWidth,
|
|
3502
3572
|
strokeLinecap: "round",
|
|
3503
3573
|
strokeLinejoin: "round",
|
|
3504
|
-
"aria-hidden":
|
|
3574
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3505
3575
|
...rest,
|
|
3506
3576
|
children: [
|
|
3507
3577
|
/* @__PURE__ */ jsx62("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
@@ -3513,7 +3583,7 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3513
3583
|
|
|
3514
3584
|
// src/components/icons/clock/index.tsx
|
|
3515
3585
|
import { jsx as jsx63, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
3516
|
-
function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3586
|
+
function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3517
3587
|
return /* @__PURE__ */ jsxs45(
|
|
3518
3588
|
"svg",
|
|
3519
3589
|
{
|
|
@@ -3526,7 +3596,7 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3526
3596
|
strokeWidth,
|
|
3527
3597
|
strokeLinecap: "round",
|
|
3528
3598
|
strokeLinejoin: "round",
|
|
3529
|
-
"aria-hidden":
|
|
3599
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3530
3600
|
...rest,
|
|
3531
3601
|
children: [
|
|
3532
3602
|
/* @__PURE__ */ jsx63("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -3538,7 +3608,7 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3538
3608
|
|
|
3539
3609
|
// src/components/icons/cloud/index.tsx
|
|
3540
3610
|
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
3541
|
-
function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3611
|
+
function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3542
3612
|
return /* @__PURE__ */ jsx64(
|
|
3543
3613
|
"svg",
|
|
3544
3614
|
{
|
|
@@ -3551,7 +3621,7 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3551
3621
|
strokeWidth,
|
|
3552
3622
|
strokeLinecap: "round",
|
|
3553
3623
|
strokeLinejoin: "round",
|
|
3554
|
-
"aria-hidden":
|
|
3624
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3555
3625
|
...rest,
|
|
3556
3626
|
children: /* @__PURE__ */ jsx64("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
|
|
3557
3627
|
}
|
|
@@ -3560,7 +3630,7 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3560
3630
|
|
|
3561
3631
|
// src/components/icons/copy/index.tsx
|
|
3562
3632
|
import { jsx as jsx65, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3563
|
-
function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3633
|
+
function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3564
3634
|
return /* @__PURE__ */ jsxs46(
|
|
3565
3635
|
"svg",
|
|
3566
3636
|
{
|
|
@@ -3573,7 +3643,7 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3573
3643
|
strokeWidth,
|
|
3574
3644
|
strokeLinecap: "round",
|
|
3575
3645
|
strokeLinejoin: "round",
|
|
3576
|
-
"aria-hidden":
|
|
3646
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3577
3647
|
...rest,
|
|
3578
3648
|
children: [
|
|
3579
3649
|
/* @__PURE__ */ jsx65("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
@@ -3585,7 +3655,7 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3585
3655
|
|
|
3586
3656
|
// src/components/icons/corner-down-right/index.tsx
|
|
3587
3657
|
import { jsx as jsx66, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
3588
|
-
function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3658
|
+
function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3589
3659
|
return /* @__PURE__ */ jsxs47(
|
|
3590
3660
|
"svg",
|
|
3591
3661
|
{
|
|
@@ -3598,7 +3668,7 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
|
|
|
3598
3668
|
strokeWidth,
|
|
3599
3669
|
strokeLinecap: "round",
|
|
3600
3670
|
strokeLinejoin: "round",
|
|
3601
|
-
"aria-hidden":
|
|
3671
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3602
3672
|
...rest,
|
|
3603
3673
|
children: [
|
|
3604
3674
|
/* @__PURE__ */ jsx66("polyline", { points: "15 10 20 15 15 20" }),
|
|
@@ -3610,7 +3680,7 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
|
|
|
3610
3680
|
|
|
3611
3681
|
// src/components/icons/credit-card/index.tsx
|
|
3612
3682
|
import { jsx as jsx67, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
3613
|
-
function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3683
|
+
function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3614
3684
|
return /* @__PURE__ */ jsxs48(
|
|
3615
3685
|
"svg",
|
|
3616
3686
|
{
|
|
@@ -3623,7 +3693,7 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3623
3693
|
strokeWidth,
|
|
3624
3694
|
strokeLinecap: "round",
|
|
3625
3695
|
strokeLinejoin: "round",
|
|
3626
|
-
"aria-hidden":
|
|
3696
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3627
3697
|
...rest,
|
|
3628
3698
|
children: [
|
|
3629
3699
|
/* @__PURE__ */ jsx67("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
|
|
@@ -3635,7 +3705,7 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3635
3705
|
|
|
3636
3706
|
// src/components/icons/dollar-sign/index.tsx
|
|
3637
3707
|
import { jsx as jsx68, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
3638
|
-
function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3708
|
+
function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3639
3709
|
return /* @__PURE__ */ jsxs49(
|
|
3640
3710
|
"svg",
|
|
3641
3711
|
{
|
|
@@ -3648,7 +3718,7 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3648
3718
|
strokeWidth,
|
|
3649
3719
|
strokeLinecap: "round",
|
|
3650
3720
|
strokeLinejoin: "round",
|
|
3651
|
-
"aria-hidden":
|
|
3721
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3652
3722
|
...rest,
|
|
3653
3723
|
children: [
|
|
3654
3724
|
/* @__PURE__ */ jsx68("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
|
|
@@ -3660,7 +3730,7 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3660
3730
|
|
|
3661
3731
|
// src/components/icons/download/index.tsx
|
|
3662
3732
|
import { jsx as jsx69, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
3663
|
-
function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3733
|
+
function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3664
3734
|
return /* @__PURE__ */ jsxs50(
|
|
3665
3735
|
"svg",
|
|
3666
3736
|
{
|
|
@@ -3673,7 +3743,7 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3673
3743
|
strokeWidth,
|
|
3674
3744
|
strokeLinecap: "round",
|
|
3675
3745
|
strokeLinejoin: "round",
|
|
3676
|
-
"aria-hidden":
|
|
3746
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3677
3747
|
...rest,
|
|
3678
3748
|
children: [
|
|
3679
3749
|
/* @__PURE__ */ jsx69("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
@@ -3686,7 +3756,7 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3686
3756
|
|
|
3687
3757
|
// src/components/icons/external-link/index.tsx
|
|
3688
3758
|
import { jsx as jsx70, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
3689
|
-
function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3759
|
+
function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3690
3760
|
return /* @__PURE__ */ jsxs51(
|
|
3691
3761
|
"svg",
|
|
3692
3762
|
{
|
|
@@ -3699,7 +3769,7 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3699
3769
|
strokeWidth,
|
|
3700
3770
|
strokeLinecap: "round",
|
|
3701
3771
|
strokeLinejoin: "round",
|
|
3702
|
-
"aria-hidden":
|
|
3772
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3703
3773
|
...rest,
|
|
3704
3774
|
children: [
|
|
3705
3775
|
/* @__PURE__ */ jsx70("path", { d: "M15 3h6v6" }),
|
|
@@ -3712,7 +3782,7 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3712
3782
|
|
|
3713
3783
|
// src/components/icons/file/index.tsx
|
|
3714
3784
|
import { jsx as jsx71, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3715
|
-
function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3785
|
+
function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3716
3786
|
return /* @__PURE__ */ jsxs52(
|
|
3717
3787
|
"svg",
|
|
3718
3788
|
{
|
|
@@ -3725,7 +3795,7 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3725
3795
|
strokeWidth,
|
|
3726
3796
|
strokeLinecap: "round",
|
|
3727
3797
|
strokeLinejoin: "round",
|
|
3728
|
-
"aria-hidden":
|
|
3798
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3729
3799
|
...rest,
|
|
3730
3800
|
children: [
|
|
3731
3801
|
/* @__PURE__ */ jsx71("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
@@ -3737,7 +3807,7 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3737
3807
|
|
|
3738
3808
|
// src/components/icons/file-text/index.tsx
|
|
3739
3809
|
import { jsx as jsx72, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3740
|
-
function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3810
|
+
function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3741
3811
|
return /* @__PURE__ */ jsxs53(
|
|
3742
3812
|
"svg",
|
|
3743
3813
|
{
|
|
@@ -3750,7 +3820,7 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3750
3820
|
strokeWidth,
|
|
3751
3821
|
strokeLinecap: "round",
|
|
3752
3822
|
strokeLinejoin: "round",
|
|
3753
|
-
"aria-hidden":
|
|
3823
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3754
3824
|
...rest,
|
|
3755
3825
|
children: [
|
|
3756
3826
|
/* @__PURE__ */ jsx72("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
@@ -3765,7 +3835,7 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3765
3835
|
|
|
3766
3836
|
// src/components/icons/filter/index.tsx
|
|
3767
3837
|
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
3768
|
-
function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3838
|
+
function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3769
3839
|
return /* @__PURE__ */ jsx73(
|
|
3770
3840
|
"svg",
|
|
3771
3841
|
{
|
|
@@ -3778,7 +3848,7 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3778
3848
|
strokeWidth,
|
|
3779
3849
|
strokeLinecap: "round",
|
|
3780
3850
|
strokeLinejoin: "round",
|
|
3781
|
-
"aria-hidden":
|
|
3851
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3782
3852
|
...rest,
|
|
3783
3853
|
children: /* @__PURE__ */ jsx73("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
|
3784
3854
|
}
|
|
@@ -3787,7 +3857,7 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3787
3857
|
|
|
3788
3858
|
// src/components/icons/fingerprint/index.tsx
|
|
3789
3859
|
import { jsx as jsx74, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3790
|
-
function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3860
|
+
function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3791
3861
|
return /* @__PURE__ */ jsxs54(
|
|
3792
3862
|
"svg",
|
|
3793
3863
|
{
|
|
@@ -3800,7 +3870,7 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3800
3870
|
strokeWidth,
|
|
3801
3871
|
strokeLinecap: "round",
|
|
3802
3872
|
strokeLinejoin: "round",
|
|
3803
|
-
"aria-hidden":
|
|
3873
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3804
3874
|
...rest,
|
|
3805
3875
|
children: [
|
|
3806
3876
|
/* @__PURE__ */ jsx74("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
|
|
@@ -3819,7 +3889,7 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3819
3889
|
|
|
3820
3890
|
// src/components/icons/folder/index.tsx
|
|
3821
3891
|
import { jsx as jsx75 } from "react/jsx-runtime";
|
|
3822
|
-
function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3892
|
+
function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3823
3893
|
return /* @__PURE__ */ jsx75(
|
|
3824
3894
|
"svg",
|
|
3825
3895
|
{
|
|
@@ -3832,7 +3902,7 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3832
3902
|
strokeWidth,
|
|
3833
3903
|
strokeLinecap: "round",
|
|
3834
3904
|
strokeLinejoin: "round",
|
|
3835
|
-
"aria-hidden":
|
|
3905
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3836
3906
|
...rest,
|
|
3837
3907
|
children: /* @__PURE__ */ jsx75("path", { d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" })
|
|
3838
3908
|
}
|
|
@@ -3841,7 +3911,7 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3841
3911
|
|
|
3842
3912
|
// src/components/icons/folder-open/index.tsx
|
|
3843
3913
|
import { jsx as jsx76 } from "react/jsx-runtime";
|
|
3844
|
-
function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3914
|
+
function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3845
3915
|
return /* @__PURE__ */ jsx76(
|
|
3846
3916
|
"svg",
|
|
3847
3917
|
{
|
|
@@ -3854,7 +3924,7 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3854
3924
|
strokeWidth,
|
|
3855
3925
|
strokeLinecap: "round",
|
|
3856
3926
|
strokeLinejoin: "round",
|
|
3857
|
-
"aria-hidden":
|
|
3927
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3858
3928
|
...rest,
|
|
3859
3929
|
children: /* @__PURE__ */ jsx76("path", { d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" })
|
|
3860
3930
|
}
|
|
@@ -3863,7 +3933,7 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3863
3933
|
|
|
3864
3934
|
// src/components/icons/gift/index.tsx
|
|
3865
3935
|
import { jsx as jsx77, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3866
|
-
function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3936
|
+
function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3867
3937
|
return /* @__PURE__ */ jsxs55(
|
|
3868
3938
|
"svg",
|
|
3869
3939
|
{
|
|
@@ -3876,7 +3946,7 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3876
3946
|
strokeWidth,
|
|
3877
3947
|
strokeLinecap: "round",
|
|
3878
3948
|
strokeLinejoin: "round",
|
|
3879
|
-
"aria-hidden":
|
|
3949
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3880
3950
|
...rest,
|
|
3881
3951
|
children: [
|
|
3882
3952
|
/* @__PURE__ */ jsx77("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
|
|
@@ -3888,9 +3958,31 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3888
3958
|
);
|
|
3889
3959
|
}
|
|
3890
3960
|
|
|
3961
|
+
// src/components/icons/github/index.tsx
|
|
3962
|
+
import { jsx as jsx78 } from "react/jsx-runtime";
|
|
3963
|
+
function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3964
|
+
return /* @__PURE__ */ jsx78(
|
|
3965
|
+
"svg",
|
|
3966
|
+
{
|
|
3967
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3968
|
+
width: size3,
|
|
3969
|
+
height: size3,
|
|
3970
|
+
viewBox: "0 0 24 24",
|
|
3971
|
+
fill: "none",
|
|
3972
|
+
stroke: "currentColor",
|
|
3973
|
+
strokeWidth,
|
|
3974
|
+
strokeLinecap: "round",
|
|
3975
|
+
strokeLinejoin: "round",
|
|
3976
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3977
|
+
...rest,
|
|
3978
|
+
children: /* @__PURE__ */ jsx78("path", { d: "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" })
|
|
3979
|
+
}
|
|
3980
|
+
);
|
|
3981
|
+
}
|
|
3982
|
+
|
|
3891
3983
|
// src/components/icons/globe/index.tsx
|
|
3892
|
-
import { jsx as
|
|
3893
|
-
function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3984
|
+
import { jsx as jsx79, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3985
|
+
function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3894
3986
|
return /* @__PURE__ */ jsxs56(
|
|
3895
3987
|
"svg",
|
|
3896
3988
|
{
|
|
@@ -3903,20 +3995,20 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3903
3995
|
strokeWidth,
|
|
3904
3996
|
strokeLinecap: "round",
|
|
3905
3997
|
strokeLinejoin: "round",
|
|
3906
|
-
"aria-hidden":
|
|
3998
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3907
3999
|
...rest,
|
|
3908
4000
|
children: [
|
|
3909
|
-
/* @__PURE__ */
|
|
3910
|
-
/* @__PURE__ */
|
|
3911
|
-
/* @__PURE__ */
|
|
4001
|
+
/* @__PURE__ */ jsx79("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4002
|
+
/* @__PURE__ */ jsx79("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
4003
|
+
/* @__PURE__ */ jsx79("path", { d: "M2 12h20" })
|
|
3912
4004
|
]
|
|
3913
4005
|
}
|
|
3914
4006
|
);
|
|
3915
4007
|
}
|
|
3916
4008
|
|
|
3917
4009
|
// src/components/icons/grid/index.tsx
|
|
3918
|
-
import { jsx as
|
|
3919
|
-
function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4010
|
+
import { jsx as jsx80, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
4011
|
+
function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3920
4012
|
return /* @__PURE__ */ jsxs57(
|
|
3921
4013
|
"svg",
|
|
3922
4014
|
{
|
|
@@ -3929,23 +4021,23 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3929
4021
|
strokeWidth,
|
|
3930
4022
|
strokeLinecap: "round",
|
|
3931
4023
|
strokeLinejoin: "round",
|
|
3932
|
-
"aria-hidden":
|
|
4024
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3933
4025
|
...rest,
|
|
3934
4026
|
children: [
|
|
3935
|
-
/* @__PURE__ */
|
|
3936
|
-
/* @__PURE__ */
|
|
3937
|
-
/* @__PURE__ */
|
|
3938
|
-
/* @__PURE__ */
|
|
3939
|
-
/* @__PURE__ */
|
|
4027
|
+
/* @__PURE__ */ jsx80("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
4028
|
+
/* @__PURE__ */ jsx80("path", { d: "M3 9h18" }),
|
|
4029
|
+
/* @__PURE__ */ jsx80("path", { d: "M3 15h18" }),
|
|
4030
|
+
/* @__PURE__ */ jsx80("path", { d: "M9 3v18" }),
|
|
4031
|
+
/* @__PURE__ */ jsx80("path", { d: "M15 3v18" })
|
|
3940
4032
|
]
|
|
3941
4033
|
}
|
|
3942
4034
|
);
|
|
3943
4035
|
}
|
|
3944
4036
|
|
|
3945
4037
|
// src/components/icons/heart/index.tsx
|
|
3946
|
-
import { jsx as
|
|
3947
|
-
function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3948
|
-
return /* @__PURE__ */
|
|
4038
|
+
import { jsx as jsx81 } from "react/jsx-runtime";
|
|
4039
|
+
function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4040
|
+
return /* @__PURE__ */ jsx81(
|
|
3949
4041
|
"svg",
|
|
3950
4042
|
{
|
|
3951
4043
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3957,16 +4049,16 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3957
4049
|
strokeWidth,
|
|
3958
4050
|
strokeLinecap: "round",
|
|
3959
4051
|
strokeLinejoin: "round",
|
|
3960
|
-
"aria-hidden":
|
|
4052
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3961
4053
|
...rest,
|
|
3962
|
-
children: /* @__PURE__ */
|
|
4054
|
+
children: /* @__PURE__ */ jsx81("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
|
|
3963
4055
|
}
|
|
3964
4056
|
);
|
|
3965
4057
|
}
|
|
3966
4058
|
|
|
3967
4059
|
// src/components/icons/help-circle/index.tsx
|
|
3968
|
-
import { jsx as
|
|
3969
|
-
function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4060
|
+
import { jsx as jsx82, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
4061
|
+
function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3970
4062
|
return /* @__PURE__ */ jsxs58(
|
|
3971
4063
|
"svg",
|
|
3972
4064
|
{
|
|
@@ -3979,20 +4071,20 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3979
4071
|
strokeWidth,
|
|
3980
4072
|
strokeLinecap: "round",
|
|
3981
4073
|
strokeLinejoin: "round",
|
|
3982
|
-
"aria-hidden":
|
|
4074
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3983
4075
|
...rest,
|
|
3984
4076
|
children: [
|
|
3985
|
-
/* @__PURE__ */
|
|
3986
|
-
/* @__PURE__ */
|
|
3987
|
-
/* @__PURE__ */
|
|
4077
|
+
/* @__PURE__ */ jsx82("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4078
|
+
/* @__PURE__ */ jsx82("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
4079
|
+
/* @__PURE__ */ jsx82("path", { d: "M12 17h.01" })
|
|
3988
4080
|
]
|
|
3989
4081
|
}
|
|
3990
4082
|
);
|
|
3991
4083
|
}
|
|
3992
4084
|
|
|
3993
4085
|
// src/components/icons/home/index.tsx
|
|
3994
|
-
import { jsx as
|
|
3995
|
-
function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4086
|
+
import { jsx as jsx83, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
4087
|
+
function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3996
4088
|
return /* @__PURE__ */ jsxs59(
|
|
3997
4089
|
"svg",
|
|
3998
4090
|
{
|
|
@@ -4005,19 +4097,19 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4005
4097
|
strokeWidth,
|
|
4006
4098
|
strokeLinecap: "round",
|
|
4007
4099
|
strokeLinejoin: "round",
|
|
4008
|
-
"aria-hidden":
|
|
4100
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4009
4101
|
...rest,
|
|
4010
4102
|
children: [
|
|
4011
|
-
/* @__PURE__ */
|
|
4012
|
-
/* @__PURE__ */
|
|
4103
|
+
/* @__PURE__ */ jsx83("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
|
|
4104
|
+
/* @__PURE__ */ jsx83("polyline", { points: "9 22 9 12 15 12 15 22" })
|
|
4013
4105
|
]
|
|
4014
4106
|
}
|
|
4015
4107
|
);
|
|
4016
4108
|
}
|
|
4017
4109
|
|
|
4018
4110
|
// src/components/icons/image/index.tsx
|
|
4019
|
-
import { jsx as
|
|
4020
|
-
function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4111
|
+
import { jsx as jsx84, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
4112
|
+
function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4021
4113
|
return /* @__PURE__ */ jsxs60(
|
|
4022
4114
|
"svg",
|
|
4023
4115
|
{
|
|
@@ -4030,20 +4122,20 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4030
4122
|
strokeWidth,
|
|
4031
4123
|
strokeLinecap: "round",
|
|
4032
4124
|
strokeLinejoin: "round",
|
|
4033
|
-
"aria-hidden":
|
|
4125
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4034
4126
|
...rest,
|
|
4035
4127
|
children: [
|
|
4036
|
-
/* @__PURE__ */
|
|
4037
|
-
/* @__PURE__ */
|
|
4038
|
-
/* @__PURE__ */
|
|
4128
|
+
/* @__PURE__ */ jsx84("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
|
|
4129
|
+
/* @__PURE__ */ jsx84("circle", { cx: "9", cy: "9", r: "2" }),
|
|
4130
|
+
/* @__PURE__ */ jsx84("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
|
|
4039
4131
|
]
|
|
4040
4132
|
}
|
|
4041
4133
|
);
|
|
4042
4134
|
}
|
|
4043
4135
|
|
|
4044
4136
|
// src/components/icons/inbox/index.tsx
|
|
4045
|
-
import { jsx as
|
|
4046
|
-
function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4137
|
+
import { jsx as jsx85, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
4138
|
+
function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4047
4139
|
return /* @__PURE__ */ jsxs61(
|
|
4048
4140
|
"svg",
|
|
4049
4141
|
{
|
|
@@ -4056,19 +4148,19 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4056
4148
|
strokeWidth,
|
|
4057
4149
|
strokeLinecap: "round",
|
|
4058
4150
|
strokeLinejoin: "round",
|
|
4059
|
-
"aria-hidden":
|
|
4151
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4060
4152
|
...rest,
|
|
4061
4153
|
children: [
|
|
4062
|
-
/* @__PURE__ */
|
|
4063
|
-
/* @__PURE__ */
|
|
4154
|
+
/* @__PURE__ */ jsx85("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
4155
|
+
/* @__PURE__ */ jsx85("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
|
|
4064
4156
|
]
|
|
4065
4157
|
}
|
|
4066
4158
|
);
|
|
4067
4159
|
}
|
|
4068
4160
|
|
|
4069
4161
|
// src/components/icons/key/index.tsx
|
|
4070
|
-
import { jsx as
|
|
4071
|
-
function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4162
|
+
import { jsx as jsx86, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
4163
|
+
function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4072
4164
|
return /* @__PURE__ */ jsxs62(
|
|
4073
4165
|
"svg",
|
|
4074
4166
|
{
|
|
@@ -4081,20 +4173,20 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4081
4173
|
strokeWidth,
|
|
4082
4174
|
strokeLinecap: "round",
|
|
4083
4175
|
strokeLinejoin: "round",
|
|
4084
|
-
"aria-hidden":
|
|
4176
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4085
4177
|
...rest,
|
|
4086
4178
|
children: [
|
|
4087
|
-
/* @__PURE__ */
|
|
4088
|
-
/* @__PURE__ */
|
|
4089
|
-
/* @__PURE__ */
|
|
4179
|
+
/* @__PURE__ */ jsx86("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L21 4.5" }),
|
|
4180
|
+
/* @__PURE__ */ jsx86("path", { d: "m21 2-9.6 9.6" }),
|
|
4181
|
+
/* @__PURE__ */ jsx86("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
|
|
4090
4182
|
]
|
|
4091
4183
|
}
|
|
4092
4184
|
);
|
|
4093
4185
|
}
|
|
4094
4186
|
|
|
4095
4187
|
// src/components/icons/layout/index.tsx
|
|
4096
|
-
import { jsx as
|
|
4097
|
-
function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4188
|
+
import { jsx as jsx87, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
4189
|
+
function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4098
4190
|
return /* @__PURE__ */ jsxs63(
|
|
4099
4191
|
"svg",
|
|
4100
4192
|
{
|
|
@@ -4107,21 +4199,21 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4107
4199
|
strokeWidth,
|
|
4108
4200
|
strokeLinecap: "round",
|
|
4109
4201
|
strokeLinejoin: "round",
|
|
4110
|
-
"aria-hidden":
|
|
4202
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4111
4203
|
...rest,
|
|
4112
4204
|
children: [
|
|
4113
|
-
/* @__PURE__ */
|
|
4114
|
-
/* @__PURE__ */
|
|
4115
|
-
/* @__PURE__ */
|
|
4116
|
-
/* @__PURE__ */
|
|
4205
|
+
/* @__PURE__ */ jsx87("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
|
|
4206
|
+
/* @__PURE__ */ jsx87("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
|
|
4207
|
+
/* @__PURE__ */ jsx87("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
|
|
4208
|
+
/* @__PURE__ */ jsx87("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
|
|
4117
4209
|
]
|
|
4118
4210
|
}
|
|
4119
4211
|
);
|
|
4120
4212
|
}
|
|
4121
4213
|
|
|
4122
4214
|
// src/components/icons/link/index.tsx
|
|
4123
|
-
import { jsx as
|
|
4124
|
-
function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4215
|
+
import { jsx as jsx88, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
4216
|
+
function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4125
4217
|
return /* @__PURE__ */ jsxs64(
|
|
4126
4218
|
"svg",
|
|
4127
4219
|
{
|
|
@@ -4134,19 +4226,19 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4134
4226
|
strokeWidth,
|
|
4135
4227
|
strokeLinecap: "round",
|
|
4136
4228
|
strokeLinejoin: "round",
|
|
4137
|
-
"aria-hidden":
|
|
4229
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4138
4230
|
...rest,
|
|
4139
4231
|
children: [
|
|
4140
|
-
/* @__PURE__ */
|
|
4141
|
-
/* @__PURE__ */
|
|
4232
|
+
/* @__PURE__ */ jsx88("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
|
|
4233
|
+
/* @__PURE__ */ jsx88("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
|
|
4142
4234
|
]
|
|
4143
4235
|
}
|
|
4144
4236
|
);
|
|
4145
4237
|
}
|
|
4146
4238
|
|
|
4147
4239
|
// src/components/icons/list/index.tsx
|
|
4148
|
-
import { jsx as
|
|
4149
|
-
function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4240
|
+
import { jsx as jsx89, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
4241
|
+
function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4150
4242
|
return /* @__PURE__ */ jsxs65(
|
|
4151
4243
|
"svg",
|
|
4152
4244
|
{
|
|
@@ -4159,23 +4251,23 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4159
4251
|
strokeWidth,
|
|
4160
4252
|
strokeLinecap: "round",
|
|
4161
4253
|
strokeLinejoin: "round",
|
|
4162
|
-
"aria-hidden":
|
|
4254
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4163
4255
|
...rest,
|
|
4164
4256
|
children: [
|
|
4165
|
-
/* @__PURE__ */
|
|
4166
|
-
/* @__PURE__ */
|
|
4167
|
-
/* @__PURE__ */
|
|
4168
|
-
/* @__PURE__ */
|
|
4169
|
-
/* @__PURE__ */
|
|
4170
|
-
/* @__PURE__ */
|
|
4257
|
+
/* @__PURE__ */ jsx89("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
|
|
4258
|
+
/* @__PURE__ */ jsx89("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
|
|
4259
|
+
/* @__PURE__ */ jsx89("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
|
|
4260
|
+
/* @__PURE__ */ jsx89("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
|
|
4261
|
+
/* @__PURE__ */ jsx89("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
|
|
4262
|
+
/* @__PURE__ */ jsx89("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
|
|
4171
4263
|
]
|
|
4172
4264
|
}
|
|
4173
4265
|
);
|
|
4174
4266
|
}
|
|
4175
4267
|
|
|
4176
4268
|
// src/components/icons/loader/index.tsx
|
|
4177
|
-
import { jsx as
|
|
4178
|
-
function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4269
|
+
import { jsx as jsx90, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
4270
|
+
function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4179
4271
|
return /* @__PURE__ */ jsxs66(
|
|
4180
4272
|
"svg",
|
|
4181
4273
|
{
|
|
@@ -4188,25 +4280,25 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4188
4280
|
strokeWidth,
|
|
4189
4281
|
strokeLinecap: "round",
|
|
4190
4282
|
strokeLinejoin: "round",
|
|
4191
|
-
"aria-hidden":
|
|
4283
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4192
4284
|
...rest,
|
|
4193
4285
|
children: [
|
|
4194
|
-
/* @__PURE__ */
|
|
4195
|
-
/* @__PURE__ */
|
|
4196
|
-
/* @__PURE__ */
|
|
4197
|
-
/* @__PURE__ */
|
|
4198
|
-
/* @__PURE__ */
|
|
4199
|
-
/* @__PURE__ */
|
|
4200
|
-
/* @__PURE__ */
|
|
4201
|
-
/* @__PURE__ */
|
|
4286
|
+
/* @__PURE__ */ jsx90("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
|
|
4287
|
+
/* @__PURE__ */ jsx90("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
|
|
4288
|
+
/* @__PURE__ */ jsx90("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
|
|
4289
|
+
/* @__PURE__ */ jsx90("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
|
|
4290
|
+
/* @__PURE__ */ jsx90("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
|
|
4291
|
+
/* @__PURE__ */ jsx90("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
|
|
4292
|
+
/* @__PURE__ */ jsx90("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
|
|
4293
|
+
/* @__PURE__ */ jsx90("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
|
|
4202
4294
|
]
|
|
4203
4295
|
}
|
|
4204
4296
|
);
|
|
4205
4297
|
}
|
|
4206
4298
|
|
|
4207
4299
|
// src/components/icons/lock/index.tsx
|
|
4208
|
-
import { jsx as
|
|
4209
|
-
function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4300
|
+
import { jsx as jsx91, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
4301
|
+
function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4210
4302
|
return /* @__PURE__ */ jsxs67(
|
|
4211
4303
|
"svg",
|
|
4212
4304
|
{
|
|
@@ -4219,19 +4311,19 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4219
4311
|
strokeWidth,
|
|
4220
4312
|
strokeLinecap: "round",
|
|
4221
4313
|
strokeLinejoin: "round",
|
|
4222
|
-
"aria-hidden":
|
|
4314
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4223
4315
|
...rest,
|
|
4224
4316
|
children: [
|
|
4225
|
-
/* @__PURE__ */
|
|
4226
|
-
/* @__PURE__ */
|
|
4317
|
+
/* @__PURE__ */ jsx91("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
4318
|
+
/* @__PURE__ */ jsx91("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
|
|
4227
4319
|
]
|
|
4228
4320
|
}
|
|
4229
4321
|
);
|
|
4230
4322
|
}
|
|
4231
4323
|
|
|
4232
4324
|
// src/components/icons/log-in/index.tsx
|
|
4233
|
-
import { jsx as
|
|
4234
|
-
function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4325
|
+
import { jsx as jsx92, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
4326
|
+
function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4235
4327
|
return /* @__PURE__ */ jsxs68(
|
|
4236
4328
|
"svg",
|
|
4237
4329
|
{
|
|
@@ -4244,20 +4336,20 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4244
4336
|
strokeWidth,
|
|
4245
4337
|
strokeLinecap: "round",
|
|
4246
4338
|
strokeLinejoin: "round",
|
|
4247
|
-
"aria-hidden":
|
|
4339
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4248
4340
|
...rest,
|
|
4249
4341
|
children: [
|
|
4250
|
-
/* @__PURE__ */
|
|
4251
|
-
/* @__PURE__ */
|
|
4252
|
-
/* @__PURE__ */
|
|
4342
|
+
/* @__PURE__ */ jsx92("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
|
|
4343
|
+
/* @__PURE__ */ jsx92("polyline", { points: "10 17 15 12 10 7" }),
|
|
4344
|
+
/* @__PURE__ */ jsx92("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
|
|
4253
4345
|
]
|
|
4254
4346
|
}
|
|
4255
4347
|
);
|
|
4256
4348
|
}
|
|
4257
4349
|
|
|
4258
4350
|
// src/components/icons/log-out/index.tsx
|
|
4259
|
-
import { jsx as
|
|
4260
|
-
function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4351
|
+
import { jsx as jsx93, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4352
|
+
function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4261
4353
|
return /* @__PURE__ */ jsxs69(
|
|
4262
4354
|
"svg",
|
|
4263
4355
|
{
|
|
@@ -4270,20 +4362,20 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4270
4362
|
strokeWidth,
|
|
4271
4363
|
strokeLinecap: "round",
|
|
4272
4364
|
strokeLinejoin: "round",
|
|
4273
|
-
"aria-hidden":
|
|
4365
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4274
4366
|
...rest,
|
|
4275
4367
|
children: [
|
|
4276
|
-
/* @__PURE__ */
|
|
4277
|
-
/* @__PURE__ */
|
|
4278
|
-
/* @__PURE__ */
|
|
4368
|
+
/* @__PURE__ */ jsx93("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
4369
|
+
/* @__PURE__ */ jsx93("polyline", { points: "16 17 21 12 16 7" }),
|
|
4370
|
+
/* @__PURE__ */ jsx93("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
|
|
4279
4371
|
]
|
|
4280
4372
|
}
|
|
4281
4373
|
);
|
|
4282
4374
|
}
|
|
4283
4375
|
|
|
4284
4376
|
// src/components/icons/mail/index.tsx
|
|
4285
|
-
import { jsx as
|
|
4286
|
-
function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4377
|
+
import { jsx as jsx94, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
4378
|
+
function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4287
4379
|
return /* @__PURE__ */ jsxs70(
|
|
4288
4380
|
"svg",
|
|
4289
4381
|
{
|
|
@@ -4296,19 +4388,19 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4296
4388
|
strokeWidth,
|
|
4297
4389
|
strokeLinecap: "round",
|
|
4298
4390
|
strokeLinejoin: "round",
|
|
4299
|
-
"aria-hidden":
|
|
4391
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4300
4392
|
...rest,
|
|
4301
4393
|
children: [
|
|
4302
|
-
/* @__PURE__ */
|
|
4303
|
-
/* @__PURE__ */
|
|
4394
|
+
/* @__PURE__ */ jsx94("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
|
|
4395
|
+
/* @__PURE__ */ jsx94("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
|
|
4304
4396
|
]
|
|
4305
4397
|
}
|
|
4306
4398
|
);
|
|
4307
4399
|
}
|
|
4308
4400
|
|
|
4309
4401
|
// src/components/icons/map-pin/index.tsx
|
|
4310
|
-
import { jsx as
|
|
4311
|
-
function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4402
|
+
import { jsx as jsx95, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
4403
|
+
function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4312
4404
|
return /* @__PURE__ */ jsxs71(
|
|
4313
4405
|
"svg",
|
|
4314
4406
|
{
|
|
@@ -4321,19 +4413,19 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4321
4413
|
strokeWidth,
|
|
4322
4414
|
strokeLinecap: "round",
|
|
4323
4415
|
strokeLinejoin: "round",
|
|
4324
|
-
"aria-hidden":
|
|
4416
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4325
4417
|
...rest,
|
|
4326
4418
|
children: [
|
|
4327
|
-
/* @__PURE__ */
|
|
4328
|
-
/* @__PURE__ */
|
|
4419
|
+
/* @__PURE__ */ jsx95("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
|
|
4420
|
+
/* @__PURE__ */ jsx95("circle", { cx: "12", cy: "10", r: "3" })
|
|
4329
4421
|
]
|
|
4330
4422
|
}
|
|
4331
4423
|
);
|
|
4332
4424
|
}
|
|
4333
4425
|
|
|
4334
4426
|
// src/components/icons/maximize/index.tsx
|
|
4335
|
-
import { jsx as
|
|
4336
|
-
function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4427
|
+
import { jsx as jsx96, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
4428
|
+
function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4337
4429
|
return /* @__PURE__ */ jsxs72(
|
|
4338
4430
|
"svg",
|
|
4339
4431
|
{
|
|
@@ -4346,21 +4438,21 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4346
4438
|
strokeWidth,
|
|
4347
4439
|
strokeLinecap: "round",
|
|
4348
4440
|
strokeLinejoin: "round",
|
|
4349
|
-
"aria-hidden":
|
|
4441
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4350
4442
|
...rest,
|
|
4351
4443
|
children: [
|
|
4352
|
-
/* @__PURE__ */
|
|
4353
|
-
/* @__PURE__ */
|
|
4354
|
-
/* @__PURE__ */
|
|
4355
|
-
/* @__PURE__ */
|
|
4444
|
+
/* @__PURE__ */ jsx96("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
|
|
4445
|
+
/* @__PURE__ */ jsx96("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
|
|
4446
|
+
/* @__PURE__ */ jsx96("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
|
|
4447
|
+
/* @__PURE__ */ jsx96("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
|
|
4356
4448
|
]
|
|
4357
4449
|
}
|
|
4358
4450
|
);
|
|
4359
4451
|
}
|
|
4360
4452
|
|
|
4361
4453
|
// src/components/icons/menu/index.tsx
|
|
4362
|
-
import { jsx as
|
|
4363
|
-
function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4454
|
+
import { jsx as jsx97, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
4455
|
+
function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4364
4456
|
return /* @__PURE__ */ jsxs73(
|
|
4365
4457
|
"svg",
|
|
4366
4458
|
{
|
|
@@ -4373,21 +4465,21 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4373
4465
|
strokeWidth,
|
|
4374
4466
|
strokeLinecap: "round",
|
|
4375
4467
|
strokeLinejoin: "round",
|
|
4376
|
-
"aria-hidden":
|
|
4468
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4377
4469
|
...rest,
|
|
4378
4470
|
children: [
|
|
4379
|
-
/* @__PURE__ */
|
|
4380
|
-
/* @__PURE__ */
|
|
4381
|
-
/* @__PURE__ */
|
|
4471
|
+
/* @__PURE__ */ jsx97("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
|
|
4472
|
+
/* @__PURE__ */ jsx97("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
|
|
4473
|
+
/* @__PURE__ */ jsx97("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
|
|
4382
4474
|
]
|
|
4383
4475
|
}
|
|
4384
4476
|
);
|
|
4385
4477
|
}
|
|
4386
4478
|
|
|
4387
4479
|
// src/components/icons/message-circle/index.tsx
|
|
4388
|
-
import { jsx as
|
|
4389
|
-
function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4390
|
-
return /* @__PURE__ */
|
|
4480
|
+
import { jsx as jsx98 } from "react/jsx-runtime";
|
|
4481
|
+
function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4482
|
+
return /* @__PURE__ */ jsx98(
|
|
4391
4483
|
"svg",
|
|
4392
4484
|
{
|
|
4393
4485
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4399,17 +4491,17 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4399
4491
|
strokeWidth,
|
|
4400
4492
|
strokeLinecap: "round",
|
|
4401
4493
|
strokeLinejoin: "round",
|
|
4402
|
-
"aria-hidden":
|
|
4494
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4403
4495
|
...rest,
|
|
4404
|
-
children: /* @__PURE__ */
|
|
4496
|
+
children: /* @__PURE__ */ jsx98("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
|
|
4405
4497
|
}
|
|
4406
4498
|
);
|
|
4407
4499
|
}
|
|
4408
4500
|
|
|
4409
4501
|
// src/components/icons/message-square/index.tsx
|
|
4410
|
-
import { jsx as
|
|
4411
|
-
function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4412
|
-
return /* @__PURE__ */
|
|
4502
|
+
import { jsx as jsx99 } from "react/jsx-runtime";
|
|
4503
|
+
function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4504
|
+
return /* @__PURE__ */ jsx99(
|
|
4413
4505
|
"svg",
|
|
4414
4506
|
{
|
|
4415
4507
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4421,16 +4513,16 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4421
4513
|
strokeWidth,
|
|
4422
4514
|
strokeLinecap: "round",
|
|
4423
4515
|
strokeLinejoin: "round",
|
|
4424
|
-
"aria-hidden":
|
|
4516
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4425
4517
|
...rest,
|
|
4426
|
-
children: /* @__PURE__ */
|
|
4518
|
+
children: /* @__PURE__ */ jsx99("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
|
|
4427
4519
|
}
|
|
4428
4520
|
);
|
|
4429
4521
|
}
|
|
4430
4522
|
|
|
4431
4523
|
// src/components/icons/mic/index.tsx
|
|
4432
|
-
import { jsx as
|
|
4433
|
-
function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4524
|
+
import { jsx as jsx100, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
4525
|
+
function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4434
4526
|
return /* @__PURE__ */ jsxs74(
|
|
4435
4527
|
"svg",
|
|
4436
4528
|
{
|
|
@@ -4443,20 +4535,20 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4443
4535
|
strokeWidth,
|
|
4444
4536
|
strokeLinecap: "round",
|
|
4445
4537
|
strokeLinejoin: "round",
|
|
4446
|
-
"aria-hidden":
|
|
4538
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4447
4539
|
...rest,
|
|
4448
4540
|
children: [
|
|
4449
|
-
/* @__PURE__ */
|
|
4450
|
-
/* @__PURE__ */
|
|
4451
|
-
/* @__PURE__ */
|
|
4541
|
+
/* @__PURE__ */ jsx100("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
|
|
4542
|
+
/* @__PURE__ */ jsx100("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
|
|
4543
|
+
/* @__PURE__ */ jsx100("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
|
|
4452
4544
|
]
|
|
4453
4545
|
}
|
|
4454
4546
|
);
|
|
4455
4547
|
}
|
|
4456
4548
|
|
|
4457
4549
|
// src/components/icons/minimize/index.tsx
|
|
4458
|
-
import { jsx as
|
|
4459
|
-
function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4550
|
+
import { jsx as jsx101, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
4551
|
+
function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4460
4552
|
return /* @__PURE__ */ jsxs75(
|
|
4461
4553
|
"svg",
|
|
4462
4554
|
{
|
|
@@ -4469,22 +4561,22 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4469
4561
|
strokeWidth,
|
|
4470
4562
|
strokeLinecap: "round",
|
|
4471
4563
|
strokeLinejoin: "round",
|
|
4472
|
-
"aria-hidden":
|
|
4564
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4473
4565
|
...rest,
|
|
4474
4566
|
children: [
|
|
4475
|
-
/* @__PURE__ */
|
|
4476
|
-
/* @__PURE__ */
|
|
4477
|
-
/* @__PURE__ */
|
|
4478
|
-
/* @__PURE__ */
|
|
4567
|
+
/* @__PURE__ */ jsx101("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
|
|
4568
|
+
/* @__PURE__ */ jsx101("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
|
|
4569
|
+
/* @__PURE__ */ jsx101("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
|
|
4570
|
+
/* @__PURE__ */ jsx101("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
|
|
4479
4571
|
]
|
|
4480
4572
|
}
|
|
4481
4573
|
);
|
|
4482
4574
|
}
|
|
4483
4575
|
|
|
4484
4576
|
// src/components/icons/minus/index.tsx
|
|
4485
|
-
import { jsx as
|
|
4486
|
-
function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4487
|
-
return /* @__PURE__ */
|
|
4577
|
+
import { jsx as jsx102 } from "react/jsx-runtime";
|
|
4578
|
+
function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4579
|
+
return /* @__PURE__ */ jsx102(
|
|
4488
4580
|
"svg",
|
|
4489
4581
|
{
|
|
4490
4582
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4496,17 +4588,17 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4496
4588
|
strokeWidth,
|
|
4497
4589
|
strokeLinecap: "round",
|
|
4498
4590
|
strokeLinejoin: "round",
|
|
4499
|
-
"aria-hidden":
|
|
4591
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4500
4592
|
...rest,
|
|
4501
|
-
children: /* @__PURE__ */
|
|
4593
|
+
children: /* @__PURE__ */ jsx102("path", { d: "M5 12h14" })
|
|
4502
4594
|
}
|
|
4503
4595
|
);
|
|
4504
4596
|
}
|
|
4505
4597
|
|
|
4506
4598
|
// src/components/icons/moon/index.tsx
|
|
4507
|
-
import { jsx as
|
|
4508
|
-
function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4509
|
-
return /* @__PURE__ */
|
|
4599
|
+
import { jsx as jsx103 } from "react/jsx-runtime";
|
|
4600
|
+
function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4601
|
+
return /* @__PURE__ */ jsx103(
|
|
4510
4602
|
"svg",
|
|
4511
4603
|
{
|
|
4512
4604
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4518,16 +4610,16 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4518
4610
|
strokeWidth,
|
|
4519
4611
|
strokeLinecap: "round",
|
|
4520
4612
|
strokeLinejoin: "round",
|
|
4521
|
-
"aria-hidden":
|
|
4613
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4522
4614
|
...rest,
|
|
4523
|
-
children: /* @__PURE__ */
|
|
4615
|
+
children: /* @__PURE__ */ jsx103("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
|
|
4524
4616
|
}
|
|
4525
4617
|
);
|
|
4526
4618
|
}
|
|
4527
4619
|
|
|
4528
4620
|
// src/components/icons/more-horizontal/index.tsx
|
|
4529
|
-
import { jsx as
|
|
4530
|
-
function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4621
|
+
import { jsx as jsx104, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
4622
|
+
function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4531
4623
|
return /* @__PURE__ */ jsxs76(
|
|
4532
4624
|
"svg",
|
|
4533
4625
|
{
|
|
@@ -4540,20 +4632,20 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4540
4632
|
strokeWidth,
|
|
4541
4633
|
strokeLinecap: "round",
|
|
4542
4634
|
strokeLinejoin: "round",
|
|
4543
|
-
"aria-hidden":
|
|
4635
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4544
4636
|
...rest,
|
|
4545
4637
|
children: [
|
|
4546
|
-
/* @__PURE__ */
|
|
4547
|
-
/* @__PURE__ */
|
|
4548
|
-
/* @__PURE__ */
|
|
4638
|
+
/* @__PURE__ */ jsx104("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4639
|
+
/* @__PURE__ */ jsx104("circle", { cx: "19", cy: "12", r: "1" }),
|
|
4640
|
+
/* @__PURE__ */ jsx104("circle", { cx: "5", cy: "12", r: "1" })
|
|
4549
4641
|
]
|
|
4550
4642
|
}
|
|
4551
4643
|
);
|
|
4552
4644
|
}
|
|
4553
4645
|
|
|
4554
4646
|
// src/components/icons/more-vertical/index.tsx
|
|
4555
|
-
import { jsx as
|
|
4556
|
-
function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4647
|
+
import { jsx as jsx105, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
4648
|
+
function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4557
4649
|
return /* @__PURE__ */ jsxs77(
|
|
4558
4650
|
"svg",
|
|
4559
4651
|
{
|
|
@@ -4566,20 +4658,20 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4566
4658
|
strokeWidth,
|
|
4567
4659
|
strokeLinecap: "round",
|
|
4568
4660
|
strokeLinejoin: "round",
|
|
4569
|
-
"aria-hidden":
|
|
4661
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4570
4662
|
...rest,
|
|
4571
4663
|
children: [
|
|
4572
|
-
/* @__PURE__ */
|
|
4573
|
-
/* @__PURE__ */
|
|
4574
|
-
/* @__PURE__ */
|
|
4664
|
+
/* @__PURE__ */ jsx105("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4665
|
+
/* @__PURE__ */ jsx105("circle", { cx: "12", cy: "5", r: "1" }),
|
|
4666
|
+
/* @__PURE__ */ jsx105("circle", { cx: "12", cy: "19", r: "1" })
|
|
4575
4667
|
]
|
|
4576
4668
|
}
|
|
4577
4669
|
);
|
|
4578
4670
|
}
|
|
4579
4671
|
|
|
4580
4672
|
// src/components/icons/package/index.tsx
|
|
4581
|
-
import { jsx as
|
|
4582
|
-
function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4673
|
+
import { jsx as jsx106, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
4674
|
+
function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4583
4675
|
return /* @__PURE__ */ jsxs78(
|
|
4584
4676
|
"svg",
|
|
4585
4677
|
{
|
|
@@ -4592,21 +4684,21 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4592
4684
|
strokeWidth,
|
|
4593
4685
|
strokeLinecap: "round",
|
|
4594
4686
|
strokeLinejoin: "round",
|
|
4595
|
-
"aria-hidden":
|
|
4687
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4596
4688
|
...rest,
|
|
4597
4689
|
children: [
|
|
4598
|
-
/* @__PURE__ */
|
|
4599
|
-
/* @__PURE__ */
|
|
4600
|
-
/* @__PURE__ */
|
|
4690
|
+
/* @__PURE__ */ jsx106("path", { d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" }),
|
|
4691
|
+
/* @__PURE__ */ jsx106("path", { d: "M3.3 7 12 12l8.7-5" }),
|
|
4692
|
+
/* @__PURE__ */ jsx106("path", { d: "M12 22V12" })
|
|
4601
4693
|
]
|
|
4602
4694
|
}
|
|
4603
4695
|
);
|
|
4604
4696
|
}
|
|
4605
4697
|
|
|
4606
4698
|
// src/components/icons/paperclip/index.tsx
|
|
4607
|
-
import { jsx as
|
|
4608
|
-
function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4609
|
-
return /* @__PURE__ */
|
|
4699
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
4700
|
+
function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4701
|
+
return /* @__PURE__ */ jsx107(
|
|
4610
4702
|
"svg",
|
|
4611
4703
|
{
|
|
4612
4704
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4618,16 +4710,16 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4618
4710
|
strokeWidth,
|
|
4619
4711
|
strokeLinecap: "round",
|
|
4620
4712
|
strokeLinejoin: "round",
|
|
4621
|
-
"aria-hidden":
|
|
4713
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4622
4714
|
...rest,
|
|
4623
|
-
children: /* @__PURE__ */
|
|
4715
|
+
children: /* @__PURE__ */ jsx107("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" })
|
|
4624
4716
|
}
|
|
4625
4717
|
);
|
|
4626
4718
|
}
|
|
4627
4719
|
|
|
4628
4720
|
// src/components/icons/pause/index.tsx
|
|
4629
|
-
import { jsx as
|
|
4630
|
-
function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4721
|
+
import { jsx as jsx108, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
4722
|
+
function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4631
4723
|
return /* @__PURE__ */ jsxs79(
|
|
4632
4724
|
"svg",
|
|
4633
4725
|
{
|
|
@@ -4640,19 +4732,19 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4640
4732
|
strokeWidth,
|
|
4641
4733
|
strokeLinecap: "round",
|
|
4642
4734
|
strokeLinejoin: "round",
|
|
4643
|
-
"aria-hidden":
|
|
4735
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4644
4736
|
...rest,
|
|
4645
4737
|
children: [
|
|
4646
|
-
/* @__PURE__ */
|
|
4647
|
-
/* @__PURE__ */
|
|
4738
|
+
/* @__PURE__ */ jsx108("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
|
|
4739
|
+
/* @__PURE__ */ jsx108("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
|
|
4648
4740
|
]
|
|
4649
4741
|
}
|
|
4650
4742
|
);
|
|
4651
4743
|
}
|
|
4652
4744
|
|
|
4653
4745
|
// src/components/icons/pencil/index.tsx
|
|
4654
|
-
import { jsx as
|
|
4655
|
-
function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4746
|
+
import { jsx as jsx109, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
4747
|
+
function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4656
4748
|
return /* @__PURE__ */ jsxs80(
|
|
4657
4749
|
"svg",
|
|
4658
4750
|
{
|
|
@@ -4665,20 +4757,20 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4665
4757
|
strokeWidth,
|
|
4666
4758
|
strokeLinecap: "round",
|
|
4667
4759
|
strokeLinejoin: "round",
|
|
4668
|
-
"aria-hidden":
|
|
4760
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4669
4761
|
...rest,
|
|
4670
4762
|
children: [
|
|
4671
|
-
/* @__PURE__ */
|
|
4672
|
-
/* @__PURE__ */
|
|
4763
|
+
/* @__PURE__ */ jsx109("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
|
|
4764
|
+
/* @__PURE__ */ jsx109("path", { d: "m15 5 4 4" })
|
|
4673
4765
|
]
|
|
4674
4766
|
}
|
|
4675
4767
|
);
|
|
4676
4768
|
}
|
|
4677
4769
|
|
|
4678
4770
|
// src/components/icons/phone/index.tsx
|
|
4679
|
-
import { jsx as
|
|
4680
|
-
function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4681
|
-
return /* @__PURE__ */
|
|
4771
|
+
import { jsx as jsx110 } from "react/jsx-runtime";
|
|
4772
|
+
function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4773
|
+
return /* @__PURE__ */ jsx110(
|
|
4682
4774
|
"svg",
|
|
4683
4775
|
{
|
|
4684
4776
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4690,17 +4782,17 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4690
4782
|
strokeWidth,
|
|
4691
4783
|
strokeLinecap: "round",
|
|
4692
4784
|
strokeLinejoin: "round",
|
|
4693
|
-
"aria-hidden":
|
|
4785
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4694
4786
|
...rest,
|
|
4695
|
-
children: /* @__PURE__ */
|
|
4787
|
+
children: /* @__PURE__ */ jsx110("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
|
|
4696
4788
|
}
|
|
4697
4789
|
);
|
|
4698
4790
|
}
|
|
4699
4791
|
|
|
4700
4792
|
// src/components/icons/play/index.tsx
|
|
4701
|
-
import { jsx as
|
|
4702
|
-
function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4703
|
-
return /* @__PURE__ */
|
|
4793
|
+
import { jsx as jsx111 } from "react/jsx-runtime";
|
|
4794
|
+
function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4795
|
+
return /* @__PURE__ */ jsx111(
|
|
4704
4796
|
"svg",
|
|
4705
4797
|
{
|
|
4706
4798
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4712,16 +4804,16 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4712
4804
|
strokeWidth,
|
|
4713
4805
|
strokeLinecap: "round",
|
|
4714
4806
|
strokeLinejoin: "round",
|
|
4715
|
-
"aria-hidden":
|
|
4807
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4716
4808
|
...rest,
|
|
4717
|
-
children: /* @__PURE__ */
|
|
4809
|
+
children: /* @__PURE__ */ jsx111("polygon", { points: "6 3 20 12 6 21 6 3" })
|
|
4718
4810
|
}
|
|
4719
4811
|
);
|
|
4720
4812
|
}
|
|
4721
4813
|
|
|
4722
4814
|
// src/components/icons/plus/index.tsx
|
|
4723
|
-
import { jsx as
|
|
4724
|
-
function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4815
|
+
import { jsx as jsx112, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
4816
|
+
function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4725
4817
|
return /* @__PURE__ */ jsxs81(
|
|
4726
4818
|
"svg",
|
|
4727
4819
|
{
|
|
@@ -4734,19 +4826,19 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4734
4826
|
strokeWidth,
|
|
4735
4827
|
strokeLinecap: "round",
|
|
4736
4828
|
strokeLinejoin: "round",
|
|
4737
|
-
"aria-hidden":
|
|
4829
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4738
4830
|
...rest,
|
|
4739
4831
|
children: [
|
|
4740
|
-
/* @__PURE__ */
|
|
4741
|
-
/* @__PURE__ */
|
|
4832
|
+
/* @__PURE__ */ jsx112("path", { d: "M5 12h14" }),
|
|
4833
|
+
/* @__PURE__ */ jsx112("path", { d: "M12 5v14" })
|
|
4742
4834
|
]
|
|
4743
4835
|
}
|
|
4744
4836
|
);
|
|
4745
4837
|
}
|
|
4746
4838
|
|
|
4747
4839
|
// src/components/icons/printer/index.tsx
|
|
4748
|
-
import { jsx as
|
|
4749
|
-
function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4840
|
+
import { jsx as jsx113, jsxs as jsxs82 } from "react/jsx-runtime";
|
|
4841
|
+
function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4750
4842
|
return /* @__PURE__ */ jsxs82(
|
|
4751
4843
|
"svg",
|
|
4752
4844
|
{
|
|
@@ -4759,20 +4851,20 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4759
4851
|
strokeWidth,
|
|
4760
4852
|
strokeLinecap: "round",
|
|
4761
4853
|
strokeLinejoin: "round",
|
|
4762
|
-
"aria-hidden":
|
|
4854
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4763
4855
|
...rest,
|
|
4764
4856
|
children: [
|
|
4765
|
-
/* @__PURE__ */
|
|
4766
|
-
/* @__PURE__ */
|
|
4767
|
-
/* @__PURE__ */
|
|
4857
|
+
/* @__PURE__ */ jsx113("polyline", { points: "6 9 6 2 18 2 18 9" }),
|
|
4858
|
+
/* @__PURE__ */ jsx113("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
|
|
4859
|
+
/* @__PURE__ */ jsx113("rect", { width: "12", height: "8", x: "6", y: "14" })
|
|
4768
4860
|
]
|
|
4769
4861
|
}
|
|
4770
4862
|
);
|
|
4771
4863
|
}
|
|
4772
4864
|
|
|
4773
4865
|
// src/components/icons/redo/index.tsx
|
|
4774
|
-
import { jsx as
|
|
4775
|
-
function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4866
|
+
import { jsx as jsx114, jsxs as jsxs83 } from "react/jsx-runtime";
|
|
4867
|
+
function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4776
4868
|
return /* @__PURE__ */ jsxs83(
|
|
4777
4869
|
"svg",
|
|
4778
4870
|
{
|
|
@@ -4785,19 +4877,19 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4785
4877
|
strokeWidth,
|
|
4786
4878
|
strokeLinecap: "round",
|
|
4787
4879
|
strokeLinejoin: "round",
|
|
4788
|
-
"aria-hidden":
|
|
4880
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4789
4881
|
...rest,
|
|
4790
4882
|
children: [
|
|
4791
|
-
/* @__PURE__ */
|
|
4792
|
-
/* @__PURE__ */
|
|
4883
|
+
/* @__PURE__ */ jsx114("path", { d: "M21 7v6h-6" }),
|
|
4884
|
+
/* @__PURE__ */ jsx114("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
|
|
4793
4885
|
]
|
|
4794
4886
|
}
|
|
4795
4887
|
);
|
|
4796
4888
|
}
|
|
4797
4889
|
|
|
4798
4890
|
// src/components/icons/refresh-cw/index.tsx
|
|
4799
|
-
import { jsx as
|
|
4800
|
-
function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4891
|
+
import { jsx as jsx115, jsxs as jsxs84 } from "react/jsx-runtime";
|
|
4892
|
+
function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4801
4893
|
return /* @__PURE__ */ jsxs84(
|
|
4802
4894
|
"svg",
|
|
4803
4895
|
{
|
|
@@ -4810,21 +4902,21 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4810
4902
|
strokeWidth,
|
|
4811
4903
|
strokeLinecap: "round",
|
|
4812
4904
|
strokeLinejoin: "round",
|
|
4813
|
-
"aria-hidden":
|
|
4905
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4814
4906
|
...rest,
|
|
4815
4907
|
children: [
|
|
4816
|
-
/* @__PURE__ */
|
|
4817
|
-
/* @__PURE__ */
|
|
4818
|
-
/* @__PURE__ */
|
|
4819
|
-
/* @__PURE__ */
|
|
4908
|
+
/* @__PURE__ */ jsx115("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
|
|
4909
|
+
/* @__PURE__ */ jsx115("path", { d: "M21 3v5h-5" }),
|
|
4910
|
+
/* @__PURE__ */ jsx115("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
|
|
4911
|
+
/* @__PURE__ */ jsx115("path", { d: "M3 21v-5h5" })
|
|
4820
4912
|
]
|
|
4821
4913
|
}
|
|
4822
4914
|
);
|
|
4823
4915
|
}
|
|
4824
4916
|
|
|
4825
4917
|
// src/components/icons/save/index.tsx
|
|
4826
|
-
import { jsx as
|
|
4827
|
-
function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4918
|
+
import { jsx as jsx116, jsxs as jsxs85 } from "react/jsx-runtime";
|
|
4919
|
+
function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4828
4920
|
return /* @__PURE__ */ jsxs85(
|
|
4829
4921
|
"svg",
|
|
4830
4922
|
{
|
|
@@ -4837,20 +4929,20 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4837
4929
|
strokeWidth,
|
|
4838
4930
|
strokeLinecap: "round",
|
|
4839
4931
|
strokeLinejoin: "round",
|
|
4840
|
-
"aria-hidden":
|
|
4932
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4841
4933
|
...rest,
|
|
4842
4934
|
children: [
|
|
4843
|
-
/* @__PURE__ */
|
|
4844
|
-
/* @__PURE__ */
|
|
4845
|
-
/* @__PURE__ */
|
|
4935
|
+
/* @__PURE__ */ jsx116("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
|
|
4936
|
+
/* @__PURE__ */ jsx116("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
4937
|
+
/* @__PURE__ */ jsx116("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
4846
4938
|
]
|
|
4847
4939
|
}
|
|
4848
4940
|
);
|
|
4849
4941
|
}
|
|
4850
4942
|
|
|
4851
4943
|
// src/components/icons/search/index.tsx
|
|
4852
|
-
import { jsx as
|
|
4853
|
-
function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4944
|
+
import { jsx as jsx117, jsxs as jsxs86 } from "react/jsx-runtime";
|
|
4945
|
+
function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4854
4946
|
return /* @__PURE__ */ jsxs86(
|
|
4855
4947
|
"svg",
|
|
4856
4948
|
{
|
|
@@ -4863,19 +4955,19 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4863
4955
|
strokeWidth,
|
|
4864
4956
|
strokeLinecap: "round",
|
|
4865
4957
|
strokeLinejoin: "round",
|
|
4866
|
-
"aria-hidden":
|
|
4958
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4867
4959
|
...rest,
|
|
4868
4960
|
children: [
|
|
4869
|
-
/* @__PURE__ */
|
|
4870
|
-
/* @__PURE__ */
|
|
4961
|
+
/* @__PURE__ */ jsx117("circle", { cx: "11", cy: "11", r: "8" }),
|
|
4962
|
+
/* @__PURE__ */ jsx117("path", { d: "m21 21-4.3-4.3" })
|
|
4871
4963
|
]
|
|
4872
4964
|
}
|
|
4873
4965
|
);
|
|
4874
4966
|
}
|
|
4875
4967
|
|
|
4876
4968
|
// src/components/icons/send/index.tsx
|
|
4877
|
-
import { jsx as
|
|
4878
|
-
function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4969
|
+
import { jsx as jsx118, jsxs as jsxs87 } from "react/jsx-runtime";
|
|
4970
|
+
function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4879
4971
|
return /* @__PURE__ */ jsxs87(
|
|
4880
4972
|
"svg",
|
|
4881
4973
|
{
|
|
@@ -4888,19 +4980,19 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4888
4980
|
strokeWidth,
|
|
4889
4981
|
strokeLinecap: "round",
|
|
4890
4982
|
strokeLinejoin: "round",
|
|
4891
|
-
"aria-hidden":
|
|
4983
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4892
4984
|
...rest,
|
|
4893
4985
|
children: [
|
|
4894
|
-
/* @__PURE__ */
|
|
4895
|
-
/* @__PURE__ */
|
|
4986
|
+
/* @__PURE__ */ jsx118("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
|
|
4987
|
+
/* @__PURE__ */ jsx118("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
|
|
4896
4988
|
]
|
|
4897
4989
|
}
|
|
4898
4990
|
);
|
|
4899
4991
|
}
|
|
4900
4992
|
|
|
4901
4993
|
// src/components/icons/settings/index.tsx
|
|
4902
|
-
import { jsx as
|
|
4903
|
-
function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4994
|
+
import { jsx as jsx119, jsxs as jsxs88 } from "react/jsx-runtime";
|
|
4995
|
+
function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4904
4996
|
return /* @__PURE__ */ jsxs88(
|
|
4905
4997
|
"svg",
|
|
4906
4998
|
{
|
|
@@ -4913,19 +5005,19 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4913
5005
|
strokeWidth,
|
|
4914
5006
|
strokeLinecap: "round",
|
|
4915
5007
|
strokeLinejoin: "round",
|
|
4916
|
-
"aria-hidden":
|
|
5008
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4917
5009
|
...rest,
|
|
4918
5010
|
children: [
|
|
4919
|
-
/* @__PURE__ */
|
|
4920
|
-
/* @__PURE__ */
|
|
5011
|
+
/* @__PURE__ */ jsx119("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
|
|
5012
|
+
/* @__PURE__ */ jsx119("circle", { cx: "12", cy: "12", r: "3" })
|
|
4921
5013
|
]
|
|
4922
5014
|
}
|
|
4923
5015
|
);
|
|
4924
5016
|
}
|
|
4925
5017
|
|
|
4926
5018
|
// src/components/icons/share/index.tsx
|
|
4927
|
-
import { jsx as
|
|
4928
|
-
function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5019
|
+
import { jsx as jsx120, jsxs as jsxs89 } from "react/jsx-runtime";
|
|
5020
|
+
function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4929
5021
|
return /* @__PURE__ */ jsxs89(
|
|
4930
5022
|
"svg",
|
|
4931
5023
|
{
|
|
@@ -4938,21 +5030,21 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4938
5030
|
strokeWidth,
|
|
4939
5031
|
strokeLinecap: "round",
|
|
4940
5032
|
strokeLinejoin: "round",
|
|
4941
|
-
"aria-hidden":
|
|
5033
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4942
5034
|
...rest,
|
|
4943
5035
|
children: [
|
|
4944
|
-
/* @__PURE__ */
|
|
4945
|
-
/* @__PURE__ */
|
|
4946
|
-
/* @__PURE__ */
|
|
5036
|
+
/* @__PURE__ */ jsx120("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
5037
|
+
/* @__PURE__ */ jsx120("polyline", { points: "16 6 12 2 8 6" }),
|
|
5038
|
+
/* @__PURE__ */ jsx120("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
|
|
4947
5039
|
]
|
|
4948
5040
|
}
|
|
4949
5041
|
);
|
|
4950
5042
|
}
|
|
4951
5043
|
|
|
4952
5044
|
// src/components/icons/shield/index.tsx
|
|
4953
|
-
import { jsx as
|
|
4954
|
-
function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4955
|
-
return /* @__PURE__ */
|
|
5045
|
+
import { jsx as jsx121 } from "react/jsx-runtime";
|
|
5046
|
+
function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5047
|
+
return /* @__PURE__ */ jsx121(
|
|
4956
5048
|
"svg",
|
|
4957
5049
|
{
|
|
4958
5050
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4964,16 +5056,16 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4964
5056
|
strokeWidth,
|
|
4965
5057
|
strokeLinecap: "round",
|
|
4966
5058
|
strokeLinejoin: "round",
|
|
4967
|
-
"aria-hidden":
|
|
5059
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4968
5060
|
...rest,
|
|
4969
|
-
children: /* @__PURE__ */
|
|
5061
|
+
children: /* @__PURE__ */ jsx121("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" })
|
|
4970
5062
|
}
|
|
4971
5063
|
);
|
|
4972
5064
|
}
|
|
4973
5065
|
|
|
4974
5066
|
// src/components/icons/shield-check/index.tsx
|
|
4975
|
-
import { jsx as
|
|
4976
|
-
function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5067
|
+
import { jsx as jsx122, jsxs as jsxs90 } from "react/jsx-runtime";
|
|
5068
|
+
function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4977
5069
|
return /* @__PURE__ */ jsxs90(
|
|
4978
5070
|
"svg",
|
|
4979
5071
|
{
|
|
@@ -4986,19 +5078,19 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4986
5078
|
strokeWidth,
|
|
4987
5079
|
strokeLinecap: "round",
|
|
4988
5080
|
strokeLinejoin: "round",
|
|
4989
|
-
"aria-hidden":
|
|
5081
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4990
5082
|
...rest,
|
|
4991
5083
|
children: [
|
|
4992
|
-
/* @__PURE__ */
|
|
4993
|
-
/* @__PURE__ */
|
|
5084
|
+
/* @__PURE__ */ jsx122("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
5085
|
+
/* @__PURE__ */ jsx122("path", { d: "m9 12 2 2 4-4" })
|
|
4994
5086
|
]
|
|
4995
5087
|
}
|
|
4996
5088
|
);
|
|
4997
5089
|
}
|
|
4998
5090
|
|
|
4999
5091
|
// src/components/icons/shopping-bag/index.tsx
|
|
5000
|
-
import { jsx as
|
|
5001
|
-
function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5092
|
+
import { jsx as jsx123, jsxs as jsxs91 } from "react/jsx-runtime";
|
|
5093
|
+
function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5002
5094
|
return /* @__PURE__ */ jsxs91(
|
|
5003
5095
|
"svg",
|
|
5004
5096
|
{
|
|
@@ -5011,20 +5103,20 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5011
5103
|
strokeWidth,
|
|
5012
5104
|
strokeLinecap: "round",
|
|
5013
5105
|
strokeLinejoin: "round",
|
|
5014
|
-
"aria-hidden":
|
|
5106
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5015
5107
|
...rest,
|
|
5016
5108
|
children: [
|
|
5017
|
-
/* @__PURE__ */
|
|
5018
|
-
/* @__PURE__ */
|
|
5019
|
-
/* @__PURE__ */
|
|
5109
|
+
/* @__PURE__ */ jsx123("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
|
|
5110
|
+
/* @__PURE__ */ jsx123("path", { d: "M3 6h18" }),
|
|
5111
|
+
/* @__PURE__ */ jsx123("path", { d: "M16 10a4 4 0 0 1-8 0" })
|
|
5020
5112
|
]
|
|
5021
5113
|
}
|
|
5022
5114
|
);
|
|
5023
5115
|
}
|
|
5024
5116
|
|
|
5025
5117
|
// src/components/icons/shopping-cart/index.tsx
|
|
5026
|
-
import { jsx as
|
|
5027
|
-
function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5118
|
+
import { jsx as jsx124, jsxs as jsxs92 } from "react/jsx-runtime";
|
|
5119
|
+
function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5028
5120
|
return /* @__PURE__ */ jsxs92(
|
|
5029
5121
|
"svg",
|
|
5030
5122
|
{
|
|
@@ -5037,20 +5129,20 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5037
5129
|
strokeWidth,
|
|
5038
5130
|
strokeLinecap: "round",
|
|
5039
5131
|
strokeLinejoin: "round",
|
|
5040
|
-
"aria-hidden":
|
|
5132
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5041
5133
|
...rest,
|
|
5042
5134
|
children: [
|
|
5043
|
-
/* @__PURE__ */
|
|
5044
|
-
/* @__PURE__ */
|
|
5045
|
-
/* @__PURE__ */
|
|
5135
|
+
/* @__PURE__ */ jsx124("circle", { cx: "8", cy: "21", r: "1" }),
|
|
5136
|
+
/* @__PURE__ */ jsx124("circle", { cx: "19", cy: "21", r: "1" }),
|
|
5137
|
+
/* @__PURE__ */ jsx124("path", { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" })
|
|
5046
5138
|
]
|
|
5047
5139
|
}
|
|
5048
5140
|
);
|
|
5049
5141
|
}
|
|
5050
5142
|
|
|
5051
5143
|
// src/components/icons/sidebar/index.tsx
|
|
5052
|
-
import { jsx as
|
|
5053
|
-
function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5144
|
+
import { jsx as jsx125, jsxs as jsxs93 } from "react/jsx-runtime";
|
|
5145
|
+
function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5054
5146
|
return /* @__PURE__ */ jsxs93(
|
|
5055
5147
|
"svg",
|
|
5056
5148
|
{
|
|
@@ -5063,19 +5155,19 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5063
5155
|
strokeWidth,
|
|
5064
5156
|
strokeLinecap: "round",
|
|
5065
5157
|
strokeLinejoin: "round",
|
|
5066
|
-
"aria-hidden":
|
|
5158
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5067
5159
|
...rest,
|
|
5068
5160
|
children: [
|
|
5069
|
-
/* @__PURE__ */
|
|
5070
|
-
/* @__PURE__ */
|
|
5161
|
+
/* @__PURE__ */ jsx125("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
5162
|
+
/* @__PURE__ */ jsx125("path", { d: "M9 3v18" })
|
|
5071
5163
|
]
|
|
5072
5164
|
}
|
|
5073
5165
|
);
|
|
5074
5166
|
}
|
|
5075
5167
|
|
|
5076
5168
|
// src/components/icons/skip-back/index.tsx
|
|
5077
|
-
import { jsx as
|
|
5078
|
-
function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5169
|
+
import { jsx as jsx126, jsxs as jsxs94 } from "react/jsx-runtime";
|
|
5170
|
+
function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5079
5171
|
return /* @__PURE__ */ jsxs94(
|
|
5080
5172
|
"svg",
|
|
5081
5173
|
{
|
|
@@ -5088,19 +5180,19 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5088
5180
|
strokeWidth,
|
|
5089
5181
|
strokeLinecap: "round",
|
|
5090
5182
|
strokeLinejoin: "round",
|
|
5091
|
-
"aria-hidden":
|
|
5183
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5092
5184
|
...rest,
|
|
5093
5185
|
children: [
|
|
5094
|
-
/* @__PURE__ */
|
|
5095
|
-
/* @__PURE__ */
|
|
5186
|
+
/* @__PURE__ */ jsx126("polygon", { points: "19 20 9 12 19 4 19 20" }),
|
|
5187
|
+
/* @__PURE__ */ jsx126("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
|
|
5096
5188
|
]
|
|
5097
5189
|
}
|
|
5098
5190
|
);
|
|
5099
5191
|
}
|
|
5100
5192
|
|
|
5101
5193
|
// src/components/icons/skip-forward/index.tsx
|
|
5102
|
-
import { jsx as
|
|
5103
|
-
function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5194
|
+
import { jsx as jsx127, jsxs as jsxs95 } from "react/jsx-runtime";
|
|
5195
|
+
function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5104
5196
|
return /* @__PURE__ */ jsxs95(
|
|
5105
5197
|
"svg",
|
|
5106
5198
|
{
|
|
@@ -5113,19 +5205,19 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5113
5205
|
strokeWidth,
|
|
5114
5206
|
strokeLinecap: "round",
|
|
5115
5207
|
strokeLinejoin: "round",
|
|
5116
|
-
"aria-hidden":
|
|
5208
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5117
5209
|
...rest,
|
|
5118
5210
|
children: [
|
|
5119
|
-
/* @__PURE__ */
|
|
5120
|
-
/* @__PURE__ */
|
|
5211
|
+
/* @__PURE__ */ jsx127("polygon", { points: "5 4 15 12 5 20 5 4" }),
|
|
5212
|
+
/* @__PURE__ */ jsx127("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
|
|
5121
5213
|
]
|
|
5122
5214
|
}
|
|
5123
5215
|
);
|
|
5124
5216
|
}
|
|
5125
5217
|
|
|
5126
5218
|
// src/components/icons/sliders/index.tsx
|
|
5127
|
-
import { jsx as
|
|
5128
|
-
function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5219
|
+
import { jsx as jsx128, jsxs as jsxs96 } from "react/jsx-runtime";
|
|
5220
|
+
function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5129
5221
|
return /* @__PURE__ */ jsxs96(
|
|
5130
5222
|
"svg",
|
|
5131
5223
|
{
|
|
@@ -5138,26 +5230,26 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5138
5230
|
strokeWidth,
|
|
5139
5231
|
strokeLinecap: "round",
|
|
5140
5232
|
strokeLinejoin: "round",
|
|
5141
|
-
"aria-hidden":
|
|
5233
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5142
5234
|
...rest,
|
|
5143
5235
|
children: [
|
|
5144
|
-
/* @__PURE__ */
|
|
5145
|
-
/* @__PURE__ */
|
|
5146
|
-
/* @__PURE__ */
|
|
5147
|
-
/* @__PURE__ */
|
|
5148
|
-
/* @__PURE__ */
|
|
5149
|
-
/* @__PURE__ */
|
|
5150
|
-
/* @__PURE__ */
|
|
5151
|
-
/* @__PURE__ */
|
|
5152
|
-
/* @__PURE__ */
|
|
5236
|
+
/* @__PURE__ */ jsx128("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
|
|
5237
|
+
/* @__PURE__ */ jsx128("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
|
|
5238
|
+
/* @__PURE__ */ jsx128("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
|
|
5239
|
+
/* @__PURE__ */ jsx128("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
|
|
5240
|
+
/* @__PURE__ */ jsx128("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
|
|
5241
|
+
/* @__PURE__ */ jsx128("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
|
|
5242
|
+
/* @__PURE__ */ jsx128("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
|
|
5243
|
+
/* @__PURE__ */ jsx128("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
|
|
5244
|
+
/* @__PURE__ */ jsx128("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
|
|
5153
5245
|
]
|
|
5154
5246
|
}
|
|
5155
5247
|
);
|
|
5156
5248
|
}
|
|
5157
5249
|
|
|
5158
5250
|
// src/components/icons/smile/index.tsx
|
|
5159
|
-
import { jsx as
|
|
5160
|
-
function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5251
|
+
import { jsx as jsx129, jsxs as jsxs97 } from "react/jsx-runtime";
|
|
5252
|
+
function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5161
5253
|
return /* @__PURE__ */ jsxs97(
|
|
5162
5254
|
"svg",
|
|
5163
5255
|
{
|
|
@@ -5170,22 +5262,22 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5170
5262
|
strokeWidth,
|
|
5171
5263
|
strokeLinecap: "round",
|
|
5172
5264
|
strokeLinejoin: "round",
|
|
5173
|
-
"aria-hidden":
|
|
5265
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5174
5266
|
...rest,
|
|
5175
5267
|
children: [
|
|
5176
|
-
/* @__PURE__ */
|
|
5177
|
-
/* @__PURE__ */
|
|
5178
|
-
/* @__PURE__ */
|
|
5179
|
-
/* @__PURE__ */
|
|
5268
|
+
/* @__PURE__ */ jsx129("circle", { cx: "12", cy: "12", r: "10" }),
|
|
5269
|
+
/* @__PURE__ */ jsx129("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
|
|
5270
|
+
/* @__PURE__ */ jsx129("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
|
|
5271
|
+
/* @__PURE__ */ jsx129("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
|
|
5180
5272
|
]
|
|
5181
5273
|
}
|
|
5182
5274
|
);
|
|
5183
5275
|
}
|
|
5184
5276
|
|
|
5185
5277
|
// src/components/icons/star/index.tsx
|
|
5186
|
-
import { jsx as
|
|
5187
|
-
function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5188
|
-
return /* @__PURE__ */
|
|
5278
|
+
import { jsx as jsx130 } from "react/jsx-runtime";
|
|
5279
|
+
function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5280
|
+
return /* @__PURE__ */ jsx130(
|
|
5189
5281
|
"svg",
|
|
5190
5282
|
{
|
|
5191
5283
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5197,16 +5289,16 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5197
5289
|
strokeWidth,
|
|
5198
5290
|
strokeLinecap: "round",
|
|
5199
5291
|
strokeLinejoin: "round",
|
|
5200
|
-
"aria-hidden":
|
|
5292
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5201
5293
|
...rest,
|
|
5202
|
-
children: /* @__PURE__ */
|
|
5294
|
+
children: /* @__PURE__ */ jsx130("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
|
|
5203
5295
|
}
|
|
5204
5296
|
);
|
|
5205
5297
|
}
|
|
5206
5298
|
|
|
5207
5299
|
// src/components/icons/sun/index.tsx
|
|
5208
|
-
import { jsx as
|
|
5209
|
-
function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5300
|
+
import { jsx as jsx131, jsxs as jsxs98 } from "react/jsx-runtime";
|
|
5301
|
+
function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5210
5302
|
return /* @__PURE__ */ jsxs98(
|
|
5211
5303
|
"svg",
|
|
5212
5304
|
{
|
|
@@ -5219,26 +5311,26 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5219
5311
|
strokeWidth,
|
|
5220
5312
|
strokeLinecap: "round",
|
|
5221
5313
|
strokeLinejoin: "round",
|
|
5222
|
-
"aria-hidden":
|
|
5314
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5223
5315
|
...rest,
|
|
5224
5316
|
children: [
|
|
5225
|
-
/* @__PURE__ */
|
|
5226
|
-
/* @__PURE__ */
|
|
5227
|
-
/* @__PURE__ */
|
|
5228
|
-
/* @__PURE__ */
|
|
5229
|
-
/* @__PURE__ */
|
|
5230
|
-
/* @__PURE__ */
|
|
5231
|
-
/* @__PURE__ */
|
|
5232
|
-
/* @__PURE__ */
|
|
5233
|
-
/* @__PURE__ */
|
|
5317
|
+
/* @__PURE__ */ jsx131("circle", { cx: "12", cy: "12", r: "4" }),
|
|
5318
|
+
/* @__PURE__ */ jsx131("path", { d: "M12 2v2" }),
|
|
5319
|
+
/* @__PURE__ */ jsx131("path", { d: "M12 20v2" }),
|
|
5320
|
+
/* @__PURE__ */ jsx131("path", { d: "m4.93 4.93 1.41 1.41" }),
|
|
5321
|
+
/* @__PURE__ */ jsx131("path", { d: "m17.66 17.66 1.41 1.41" }),
|
|
5322
|
+
/* @__PURE__ */ jsx131("path", { d: "M2 12h2" }),
|
|
5323
|
+
/* @__PURE__ */ jsx131("path", { d: "M20 12h2" }),
|
|
5324
|
+
/* @__PURE__ */ jsx131("path", { d: "m6.34 17.66-1.41 1.41" }),
|
|
5325
|
+
/* @__PURE__ */ jsx131("path", { d: "m19.07 4.93-1.41 1.41" })
|
|
5234
5326
|
]
|
|
5235
5327
|
}
|
|
5236
5328
|
);
|
|
5237
5329
|
}
|
|
5238
5330
|
|
|
5239
5331
|
// src/components/icons/tag/index.tsx
|
|
5240
|
-
import { jsx as
|
|
5241
|
-
function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5332
|
+
import { jsx as jsx132, jsxs as jsxs99 } from "react/jsx-runtime";
|
|
5333
|
+
function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5242
5334
|
return /* @__PURE__ */ jsxs99(
|
|
5243
5335
|
"svg",
|
|
5244
5336
|
{
|
|
@@ -5251,19 +5343,19 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5251
5343
|
strokeWidth,
|
|
5252
5344
|
strokeLinecap: "round",
|
|
5253
5345
|
strokeLinejoin: "round",
|
|
5254
|
-
"aria-hidden":
|
|
5346
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5255
5347
|
...rest,
|
|
5256
5348
|
children: [
|
|
5257
|
-
/* @__PURE__ */
|
|
5258
|
-
/* @__PURE__ */
|
|
5349
|
+
/* @__PURE__ */ jsx132("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
|
|
5350
|
+
/* @__PURE__ */ jsx132("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
|
|
5259
5351
|
]
|
|
5260
5352
|
}
|
|
5261
5353
|
);
|
|
5262
5354
|
}
|
|
5263
5355
|
|
|
5264
5356
|
// src/components/icons/thumbs-down/index.tsx
|
|
5265
|
-
import { jsx as
|
|
5266
|
-
function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5357
|
+
import { jsx as jsx133, jsxs as jsxs100 } from "react/jsx-runtime";
|
|
5358
|
+
function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5267
5359
|
return /* @__PURE__ */ jsxs100(
|
|
5268
5360
|
"svg",
|
|
5269
5361
|
{
|
|
@@ -5276,19 +5368,19 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5276
5368
|
strokeWidth,
|
|
5277
5369
|
strokeLinecap: "round",
|
|
5278
5370
|
strokeLinejoin: "round",
|
|
5279
|
-
"aria-hidden":
|
|
5371
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5280
5372
|
...rest,
|
|
5281
5373
|
children: [
|
|
5282
|
-
/* @__PURE__ */
|
|
5283
|
-
/* @__PURE__ */
|
|
5374
|
+
/* @__PURE__ */ jsx133("path", { d: "M17 14V2" }),
|
|
5375
|
+
/* @__PURE__ */ jsx133("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
|
|
5284
5376
|
]
|
|
5285
5377
|
}
|
|
5286
5378
|
);
|
|
5287
5379
|
}
|
|
5288
5380
|
|
|
5289
5381
|
// src/components/icons/thumbs-up/index.tsx
|
|
5290
|
-
import { jsx as
|
|
5291
|
-
function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5382
|
+
import { jsx as jsx134, jsxs as jsxs101 } from "react/jsx-runtime";
|
|
5383
|
+
function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5292
5384
|
return /* @__PURE__ */ jsxs101(
|
|
5293
5385
|
"svg",
|
|
5294
5386
|
{
|
|
@@ -5301,19 +5393,19 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5301
5393
|
strokeWidth,
|
|
5302
5394
|
strokeLinecap: "round",
|
|
5303
5395
|
strokeLinejoin: "round",
|
|
5304
|
-
"aria-hidden":
|
|
5396
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5305
5397
|
...rest,
|
|
5306
5398
|
children: [
|
|
5307
|
-
/* @__PURE__ */
|
|
5308
|
-
/* @__PURE__ */
|
|
5399
|
+
/* @__PURE__ */ jsx134("path", { d: "M7 10v12" }),
|
|
5400
|
+
/* @__PURE__ */ jsx134("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
|
|
5309
5401
|
]
|
|
5310
5402
|
}
|
|
5311
5403
|
);
|
|
5312
5404
|
}
|
|
5313
5405
|
|
|
5314
5406
|
// src/components/icons/trash/index.tsx
|
|
5315
|
-
import { jsx as
|
|
5316
|
-
function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5407
|
+
import { jsx as jsx135, jsxs as jsxs102 } from "react/jsx-runtime";
|
|
5408
|
+
function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5317
5409
|
return /* @__PURE__ */ jsxs102(
|
|
5318
5410
|
"svg",
|
|
5319
5411
|
{
|
|
@@ -5326,20 +5418,20 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5326
5418
|
strokeWidth,
|
|
5327
5419
|
strokeLinecap: "round",
|
|
5328
5420
|
strokeLinejoin: "round",
|
|
5329
|
-
"aria-hidden":
|
|
5421
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5330
5422
|
...rest,
|
|
5331
5423
|
children: [
|
|
5332
|
-
/* @__PURE__ */
|
|
5333
|
-
/* @__PURE__ */
|
|
5334
|
-
/* @__PURE__ */
|
|
5424
|
+
/* @__PURE__ */ jsx135("path", { d: "M3 6h18" }),
|
|
5425
|
+
/* @__PURE__ */ jsx135("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
5426
|
+
/* @__PURE__ */ jsx135("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
5335
5427
|
]
|
|
5336
5428
|
}
|
|
5337
5429
|
);
|
|
5338
5430
|
}
|
|
5339
5431
|
|
|
5340
5432
|
// src/components/icons/undo/index.tsx
|
|
5341
|
-
import { jsx as
|
|
5342
|
-
function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5433
|
+
import { jsx as jsx136, jsxs as jsxs103 } from "react/jsx-runtime";
|
|
5434
|
+
function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5343
5435
|
return /* @__PURE__ */ jsxs103(
|
|
5344
5436
|
"svg",
|
|
5345
5437
|
{
|
|
@@ -5352,19 +5444,19 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5352
5444
|
strokeWidth,
|
|
5353
5445
|
strokeLinecap: "round",
|
|
5354
5446
|
strokeLinejoin: "round",
|
|
5355
|
-
"aria-hidden":
|
|
5447
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5356
5448
|
...rest,
|
|
5357
5449
|
children: [
|
|
5358
|
-
/* @__PURE__ */
|
|
5359
|
-
/* @__PURE__ */
|
|
5450
|
+
/* @__PURE__ */ jsx136("path", { d: "M3 7v6h6" }),
|
|
5451
|
+
/* @__PURE__ */ jsx136("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
|
|
5360
5452
|
]
|
|
5361
5453
|
}
|
|
5362
5454
|
);
|
|
5363
5455
|
}
|
|
5364
5456
|
|
|
5365
5457
|
// src/components/icons/unlock/index.tsx
|
|
5366
|
-
import { jsx as
|
|
5367
|
-
function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5458
|
+
import { jsx as jsx137, jsxs as jsxs104 } from "react/jsx-runtime";
|
|
5459
|
+
function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5368
5460
|
return /* @__PURE__ */ jsxs104(
|
|
5369
5461
|
"svg",
|
|
5370
5462
|
{
|
|
@@ -5377,19 +5469,19 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5377
5469
|
strokeWidth,
|
|
5378
5470
|
strokeLinecap: "round",
|
|
5379
5471
|
strokeLinejoin: "round",
|
|
5380
|
-
"aria-hidden":
|
|
5472
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5381
5473
|
...rest,
|
|
5382
5474
|
children: [
|
|
5383
|
-
/* @__PURE__ */
|
|
5384
|
-
/* @__PURE__ */
|
|
5475
|
+
/* @__PURE__ */ jsx137("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
5476
|
+
/* @__PURE__ */ jsx137("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
|
|
5385
5477
|
]
|
|
5386
5478
|
}
|
|
5387
5479
|
);
|
|
5388
5480
|
}
|
|
5389
5481
|
|
|
5390
5482
|
// src/components/icons/upload/index.tsx
|
|
5391
|
-
import { jsx as
|
|
5392
|
-
function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5483
|
+
import { jsx as jsx138, jsxs as jsxs105 } from "react/jsx-runtime";
|
|
5484
|
+
function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5393
5485
|
return /* @__PURE__ */ jsxs105(
|
|
5394
5486
|
"svg",
|
|
5395
5487
|
{
|
|
@@ -5402,20 +5494,20 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5402
5494
|
strokeWidth,
|
|
5403
5495
|
strokeLinecap: "round",
|
|
5404
5496
|
strokeLinejoin: "round",
|
|
5405
|
-
"aria-hidden":
|
|
5497
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5406
5498
|
...rest,
|
|
5407
5499
|
children: [
|
|
5408
|
-
/* @__PURE__ */
|
|
5409
|
-
/* @__PURE__ */
|
|
5410
|
-
/* @__PURE__ */
|
|
5500
|
+
/* @__PURE__ */ jsx138("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
5501
|
+
/* @__PURE__ */ jsx138("polyline", { points: "17 8 12 3 7 8" }),
|
|
5502
|
+
/* @__PURE__ */ jsx138("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
|
|
5411
5503
|
]
|
|
5412
5504
|
}
|
|
5413
5505
|
);
|
|
5414
5506
|
}
|
|
5415
5507
|
|
|
5416
5508
|
// src/components/icons/user/index.tsx
|
|
5417
|
-
import { jsx as
|
|
5418
|
-
function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5509
|
+
import { jsx as jsx139, jsxs as jsxs106 } from "react/jsx-runtime";
|
|
5510
|
+
function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5419
5511
|
return /* @__PURE__ */ jsxs106(
|
|
5420
5512
|
"svg",
|
|
5421
5513
|
{
|
|
@@ -5428,19 +5520,19 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5428
5520
|
strokeWidth,
|
|
5429
5521
|
strokeLinecap: "round",
|
|
5430
5522
|
strokeLinejoin: "round",
|
|
5431
|
-
"aria-hidden":
|
|
5523
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5432
5524
|
...rest,
|
|
5433
5525
|
children: [
|
|
5434
|
-
/* @__PURE__ */
|
|
5435
|
-
/* @__PURE__ */
|
|
5526
|
+
/* @__PURE__ */ jsx139("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
|
|
5527
|
+
/* @__PURE__ */ jsx139("circle", { cx: "12", cy: "7", r: "4" })
|
|
5436
5528
|
]
|
|
5437
5529
|
}
|
|
5438
5530
|
);
|
|
5439
5531
|
}
|
|
5440
5532
|
|
|
5441
5533
|
// src/components/icons/user-check/index.tsx
|
|
5442
|
-
import { jsx as
|
|
5443
|
-
function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5534
|
+
import { jsx as jsx140, jsxs as jsxs107 } from "react/jsx-runtime";
|
|
5535
|
+
function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5444
5536
|
return /* @__PURE__ */ jsxs107(
|
|
5445
5537
|
"svg",
|
|
5446
5538
|
{
|
|
@@ -5453,20 +5545,20 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5453
5545
|
strokeWidth,
|
|
5454
5546
|
strokeLinecap: "round",
|
|
5455
5547
|
strokeLinejoin: "round",
|
|
5456
|
-
"aria-hidden":
|
|
5548
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5457
5549
|
...rest,
|
|
5458
5550
|
children: [
|
|
5459
|
-
/* @__PURE__ */
|
|
5460
|
-
/* @__PURE__ */
|
|
5461
|
-
/* @__PURE__ */
|
|
5551
|
+
/* @__PURE__ */ jsx140("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5552
|
+
/* @__PURE__ */ jsx140("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5553
|
+
/* @__PURE__ */ jsx140("polyline", { points: "16 11 18 13 22 9" })
|
|
5462
5554
|
]
|
|
5463
5555
|
}
|
|
5464
5556
|
);
|
|
5465
5557
|
}
|
|
5466
5558
|
|
|
5467
5559
|
// src/components/icons/user-plus/index.tsx
|
|
5468
|
-
import { jsx as
|
|
5469
|
-
function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5560
|
+
import { jsx as jsx141, jsxs as jsxs108 } from "react/jsx-runtime";
|
|
5561
|
+
function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5470
5562
|
return /* @__PURE__ */ jsxs108(
|
|
5471
5563
|
"svg",
|
|
5472
5564
|
{
|
|
@@ -5479,21 +5571,21 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5479
5571
|
strokeWidth,
|
|
5480
5572
|
strokeLinecap: "round",
|
|
5481
5573
|
strokeLinejoin: "round",
|
|
5482
|
-
"aria-hidden":
|
|
5574
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5483
5575
|
...rest,
|
|
5484
5576
|
children: [
|
|
5485
|
-
/* @__PURE__ */
|
|
5486
|
-
/* @__PURE__ */
|
|
5487
|
-
/* @__PURE__ */
|
|
5488
|
-
/* @__PURE__ */
|
|
5577
|
+
/* @__PURE__ */ jsx141("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5578
|
+
/* @__PURE__ */ jsx141("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5579
|
+
/* @__PURE__ */ jsx141("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
|
|
5580
|
+
/* @__PURE__ */ jsx141("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
|
|
5489
5581
|
]
|
|
5490
5582
|
}
|
|
5491
5583
|
);
|
|
5492
5584
|
}
|
|
5493
5585
|
|
|
5494
5586
|
// src/components/icons/users/index.tsx
|
|
5495
|
-
import { jsx as
|
|
5496
|
-
function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5587
|
+
import { jsx as jsx142, jsxs as jsxs109 } from "react/jsx-runtime";
|
|
5588
|
+
function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5497
5589
|
return /* @__PURE__ */ jsxs109(
|
|
5498
5590
|
"svg",
|
|
5499
5591
|
{
|
|
@@ -5506,21 +5598,21 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5506
5598
|
strokeWidth,
|
|
5507
5599
|
strokeLinecap: "round",
|
|
5508
5600
|
strokeLinejoin: "round",
|
|
5509
|
-
"aria-hidden":
|
|
5601
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5510
5602
|
...rest,
|
|
5511
5603
|
children: [
|
|
5512
|
-
/* @__PURE__ */
|
|
5513
|
-
/* @__PURE__ */
|
|
5514
|
-
/* @__PURE__ */
|
|
5515
|
-
/* @__PURE__ */
|
|
5604
|
+
/* @__PURE__ */ jsx142("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5605
|
+
/* @__PURE__ */ jsx142("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5606
|
+
/* @__PURE__ */ jsx142("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
5607
|
+
/* @__PURE__ */ jsx142("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
|
|
5516
5608
|
]
|
|
5517
5609
|
}
|
|
5518
5610
|
);
|
|
5519
5611
|
}
|
|
5520
5612
|
|
|
5521
5613
|
// src/components/icons/volume-2/index.tsx
|
|
5522
|
-
import { jsx as
|
|
5523
|
-
function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5614
|
+
import { jsx as jsx143, jsxs as jsxs110 } from "react/jsx-runtime";
|
|
5615
|
+
function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5524
5616
|
return /* @__PURE__ */ jsxs110(
|
|
5525
5617
|
"svg",
|
|
5526
5618
|
{
|
|
@@ -5533,20 +5625,20 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5533
5625
|
strokeWidth,
|
|
5534
5626
|
strokeLinecap: "round",
|
|
5535
5627
|
strokeLinejoin: "round",
|
|
5536
|
-
"aria-hidden":
|
|
5628
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5537
5629
|
...rest,
|
|
5538
5630
|
children: [
|
|
5539
|
-
/* @__PURE__ */
|
|
5540
|
-
/* @__PURE__ */
|
|
5541
|
-
/* @__PURE__ */
|
|
5631
|
+
/* @__PURE__ */ jsx143("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5632
|
+
/* @__PURE__ */ jsx143("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
|
|
5633
|
+
/* @__PURE__ */ jsx143("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
|
|
5542
5634
|
]
|
|
5543
5635
|
}
|
|
5544
5636
|
);
|
|
5545
5637
|
}
|
|
5546
5638
|
|
|
5547
5639
|
// src/components/icons/volume-x/index.tsx
|
|
5548
|
-
import { jsx as
|
|
5549
|
-
function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5640
|
+
import { jsx as jsx144, jsxs as jsxs111 } from "react/jsx-runtime";
|
|
5641
|
+
function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5550
5642
|
return /* @__PURE__ */ jsxs111(
|
|
5551
5643
|
"svg",
|
|
5552
5644
|
{
|
|
@@ -5559,20 +5651,20 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5559
5651
|
strokeWidth,
|
|
5560
5652
|
strokeLinecap: "round",
|
|
5561
5653
|
strokeLinejoin: "round",
|
|
5562
|
-
"aria-hidden":
|
|
5654
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5563
5655
|
...rest,
|
|
5564
5656
|
children: [
|
|
5565
|
-
/* @__PURE__ */
|
|
5566
|
-
/* @__PURE__ */
|
|
5567
|
-
/* @__PURE__ */
|
|
5657
|
+
/* @__PURE__ */ jsx144("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5658
|
+
/* @__PURE__ */ jsx144("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
|
|
5659
|
+
/* @__PURE__ */ jsx144("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
|
|
5568
5660
|
]
|
|
5569
5661
|
}
|
|
5570
5662
|
);
|
|
5571
5663
|
}
|
|
5572
5664
|
|
|
5573
5665
|
// src/components/icons/wifi/index.tsx
|
|
5574
|
-
import { jsx as
|
|
5575
|
-
function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5666
|
+
import { jsx as jsx145, jsxs as jsxs112 } from "react/jsx-runtime";
|
|
5667
|
+
function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5576
5668
|
return /* @__PURE__ */ jsxs112(
|
|
5577
5669
|
"svg",
|
|
5578
5670
|
{
|
|
@@ -5585,22 +5677,22 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5585
5677
|
strokeWidth,
|
|
5586
5678
|
strokeLinecap: "round",
|
|
5587
5679
|
strokeLinejoin: "round",
|
|
5588
|
-
"aria-hidden":
|
|
5680
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5589
5681
|
...rest,
|
|
5590
5682
|
children: [
|
|
5591
|
-
/* @__PURE__ */
|
|
5592
|
-
/* @__PURE__ */
|
|
5593
|
-
/* @__PURE__ */
|
|
5594
|
-
/* @__PURE__ */
|
|
5683
|
+
/* @__PURE__ */ jsx145("path", { d: "M12 20h.01" }),
|
|
5684
|
+
/* @__PURE__ */ jsx145("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
|
|
5685
|
+
/* @__PURE__ */ jsx145("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
|
|
5686
|
+
/* @__PURE__ */ jsx145("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
|
|
5595
5687
|
]
|
|
5596
5688
|
}
|
|
5597
5689
|
);
|
|
5598
5690
|
}
|
|
5599
5691
|
|
|
5600
5692
|
// src/components/icons/zap/index.tsx
|
|
5601
|
-
import { jsx as
|
|
5602
|
-
function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5603
|
-
return /* @__PURE__ */
|
|
5693
|
+
import { jsx as jsx146 } from "react/jsx-runtime";
|
|
5694
|
+
function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5695
|
+
return /* @__PURE__ */ jsx146(
|
|
5604
5696
|
"svg",
|
|
5605
5697
|
{
|
|
5606
5698
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5612,9 +5704,9 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5612
5704
|
strokeWidth,
|
|
5613
5705
|
strokeLinecap: "round",
|
|
5614
5706
|
strokeLinejoin: "round",
|
|
5615
|
-
"aria-hidden":
|
|
5707
|
+
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5616
5708
|
...rest,
|
|
5617
|
-
children: /* @__PURE__ */
|
|
5709
|
+
children: /* @__PURE__ */ jsx146("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
|
|
5618
5710
|
}
|
|
5619
5711
|
);
|
|
5620
5712
|
}
|
|
@@ -5660,6 +5752,7 @@ var iconCatalog = [
|
|
|
5660
5752
|
{ name: "FolderIcon", Icon: FolderIcon },
|
|
5661
5753
|
{ name: "FolderOpenIcon", Icon: FolderOpenIcon },
|
|
5662
5754
|
{ name: "GiftIcon", Icon: GiftIcon },
|
|
5755
|
+
{ name: "GitHubIcon", Icon: GitHubIcon },
|
|
5663
5756
|
{ name: "GlobeIcon", Icon: GlobeIcon },
|
|
5664
5757
|
{ name: "GridIcon", Icon: GridIcon },
|
|
5665
5758
|
{ name: "HeartIcon", Icon: HeartIcon },
|
|
@@ -5785,6 +5878,7 @@ export {
|
|
|
5785
5878
|
FolderIcon,
|
|
5786
5879
|
FolderOpenIcon,
|
|
5787
5880
|
GiftIcon,
|
|
5881
|
+
GitHubIcon,
|
|
5788
5882
|
GlobeIcon,
|
|
5789
5883
|
GridIcon,
|
|
5790
5884
|
HeartIcon,
|