@yoroll/react-icon 0.0.21 → 0.0.22
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 +701 -601
- package/dist/index.iife.js +694 -601
- package/dist/index.iife.min.js +4 -4
- package/dist/index.js +905 -798
- package/dist/index.min.cjs +2 -2
- package/dist/index.min.js +2 -2
- package/dist/types/components/Agent.d.ts +4 -0
- package/dist/types/components/AgentFilled.d.ts +4 -0
- package/dist/types/components/Createplan.d.ts +4 -0
- package/dist/types/components/Element.d.ts +4 -0
- package/dist/types/components/SatisfiedFilled.d.ts +4 -0
- package/dist/types/components/Table.d.ts +4 -0
- package/dist/types/components/UnsatisfiedFilled.d.ts +4 -0
- package/dist/types/components/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.iife.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @lineargame svg icons react v0.0.
|
|
1
|
+
/*! @lineargame svg icons react v0.0.22 */
|
|
2
2
|
|
|
3
3
|
"use strict";
|
|
4
4
|
(() => {
|
|
@@ -1682,9 +1682,45 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1682
1682
|
}
|
|
1683
1683
|
) }), Add_default = IconAdd;
|
|
1684
1684
|
|
|
1685
|
+
// src/components/AgentFilled.tsx
|
|
1686
|
+
var import_jsx_runtime10 = __toESM(require_jsx_runtime()), IconAgentFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1687
|
+
"path",
|
|
1688
|
+
{
|
|
1689
|
+
fill: fill || color || "currentColor",
|
|
1690
|
+
d: "M17.6387 2.47656L14.6182 6H23.5V23.5H0.5V6H9.38184L6.36133 2.47656L8.63867 0.523438L12 4.44531L15.3613 0.523438L17.6387 2.47656ZM17.5 9V20.5H20.5V9H17.5ZM7 11C6.17157 11 5.5 11.6716 5.5 12.5C5.5 13.3284 6.17157 14 7 14C7.82843 14 8.5 13.3284 8.5 12.5C8.5 11.6716 7.82843 11 7 11ZM13 11C12.1716 11 11.5 11.6716 11.5 12.5C11.5 13.3284 12.1716 14 13 14C13.8284 14 14.5 13.3284 14.5 12.5C14.5 11.6716 13.8284 11 13 11Z"
|
|
1691
|
+
}
|
|
1692
|
+
) }), AgentFilled_default = IconAgentFilled;
|
|
1693
|
+
|
|
1694
|
+
// src/components/Agent.tsx
|
|
1695
|
+
var import_jsx_runtime11 = __toESM(require_jsx_runtime()), IconAgent = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1696
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1697
|
+
"path",
|
|
1698
|
+
{
|
|
1699
|
+
fill: stroke || color || "currentColor",
|
|
1700
|
+
d: "M8.35416 0.767822L12 5.0213L15.6458 0.767822L17.3542 2.2321L14.1245 6H23.5V23.5H0.5V6H9.87546L6.64584 2.2321L8.35416 0.767822ZM2.75 8.25V21.25H16.75V8.25H2.75ZM19 8.25V21.25H21.25V8.25H19Z",
|
|
1701
|
+
fillRule: "evenodd",
|
|
1702
|
+
clipRule: "evenodd"
|
|
1703
|
+
}
|
|
1704
|
+
),
|
|
1705
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1706
|
+
"path",
|
|
1707
|
+
{
|
|
1708
|
+
fill: stroke || color || "currentColor",
|
|
1709
|
+
d: "M8.5 12.5C8.5 13.3284 7.82843 14 7 14C6.17157 14 5.5 13.3284 5.5 12.5C5.5 11.6716 6.17157 11 7 11C7.82843 11 8.5 11.6716 8.5 12.5Z"
|
|
1710
|
+
}
|
|
1711
|
+
),
|
|
1712
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1713
|
+
"path",
|
|
1714
|
+
{
|
|
1715
|
+
fill: stroke || color || "currentColor",
|
|
1716
|
+
d: "M13 14C13.8284 14 14.5 13.3284 14.5 12.5C14.5 11.6716 13.8284 11 13 11C12.1716 11 11.5 11.6716 11.5 12.5C11.5 13.3284 12.1716 14 13 14Z"
|
|
1717
|
+
}
|
|
1718
|
+
)
|
|
1719
|
+
] }), Agent_default = IconAgent;
|
|
1720
|
+
|
|
1685
1721
|
// src/components/Agreements.tsx
|
|
1686
|
-
var
|
|
1687
|
-
/* @__PURE__ */ (0,
|
|
1722
|
+
var import_jsx_runtime12 = __toESM(require_jsx_runtime()), IconAgreements = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1723
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1688
1724
|
"path",
|
|
1689
1725
|
{
|
|
1690
1726
|
fill: stroke || color || "currentColor",
|
|
@@ -1693,11 +1729,11 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1693
1729
|
clipRule: "evenodd"
|
|
1694
1730
|
}
|
|
1695
1731
|
),
|
|
1696
|
-
/* @__PURE__ */ (0,
|
|
1732
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { fill: stroke || color || "currentColor", d: "M7.5 16.25H16.5V14H7.5V16.25Z" })
|
|
1697
1733
|
] }), Agreements_default = IconAgreements;
|
|
1698
1734
|
|
|
1699
1735
|
// src/components/AngleDown.tsx
|
|
1700
|
-
var
|
|
1736
|
+
var import_jsx_runtime13 = __toESM(require_jsx_runtime()), IconAngleDown = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1701
1737
|
"path",
|
|
1702
1738
|
{
|
|
1703
1739
|
fill: stroke || color || "currentColor",
|
|
@@ -1706,7 +1742,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1706
1742
|
) }), AngleDown_default = IconAngleDown;
|
|
1707
1743
|
|
|
1708
1744
|
// src/components/Angleright.tsx
|
|
1709
|
-
var
|
|
1745
|
+
var import_jsx_runtime14 = __toESM(require_jsx_runtime()), IconAngleright = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1710
1746
|
"path",
|
|
1711
1747
|
{
|
|
1712
1748
|
fill: stroke || color || "currentColor",
|
|
@@ -1715,7 +1751,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1715
1751
|
) }), Angleright_default = IconAngleright;
|
|
1716
1752
|
|
|
1717
1753
|
// src/components/Announcement.tsx
|
|
1718
|
-
var
|
|
1754
|
+
var import_jsx_runtime15 = __toESM(require_jsx_runtime()), IconAnnouncement = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
1719
1755
|
"path",
|
|
1720
1756
|
{
|
|
1721
1757
|
fill: stroke || color || "currentColor",
|
|
@@ -1726,7 +1762,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1726
1762
|
) }), Announcement_default = IconAnnouncement;
|
|
1727
1763
|
|
|
1728
1764
|
// src/components/Artboard.tsx
|
|
1729
|
-
var
|
|
1765
|
+
var import_jsx_runtime16 = __toESM(require_jsx_runtime()), IconArtboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
1730
1766
|
"path",
|
|
1731
1767
|
{
|
|
1732
1768
|
fill: stroke || color || "currentColor",
|
|
@@ -1737,17 +1773,17 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1737
1773
|
) }), Artboard_default = IconArtboard;
|
|
1738
1774
|
|
|
1739
1775
|
// src/components/AssetsFilled.tsx
|
|
1740
|
-
var
|
|
1741
|
-
/* @__PURE__ */ (0,
|
|
1742
|
-
/* @__PURE__ */ (0,
|
|
1743
|
-
/* @__PURE__ */ (0,
|
|
1776
|
+
var import_jsx_runtime17 = __toESM(require_jsx_runtime()), IconAssetsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1777
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { fill: fill || color || "currentColor", d: "M19.5 0H4.5V3H19.5V0Z" }),
|
|
1778
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { fill: fill || color || "currentColor", d: "M3 6H21V9H3V6Z" }),
|
|
1779
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { fill: fill || color || "currentColor", d: "M1.5 12H22.5V22.5H1.5V12Z" })
|
|
1744
1780
|
] }), AssetsFilled_default = IconAssetsFilled;
|
|
1745
1781
|
|
|
1746
1782
|
// src/components/Assets.tsx
|
|
1747
|
-
var
|
|
1748
|
-
/* @__PURE__ */ (0,
|
|
1749
|
-
/* @__PURE__ */ (0,
|
|
1750
|
-
/* @__PURE__ */ (0,
|
|
1783
|
+
var import_jsx_runtime18 = __toESM(require_jsx_runtime()), IconAssets = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1784
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { fill: stroke || color || "currentColor", d: "M19.5 0H4.5V2.25H19.5V0Z" }),
|
|
1785
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { fill: stroke || color || "currentColor", d: "M3 5.25H21V7.5H3V5.25Z" }),
|
|
1786
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1751
1787
|
"path",
|
|
1752
1788
|
{
|
|
1753
1789
|
fill: stroke || color || "currentColor",
|
|
@@ -1759,7 +1795,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1759
1795
|
] }), Assets_default = IconAssets;
|
|
1760
1796
|
|
|
1761
1797
|
// src/components/Autolayout.tsx
|
|
1762
|
-
var
|
|
1798
|
+
var import_jsx_runtime19 = __toESM(require_jsx_runtime()), IconAutolayout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
1763
1799
|
"path",
|
|
1764
1800
|
{
|
|
1765
1801
|
fill: stroke || color || "currentColor",
|
|
@@ -1768,8 +1804,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1768
1804
|
) }), Autolayout_default = IconAutolayout;
|
|
1769
1805
|
|
|
1770
1806
|
// src/components/Backtoprojects.tsx
|
|
1771
|
-
var
|
|
1772
|
-
/* @__PURE__ */ (0,
|
|
1807
|
+
var import_jsx_runtime20 = __toESM(require_jsx_runtime()), IconBacktoprojects = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1808
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
1773
1809
|
"path",
|
|
1774
1810
|
{
|
|
1775
1811
|
fill: stroke || color || "currentColor",
|
|
@@ -1778,7 +1814,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1778
1814
|
clipRule: "evenodd"
|
|
1779
1815
|
}
|
|
1780
1816
|
),
|
|
1781
|
-
/* @__PURE__ */ (0,
|
|
1817
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
1782
1818
|
"path",
|
|
1783
1819
|
{
|
|
1784
1820
|
fill: stroke || color || "currentColor",
|
|
@@ -1787,7 +1823,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1787
1823
|
clipRule: "evenodd"
|
|
1788
1824
|
}
|
|
1789
1825
|
),
|
|
1790
|
-
/* @__PURE__ */ (0,
|
|
1826
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
1791
1827
|
"path",
|
|
1792
1828
|
{
|
|
1793
1829
|
fill: stroke || color || "currentColor",
|
|
@@ -1796,7 +1832,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1796
1832
|
clipRule: "evenodd"
|
|
1797
1833
|
}
|
|
1798
1834
|
),
|
|
1799
|
-
/* @__PURE__ */ (0,
|
|
1835
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
1800
1836
|
"path",
|
|
1801
1837
|
{
|
|
1802
1838
|
fill: stroke || color || "currentColor",
|
|
@@ -1808,7 +1844,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1808
1844
|
] }), Backtoprojects_default = IconBacktoprojects;
|
|
1809
1845
|
|
|
1810
1846
|
// src/components/Backward.tsx
|
|
1811
|
-
var
|
|
1847
|
+
var import_jsx_runtime21 = __toESM(require_jsx_runtime()), IconBackward = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1812
1848
|
"path",
|
|
1813
1849
|
{
|
|
1814
1850
|
fill: stroke || color || "currentColor",
|
|
@@ -1817,7 +1853,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1817
1853
|
) }), Backward_default = IconBackward;
|
|
1818
1854
|
|
|
1819
1855
|
// src/components/BatchShots.tsx
|
|
1820
|
-
var
|
|
1856
|
+
var import_jsx_runtime22 = __toESM(require_jsx_runtime()), IconBatchShots = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1821
1857
|
"path",
|
|
1822
1858
|
{
|
|
1823
1859
|
fill: stroke || color || "currentColor",
|
|
@@ -1828,15 +1864,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1828
1864
|
) }), BatchShots_default = IconBatchShots;
|
|
1829
1865
|
|
|
1830
1866
|
// src/components/Canvaposition.tsx
|
|
1831
|
-
var
|
|
1832
|
-
/* @__PURE__ */ (0,
|
|
1867
|
+
var import_jsx_runtime23 = __toESM(require_jsx_runtime()), IconCanvaposition = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1868
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
1833
1869
|
"path",
|
|
1834
1870
|
{
|
|
1835
1871
|
fill: stroke || color || "currentColor",
|
|
1836
1872
|
d: "M12 13.5C12.8284 13.5 13.5 12.8284 13.5 12C13.5 11.1716 12.8284 10.5 12 10.5C11.1716 10.5 10.5 11.1716 10.5 12C10.5 12.8284 11.1716 13.5 12 13.5Z"
|
|
1837
1873
|
}
|
|
1838
1874
|
),
|
|
1839
|
-
/* @__PURE__ */ (0,
|
|
1875
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
1840
1876
|
"path",
|
|
1841
1877
|
{
|
|
1842
1878
|
fill: stroke || color || "currentColor",
|
|
@@ -1848,7 +1884,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1848
1884
|
] }), Canvaposition_default = IconCanvaposition;
|
|
1849
1885
|
|
|
1850
1886
|
// src/components/Canvasmode.tsx
|
|
1851
|
-
var
|
|
1887
|
+
var import_jsx_runtime24 = __toESM(require_jsx_runtime()), IconCanvasmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
1852
1888
|
"path",
|
|
1853
1889
|
{
|
|
1854
1890
|
fill: stroke || color || "currentColor",
|
|
@@ -1859,7 +1895,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1859
1895
|
) }), Canvasmode_default = IconCanvasmode;
|
|
1860
1896
|
|
|
1861
1897
|
// src/components/CcgFilled.tsx
|
|
1862
|
-
var
|
|
1898
|
+
var import_jsx_runtime25 = __toESM(require_jsx_runtime()), IconCcgFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
1863
1899
|
"path",
|
|
1864
1900
|
{
|
|
1865
1901
|
fill: fill || color || "currentColor",
|
|
@@ -1870,7 +1906,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1870
1906
|
) }), CcgFilled_default = IconCcgFilled;
|
|
1871
1907
|
|
|
1872
1908
|
// src/components/Ccg.tsx
|
|
1873
|
-
var
|
|
1909
|
+
var import_jsx_runtime26 = __toESM(require_jsx_runtime()), IconCcg = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
1874
1910
|
"path",
|
|
1875
1911
|
{
|
|
1876
1912
|
fill: stroke || color || "currentColor",
|
|
@@ -1881,29 +1917,29 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1881
1917
|
) }), Ccg_default = IconCcg;
|
|
1882
1918
|
|
|
1883
1919
|
// src/components/Ccggame.tsx
|
|
1884
|
-
var
|
|
1885
|
-
/* @__PURE__ */ (0,
|
|
1920
|
+
var import_jsx_runtime27 = __toESM(require_jsx_runtime()), IconCcggame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1921
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
1886
1922
|
"path",
|
|
1887
1923
|
{
|
|
1888
1924
|
fill: stroke || color || "currentColor",
|
|
1889
1925
|
d: "M9.75 9.75C9.75 10.9926 8.74264 12 7.5 12C6.25736 12 5.25 10.9926 5.25 9.75C5.25 8.50736 6.25736 7.5 7.5 7.5C8.74264 7.5 9.75 8.50736 9.75 9.75Z"
|
|
1890
1926
|
}
|
|
1891
1927
|
),
|
|
1892
|
-
/* @__PURE__ */ (0,
|
|
1928
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
1893
1929
|
"path",
|
|
1894
1930
|
{
|
|
1895
1931
|
fill: stroke || color || "currentColor",
|
|
1896
1932
|
d: "M19.125 8.0625C19.125 8.78737 18.5374 9.375 17.8125 9.375C17.0876 9.375 16.5 8.78737 16.5 8.0625C16.5 7.33763 17.0876 6.75 17.8125 6.75C18.5374 6.75 19.125 7.33763 19.125 8.0625Z"
|
|
1897
1933
|
}
|
|
1898
1934
|
),
|
|
1899
|
-
/* @__PURE__ */ (0,
|
|
1935
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
1900
1936
|
"path",
|
|
1901
1937
|
{
|
|
1902
1938
|
fill: stroke || color || "currentColor",
|
|
1903
1939
|
d: "M16.3125 12.75C17.0374 12.75 17.625 12.1624 17.625 11.4375C17.625 10.7126 17.0374 10.125 16.3125 10.125C15.5876 10.125 15 10.7126 15 11.4375C15 12.1624 15.5876 12.75 16.3125 12.75Z"
|
|
1904
1940
|
}
|
|
1905
1941
|
),
|
|
1906
|
-
/* @__PURE__ */ (0,
|
|
1942
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
1907
1943
|
"path",
|
|
1908
1944
|
{
|
|
1909
1945
|
fill: stroke || color || "currentColor",
|
|
@@ -1915,7 +1951,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1915
1951
|
] }), Ccggame_default = IconCcggame;
|
|
1916
1952
|
|
|
1917
1953
|
// src/components/Ccglanguage.tsx
|
|
1918
|
-
var
|
|
1954
|
+
var import_jsx_runtime28 = __toESM(require_jsx_runtime()), IconCcglanguage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
1919
1955
|
"path",
|
|
1920
1956
|
{
|
|
1921
1957
|
fill: stroke || color || "currentColor",
|
|
@@ -1924,7 +1960,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1924
1960
|
) }), Ccglanguage_default = IconCcglanguage;
|
|
1925
1961
|
|
|
1926
1962
|
// src/components/Chaptercollapse.tsx
|
|
1927
|
-
var
|
|
1963
|
+
var import_jsx_runtime29 = __toESM(require_jsx_runtime()), IconChaptercollapse = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
1928
1964
|
"path",
|
|
1929
1965
|
{
|
|
1930
1966
|
fill: stroke || color || "currentColor",
|
|
@@ -1935,7 +1971,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1935
1971
|
) }), Chaptercollapse_default = IconChaptercollapse;
|
|
1936
1972
|
|
|
1937
1973
|
// src/components/Chapterexpand.tsx
|
|
1938
|
-
var
|
|
1974
|
+
var import_jsx_runtime30 = __toESM(require_jsx_runtime()), IconChapterexpand = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
1939
1975
|
"path",
|
|
1940
1976
|
{
|
|
1941
1977
|
fill: stroke || color || "currentColor",
|
|
@@ -1946,15 +1982,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1946
1982
|
) }), Chapterexpand_default = IconChapterexpand;
|
|
1947
1983
|
|
|
1948
1984
|
// src/components/Chathistory.tsx
|
|
1949
|
-
var
|
|
1950
|
-
/* @__PURE__ */ (0,
|
|
1985
|
+
var import_jsx_runtime31 = __toESM(require_jsx_runtime()), IconChathistory = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1986
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
1951
1987
|
"path",
|
|
1952
1988
|
{
|
|
1953
1989
|
fill: stroke || color || "currentColor",
|
|
1954
1990
|
d: "M10.5 4.5V12.4926L15.7369 17.3267L17.2631 15.6733L12.75 11.5074V4.5H10.5Z"
|
|
1955
1991
|
}
|
|
1956
1992
|
),
|
|
1957
|
-
/* @__PURE__ */ (0,
|
|
1993
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
1958
1994
|
"path",
|
|
1959
1995
|
{
|
|
1960
1996
|
fill: stroke || color || "currentColor",
|
|
@@ -1966,7 +2002,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1966
2002
|
] }), Chathistory_default = IconChathistory;
|
|
1967
2003
|
|
|
1968
2004
|
// src/components/Check.tsx
|
|
1969
|
-
var
|
|
2005
|
+
var import_jsx_runtime32 = __toESM(require_jsx_runtime()), IconCheck = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
1970
2006
|
"path",
|
|
1971
2007
|
{
|
|
1972
2008
|
fill: stroke || color || "currentColor",
|
|
@@ -1975,7 +2011,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1975
2011
|
) }), Check_default = IconCheck;
|
|
1976
2012
|
|
|
1977
2013
|
// src/components/CheckedFilled.tsx
|
|
1978
|
-
var
|
|
2014
|
+
var import_jsx_runtime33 = __toESM(require_jsx_runtime()), IconCheckedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
1979
2015
|
"path",
|
|
1980
2016
|
{
|
|
1981
2017
|
fill: fill || color || "currentColor",
|
|
@@ -1986,7 +2022,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1986
2022
|
) }), CheckedFilled_default = IconCheckedFilled;
|
|
1987
2023
|
|
|
1988
2024
|
// src/components/Close.tsx
|
|
1989
|
-
var
|
|
2025
|
+
var import_jsx_runtime34 = __toESM(require_jsx_runtime()), IconClose = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
1990
2026
|
"path",
|
|
1991
2027
|
{
|
|
1992
2028
|
fill: stroke || color || "currentColor",
|
|
@@ -1995,8 +2031,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
1995
2031
|
) }), Close_default = IconClose;
|
|
1996
2032
|
|
|
1997
2033
|
// src/components/Collapsewindow.tsx
|
|
1998
|
-
var
|
|
1999
|
-
/* @__PURE__ */ (0,
|
|
2034
|
+
var import_jsx_runtime35 = __toESM(require_jsx_runtime()), IconCollapsewindow = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2035
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2000
2036
|
"path",
|
|
2001
2037
|
{
|
|
2002
2038
|
fill: stroke || color || "currentColor",
|
|
@@ -2005,7 +2041,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2005
2041
|
clipRule: "evenodd"
|
|
2006
2042
|
}
|
|
2007
2043
|
),
|
|
2008
|
-
/* @__PURE__ */ (0,
|
|
2044
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2009
2045
|
"path",
|
|
2010
2046
|
{
|
|
2011
2047
|
fill: stroke || color || "currentColor",
|
|
@@ -2017,9 +2053,9 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2017
2053
|
] }), Collapsewindow_default = IconCollapsewindow;
|
|
2018
2054
|
|
|
2019
2055
|
// src/components/Copy.tsx
|
|
2020
|
-
var
|
|
2021
|
-
/* @__PURE__ */ (0,
|
|
2022
|
-
/* @__PURE__ */ (0,
|
|
2056
|
+
var import_jsx_runtime36 = __toESM(require_jsx_runtime()), IconCopy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2057
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { fill: stroke || color || "currentColor", d: "M12.75 2.25H2.25V12.75H6V15H0V0H15V6H12.75V2.25Z" }),
|
|
2058
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2023
2059
|
"path",
|
|
2024
2060
|
{
|
|
2025
2061
|
fill: stroke || color || "currentColor",
|
|
@@ -2031,7 +2067,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2031
2067
|
] }), Copy_default = IconCopy;
|
|
2032
2068
|
|
|
2033
2069
|
// src/components/Copylink.tsx
|
|
2034
|
-
var
|
|
2070
|
+
var import_jsx_runtime37 = __toESM(require_jsx_runtime()), IconCopylink = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2035
2071
|
"path",
|
|
2036
2072
|
{
|
|
2037
2073
|
fill: stroke || color || "currentColor",
|
|
@@ -2041,9 +2077,20 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2041
2077
|
}
|
|
2042
2078
|
) }), Copylink_default = IconCopylink;
|
|
2043
2079
|
|
|
2080
|
+
// src/components/Createplan.tsx
|
|
2081
|
+
var import_jsx_runtime38 = __toESM(require_jsx_runtime()), IconCreateplan = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2082
|
+
"path",
|
|
2083
|
+
{
|
|
2084
|
+
fill: stroke || color || "currentColor",
|
|
2085
|
+
d: "M7.5 0H16.5V3H21V24H3V3H7.5V0ZM9.75 2.25H14.25V5.25H9.75V2.25ZM7.5 5.25H5.25V21.75H18.75V5.25H16.5V7.5H7.5V5.25Z",
|
|
2086
|
+
fillRule: "evenodd",
|
|
2087
|
+
clipRule: "evenodd"
|
|
2088
|
+
}
|
|
2089
|
+
) }), Createplan_default = IconCreateplan;
|
|
2090
|
+
|
|
2044
2091
|
// src/components/CreditFilled.tsx
|
|
2045
|
-
var
|
|
2046
|
-
/* @__PURE__ */ (0,
|
|
2092
|
+
var import_jsx_runtime39 = __toESM(require_jsx_runtime()), IconCreditFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2093
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("g", { clipPath: "url(#clip0_2_28)", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2047
2094
|
"path",
|
|
2048
2095
|
{
|
|
2049
2096
|
fill: fill || color || "currentColor",
|
|
@@ -2052,11 +2099,11 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2052
2099
|
clipRule: "evenodd"
|
|
2053
2100
|
}
|
|
2054
2101
|
) }),
|
|
2055
|
-
/* @__PURE__ */ (0,
|
|
2102
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("clipPath", { id: "clip0_2_28", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
2056
2103
|
] }), CreditFilled_default = IconCreditFilled;
|
|
2057
2104
|
|
|
2058
2105
|
// src/components/Cursor.tsx
|
|
2059
|
-
var
|
|
2106
|
+
var import_jsx_runtime40 = __toESM(require_jsx_runtime()), IconCursor = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2060
2107
|
"path",
|
|
2061
2108
|
{
|
|
2062
2109
|
fill: stroke || color || "currentColor",
|
|
@@ -2067,9 +2114,9 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2067
2114
|
) }), Cursor_default = IconCursor;
|
|
2068
2115
|
|
|
2069
2116
|
// src/components/DeleteSceneChoice.tsx
|
|
2070
|
-
var
|
|
2071
|
-
/* @__PURE__ */ (0,
|
|
2072
|
-
/* @__PURE__ */ (0,
|
|
2117
|
+
var import_jsx_runtime41 = __toESM(require_jsx_runtime()), IconDeleteSceneChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2118
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { fill: stroke || color || "currentColor", d: "M18 10.875H6V13.125H18V10.875Z" }),
|
|
2119
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2073
2120
|
"path",
|
|
2074
2121
|
{
|
|
2075
2122
|
fill: stroke || color || "currentColor",
|
|
@@ -2081,9 +2128,9 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2081
2128
|
] }), DeleteSceneChoice_default = IconDeleteSceneChoice;
|
|
2082
2129
|
|
|
2083
2130
|
// src/components/Delete.tsx
|
|
2084
|
-
var
|
|
2085
|
-
/* @__PURE__ */ (0,
|
|
2086
|
-
/* @__PURE__ */ (0,
|
|
2131
|
+
var import_jsx_runtime42 = __toESM(require_jsx_runtime()), IconDelete = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2132
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("path", { fill: stroke || color || "currentColor", d: "M13.125 17.25V11.25H10.875V17.25H13.125Z" }),
|
|
2133
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2087
2134
|
"path",
|
|
2088
2135
|
{
|
|
2089
2136
|
fill: stroke || color || "currentColor",
|
|
@@ -2095,7 +2142,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2095
2142
|
] }), Delete_default = IconDelete;
|
|
2096
2143
|
|
|
2097
2144
|
// src/components/DownFilled.tsx
|
|
2098
|
-
var
|
|
2145
|
+
var import_jsx_runtime43 = __toESM(require_jsx_runtime()), IconDownFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2099
2146
|
"path",
|
|
2100
2147
|
{
|
|
2101
2148
|
fill: fill || color || "currentColor",
|
|
@@ -2106,7 +2153,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2106
2153
|
) }), DownFilled_default = IconDownFilled;
|
|
2107
2154
|
|
|
2108
2155
|
// src/components/DownleftFilled.tsx
|
|
2109
|
-
var
|
|
2156
|
+
var import_jsx_runtime44 = __toESM(require_jsx_runtime()), IconDownleftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2110
2157
|
"path",
|
|
2111
2158
|
{
|
|
2112
2159
|
fill: fill || color || "currentColor",
|
|
@@ -2117,15 +2164,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2117
2164
|
) }), DownleftFilled_default = IconDownleftFilled;
|
|
2118
2165
|
|
|
2119
2166
|
// src/components/Download.tsx
|
|
2120
|
-
var
|
|
2121
|
-
/* @__PURE__ */ (0,
|
|
2167
|
+
var import_jsx_runtime45 = __toESM(require_jsx_runtime()), IconDownload = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2168
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2122
2169
|
"path",
|
|
2123
2170
|
{
|
|
2124
2171
|
fill: stroke || color || "currentColor",
|
|
2125
2172
|
d: "M22.5 24L22.5 13.5H20.25V21.75L3.75 21.75L3.75 13.5H1.5L1.5 24L22.5 24Z"
|
|
2126
2173
|
}
|
|
2127
2174
|
),
|
|
2128
|
-
/* @__PURE__ */ (0,
|
|
2175
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2129
2176
|
"path",
|
|
2130
2177
|
{
|
|
2131
2178
|
fill: stroke || color || "currentColor",
|
|
@@ -2137,7 +2184,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2137
2184
|
] }), Download_default = IconDownload;
|
|
2138
2185
|
|
|
2139
2186
|
// src/components/DownrightFilled.tsx
|
|
2140
|
-
var
|
|
2187
|
+
var import_jsx_runtime46 = __toESM(require_jsx_runtime()), IconDownrightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2141
2188
|
"path",
|
|
2142
2189
|
{
|
|
2143
2190
|
fill: fill || color || "currentColor",
|
|
@@ -2148,18 +2195,18 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2148
2195
|
) }), DownrightFilled_default = IconDownrightFilled;
|
|
2149
2196
|
|
|
2150
2197
|
// src/components/DraghandleFilled.tsx
|
|
2151
|
-
var
|
|
2152
|
-
/* @__PURE__ */ (0,
|
|
2153
|
-
/* @__PURE__ */ (0,
|
|
2154
|
-
/* @__PURE__ */ (0,
|
|
2155
|
-
/* @__PURE__ */ (0,
|
|
2156
|
-
/* @__PURE__ */ (0,
|
|
2157
|
-
/* @__PURE__ */ (0,
|
|
2198
|
+
var import_jsx_runtime47 = __toESM(require_jsx_runtime()), IconDraghandleFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2199
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { fill: fill || color || "currentColor", d: "M18 7.19999V2.39999H13.2V7.19999L18 7.19999Z" }),
|
|
2200
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { fill: fill || color || "currentColor", d: "M18 9.59999V14.4H13.2L13.2 9.59999H18Z" }),
|
|
2201
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { fill: fill || color || "currentColor", d: "M10.8 9.59999V14.4H6V9.59999H10.8Z" }),
|
|
2202
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { fill: fill || color || "currentColor", d: "M10.8 2.39999V7.19999L6 7.19999V2.39999H10.8Z" }),
|
|
2203
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { fill: fill || color || "currentColor", d: "M18 21.6V16.8H13.2V21.6H18Z" }),
|
|
2204
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { fill: fill || color || "currentColor", d: "M10.8 16.8V21.6H6V16.8H10.8Z" })
|
|
2158
2205
|
] }), DraghandleFilled_default = IconDraghandleFilled;
|
|
2159
2206
|
|
|
2160
2207
|
// src/components/Edit.tsx
|
|
2161
|
-
var
|
|
2162
|
-
/* @__PURE__ */ (0,
|
|
2208
|
+
var import_jsx_runtime48 = __toESM(require_jsx_runtime()), IconEdit = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2209
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2163
2210
|
"path",
|
|
2164
2211
|
{
|
|
2165
2212
|
fill: stroke || color || "currentColor",
|
|
@@ -2168,7 +2215,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2168
2215
|
clipRule: "evenodd"
|
|
2169
2216
|
}
|
|
2170
2217
|
),
|
|
2171
|
-
/* @__PURE__ */ (0,
|
|
2218
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2172
2219
|
"path",
|
|
2173
2220
|
{
|
|
2174
2221
|
fill: stroke || color || "currentColor",
|
|
@@ -2177,9 +2224,20 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2177
2224
|
)
|
|
2178
2225
|
] }), Edit_default = IconEdit;
|
|
2179
2226
|
|
|
2227
|
+
// src/components/Element.tsx
|
|
2228
|
+
var import_jsx_runtime49 = __toESM(require_jsx_runtime()), IconElement = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2229
|
+
"path",
|
|
2230
|
+
{
|
|
2231
|
+
fill: stroke || color || "currentColor",
|
|
2232
|
+
d: "M8.76736 2.40203C5.77582 3.40922 3.40924 5.77581 2.40207 8.76735C1.0124 9.18502 0 10.4743 0 12C0 13.5257 1.0124 14.815 2.40206 15.2326C3.40924 18.2242 5.77582 20.5908 8.76736 21.598C9.18504 22.9876 10.4743 24 12 24C13.5257 24 14.8149 22.9876 15.2326 21.598C18.2242 20.5908 20.5909 18.2242 21.598 15.2326C22.9877 14.8149 24 13.5257 24 12C24 10.4743 22.9877 9.18508 21.598 8.76738C20.5909 5.77579 18.2242 3.40917 15.2326 2.40199C14.8149 1.01237 13.5257 0 12 0C10.4743 0 9.18504 1.01238 8.76736 2.40203ZM10.875 3.375C10.875 3.99632 11.3787 4.5 12 4.5C12.6213 4.5 13.125 3.99632 13.125 3.375C13.125 2.75368 12.6213 2.25 12 2.25C11.3787 2.25 10.875 2.75368 10.875 3.375ZM15.0826 4.75118C14.5559 5.92916 13.3738 6.75 12 6.75C10.6262 6.75 9.44412 5.92918 8.91742 4.75121C7.04694 5.54767 5.54767 7.04694 4.75123 8.91743C5.92919 9.44413 6.75 10.6262 6.75 12C6.75 13.3738 5.92919 14.5559 4.75123 15.0826C5.54767 16.9531 7.04694 18.4523 8.91742 19.2488C9.44412 18.0708 10.6262 17.25 12 17.25C13.3738 17.25 14.5559 18.0708 15.0826 19.2488C16.9531 18.4524 18.4524 16.9531 19.2488 15.0826C18.0708 14.5559 17.25 13.3738 17.25 12C17.25 10.6262 18.0708 9.44408 19.2488 8.91739C18.4524 7.04689 16.9531 5.54762 15.0826 4.75118ZM2.25 12C2.25 12.6213 2.75368 13.125 3.375 13.125C3.99632 13.125 4.5 12.6213 4.5 12C4.5 11.3787 3.99632 10.875 3.375 10.875C2.75368 10.875 2.25 11.3787 2.25 12ZM12 21.75C11.3787 21.75 10.875 21.2463 10.875 20.625C10.875 20.0037 11.3787 19.5 12 19.5C12.6213 19.5 13.125 20.0037 13.125 20.625C13.125 21.2463 12.6213 21.75 12 21.75ZM19.5 12C19.5 12.6213 20.0037 13.125 20.625 13.125C21.2463 13.125 21.75 12.6213 21.75 12C21.75 11.3787 21.2463 10.875 20.625 10.875C20.0037 10.875 19.5 11.3787 19.5 12Z",
|
|
2233
|
+
fillRule: "evenodd",
|
|
2234
|
+
clipRule: "evenodd"
|
|
2235
|
+
}
|
|
2236
|
+
) }), Element_default = IconElement;
|
|
2237
|
+
|
|
2180
2238
|
// src/components/Expandwindow.tsx
|
|
2181
|
-
var
|
|
2182
|
-
/* @__PURE__ */ (0,
|
|
2239
|
+
var import_jsx_runtime50 = __toESM(require_jsx_runtime()), IconExpandwindow = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2240
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2183
2241
|
"path",
|
|
2184
2242
|
{
|
|
2185
2243
|
fill: stroke || color || "currentColor",
|
|
@@ -2188,7 +2246,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2188
2246
|
clipRule: "evenodd"
|
|
2189
2247
|
}
|
|
2190
2248
|
),
|
|
2191
|
-
/* @__PURE__ */ (0,
|
|
2249
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2192
2250
|
"path",
|
|
2193
2251
|
{
|
|
2194
2252
|
fill: stroke || color || "currentColor",
|
|
@@ -2200,7 +2258,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2200
2258
|
] }), Expandwindow_default = IconExpandwindow;
|
|
2201
2259
|
|
|
2202
2260
|
// src/components/FavoriteFilled.tsx
|
|
2203
|
-
var
|
|
2261
|
+
var import_jsx_runtime51 = __toESM(require_jsx_runtime()), IconFavoriteFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2204
2262
|
"path",
|
|
2205
2263
|
{
|
|
2206
2264
|
fill: fill || color || "currentColor",
|
|
@@ -2209,7 +2267,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2209
2267
|
) }), FavoriteFilled_default = IconFavoriteFilled;
|
|
2210
2268
|
|
|
2211
2269
|
// src/components/Favorite.tsx
|
|
2212
|
-
var
|
|
2270
|
+
var import_jsx_runtime52 = __toESM(require_jsx_runtime()), IconFavorite = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2213
2271
|
"path",
|
|
2214
2272
|
{
|
|
2215
2273
|
fill: stroke || color || "currentColor",
|
|
@@ -2220,7 +2278,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2220
2278
|
) }), Favorite_default = IconFavorite;
|
|
2221
2279
|
|
|
2222
2280
|
// src/components/FeedbackFailFilled.tsx
|
|
2223
|
-
var
|
|
2281
|
+
var import_jsx_runtime53 = __toESM(require_jsx_runtime()), IconFeedbackFailFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2224
2282
|
"path",
|
|
2225
2283
|
{
|
|
2226
2284
|
fill: fill || color || "currentColor",
|
|
@@ -2231,7 +2289,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2231
2289
|
) }), FeedbackFailFilled_default = IconFeedbackFailFilled;
|
|
2232
2290
|
|
|
2233
2291
|
// src/components/FeedbackPendingFilled.tsx
|
|
2234
|
-
var
|
|
2292
|
+
var import_jsx_runtime54 = __toESM(require_jsx_runtime()), IconFeedbackPendingFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2235
2293
|
"path",
|
|
2236
2294
|
{
|
|
2237
2295
|
fill: fill || color || "currentColor",
|
|
@@ -2242,7 +2300,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2242
2300
|
) }), FeedbackPendingFilled_default = IconFeedbackPendingFilled;
|
|
2243
2301
|
|
|
2244
2302
|
// src/components/FeedbackProblemFilled.tsx
|
|
2245
|
-
var
|
|
2303
|
+
var import_jsx_runtime55 = __toESM(require_jsx_runtime()), IconFeedbackProblemFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2246
2304
|
"path",
|
|
2247
2305
|
{
|
|
2248
2306
|
fill: fill || color || "currentColor",
|
|
@@ -2253,29 +2311,29 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2253
2311
|
) }), FeedbackProblemFilled_default = IconFeedbackProblemFilled;
|
|
2254
2312
|
|
|
2255
2313
|
// src/components/FeedbackProblem.tsx
|
|
2256
|
-
var
|
|
2257
|
-
/* @__PURE__ */ (0,
|
|
2314
|
+
var import_jsx_runtime56 = __toESM(require_jsx_runtime()), IconFeedbackProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2315
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2258
2316
|
"path",
|
|
2259
2317
|
{
|
|
2260
2318
|
fill: stroke || color || "currentColor",
|
|
2261
2319
|
d: "M8.25 10.5C9.07843 10.5 9.75 9.82843 9.75 9C9.75 8.17157 9.07843 7.5 8.25 7.5C7.42157 7.5 6.75 8.17157 6.75 9C6.75 9.82843 7.42157 10.5 8.25 10.5Z"
|
|
2262
2320
|
}
|
|
2263
2321
|
),
|
|
2264
|
-
/* @__PURE__ */ (0,
|
|
2322
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2265
2323
|
"path",
|
|
2266
2324
|
{
|
|
2267
2325
|
fill: stroke || color || "currentColor",
|
|
2268
2326
|
d: "M17.25 9C17.25 9.82843 16.5784 10.5 15.75 10.5C14.9216 10.5 14.25 9.82843 14.25 9C14.25 8.17157 14.9216 7.5 15.75 7.5C16.5784 7.5 17.25 8.17157 17.25 9Z"
|
|
2269
2327
|
}
|
|
2270
2328
|
),
|
|
2271
|
-
/* @__PURE__ */ (0,
|
|
2329
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2272
2330
|
"path",
|
|
2273
2331
|
{
|
|
2274
2332
|
fill: stroke || color || "currentColor",
|
|
2275
2333
|
d: "M12 17.25C13.2426 17.25 14.25 16.2426 14.25 15C14.25 13.7574 13.2426 12.75 12 12.75C10.7574 12.75 9.75 13.7574 9.75 15C9.75 16.2426 10.7574 17.25 12 17.25Z"
|
|
2276
2334
|
}
|
|
2277
2335
|
),
|
|
2278
|
-
/* @__PURE__ */ (0,
|
|
2336
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2279
2337
|
"path",
|
|
2280
2338
|
{
|
|
2281
2339
|
fill: stroke || color || "currentColor",
|
|
@@ -2287,8 +2345,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2287
2345
|
] }), FeedbackProblem_default = IconFeedbackProblem;
|
|
2288
2346
|
|
|
2289
2347
|
// src/components/FiletypeImageFilled.tsx
|
|
2290
|
-
var
|
|
2291
|
-
/* @__PURE__ */ (0,
|
|
2348
|
+
var import_jsx_runtime57 = __toESM(require_jsx_runtime()), IconFiletypeImageFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2349
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2292
2350
|
"path",
|
|
2293
2351
|
{
|
|
2294
2352
|
fill: "#2E2E2E",
|
|
@@ -2296,21 +2354,21 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2296
2354
|
style: { opacity: 0.3 }
|
|
2297
2355
|
}
|
|
2298
2356
|
) }),
|
|
2299
|
-
/* @__PURE__ */ (0,
|
|
2357
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2300
2358
|
"path",
|
|
2301
2359
|
{
|
|
2302
2360
|
fill: "#2E2E2E",
|
|
2303
2361
|
d: "M19.9993 6.2882H17.59C17.058 6.28768 16.548 6.07629 16.1718 5.70045C15.7957 5.3246 15.5841 4.81499 15.5836 4.28346V1.5L19.9993 6.2882Z"
|
|
2304
2362
|
}
|
|
2305
2363
|
),
|
|
2306
|
-
/* @__PURE__ */ (0,
|
|
2364
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2307
2365
|
"path",
|
|
2308
2366
|
{
|
|
2309
2367
|
fill: "#2E2E2E",
|
|
2310
2368
|
d: "M10.5938 11.0625C11.0252 11.0625 11.375 10.7127 11.375 10.2812C11.375 9.84978 11.0252 9.5 10.5938 9.5C10.1623 9.5 9.8125 9.84978 9.8125 10.2812C9.8125 10.7127 10.1623 11.0625 10.5938 11.0625Z"
|
|
2311
2369
|
}
|
|
2312
2370
|
),
|
|
2313
|
-
/* @__PURE__ */ (0,
|
|
2371
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2314
2372
|
"path",
|
|
2315
2373
|
{
|
|
2316
2374
|
fill: "#2E2E2E",
|
|
@@ -2322,8 +2380,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2322
2380
|
] }), FiletypeImageFilled_default = IconFiletypeImageFilled;
|
|
2323
2381
|
|
|
2324
2382
|
// src/components/FiletypePdfFilled.tsx
|
|
2325
|
-
var
|
|
2326
|
-
/* @__PURE__ */ (0,
|
|
2383
|
+
var import_jsx_runtime58 = __toESM(require_jsx_runtime()), IconFiletypePdfFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2384
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2327
2385
|
"path",
|
|
2328
2386
|
{
|
|
2329
2387
|
fill: "#FF3E4C",
|
|
@@ -2331,14 +2389,14 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2331
2389
|
style: { opacity: 0.3 }
|
|
2332
2390
|
}
|
|
2333
2391
|
) }),
|
|
2334
|
-
/* @__PURE__ */ (0,
|
|
2392
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2335
2393
|
"path",
|
|
2336
2394
|
{
|
|
2337
2395
|
fill: "#FF3E4C",
|
|
2338
2396
|
d: "M19.9993 6.2882H17.59C17.058 6.28768 16.548 6.07629 16.1718 5.70045C15.7957 5.3246 15.5841 4.81499 15.5836 4.28346V1.5L19.9993 6.2882Z"
|
|
2339
2397
|
}
|
|
2340
2398
|
),
|
|
2341
|
-
/* @__PURE__ */ (0,
|
|
2399
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2342
2400
|
"path",
|
|
2343
2401
|
{
|
|
2344
2402
|
fill: "#FF3E4C",
|
|
@@ -2348,8 +2406,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2348
2406
|
] }), FiletypePdfFilled_default = IconFiletypePdfFilled;
|
|
2349
2407
|
|
|
2350
2408
|
// src/components/FiletypePdfLumiFilled.tsx
|
|
2351
|
-
var
|
|
2352
|
-
/* @__PURE__ */ (0,
|
|
2409
|
+
var import_jsx_runtime59 = __toESM(require_jsx_runtime()), IconFiletypePdfLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2410
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2353
2411
|
"path",
|
|
2354
2412
|
{
|
|
2355
2413
|
fill: "#2E2E2E",
|
|
@@ -2357,14 +2415,14 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2357
2415
|
style: { opacity: 0.3 }
|
|
2358
2416
|
}
|
|
2359
2417
|
) }),
|
|
2360
|
-
/* @__PURE__ */ (0,
|
|
2418
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2361
2419
|
"path",
|
|
2362
2420
|
{
|
|
2363
2421
|
fill: "#2E2E2E",
|
|
2364
2422
|
d: "M19.9993 6.2882H17.59C17.058 6.28768 16.548 6.07629 16.1718 5.70045C15.7957 5.3246 15.5841 4.81499 15.5836 4.28346V1.5L19.9993 6.2882Z"
|
|
2365
2423
|
}
|
|
2366
2424
|
),
|
|
2367
|
-
/* @__PURE__ */ (0,
|
|
2425
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2368
2426
|
"path",
|
|
2369
2427
|
{
|
|
2370
2428
|
fill: "#2E2E2E",
|
|
@@ -2374,8 +2432,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2374
2432
|
] }), FiletypePdfLumiFilled_default = IconFiletypePdfLumiFilled;
|
|
2375
2433
|
|
|
2376
2434
|
// src/components/FiletypeTxtFilled.tsx
|
|
2377
|
-
var
|
|
2378
|
-
/* @__PURE__ */ (0,
|
|
2435
|
+
var import_jsx_runtime60 = __toESM(require_jsx_runtime()), IconFiletypeTxtFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2436
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2379
2437
|
"path",
|
|
2380
2438
|
{
|
|
2381
2439
|
fill: "#005FAD",
|
|
@@ -2383,11 +2441,11 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2383
2441
|
style: { opacity: 0.3 }
|
|
2384
2442
|
}
|
|
2385
2443
|
) }),
|
|
2386
|
-
/* @__PURE__ */ (0,
|
|
2387
|
-
/* @__PURE__ */ (0,
|
|
2388
|
-
/* @__PURE__ */ (0,
|
|
2389
|
-
/* @__PURE__ */ (0,
|
|
2390
|
-
/* @__PURE__ */ (0,
|
|
2444
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { fill: "#005FAD", d: "M7.625 8.5625H16.375V7.625H7.625V8.5625Z" }),
|
|
2445
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { fill: "#005FAD", d: "M7.625 16.375H13.875V15.4375H7.625V16.375Z" }),
|
|
2446
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { fill: "#005FAD", d: "M16.375 11.2188H7.625V10.2812H16.375V11.2188Z" }),
|
|
2447
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { fill: "#005FAD", d: "M7.625 13.7188H16.375V12.7812H7.625V13.7188Z" }),
|
|
2448
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2391
2449
|
"path",
|
|
2392
2450
|
{
|
|
2393
2451
|
fill: "#005FAD",
|
|
@@ -2397,8 +2455,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2397
2455
|
] }), FiletypeTxtFilled_default = IconFiletypeTxtFilled;
|
|
2398
2456
|
|
|
2399
2457
|
// src/components/FiletypeTxtLumiFilled.tsx
|
|
2400
|
-
var
|
|
2401
|
-
/* @__PURE__ */ (0,
|
|
2458
|
+
var import_jsx_runtime61 = __toESM(require_jsx_runtime()), IconFiletypeTxtLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2459
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2402
2460
|
"path",
|
|
2403
2461
|
{
|
|
2404
2462
|
fill: "#2E2E2E",
|
|
@@ -2406,11 +2464,11 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2406
2464
|
style: { opacity: 0.3 }
|
|
2407
2465
|
}
|
|
2408
2466
|
) }),
|
|
2409
|
-
/* @__PURE__ */ (0,
|
|
2410
|
-
/* @__PURE__ */ (0,
|
|
2411
|
-
/* @__PURE__ */ (0,
|
|
2412
|
-
/* @__PURE__ */ (0,
|
|
2413
|
-
/* @__PURE__ */ (0,
|
|
2467
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { fill: "#2E2E2E", d: "M7.625 8.5625H16.375V7.625H7.625V8.5625Z" }),
|
|
2468
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { fill: "#2E2E2E", d: "M7.625 16.375H13.875V15.4375H7.625V16.375Z" }),
|
|
2469
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { fill: "#2E2E2E", d: "M16.375 11.2188H7.625V10.2812H16.375V11.2188Z" }),
|
|
2470
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { fill: "#2E2E2E", d: "M7.625 13.7188H16.375V12.7812H7.625V13.7188Z" }),
|
|
2471
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2414
2472
|
"path",
|
|
2415
2473
|
{
|
|
2416
2474
|
fill: "#2E2E2E",
|
|
@@ -2420,8 +2478,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2420
2478
|
] }), FiletypeTxtLumiFilled_default = IconFiletypeTxtLumiFilled;
|
|
2421
2479
|
|
|
2422
2480
|
// src/components/FiletypeWordFilled.tsx
|
|
2423
|
-
var
|
|
2424
|
-
/* @__PURE__ */ (0,
|
|
2481
|
+
var import_jsx_runtime62 = __toESM(require_jsx_runtime()), IconFiletypeWordFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2482
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2425
2483
|
"path",
|
|
2426
2484
|
{
|
|
2427
2485
|
fill: "#0072FF",
|
|
@@ -2429,14 +2487,14 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2429
2487
|
style: { opacity: 0.3 }
|
|
2430
2488
|
}
|
|
2431
2489
|
) }),
|
|
2432
|
-
/* @__PURE__ */ (0,
|
|
2490
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2433
2491
|
"path",
|
|
2434
2492
|
{
|
|
2435
2493
|
fill: "#0072FF",
|
|
2436
2494
|
d: "M8.09258 8L9.69258 16H10.8121L12 9.56557L13.1879 16H14.3074L15.9074 8H15.1426L13.7547 14.9392L12.4736 8H11.5264L10.2453 14.9392L8.85743 8H8.09258Z"
|
|
2437
2495
|
}
|
|
2438
2496
|
),
|
|
2439
|
-
/* @__PURE__ */ (0,
|
|
2497
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2440
2498
|
"path",
|
|
2441
2499
|
{
|
|
2442
2500
|
fill: "#0072FF",
|
|
@@ -2446,8 +2504,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2446
2504
|
] }), FiletypeWordFilled_default = IconFiletypeWordFilled;
|
|
2447
2505
|
|
|
2448
2506
|
// src/components/FiletypeWordLumiFilled.tsx
|
|
2449
|
-
var
|
|
2450
|
-
/* @__PURE__ */ (0,
|
|
2507
|
+
var import_jsx_runtime63 = __toESM(require_jsx_runtime()), IconFiletypeWordLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2508
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2451
2509
|
"path",
|
|
2452
2510
|
{
|
|
2453
2511
|
fill: "#2E2E2E",
|
|
@@ -2455,14 +2513,14 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2455
2513
|
style: { opacity: 0.3 }
|
|
2456
2514
|
}
|
|
2457
2515
|
) }),
|
|
2458
|
-
/* @__PURE__ */ (0,
|
|
2516
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2459
2517
|
"path",
|
|
2460
2518
|
{
|
|
2461
2519
|
fill: "#2E2E2E",
|
|
2462
2520
|
d: "M8.09257 8L9.69257 16H10.8121L12 9.56557L13.1879 16H14.3074L15.9074 8H15.1426L13.7547 14.9392L12.4736 8H11.5264L10.2453 14.9392L8.85742 8H8.09257Z"
|
|
2463
2521
|
}
|
|
2464
2522
|
),
|
|
2465
|
-
/* @__PURE__ */ (0,
|
|
2523
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2466
2524
|
"path",
|
|
2467
2525
|
{
|
|
2468
2526
|
fill: "#2E2E2E",
|
|
@@ -2472,8 +2530,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2472
2530
|
] }), FiletypeWordLumiFilled_default = IconFiletypeWordLumiFilled;
|
|
2473
2531
|
|
|
2474
2532
|
// src/components/Fillin.tsx
|
|
2475
|
-
var
|
|
2476
|
-
/* @__PURE__ */ (0,
|
|
2533
|
+
var import_jsx_runtime64 = __toESM(require_jsx_runtime()), IconFillin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2534
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("g", { clipPath: "url(#clip0_491_23)", children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
2477
2535
|
"path",
|
|
2478
2536
|
{
|
|
2479
2537
|
fill: stroke || color || "currentColor",
|
|
@@ -2482,7 +2540,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2482
2540
|
clipRule: "evenodd"
|
|
2483
2541
|
}
|
|
2484
2542
|
) }),
|
|
2485
|
-
/* @__PURE__ */ (0,
|
|
2543
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("clipPath", { id: "clip0_491_23", children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
2486
2544
|
"rect",
|
|
2487
2545
|
{
|
|
2488
2546
|
width: "24",
|
|
@@ -2494,33 +2552,33 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2494
2552
|
] }), Fillin_default = IconFillin;
|
|
2495
2553
|
|
|
2496
2554
|
// src/components/FoldedMenu.tsx
|
|
2497
|
-
var
|
|
2498
|
-
/* @__PURE__ */ (0,
|
|
2499
|
-
/* @__PURE__ */ (0,
|
|
2500
|
-
/* @__PURE__ */ (0,
|
|
2501
|
-
/* @__PURE__ */ (0,
|
|
2555
|
+
var import_jsx_runtime65 = __toESM(require_jsx_runtime()), IconFoldedMenu = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2556
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 3.75H22.5V1.5H1.5V3.75Z" }),
|
|
2557
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 22.5H22.5V20.25H1.5V22.5Z" }),
|
|
2558
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("path", { fill: stroke || color || "currentColor", d: "M22.5 10.125H1.5V7.875H22.5V10.125Z" }),
|
|
2559
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 16.125H22.5V13.875H1.5V16.125Z" })
|
|
2502
2560
|
] }), FoldedMenu_default = IconFoldedMenu;
|
|
2503
2561
|
|
|
2504
2562
|
// src/components/FullScreen.tsx
|
|
2505
|
-
var
|
|
2506
|
-
/* @__PURE__ */ (0,
|
|
2507
|
-
/* @__PURE__ */ (0,
|
|
2508
|
-
/* @__PURE__ */ (0,
|
|
2509
|
-
/* @__PURE__ */ (0,
|
|
2563
|
+
var import_jsx_runtime66 = __toESM(require_jsx_runtime()), IconFullScreen = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2564
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", { fill: stroke || color || "currentColor", d: "M3.25 14V20.75H10V23H1V14H3.25Z" }),
|
|
2565
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", { fill: stroke || color || "currentColor", d: "M23 23H14V20.75H20.75V14H23V23Z" }),
|
|
2566
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", { fill: stroke || color || "currentColor", d: "M10 3.25H3.25V10H1V1H10V3.25Z" }),
|
|
2567
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", { fill: stroke || color || "currentColor", d: "M23 10H20.75V3.25H14V1H23V10Z" })
|
|
2510
2568
|
] }), FullScreen_default = IconFullScreen;
|
|
2511
2569
|
|
|
2512
2570
|
// src/components/GameFilled.tsx
|
|
2513
|
-
var
|
|
2514
|
-
/* @__PURE__ */ (0,
|
|
2515
|
-
/* @__PURE__ */ (0,
|
|
2516
|
-
/* @__PURE__ */ (0,
|
|
2571
|
+
var import_jsx_runtime67 = __toESM(require_jsx_runtime()), IconGameFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2572
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("path", { fill: fill || color || "currentColor", d: "M7.5 0H16.5V5.37868L12 9.87868L7.5 5.37868V0Z" }),
|
|
2573
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("path", { fill: fill || color || "currentColor", d: "M5.37868 7.5H0V16.5H5.37868L9.87868 12L5.37868 7.5Z" }),
|
|
2574
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
2517
2575
|
"path",
|
|
2518
2576
|
{
|
|
2519
2577
|
fill: fill || color || "currentColor",
|
|
2520
2578
|
d: "M7.5 18.6213V24H16.5V18.6213L12 14.1213L7.5 18.6213Z"
|
|
2521
2579
|
}
|
|
2522
2580
|
),
|
|
2523
|
-
/* @__PURE__ */ (0,
|
|
2581
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
2524
2582
|
"path",
|
|
2525
2583
|
{
|
|
2526
2584
|
fill: fill || color || "currentColor",
|
|
@@ -2530,8 +2588,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2530
2588
|
] }), GameFilled_default = IconGameFilled;
|
|
2531
2589
|
|
|
2532
2590
|
// src/components/Game.tsx
|
|
2533
|
-
var
|
|
2534
|
-
/* @__PURE__ */ (0,
|
|
2591
|
+
var import_jsx_runtime68 = __toESM(require_jsx_runtime()), IconGame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2592
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
2535
2593
|
"path",
|
|
2536
2594
|
{
|
|
2537
2595
|
fill: stroke || color || "currentColor",
|
|
@@ -2540,7 +2598,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2540
2598
|
clipRule: "evenodd"
|
|
2541
2599
|
}
|
|
2542
2600
|
),
|
|
2543
|
-
/* @__PURE__ */ (0,
|
|
2601
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
2544
2602
|
"path",
|
|
2545
2603
|
{
|
|
2546
2604
|
fill: stroke || color || "currentColor",
|
|
@@ -2549,7 +2607,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2549
2607
|
clipRule: "evenodd"
|
|
2550
2608
|
}
|
|
2551
2609
|
),
|
|
2552
|
-
/* @__PURE__ */ (0,
|
|
2610
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
2553
2611
|
"path",
|
|
2554
2612
|
{
|
|
2555
2613
|
fill: stroke || color || "currentColor",
|
|
@@ -2558,7 +2616,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2558
2616
|
clipRule: "evenodd"
|
|
2559
2617
|
}
|
|
2560
2618
|
),
|
|
2561
|
-
/* @__PURE__ */ (0,
|
|
2619
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
2562
2620
|
"path",
|
|
2563
2621
|
{
|
|
2564
2622
|
fill: stroke || color || "currentColor",
|
|
@@ -2570,7 +2628,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2570
2628
|
] }), Game_default = IconGame;
|
|
2571
2629
|
|
|
2572
2630
|
// src/components/GamebackupFilled.tsx
|
|
2573
|
-
var
|
|
2631
|
+
var import_jsx_runtime69 = __toESM(require_jsx_runtime()), IconGamebackupFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
2574
2632
|
"path",
|
|
2575
2633
|
{
|
|
2576
2634
|
fill: fill || color || "currentColor",
|
|
@@ -2581,7 +2639,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2581
2639
|
) }), GamebackupFilled_default = IconGamebackupFilled;
|
|
2582
2640
|
|
|
2583
2641
|
// src/components/Gamebackup.tsx
|
|
2584
|
-
var
|
|
2642
|
+
var import_jsx_runtime70 = __toESM(require_jsx_runtime()), IconGamebackup = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
2585
2643
|
"path",
|
|
2586
2644
|
{
|
|
2587
2645
|
fill: stroke || color || "currentColor",
|
|
@@ -2592,7 +2650,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2592
2650
|
) }), Gamebackup_default = IconGamebackup;
|
|
2593
2651
|
|
|
2594
2652
|
// src/components/GamecontrolChoice.tsx
|
|
2595
|
-
var
|
|
2653
|
+
var import_jsx_runtime71 = __toESM(require_jsx_runtime()), IconGamecontrolChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
2596
2654
|
"path",
|
|
2597
2655
|
{
|
|
2598
2656
|
fill: stroke || color || "currentColor",
|
|
@@ -2603,7 +2661,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2603
2661
|
) }), GamecontrolChoice_default = IconGamecontrolChoice;
|
|
2604
2662
|
|
|
2605
2663
|
// src/components/GamecontrolGameplay.tsx
|
|
2606
|
-
var
|
|
2664
|
+
var import_jsx_runtime72 = __toESM(require_jsx_runtime()), IconGamecontrolGameplay = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
2607
2665
|
"path",
|
|
2608
2666
|
{
|
|
2609
2667
|
fill: stroke || color || "currentColor",
|
|
@@ -2614,7 +2672,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2614
2672
|
) }), GamecontrolGameplay_default = IconGamecontrolGameplay;
|
|
2615
2673
|
|
|
2616
2674
|
// src/components/GamecontrolLinear.tsx
|
|
2617
|
-
var
|
|
2675
|
+
var import_jsx_runtime73 = __toESM(require_jsx_runtime()), IconGamecontrolLinear = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
2618
2676
|
"path",
|
|
2619
2677
|
{
|
|
2620
2678
|
fill: stroke || color || "currentColor",
|
|
@@ -2625,15 +2683,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2625
2683
|
) }), GamecontrolLinear_default = IconGamecontrolLinear;
|
|
2626
2684
|
|
|
2627
2685
|
// src/components/GamecontrolNone.tsx
|
|
2628
|
-
var
|
|
2629
|
-
/* @__PURE__ */ (0,
|
|
2686
|
+
var import_jsx_runtime74 = __toESM(require_jsx_runtime()), IconGamecontrolNone = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2687
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
2630
2688
|
"path",
|
|
2631
2689
|
{
|
|
2632
2690
|
fill: stroke || color || "currentColor",
|
|
2633
2691
|
d: "M12 13.5C12.8284 13.5 13.5 12.8284 13.5 12C13.5 11.1716 12.8284 10.5 12 10.5C11.1716 10.5 10.5 11.1716 10.5 12C10.5 12.8284 11.1716 13.5 12 13.5Z"
|
|
2634
2692
|
}
|
|
2635
2693
|
),
|
|
2636
|
-
/* @__PURE__ */ (0,
|
|
2694
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
2637
2695
|
"path",
|
|
2638
2696
|
{
|
|
2639
2697
|
fill: stroke || color || "currentColor",
|
|
@@ -2642,7 +2700,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2642
2700
|
clipRule: "evenodd"
|
|
2643
2701
|
}
|
|
2644
2702
|
),
|
|
2645
|
-
/* @__PURE__ */ (0,
|
|
2703
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
2646
2704
|
"path",
|
|
2647
2705
|
{
|
|
2648
2706
|
fill: stroke || color || "currentColor",
|
|
@@ -2654,22 +2712,22 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2654
2712
|
] }), GamecontrolNone_default = IconGamecontrolNone;
|
|
2655
2713
|
|
|
2656
2714
|
// src/components/GamecontrolTerminal.tsx
|
|
2657
|
-
var
|
|
2658
|
-
/* @__PURE__ */ (0,
|
|
2715
|
+
var import_jsx_runtime75 = __toESM(require_jsx_runtime()), IconGamecontrolTerminal = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2716
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
2659
2717
|
"path",
|
|
2660
2718
|
{
|
|
2661
2719
|
fill: stroke || color || "currentColor",
|
|
2662
2720
|
d: "M14.2893 0.218108L12.2541 2.25325C12.1697 2.25109 12.085 2.25 12 2.25C6.61522 2.25 2.25 6.61522 2.25 12C2.25 17.3848 6.61522 21.75 12 21.75C17.3848 21.75 21.75 17.3848 21.75 12C21.75 11.915 21.7489 11.8303 21.7468 11.7459L23.7819 9.71075C23.925 10.4518 24 11.2171 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0C12.7829 0 13.5482 0.0749648 14.2893 0.218108Z"
|
|
2663
2721
|
}
|
|
2664
2722
|
),
|
|
2665
|
-
/* @__PURE__ */ (0,
|
|
2723
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
2666
2724
|
"path",
|
|
2667
2725
|
{
|
|
2668
2726
|
fill: stroke || color || "currentColor",
|
|
2669
2727
|
d: "M18.7088 12.75L16.4378 12.75C16.0807 14.8783 14.2297 16.5 12 16.5C9.51472 16.5 7.5 14.4853 7.5 12C7.5 9.77025 9.12172 7.91928 11.25 7.56222L11.25 5.2912C7.87504 5.66428 5.25 8.52559 5.25 12C5.25 15.7279 8.27208 18.75 12 18.75C15.4744 18.75 18.3357 16.125 18.7088 12.75Z"
|
|
2670
2728
|
}
|
|
2671
2729
|
),
|
|
2672
|
-
/* @__PURE__ */ (0,
|
|
2730
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
2673
2731
|
"path",
|
|
2674
2732
|
{
|
|
2675
2733
|
fill: stroke || color || "currentColor",
|
|
@@ -2681,7 +2739,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2681
2739
|
] }), GamecontrolTerminal_default = IconGamecontrolTerminal;
|
|
2682
2740
|
|
|
2683
2741
|
// src/components/Gamelanguage.tsx
|
|
2684
|
-
var
|
|
2742
|
+
var import_jsx_runtime76 = __toESM(require_jsx_runtime()), IconGamelanguage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
2685
2743
|
"path",
|
|
2686
2744
|
{
|
|
2687
2745
|
fill: stroke || color || "currentColor",
|
|
@@ -2692,8 +2750,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2692
2750
|
) }), Gamelanguage_default = IconGamelanguage;
|
|
2693
2751
|
|
|
2694
2752
|
// src/components/Gamepreview.tsx
|
|
2695
|
-
var
|
|
2696
|
-
/* @__PURE__ */ (0,
|
|
2753
|
+
var import_jsx_runtime77 = __toESM(require_jsx_runtime()), IconGamepreview = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2754
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
2697
2755
|
"path",
|
|
2698
2756
|
{
|
|
2699
2757
|
fill: stroke || color || "currentColor",
|
|
@@ -2702,7 +2760,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2702
2760
|
clipRule: "evenodd"
|
|
2703
2761
|
}
|
|
2704
2762
|
),
|
|
2705
|
-
/* @__PURE__ */ (0,
|
|
2763
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
2706
2764
|
"path",
|
|
2707
2765
|
{
|
|
2708
2766
|
fill: stroke || color || "currentColor",
|
|
@@ -2714,7 +2772,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2714
2772
|
] }), Gamepreview_default = IconGamepreview;
|
|
2715
2773
|
|
|
2716
2774
|
// src/components/Gameui.tsx
|
|
2717
|
-
var
|
|
2775
|
+
var import_jsx_runtime78 = __toESM(require_jsx_runtime()), IconGameui = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
2718
2776
|
"path",
|
|
2719
2777
|
{
|
|
2720
2778
|
fill: stroke || color || "currentColor",
|
|
@@ -2725,8 +2783,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2725
2783
|
) }), Gameui_default = IconGameui;
|
|
2726
2784
|
|
|
2727
2785
|
// src/components/Gameuivariable.tsx
|
|
2728
|
-
var
|
|
2729
|
-
/* @__PURE__ */ (0,
|
|
2786
|
+
var import_jsx_runtime79 = __toESM(require_jsx_runtime()), IconGameuivariable = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2787
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
2730
2788
|
"path",
|
|
2731
2789
|
{
|
|
2732
2790
|
fill: fill || color || "currentColor",
|
|
@@ -2735,7 +2793,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2735
2793
|
clipRule: "evenodd"
|
|
2736
2794
|
}
|
|
2737
2795
|
),
|
|
2738
|
-
/* @__PURE__ */ (0,
|
|
2796
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
2739
2797
|
"path",
|
|
2740
2798
|
{
|
|
2741
2799
|
fill: stroke || color || "currentColor",
|
|
@@ -2745,15 +2803,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2745
2803
|
] }), Gameuivariable_default = IconGameuivariable;
|
|
2746
2804
|
|
|
2747
2805
|
// src/components/Gameuivariable2.tsx
|
|
2748
|
-
var
|
|
2749
|
-
/* @__PURE__ */ (0,
|
|
2806
|
+
var import_jsx_runtime80 = __toESM(require_jsx_runtime()), IconGameuivariable2 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2807
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
2750
2808
|
"path",
|
|
2751
2809
|
{
|
|
2752
2810
|
fill: fill || color || "currentColor",
|
|
2753
2811
|
d: "M21.3496 9.34961L19.7578 10.9404L17.2041 8.38672L13.5908 12L13.5918 12.001L12.001 13.5918L12 13.5908L8.38672 17.2041L12 20.8184L14.5127 18.3037L16.1045 19.8955L12 24L0 12L12 0L21.3496 9.34961ZM3.18164 12L6.7959 15.6133L10.4092 12L6.7959 8.38672L3.18164 12ZM8.38672 6.7959L12 10.4092L15.6133 6.7959L12 3.18164L8.38672 6.7959Z"
|
|
2754
2812
|
}
|
|
2755
2813
|
),
|
|
2756
|
-
/* @__PURE__ */ (0,
|
|
2814
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
2757
2815
|
"path",
|
|
2758
2816
|
{
|
|
2759
2817
|
fill: stroke || color || "currentColor",
|
|
@@ -2763,15 +2821,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2763
2821
|
] }), Gameuivariable2_default = IconGameuivariable2;
|
|
2764
2822
|
|
|
2765
2823
|
// src/components/GenerateMultimage.tsx
|
|
2766
|
-
var
|
|
2767
|
-
/* @__PURE__ */ (0,
|
|
2824
|
+
var import_jsx_runtime81 = __toESM(require_jsx_runtime()), IconGenerateMultimage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2825
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
2768
2826
|
"path",
|
|
2769
2827
|
{
|
|
2770
2828
|
fill: stroke || color || "currentColor",
|
|
2771
2829
|
d: "M12 7.5C12.8284 7.5 13.5 6.82843 13.5 6C13.5 5.17157 12.8284 4.5 12 4.5C11.1716 4.5 10.5 5.17157 10.5 6C10.5 6.82843 11.1716 7.5 12 7.5Z"
|
|
2772
2830
|
}
|
|
2773
2831
|
),
|
|
2774
|
-
/* @__PURE__ */ (0,
|
|
2832
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
2775
2833
|
"path",
|
|
2776
2834
|
{
|
|
2777
2835
|
fill: stroke || color || "currentColor",
|
|
@@ -2780,11 +2838,11 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2780
2838
|
clipRule: "evenodd"
|
|
2781
2839
|
}
|
|
2782
2840
|
),
|
|
2783
|
-
/* @__PURE__ */ (0,
|
|
2841
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { fill: stroke || color || "currentColor", d: "M0 6V24H18V21.75H2.25V6H0Z" })
|
|
2784
2842
|
] }), GenerateMultimage_default = IconGenerateMultimage;
|
|
2785
2843
|
|
|
2786
2844
|
// src/components/GenerateFilled.tsx
|
|
2787
|
-
var
|
|
2845
|
+
var import_jsx_runtime82 = __toESM(require_jsx_runtime()), IconGenerateFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
2788
2846
|
"path",
|
|
2789
2847
|
{
|
|
2790
2848
|
fill: fill || color || "currentColor",
|
|
@@ -2795,15 +2853,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2795
2853
|
) }), GenerateFilled_default = IconGenerateFilled;
|
|
2796
2854
|
|
|
2797
2855
|
// src/components/GenerateFrameStart.tsx
|
|
2798
|
-
var
|
|
2799
|
-
/* @__PURE__ */ (0,
|
|
2856
|
+
var import_jsx_runtime83 = __toESM(require_jsx_runtime()), IconGenerateFrameStart = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2857
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
2800
2858
|
"path",
|
|
2801
2859
|
{
|
|
2802
2860
|
fill: stroke || color || "currentColor",
|
|
2803
2861
|
d: "M8.625 9.75C9.66053 9.75 10.5 8.91053 10.5 7.875C10.5 6.83947 9.66053 6 8.625 6C7.58947 6 6.75 6.83947 6.75 7.875C6.75 8.91053 7.58947 9.75 8.625 9.75Z"
|
|
2804
2862
|
}
|
|
2805
2863
|
),
|
|
2806
|
-
/* @__PURE__ */ (0,
|
|
2864
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
2807
2865
|
"path",
|
|
2808
2866
|
{
|
|
2809
2867
|
fill: stroke || color || "currentColor",
|
|
@@ -2815,8 +2873,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2815
2873
|
] }), GenerateFrameStart_default = IconGenerateFrameStart;
|
|
2816
2874
|
|
|
2817
2875
|
// src/components/GenerateFrameStart2End.tsx
|
|
2818
|
-
var
|
|
2819
|
-
/* @__PURE__ */ (0,
|
|
2876
|
+
var import_jsx_runtime84 = __toESM(require_jsx_runtime()), IconGenerateFrameStart2End = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2877
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
2820
2878
|
"path",
|
|
2821
2879
|
{
|
|
2822
2880
|
fill: stroke || color || "currentColor",
|
|
@@ -2825,14 +2883,14 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2825
2883
|
clipRule: "evenodd"
|
|
2826
2884
|
}
|
|
2827
2885
|
),
|
|
2828
|
-
/* @__PURE__ */ (0,
|
|
2886
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
2829
2887
|
"path",
|
|
2830
2888
|
{
|
|
2831
2889
|
fill: stroke || color || "currentColor",
|
|
2832
2890
|
d: "M4.74981 7.49969C5.5782 7.49969 6.24975 6.82815 6.24975 5.99976C6.24975 5.17136 5.5782 4.49982 4.74981 4.49982C3.92141 4.49982 3.24987 5.17136 3.24987 5.99976C3.24987 6.82815 3.92141 7.49969 4.74981 7.49969Z"
|
|
2833
2891
|
}
|
|
2834
2892
|
),
|
|
2835
|
-
/* @__PURE__ */ (0,
|
|
2893
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
2836
2894
|
"path",
|
|
2837
2895
|
{
|
|
2838
2896
|
fill: stroke || color || "currentColor",
|
|
@@ -2844,8 +2902,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2844
2902
|
] }), GenerateFrameStart2End_default = IconGenerateFrameStart2End;
|
|
2845
2903
|
|
|
2846
2904
|
// src/components/GenerateSwitchframe.tsx
|
|
2847
|
-
var
|
|
2848
|
-
/* @__PURE__ */ (0,
|
|
2905
|
+
var import_jsx_runtime85 = __toESM(require_jsx_runtime()), IconGenerateSwitchframe = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2906
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
2849
2907
|
"path",
|
|
2850
2908
|
{
|
|
2851
2909
|
fill: stroke || color || "currentColor",
|
|
@@ -2854,7 +2912,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2854
2912
|
clipRule: "evenodd"
|
|
2855
2913
|
}
|
|
2856
2914
|
),
|
|
2857
|
-
/* @__PURE__ */ (0,
|
|
2915
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
2858
2916
|
"path",
|
|
2859
2917
|
{
|
|
2860
2918
|
fill: stroke || color || "currentColor",
|
|
@@ -2866,15 +2924,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2866
2924
|
] }), GenerateSwitchframe_default = IconGenerateSwitchframe;
|
|
2867
2925
|
|
|
2868
2926
|
// src/components/GenerateT2V.tsx
|
|
2869
|
-
var
|
|
2870
|
-
/* @__PURE__ */ (0,
|
|
2927
|
+
var import_jsx_runtime86 = __toESM(require_jsx_runtime()), IconGenerateT2V = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2928
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
2871
2929
|
"path",
|
|
2872
2930
|
{
|
|
2873
2931
|
fill: stroke || color || "currentColor",
|
|
2874
2932
|
d: "M6 6V10.5H8.25V8.25H10.875V15.75H8.25V18H15.75V15.75H13.125V8.25H15.75V10.5H18V6H6Z"
|
|
2875
2933
|
}
|
|
2876
2934
|
),
|
|
2877
|
-
/* @__PURE__ */ (0,
|
|
2935
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
2878
2936
|
"path",
|
|
2879
2937
|
{
|
|
2880
2938
|
fill: stroke || color || "currentColor",
|
|
@@ -2886,7 +2944,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2886
2944
|
] }), GenerateT2V_default = IconGenerateT2V;
|
|
2887
2945
|
|
|
2888
2946
|
// src/components/Generate.tsx
|
|
2889
|
-
var
|
|
2947
|
+
var import_jsx_runtime87 = __toESM(require_jsx_runtime()), IconGenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
2890
2948
|
"path",
|
|
2891
2949
|
{
|
|
2892
2950
|
fill: stroke || color || "currentColor",
|
|
@@ -2895,15 +2953,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2895
2953
|
) }), Generate_default = IconGenerate;
|
|
2896
2954
|
|
|
2897
2955
|
// src/components/GenreAuto.tsx
|
|
2898
|
-
var
|
|
2899
|
-
/* @__PURE__ */ (0,
|
|
2956
|
+
var import_jsx_runtime88 = __toESM(require_jsx_runtime()), IconGenreAuto = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2957
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
2900
2958
|
"path",
|
|
2901
2959
|
{
|
|
2902
2960
|
fill: stroke || color || "currentColor",
|
|
2903
2961
|
d: "M18.375 6.375V10.5H16.125V6.375H12V4.125H16.125V0H18.375V4.125H22.5V6.375H18.375Z"
|
|
2904
2962
|
}
|
|
2905
2963
|
),
|
|
2906
|
-
/* @__PURE__ */ (0,
|
|
2964
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
2907
2965
|
"path",
|
|
2908
2966
|
{
|
|
2909
2967
|
fill: stroke || color || "currentColor",
|
|
@@ -2912,15 +2970,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2912
2970
|
clipRule: "evenodd"
|
|
2913
2971
|
}
|
|
2914
2972
|
),
|
|
2915
|
-
/* @__PURE__ */ (0,
|
|
2916
|
-
/* @__PURE__ */ (0,
|
|
2973
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("path", { fill: stroke || color || "currentColor", d: "M3.75 0.75L1.5 3L3.75 5.25L6 3L3.75 0.75Z" }),
|
|
2974
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
2917
2975
|
"path",
|
|
2918
2976
|
{
|
|
2919
2977
|
fill: stroke || color || "currentColor",
|
|
2920
2978
|
d: "M18 21.75L20.25 19.5L22.5 21.75L20.25 24L18 21.75Z"
|
|
2921
2979
|
}
|
|
2922
2980
|
),
|
|
2923
|
-
/* @__PURE__ */ (0,
|
|
2981
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
2924
2982
|
"path",
|
|
2925
2983
|
{
|
|
2926
2984
|
fill: stroke || color || "currentColor",
|
|
@@ -2930,22 +2988,22 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2930
2988
|
] }), GenreAuto_default = IconGenreAuto;
|
|
2931
2989
|
|
|
2932
2990
|
// src/components/GenreComedy.tsx
|
|
2933
|
-
var
|
|
2934
|
-
/* @__PURE__ */ (0,
|
|
2991
|
+
var import_jsx_runtime89 = __toESM(require_jsx_runtime()), IconGenreComedy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2992
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
2935
2993
|
"path",
|
|
2936
2994
|
{
|
|
2937
2995
|
fill: stroke || color || "currentColor",
|
|
2938
2996
|
d: "M8.25 10.5C9.07843 10.5 9.75 9.82843 9.75 9C9.75 8.17157 9.07843 7.5 8.25 7.5C7.42157 7.5 6.75 8.17157 6.75 9C6.75 9.82843 7.42157 10.5 8.25 10.5Z"
|
|
2939
2997
|
}
|
|
2940
2998
|
),
|
|
2941
|
-
/* @__PURE__ */ (0,
|
|
2999
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
2942
3000
|
"path",
|
|
2943
3001
|
{
|
|
2944
3002
|
fill: stroke || color || "currentColor",
|
|
2945
3003
|
d: "M17.25 9C17.25 9.82843 16.5784 10.5 15.75 10.5C14.9216 10.5 14.25 9.82843 14.25 9C14.25 8.17157 14.9216 7.5 15.75 7.5C16.5784 7.5 17.25 8.17157 17.25 9Z"
|
|
2946
3004
|
}
|
|
2947
3005
|
),
|
|
2948
|
-
/* @__PURE__ */ (0,
|
|
3006
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
2949
3007
|
"path",
|
|
2950
3008
|
{
|
|
2951
3009
|
fill: stroke || color || "currentColor",
|
|
@@ -2954,7 +3012,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2954
3012
|
clipRule: "evenodd"
|
|
2955
3013
|
}
|
|
2956
3014
|
),
|
|
2957
|
-
/* @__PURE__ */ (0,
|
|
3015
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
2958
3016
|
"path",
|
|
2959
3017
|
{
|
|
2960
3018
|
fill: stroke || color || "currentColor",
|
|
@@ -2966,7 +3024,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2966
3024
|
] }), GenreComedy_default = IconGenreComedy;
|
|
2967
3025
|
|
|
2968
3026
|
// src/components/GenreFantasy.tsx
|
|
2969
|
-
var
|
|
3027
|
+
var import_jsx_runtime90 = __toESM(require_jsx_runtime()), IconGenreFantasy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
2970
3028
|
"path",
|
|
2971
3029
|
{
|
|
2972
3030
|
fill: stroke || color || "currentColor",
|
|
@@ -2977,22 +3035,22 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2977
3035
|
) }), GenreFantasy_default = IconGenreFantasy;
|
|
2978
3036
|
|
|
2979
3037
|
// src/components/GenreHorror.tsx
|
|
2980
|
-
var
|
|
2981
|
-
/* @__PURE__ */ (0,
|
|
3038
|
+
var import_jsx_runtime91 = __toESM(require_jsx_runtime()), IconGenreHorror = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3039
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
2982
3040
|
"path",
|
|
2983
3041
|
{
|
|
2984
3042
|
fill: stroke || color || "currentColor",
|
|
2985
3043
|
d: "M10.5 9C10.5 9.82843 9.82843 10.5 9 10.5C8.17157 10.5 7.5 9.82843 7.5 9C7.5 8.17157 8.17157 7.5 9 7.5C9.82843 7.5 10.5 8.17157 10.5 9Z"
|
|
2986
3044
|
}
|
|
2987
3045
|
),
|
|
2988
|
-
/* @__PURE__ */ (0,
|
|
3046
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
2989
3047
|
"path",
|
|
2990
3048
|
{
|
|
2991
3049
|
fill: stroke || color || "currentColor",
|
|
2992
3050
|
d: "M15 10.5C15.8284 10.5 16.5 9.82843 16.5 9C16.5 8.17157 15.8284 7.5 15 7.5C14.1716 7.5 13.5 8.17157 13.5 9C13.5 9.82843 14.1716 10.5 15 10.5Z"
|
|
2993
3051
|
}
|
|
2994
3052
|
),
|
|
2995
|
-
/* @__PURE__ */ (0,
|
|
3053
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
2996
3054
|
"path",
|
|
2997
3055
|
{
|
|
2998
3056
|
fill: stroke || color || "currentColor",
|
|
@@ -3004,7 +3062,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3004
3062
|
] }), GenreHorror_default = IconGenreHorror;
|
|
3005
3063
|
|
|
3006
3064
|
// src/components/GenreRomance.tsx
|
|
3007
|
-
var
|
|
3065
|
+
var import_jsx_runtime92 = __toESM(require_jsx_runtime()), IconGenreRomance = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
3008
3066
|
"path",
|
|
3009
3067
|
{
|
|
3010
3068
|
fill: stroke || color || "currentColor",
|
|
@@ -3015,15 +3073,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3015
3073
|
) }), GenreRomance_default = IconGenreRomance;
|
|
3016
3074
|
|
|
3017
3075
|
// src/components/GenreScifi.tsx
|
|
3018
|
-
var
|
|
3019
|
-
/* @__PURE__ */ (0,
|
|
3076
|
+
var import_jsx_runtime93 = __toESM(require_jsx_runtime()), IconGenreScifi = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3077
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
3020
3078
|
"path",
|
|
3021
3079
|
{
|
|
3022
3080
|
fill: stroke || color || "currentColor",
|
|
3023
3081
|
d: "M17.25 8.25C17.25 9.07843 16.5784 9.75 15.75 9.75C14.9216 9.75 14.25 9.07843 14.25 8.25C14.25 7.42157 14.9216 6.75 15.75 6.75C16.5784 6.75 17.25 7.42157 17.25 8.25Z"
|
|
3024
3082
|
}
|
|
3025
3083
|
),
|
|
3026
|
-
/* @__PURE__ */ (0,
|
|
3084
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
3027
3085
|
"path",
|
|
3028
3086
|
{
|
|
3029
3087
|
fill: stroke || color || "currentColor",
|
|
@@ -3032,7 +3090,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3032
3090
|
clipRule: "evenodd"
|
|
3033
3091
|
}
|
|
3034
3092
|
),
|
|
3035
|
-
/* @__PURE__ */ (0,
|
|
3093
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
3036
3094
|
"path",
|
|
3037
3095
|
{
|
|
3038
3096
|
fill: stroke || color || "currentColor",
|
|
@@ -3042,7 +3100,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3042
3100
|
] }), GenreScifi_default = IconGenreScifi;
|
|
3043
3101
|
|
|
3044
3102
|
// src/components/GenreSuspense.tsx
|
|
3045
|
-
var
|
|
3103
|
+
var import_jsx_runtime94 = __toESM(require_jsx_runtime()), IconGenreSuspense = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
3046
3104
|
"path",
|
|
3047
3105
|
{
|
|
3048
3106
|
fill: stroke || color || "currentColor",
|
|
@@ -3053,7 +3111,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3053
3111
|
) }), GenreSuspense_default = IconGenreSuspense;
|
|
3054
3112
|
|
|
3055
3113
|
// src/components/Genre.tsx
|
|
3056
|
-
var
|
|
3114
|
+
var import_jsx_runtime95 = __toESM(require_jsx_runtime()), IconGenre = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
3057
3115
|
"path",
|
|
3058
3116
|
{
|
|
3059
3117
|
fill: stroke || color || "currentColor",
|
|
@@ -3064,8 +3122,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3064
3122
|
) }), Genre_default = IconGenre;
|
|
3065
3123
|
|
|
3066
3124
|
// src/components/GoogleLogoFilled.tsx
|
|
3067
|
-
var
|
|
3068
|
-
/* @__PURE__ */ (0,
|
|
3125
|
+
var import_jsx_runtime96 = __toESM(require_jsx_runtime()), IconGoogleLogoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3126
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3069
3127
|
"mask",
|
|
3070
3128
|
{
|
|
3071
3129
|
id: "mask0_48_113",
|
|
@@ -3075,7 +3133,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3075
3133
|
y: "0",
|
|
3076
3134
|
maskUnits: "userSpaceOnUse",
|
|
3077
3135
|
style: { maskType: "luminance" },
|
|
3078
|
-
children: /* @__PURE__ */ (0,
|
|
3136
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3079
3137
|
"path",
|
|
3080
3138
|
{
|
|
3081
3139
|
fill: stroke || color || "currentColor",
|
|
@@ -3084,64 +3142,64 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3084
3142
|
)
|
|
3085
3143
|
}
|
|
3086
3144
|
),
|
|
3087
|
-
/* @__PURE__ */ (0,
|
|
3088
|
-
/* @__PURE__ */ (0,
|
|
3145
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("g", { mask: "url(#mask0_48_113)", children: [
|
|
3146
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("g", { filter: "url(#filter0_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3089
3147
|
"path",
|
|
3090
3148
|
{
|
|
3091
3149
|
fill: "url(#paint0_radial_48_113)",
|
|
3092
3150
|
d: "M-0.13855 12.0511C-0.125823 13.9626 0.41885 15.9348 1.2433 17.5269V17.5378C1.83901 18.694 2.65317 19.6074 3.58049 20.5123L9.18123 18.4687C8.1216 17.9304 7.95992 17.6006 7.20034 16.9988C6.42411 16.2161 5.84559 15.3175 5.4853 14.2639H5.47079L5.4853 14.253C5.24828 13.5572 5.2249 12.8187 5.21615 12.0511H-0.13855Z"
|
|
3093
3151
|
}
|
|
3094
3152
|
) }),
|
|
3095
|
-
/* @__PURE__ */ (0,
|
|
3153
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("g", { filter: "url(#filter1_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3096
3154
|
"path",
|
|
3097
3155
|
{
|
|
3098
3156
|
fill: "url(#paint1_radial_48_113)",
|
|
3099
3157
|
d: "M12.2937 -0.116608C11.7402 1.82819 11.9518 3.71859 12.2937 4.81851C12.933 4.81898 13.5488 4.89518 14.1327 5.04699C15.4713 5.395 16.4181 6.08044 16.9983 6.6226L20.5889 3.10649C18.4618 1.15622 15.902 -0.113535 12.2937 -0.116608Z"
|
|
3100
3158
|
}
|
|
3101
3159
|
) }),
|
|
3102
|
-
/* @__PURE__ */ (0,
|
|
3160
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("g", { filter: "url(#filter2_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3103
3161
|
"path",
|
|
3104
3162
|
{
|
|
3105
3163
|
fill: "url(#paint2_radial_48_113)",
|
|
3106
3164
|
d: "M12.2817 -0.131989C9.56642 -0.132047 7.05954 0.713967 5.00522 2.14376C4.24245 2.67465 3.54248 3.2879 2.91919 3.96986C2.7559 5.50172 4.14151 7.38453 6.88543 7.36895C8.21677 5.8203 10.1858 4.81833 12.3773 4.81833C12.3793 4.81833 12.3813 4.8185 12.3833 4.81851L12.2938 -0.131638C12.2897 -0.131641 12.2858 -0.131989 12.2817 -0.131989Z"
|
|
3107
3165
|
}
|
|
3108
3166
|
) }),
|
|
3109
|
-
/* @__PURE__ */ (0,
|
|
3167
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("g", { filter: "url(#filter3_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3110
3168
|
"path",
|
|
3111
3169
|
{
|
|
3112
3170
|
fill: "url(#paint3_radial_48_113)",
|
|
3113
3171
|
d: "M21.2438 12.6054L18.8202 14.2704C18.7139 14.9233 18.4749 15.5657 18.1252 16.1513C17.7245 16.8224 17.2292 17.3333 16.7215 17.7223C15.2038 18.8853 13.4353 19.1248 12.2043 19.1258C10.9318 21.293 10.7087 22.3785 12.2938 24.1276C14.2551 24.1262 15.9938 23.7721 17.5275 23.1091C18.6362 22.6299 19.6185 22.0048 20.5078 21.2014C21.6829 20.1399 22.6033 18.8268 23.2315 17.3162C23.8597 15.8056 24.1956 14.0974 24.1956 12.2454L21.2438 12.6054Z"
|
|
3114
3172
|
}
|
|
3115
3173
|
) }),
|
|
3116
|
-
/* @__PURE__ */ (0,
|
|
3174
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("g", { filter: "url(#filter4_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3117
3175
|
"path",
|
|
3118
3176
|
{
|
|
3119
3177
|
fill: "#3086FF",
|
|
3120
3178
|
d: "M12.1147 9.56912V14.5333H23.7753C23.8778 13.8535 24.217 12.9737 24.217 12.2454C24.217 11.3943 24.1316 10.3547 23.9866 9.56912H12.1147Z"
|
|
3121
3179
|
}
|
|
3122
3180
|
) }),
|
|
3123
|
-
/* @__PURE__ */ (0,
|
|
3181
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("g", { filter: "url(#filter5_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3124
3182
|
"path",
|
|
3125
3183
|
{
|
|
3126
3184
|
fill: "url(#paint4_radial_48_113)",
|
|
3127
3185
|
d: "M2.97483 3.79462C2.25525 4.58193 1.64051 5.46316 1.1531 6.4162C0.316879 8.0461 -0.140991 10.0276 -0.140991 11.9697C-0.140991 11.997 -0.138726 12.0238 -0.138544 12.0511C0.231793 12.7612 4.97698 12.6252 5.21616 12.0511C5.21586 12.0244 5.21284 11.9982 5.21284 11.9714C5.21284 11.1748 5.34741 10.5877 5.5927 9.8676C5.8953 8.97932 6.36909 8.16135 6.97495 7.45659C7.11229 7.28125 7.47863 6.9043 7.58551 6.6782C7.62622 6.59208 7.5116 6.54374 7.50518 6.51343C7.49801 6.47952 7.34433 6.50679 7.30989 6.48153C7.20057 6.40135 6.98409 6.35947 6.85263 6.32225C6.57166 6.24269 6.10601 6.06725 5.84737 5.88538C5.02982 5.3105 3.75397 4.62381 2.97483 3.79462Z"
|
|
3128
3186
|
}
|
|
3129
3187
|
) }),
|
|
3130
|
-
/* @__PURE__ */ (0,
|
|
3188
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("g", { filter: "url(#filter6_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3131
3189
|
"path",
|
|
3132
3190
|
{
|
|
3133
3191
|
fill: "url(#paint5_radial_48_113)",
|
|
3134
3192
|
d: "M5.86493 6.51682C7.76074 7.66521 8.30593 5.93717 9.56638 5.39642L7.37379 0.849579C6.56724 1.18857 5.80521 1.60974 5.09815 2.10184C4.04224 2.83676 3.10978 3.73356 2.33951 4.75414L5.86493 6.51682Z"
|
|
3135
3193
|
}
|
|
3136
3194
|
) }),
|
|
3137
|
-
/* @__PURE__ */ (0,
|
|
3195
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("g", { filter: "url(#filter7_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3138
3196
|
"path",
|
|
3139
3197
|
{
|
|
3140
3198
|
fill: "url(#paint6_radial_48_113)",
|
|
3141
3199
|
d: "M6.63653 18.1174C4.09165 19.0362 3.69324 19.0691 3.45898 20.6463C3.90663 21.0831 4.3876 21.4872 4.8987 21.8536C6.27014 22.8367 8.9082 24.1459 12.282 24.1459C12.286 24.1459 12.2898 24.1456 12.2938 24.1456V19.0381C12.2912 19.0382 12.2883 19.0383 12.2857 19.0383C11.0223 19.0383 10.0128 18.7065 8.97763 18.1294C8.72242 17.9872 8.25938 18.3692 8.02401 18.1984C7.69937 17.9629 6.9181 18.4014 6.63653 18.1174Z"
|
|
3142
3200
|
}
|
|
3143
3201
|
) }),
|
|
3144
|
-
/* @__PURE__ */ (0,
|
|
3202
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("g", { filter: "url(#filter8_f_48_113)", style: { opacity: 0.5 }, children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3145
3203
|
"path",
|
|
3146
3204
|
{
|
|
3147
3205
|
fill: "url(#paint7_linear_48_113)",
|
|
@@ -3149,8 +3207,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3149
3207
|
}
|
|
3150
3208
|
) })
|
|
3151
3209
|
] }),
|
|
3152
|
-
/* @__PURE__ */ (0,
|
|
3153
|
-
/* @__PURE__ */ (0,
|
|
3210
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("defs", { children: [
|
|
3211
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3154
3212
|
"filter",
|
|
3155
3213
|
{
|
|
3156
3214
|
id: "filter0_f_48_113",
|
|
@@ -3161,13 +3219,13 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3161
3219
|
filterUnits: "userSpaceOnUse",
|
|
3162
3220
|
colorInterpolationFilters: "sRGB",
|
|
3163
3221
|
children: [
|
|
3164
|
-
/* @__PURE__ */ (0,
|
|
3165
|
-
/* @__PURE__ */ (0,
|
|
3166
|
-
/* @__PURE__ */ (0,
|
|
3222
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
3223
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
3224
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
3167
3225
|
]
|
|
3168
3226
|
}
|
|
3169
3227
|
),
|
|
3170
|
-
/* @__PURE__ */ (0,
|
|
3228
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3171
3229
|
"filter",
|
|
3172
3230
|
{
|
|
3173
3231
|
id: "filter1_f_48_113",
|
|
@@ -3178,13 +3236,13 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3178
3236
|
filterUnits: "userSpaceOnUse",
|
|
3179
3237
|
colorInterpolationFilters: "sRGB",
|
|
3180
3238
|
children: [
|
|
3181
|
-
/* @__PURE__ */ (0,
|
|
3182
|
-
/* @__PURE__ */ (0,
|
|
3183
|
-
/* @__PURE__ */ (0,
|
|
3239
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
3240
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
3241
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
3184
3242
|
]
|
|
3185
3243
|
}
|
|
3186
3244
|
),
|
|
3187
|
-
/* @__PURE__ */ (0,
|
|
3245
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3188
3246
|
"filter",
|
|
3189
3247
|
{
|
|
3190
3248
|
id: "filter2_f_48_113",
|
|
@@ -3195,13 +3253,13 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3195
3253
|
filterUnits: "userSpaceOnUse",
|
|
3196
3254
|
colorInterpolationFilters: "sRGB",
|
|
3197
3255
|
children: [
|
|
3198
|
-
/* @__PURE__ */ (0,
|
|
3199
|
-
/* @__PURE__ */ (0,
|
|
3200
|
-
/* @__PURE__ */ (0,
|
|
3256
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
3257
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
3258
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
3201
3259
|
]
|
|
3202
3260
|
}
|
|
3203
3261
|
),
|
|
3204
|
-
/* @__PURE__ */ (0,
|
|
3262
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3205
3263
|
"filter",
|
|
3206
3264
|
{
|
|
3207
3265
|
id: "filter3_f_48_113",
|
|
@@ -3212,13 +3270,13 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3212
3270
|
filterUnits: "userSpaceOnUse",
|
|
3213
3271
|
colorInterpolationFilters: "sRGB",
|
|
3214
3272
|
children: [
|
|
3215
|
-
/* @__PURE__ */ (0,
|
|
3216
|
-
/* @__PURE__ */ (0,
|
|
3217
|
-
/* @__PURE__ */ (0,
|
|
3273
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
3274
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
3275
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
3218
3276
|
]
|
|
3219
3277
|
}
|
|
3220
3278
|
),
|
|
3221
|
-
/* @__PURE__ */ (0,
|
|
3279
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3222
3280
|
"filter",
|
|
3223
3281
|
{
|
|
3224
3282
|
id: "filter4_f_48_113",
|
|
@@ -3229,13 +3287,13 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3229
3287
|
filterUnits: "userSpaceOnUse",
|
|
3230
3288
|
colorInterpolationFilters: "sRGB",
|
|
3231
3289
|
children: [
|
|
3232
|
-
/* @__PURE__ */ (0,
|
|
3233
|
-
/* @__PURE__ */ (0,
|
|
3234
|
-
/* @__PURE__ */ (0,
|
|
3290
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
3291
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
3292
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
3235
3293
|
]
|
|
3236
3294
|
}
|
|
3237
3295
|
),
|
|
3238
|
-
/* @__PURE__ */ (0,
|
|
3296
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3239
3297
|
"filter",
|
|
3240
3298
|
{
|
|
3241
3299
|
id: "filter5_f_48_113",
|
|
@@ -3246,13 +3304,13 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3246
3304
|
filterUnits: "userSpaceOnUse",
|
|
3247
3305
|
colorInterpolationFilters: "sRGB",
|
|
3248
3306
|
children: [
|
|
3249
|
-
/* @__PURE__ */ (0,
|
|
3250
|
-
/* @__PURE__ */ (0,
|
|
3251
|
-
/* @__PURE__ */ (0,
|
|
3307
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
3308
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
3309
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
3252
3310
|
]
|
|
3253
3311
|
}
|
|
3254
3312
|
),
|
|
3255
|
-
/* @__PURE__ */ (0,
|
|
3313
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3256
3314
|
"filter",
|
|
3257
3315
|
{
|
|
3258
3316
|
id: "filter6_f_48_113",
|
|
@@ -3263,13 +3321,13 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3263
3321
|
filterUnits: "userSpaceOnUse",
|
|
3264
3322
|
colorInterpolationFilters: "sRGB",
|
|
3265
3323
|
children: [
|
|
3266
|
-
/* @__PURE__ */ (0,
|
|
3267
|
-
/* @__PURE__ */ (0,
|
|
3268
|
-
/* @__PURE__ */ (0,
|
|
3324
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
3325
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
3326
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "1.65243" })
|
|
3269
3327
|
]
|
|
3270
3328
|
}
|
|
3271
3329
|
),
|
|
3272
|
-
/* @__PURE__ */ (0,
|
|
3330
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3273
3331
|
"filter",
|
|
3274
3332
|
{
|
|
3275
3333
|
id: "filter7_f_48_113",
|
|
@@ -3280,13 +3338,13 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3280
3338
|
filterUnits: "userSpaceOnUse",
|
|
3281
3339
|
colorInterpolationFilters: "sRGB",
|
|
3282
3340
|
children: [
|
|
3283
|
-
/* @__PURE__ */ (0,
|
|
3284
|
-
/* @__PURE__ */ (0,
|
|
3285
|
-
/* @__PURE__ */ (0,
|
|
3341
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
3342
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
3343
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
3286
3344
|
]
|
|
3287
3345
|
}
|
|
3288
3346
|
),
|
|
3289
|
-
/* @__PURE__ */ (0,
|
|
3347
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3290
3348
|
"filter",
|
|
3291
3349
|
{
|
|
3292
3350
|
id: "filter8_f_48_113",
|
|
@@ -3297,13 +3355,13 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3297
3355
|
filterUnits: "userSpaceOnUse",
|
|
3298
3356
|
colorInterpolationFilters: "sRGB",
|
|
3299
3357
|
children: [
|
|
3300
|
-
/* @__PURE__ */ (0,
|
|
3301
|
-
/* @__PURE__ */ (0,
|
|
3302
|
-
/* @__PURE__ */ (0,
|
|
3358
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
3359
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
3360
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
3303
3361
|
]
|
|
3304
3362
|
}
|
|
3305
3363
|
),
|
|
3306
|
-
/* @__PURE__ */ (0,
|
|
3364
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3307
3365
|
"radialGradient",
|
|
3308
3366
|
{
|
|
3309
3367
|
id: "paint0_radial_48_113",
|
|
@@ -3313,20 +3371,20 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3313
3371
|
gradientTransform: "matrix(-0.498722 -11.9519 17.9311 -0.717223 9.06911 20.3322)",
|
|
3314
3372
|
gradientUnits: "userSpaceOnUse",
|
|
3315
3373
|
children: [
|
|
3316
|
-
/* @__PURE__ */ (0,
|
|
3317
|
-
/* @__PURE__ */ (0,
|
|
3318
|
-
/* @__PURE__ */ (0,
|
|
3319
|
-
/* @__PURE__ */ (0,
|
|
3320
|
-
/* @__PURE__ */ (0,
|
|
3321
|
-
/* @__PURE__ */ (0,
|
|
3322
|
-
/* @__PURE__ */ (0,
|
|
3323
|
-
/* @__PURE__ */ (0,
|
|
3324
|
-
/* @__PURE__ */ (0,
|
|
3325
|
-
/* @__PURE__ */ (0,
|
|
3374
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.141612", stopColor: "#1ABD4D" }),
|
|
3375
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.247515", stopColor: "#6EC30D" }),
|
|
3376
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.311547", stopColor: "#8AC502" }),
|
|
3377
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.366013", stopColor: "#A2C600" }),
|
|
3378
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.445673", stopColor: "#C8C903" }),
|
|
3379
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.540305", stopColor: "#EBCB03" }),
|
|
3380
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.615636", stopColor: "#F7CD07" }),
|
|
3381
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.699345", stopColor: "#FDCD04" }),
|
|
3382
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.771242", stopColor: "#FDCE05" }),
|
|
3383
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.860566", stopColor: "#FFCE0A" })
|
|
3326
3384
|
]
|
|
3327
3385
|
}
|
|
3328
3386
|
),
|
|
3329
|
-
/* @__PURE__ */ (0,
|
|
3387
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3330
3388
|
"radialGradient",
|
|
3331
3389
|
{
|
|
3332
3390
|
id: "paint1_radial_48_113",
|
|
@@ -3336,12 +3394,12 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3336
3394
|
gradientTransform: "matrix(8.46967 -2.03557e-05 -1.19045e-05 10.7093 20.253 6.36819)",
|
|
3337
3395
|
gradientUnits: "userSpaceOnUse",
|
|
3338
3396
|
children: [
|
|
3339
|
-
/* @__PURE__ */ (0,
|
|
3340
|
-
/* @__PURE__ */ (0,
|
|
3397
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.408458", stopColor: "#FB4E5A" }),
|
|
3398
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "1", stopColor: "#FF4540" })
|
|
3341
3399
|
]
|
|
3342
3400
|
}
|
|
3343
3401
|
),
|
|
3344
|
-
/* @__PURE__ */ (0,
|
|
3402
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3345
3403
|
"radialGradient",
|
|
3346
3404
|
{
|
|
3347
3405
|
id: "paint2_radial_48_113",
|
|
@@ -3351,18 +3409,18 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3351
3409
|
gradientTransform: "matrix(-11.8666 6.43492 8.91875 15.766 15.6277 -1.68219)",
|
|
3352
3410
|
gradientUnits: "userSpaceOnUse",
|
|
3353
3411
|
children: [
|
|
3354
|
-
/* @__PURE__ */ (0,
|
|
3355
|
-
/* @__PURE__ */ (0,
|
|
3356
|
-
/* @__PURE__ */ (0,
|
|
3357
|
-
/* @__PURE__ */ (0,
|
|
3358
|
-
/* @__PURE__ */ (0,
|
|
3359
|
-
/* @__PURE__ */ (0,
|
|
3360
|
-
/* @__PURE__ */ (0,
|
|
3361
|
-
/* @__PURE__ */ (0,
|
|
3412
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.231273", stopColor: "#FF4541" }),
|
|
3413
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.311547", stopColor: "#FF4540" }),
|
|
3414
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.457516", stopColor: "#FF4640" }),
|
|
3415
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.540305", stopColor: "#FF473F" }),
|
|
3416
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.699346", stopColor: "#FF5138" }),
|
|
3417
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.771242", stopColor: "#FF5B33" }),
|
|
3418
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.860566", stopColor: "#FF6C29" }),
|
|
3419
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "1", stopColor: "#FF8C18" })
|
|
3362
3420
|
]
|
|
3363
3421
|
}
|
|
3364
3422
|
),
|
|
3365
|
-
/* @__PURE__ */ (0,
|
|
3423
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3366
3424
|
"radialGradient",
|
|
3367
3425
|
{
|
|
3368
3426
|
id: "paint3_radial_48_113",
|
|
@@ -3372,19 +3430,19 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3372
3430
|
gradientTransform: "matrix(-21.5204 -27.5047 -10.3696 7.77752 12.4702 22.5743)",
|
|
3373
3431
|
gradientUnits: "userSpaceOnUse",
|
|
3374
3432
|
children: [
|
|
3375
|
-
/* @__PURE__ */ (0,
|
|
3376
|
-
/* @__PURE__ */ (0,
|
|
3377
|
-
/* @__PURE__ */ (0,
|
|
3378
|
-
/* @__PURE__ */ (0,
|
|
3379
|
-
/* @__PURE__ */ (0,
|
|
3380
|
-
/* @__PURE__ */ (0,
|
|
3381
|
-
/* @__PURE__ */ (0,
|
|
3382
|
-
/* @__PURE__ */ (0,
|
|
3383
|
-
/* @__PURE__ */ (0,
|
|
3433
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.131546", stopColor: "#0CBA65" }),
|
|
3434
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.209784", stopColor: "#0BB86D" }),
|
|
3435
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.297297", stopColor: "#09B479" }),
|
|
3436
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.396257", stopColor: "#08AD93" }),
|
|
3437
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.477124", stopColor: "#0AA6A9" }),
|
|
3438
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.568425", stopColor: "#0D9CC6" }),
|
|
3439
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.667385", stopColor: "#1893DD" }),
|
|
3440
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.768727", stopColor: "#258BF1" }),
|
|
3441
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.858506", stopColor: "#3086FF" })
|
|
3384
3442
|
]
|
|
3385
3443
|
}
|
|
3386
3444
|
),
|
|
3387
|
-
/* @__PURE__ */ (0,
|
|
3445
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3388
3446
|
"radialGradient",
|
|
3389
3447
|
{
|
|
3390
3448
|
id: "paint4_radial_48_113",
|
|
@@ -3394,18 +3452,18 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3394
3452
|
gradientTransform: "matrix(-1.52295 12.8522 18.1501 2.06168 11.2421 2.13475)",
|
|
3395
3453
|
gradientUnits: "userSpaceOnUse",
|
|
3396
3454
|
children: [
|
|
3397
|
-
/* @__PURE__ */ (0,
|
|
3398
|
-
/* @__PURE__ */ (0,
|
|
3399
|
-
/* @__PURE__ */ (0,
|
|
3400
|
-
/* @__PURE__ */ (0,
|
|
3401
|
-
/* @__PURE__ */ (0,
|
|
3402
|
-
/* @__PURE__ */ (0,
|
|
3403
|
-
/* @__PURE__ */ (0,
|
|
3404
|
-
/* @__PURE__ */ (0,
|
|
3455
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.366013", stopColor: "#FF4E3A" }),
|
|
3456
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.457516", stopColor: "#FF8A1B" }),
|
|
3457
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.540305", stopColor: "#FFA312" }),
|
|
3458
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.615636", stopColor: "#FFB60C" }),
|
|
3459
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.771242", stopColor: "#FFCD0A" }),
|
|
3460
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.860566", stopColor: "#FECF0A" }),
|
|
3461
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.915033", stopColor: "#FECF08" }),
|
|
3462
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "1", stopColor: "#FDCD01" })
|
|
3405
3463
|
]
|
|
3406
3464
|
}
|
|
3407
3465
|
),
|
|
3408
|
-
/* @__PURE__ */ (0,
|
|
3466
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3409
3467
|
"radialGradient",
|
|
3410
3468
|
{
|
|
3411
3469
|
id: "paint5_radial_48_113",
|
|
@@ -3415,15 +3473,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3415
3473
|
gradientTransform: "matrix(-4.40212 4.76677 -13.7322 -12.1566 9.10044 2.00144)",
|
|
3416
3474
|
gradientUnits: "userSpaceOnUse",
|
|
3417
3475
|
children: [
|
|
3418
|
-
/* @__PURE__ */ (0,
|
|
3419
|
-
/* @__PURE__ */ (0,
|
|
3420
|
-
/* @__PURE__ */ (0,
|
|
3421
|
-
/* @__PURE__ */ (0,
|
|
3422
|
-
/* @__PURE__ */ (0,
|
|
3476
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.315904", stopColor: "#FF4C3C" }),
|
|
3477
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.603818", stopColor: "#FF692C" }),
|
|
3478
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.726837", stopColor: "#FF7825" }),
|
|
3479
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.884534", stopColor: "#FF8D1B" }),
|
|
3480
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "1", stopColor: "#FF9F13" })
|
|
3423
3481
|
]
|
|
3424
3482
|
}
|
|
3425
3483
|
),
|
|
3426
|
-
/* @__PURE__ */ (0,
|
|
3484
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3427
3485
|
"radialGradient",
|
|
3428
3486
|
{
|
|
3429
3487
|
id: "paint6_radial_48_113",
|
|
@@ -3433,20 +3491,20 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3433
3491
|
gradientTransform: "matrix(-11.8666 -6.43492 8.91876 -15.766 15.6277 25.6232)",
|
|
3434
3492
|
gradientUnits: "userSpaceOnUse",
|
|
3435
3493
|
children: [
|
|
3436
|
-
/* @__PURE__ */ (0,
|
|
3437
|
-
/* @__PURE__ */ (0,
|
|
3438
|
-
/* @__PURE__ */ (0,
|
|
3439
|
-
/* @__PURE__ */ (0,
|
|
3440
|
-
/* @__PURE__ */ (0,
|
|
3441
|
-
/* @__PURE__ */ (0,
|
|
3442
|
-
/* @__PURE__ */ (0,
|
|
3443
|
-
/* @__PURE__ */ (0,
|
|
3444
|
-
/* @__PURE__ */ (0,
|
|
3445
|
-
/* @__PURE__ */ (0,
|
|
3494
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.231273", stopColor: "#0FBC5F" }),
|
|
3495
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.311547", stopColor: "#0FBC5F" }),
|
|
3496
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.366013", stopColor: "#0FBC5E" }),
|
|
3497
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.457516", stopColor: "#0FBC5D" }),
|
|
3498
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.540305", stopColor: "#12BC58" }),
|
|
3499
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.699346", stopColor: "#28BF3C" }),
|
|
3500
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.771242", stopColor: "#38C02B" }),
|
|
3501
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.860566", stopColor: "#52C218" }),
|
|
3502
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "0.915033", stopColor: "#67C30F" }),
|
|
3503
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "1", stopColor: "#86C504" })
|
|
3446
3504
|
]
|
|
3447
3505
|
}
|
|
3448
3506
|
),
|
|
3449
|
-
/* @__PURE__ */ (0,
|
|
3507
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3450
3508
|
"linearGradient",
|
|
3451
3509
|
{
|
|
3452
3510
|
id: "paint7_linear_48_113",
|
|
@@ -3456,8 +3514,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3456
3514
|
y2: "21.5116",
|
|
3457
3515
|
gradientUnits: "userSpaceOnUse",
|
|
3458
3516
|
children: [
|
|
3459
|
-
/* @__PURE__ */ (0,
|
|
3460
|
-
/* @__PURE__ */ (0,
|
|
3517
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { stopColor: "#0FBC5C" }),
|
|
3518
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("stop", { offset: "1", stopColor: "#0CBA65" })
|
|
3461
3519
|
]
|
|
3462
3520
|
}
|
|
3463
3521
|
)
|
|
@@ -3465,7 +3523,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3465
3523
|
] }), GoogleLogoFilled_default = IconGoogleLogoFilled;
|
|
3466
3524
|
|
|
3467
3525
|
// src/components/Handtool.tsx
|
|
3468
|
-
var
|
|
3526
|
+
var import_jsx_runtime97 = __toESM(require_jsx_runtime()), IconHandtool = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
3469
3527
|
"path",
|
|
3470
3528
|
{
|
|
3471
3529
|
fill: stroke || color || "currentColor",
|
|
@@ -3474,16 +3532,16 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3474
3532
|
) }), Handtool_default = IconHandtool;
|
|
3475
3533
|
|
|
3476
3534
|
// src/components/Help.tsx
|
|
3477
|
-
var
|
|
3478
|
-
/* @__PURE__ */ (0,
|
|
3479
|
-
/* @__PURE__ */ (0,
|
|
3535
|
+
var import_jsx_runtime98 = __toESM(require_jsx_runtime()), IconHelp = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3536
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { fill: stroke || color || "currentColor", d: "M13.125 16.5V18.75H10.875V16.5H13.125Z" }),
|
|
3537
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
3480
3538
|
"path",
|
|
3481
3539
|
{
|
|
3482
3540
|
fill: stroke || color || "currentColor",
|
|
3483
3541
|
d: "M9.75 9.75C9.75 8.50736 10.7574 7.5 12 7.5C13.2426 7.5 14.25 8.50736 14.25 9.75C14.25 10.9926 13.2426 12 12 12H10.875V14.25H12C14.4853 14.25 16.5 12.2353 16.5 9.75C16.5 7.26472 14.4853 5.25 12 5.25C9.51472 5.25 7.5 7.26472 7.5 9.75V10.5H9.75V9.75Z"
|
|
3484
3542
|
}
|
|
3485
3543
|
),
|
|
3486
|
-
/* @__PURE__ */ (0,
|
|
3544
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
3487
3545
|
"path",
|
|
3488
3546
|
{
|
|
3489
3547
|
fill: stroke || color || "currentColor",
|
|
@@ -3495,7 +3553,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3495
3553
|
] }), Help_default = IconHelp;
|
|
3496
3554
|
|
|
3497
3555
|
// src/components/HomepageFilled.tsx
|
|
3498
|
-
var
|
|
3556
|
+
var import_jsx_runtime99 = __toESM(require_jsx_runtime()), IconHomepageFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
3499
3557
|
"path",
|
|
3500
3558
|
{
|
|
3501
3559
|
fill: fill || color || "currentColor",
|
|
@@ -3506,7 +3564,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3506
3564
|
) }), HomepageFilled_default = IconHomepageFilled;
|
|
3507
3565
|
|
|
3508
3566
|
// src/components/Hotareacenter.tsx
|
|
3509
|
-
var
|
|
3567
|
+
var import_jsx_runtime100 = __toESM(require_jsx_runtime()), IconHotareacenter = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
3510
3568
|
"path",
|
|
3511
3569
|
{
|
|
3512
3570
|
fill: "#191919",
|
|
@@ -3516,22 +3574,22 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3516
3574
|
) }), Hotareacenter_default = IconHotareacenter;
|
|
3517
3575
|
|
|
3518
3576
|
// src/components/ImageGeneration.tsx
|
|
3519
|
-
var
|
|
3520
|
-
/* @__PURE__ */ (0,
|
|
3577
|
+
var import_jsx_runtime101 = __toESM(require_jsx_runtime()), IconImageGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3578
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
3521
3579
|
"path",
|
|
3522
3580
|
{
|
|
3523
3581
|
fill: stroke || color || "currentColor",
|
|
3524
3582
|
d: "M12 3.75H3.75V17.1592L9 11.9092L12 14.9092L14.9092 12H18.0908L12 18.0908L9 15.0908L3.84082 20.25H20.25V12H22.5V22.5H1.5V1.5H12V3.75Z"
|
|
3525
3583
|
}
|
|
3526
3584
|
),
|
|
3527
|
-
/* @__PURE__ */ (0,
|
|
3585
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
3528
3586
|
"path",
|
|
3529
3587
|
{
|
|
3530
3588
|
fill: stroke || color || "currentColor",
|
|
3531
3589
|
d: "M20.4287 3.57129L24 4.28613V5.71387L20.4287 6.42871L19.7139 10H18.2861L17.5713 6.42871L14 5.71387V4.28613L17.5713 3.57129L18.2861 0H19.7139L20.4287 3.57129Z"
|
|
3532
3590
|
}
|
|
3533
3591
|
),
|
|
3534
|
-
/* @__PURE__ */ (0,
|
|
3592
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
3535
3593
|
"path",
|
|
3536
3594
|
{
|
|
3537
3595
|
fill: stroke || color || "currentColor",
|
|
@@ -3541,8 +3599,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3541
3599
|
] }), ImageGeneration_default = IconImageGeneration;
|
|
3542
3600
|
|
|
3543
3601
|
// src/components/ImageLoadFailedFilled.tsx
|
|
3544
|
-
var
|
|
3545
|
-
/* @__PURE__ */ (0,
|
|
3602
|
+
var import_jsx_runtime102 = __toESM(require_jsx_runtime()), IconImageLoadFailedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3603
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
3546
3604
|
"path",
|
|
3547
3605
|
{
|
|
3548
3606
|
fill: fill || color || "currentColor",
|
|
@@ -3551,7 +3609,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3551
3609
|
clipRule: "evenodd"
|
|
3552
3610
|
}
|
|
3553
3611
|
),
|
|
3554
|
-
/* @__PURE__ */ (0,
|
|
3612
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
3555
3613
|
"path",
|
|
3556
3614
|
{
|
|
3557
3615
|
fill: fill || color || "currentColor",
|
|
@@ -3561,10 +3619,10 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3561
3619
|
] }), ImageLoadFailedFilled_default = IconImageLoadFailedFilled;
|
|
3562
3620
|
|
|
3563
3621
|
// src/components/Info.tsx
|
|
3564
|
-
var
|
|
3565
|
-
/* @__PURE__ */ (0,
|
|
3566
|
-
/* @__PURE__ */ (0,
|
|
3567
|
-
/* @__PURE__ */ (0,
|
|
3622
|
+
var import_jsx_runtime103 = __toESM(require_jsx_runtime()), IconInfo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3623
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)("path", { fill: stroke || color || "currentColor", d: "M13.125 5.25V7.5H10.875V5.25H13.125Z" }),
|
|
3624
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)("path", { fill: stroke || color || "currentColor", d: "M9 12H10.875V18.75H15V16.5H13.125V9.75H9V12Z" }),
|
|
3625
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
3568
3626
|
"path",
|
|
3569
3627
|
{
|
|
3570
3628
|
fill: stroke || color || "currentColor",
|
|
@@ -3576,7 +3634,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3576
3634
|
] }), Info_default = IconInfo;
|
|
3577
3635
|
|
|
3578
3636
|
// src/components/Invitecode.tsx
|
|
3579
|
-
var
|
|
3637
|
+
var import_jsx_runtime104 = __toESM(require_jsx_runtime()), IconInvitecode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
3580
3638
|
"path",
|
|
3581
3639
|
{
|
|
3582
3640
|
fill: fill || color || "currentColor",
|
|
@@ -3587,7 +3645,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3587
3645
|
) }), Invitecode_default = IconInvitecode;
|
|
3588
3646
|
|
|
3589
3647
|
// src/components/LeftFilled.tsx
|
|
3590
|
-
var
|
|
3648
|
+
var import_jsx_runtime105 = __toESM(require_jsx_runtime()), IconLeftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
3591
3649
|
"path",
|
|
3592
3650
|
{
|
|
3593
3651
|
fill: fill || color || "currentColor",
|
|
@@ -3598,15 +3656,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3598
3656
|
) }), LeftFilled_default = IconLeftFilled;
|
|
3599
3657
|
|
|
3600
3658
|
// src/components/Loading.tsx
|
|
3601
|
-
var
|
|
3602
|
-
/* @__PURE__ */ (0,
|
|
3659
|
+
var import_jsx_runtime106 = __toESM(require_jsx_runtime()), IconLoading = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3660
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
3603
3661
|
"path",
|
|
3604
3662
|
{
|
|
3605
3663
|
fill: fill || color || "currentColor",
|
|
3606
3664
|
d: "M4.10058 17.2783C3.0567 15.716 2.49999 13.8789 2.49999 12L0 12C1.03743e-07 14.3733 0.703882 16.6936 2.02246 18.6669L2.27636 19.0312C3.57677 20.8296 5.35246 22.2353 7.40818 23.0869L7.82127 23.249C9.90155 24.0218 12.1585 24.2035 14.3408 23.7695C16.6686 23.3064 18.8071 22.1635 20.4853 20.4853L20.7939 20.165C22.3038 18.5388 23.3354 16.5229 23.7695 14.3408L23.8476 13.9033C24.1761 11.8583 23.9702 9.76285 23.249 7.82127L23.0869 7.40818C22.2353 5.35246 20.8296 3.57677 19.0312 2.27636L18.6669 2.02246C16.6936 0.703882 14.3733 -1.03743e-07 12 0L12 2.49999C13.8789 2.49999 15.716 3.0567 17.2783 4.10058C18.8405 5.14444 20.0583 6.62838 20.7773 8.36424C21.4963 10.1001 21.6839 12.0107 21.3173 13.8535C20.9507 15.6962 20.0463 17.3892 18.7177 18.7177C17.3892 20.0463 15.6962 20.9507 13.8535 21.3173C12.0107 21.6839 10.1001 21.4953 8.36424 20.7763C6.62853 20.0573 5.14437 18.8404 4.10058 17.2783Z"
|
|
3607
3665
|
}
|
|
3608
3666
|
),
|
|
3609
|
-
/* @__PURE__ */ (0,
|
|
3667
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
3610
3668
|
"path",
|
|
3611
3669
|
{
|
|
3612
3670
|
fill: stroke || color || "currentColor",
|
|
@@ -3616,15 +3674,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3616
3674
|
] }), Loading_default = IconLoading;
|
|
3617
3675
|
|
|
3618
3676
|
// src/components/Login.tsx
|
|
3619
|
-
var
|
|
3620
|
-
/* @__PURE__ */ (0,
|
|
3677
|
+
var import_jsx_runtime107 = __toESM(require_jsx_runtime()), IconLogin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3678
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
3621
3679
|
"path",
|
|
3622
3680
|
{
|
|
3623
3681
|
fill: stroke || color || "currentColor",
|
|
3624
3682
|
d: "M24 1.5L13.5 1.5V3.75H21.75V20.25H13.5V22.5H24V1.5Z"
|
|
3625
3683
|
}
|
|
3626
3684
|
),
|
|
3627
|
-
/* @__PURE__ */ (0,
|
|
3685
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
3628
3686
|
"path",
|
|
3629
3687
|
{
|
|
3630
3688
|
fill: stroke || color || "currentColor",
|
|
@@ -3636,8 +3694,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3636
3694
|
] }), Login_default = IconLogin;
|
|
3637
3695
|
|
|
3638
3696
|
// src/components/Logout.tsx
|
|
3639
|
-
var
|
|
3640
|
-
/* @__PURE__ */ (0,
|
|
3697
|
+
var import_jsx_runtime108 = __toESM(require_jsx_runtime()), IconLogout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime108.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3698
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
3641
3699
|
"path",
|
|
3642
3700
|
{
|
|
3643
3701
|
fill: stroke || color || "currentColor",
|
|
@@ -3646,7 +3704,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3646
3704
|
clipRule: "evenodd"
|
|
3647
3705
|
}
|
|
3648
3706
|
),
|
|
3649
|
-
/* @__PURE__ */ (0,
|
|
3707
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
3650
3708
|
"path",
|
|
3651
3709
|
{
|
|
3652
3710
|
fill: stroke || color || "currentColor",
|
|
@@ -3656,8 +3714,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3656
3714
|
] }), Logout_default = IconLogout;
|
|
3657
3715
|
|
|
3658
3716
|
// src/components/Magic.tsx
|
|
3659
|
-
var
|
|
3660
|
-
/* @__PURE__ */ (0,
|
|
3717
|
+
var import_jsx_runtime109 = __toESM(require_jsx_runtime()), IconMagic = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3718
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
3661
3719
|
"path",
|
|
3662
3720
|
{
|
|
3663
3721
|
fill: stroke || color || "currentColor",
|
|
@@ -3666,15 +3724,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3666
3724
|
clipRule: "evenodd"
|
|
3667
3725
|
}
|
|
3668
3726
|
),
|
|
3669
|
-
/* @__PURE__ */ (0,
|
|
3670
|
-
/* @__PURE__ */ (0,
|
|
3727
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)("path", { fill: stroke || color || "currentColor", d: "M5.25 3L3 5.25L5.25 7.5L7.5 5.25L5.25 3Z" }),
|
|
3728
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
3671
3729
|
"path",
|
|
3672
3730
|
{
|
|
3673
3731
|
fill: stroke || color || "currentColor",
|
|
3674
3732
|
d: "M19.5 14.25L21.75 12L24 14.25L21.75 16.5L19.5 14.25Z"
|
|
3675
3733
|
}
|
|
3676
3734
|
),
|
|
3677
|
-
/* @__PURE__ */ (0,
|
|
3735
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
3678
3736
|
"path",
|
|
3679
3737
|
{
|
|
3680
3738
|
fill: stroke || color || "currentColor",
|
|
@@ -3684,7 +3742,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3684
3742
|
] }), Magic_default = IconMagic;
|
|
3685
3743
|
|
|
3686
3744
|
// src/components/ModelGeminiFilled.tsx
|
|
3687
|
-
var
|
|
3745
|
+
var import_jsx_runtime110 = __toESM(require_jsx_runtime()), IconModelGeminiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
3688
3746
|
"path",
|
|
3689
3747
|
{
|
|
3690
3748
|
fill: fill || color || "currentColor",
|
|
@@ -3693,7 +3751,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3693
3751
|
) }), ModelGeminiFilled_default = IconModelGeminiFilled;
|
|
3694
3752
|
|
|
3695
3753
|
// src/components/ModelOpenaiFilled.tsx
|
|
3696
|
-
var
|
|
3754
|
+
var import_jsx_runtime111 = __toESM(require_jsx_runtime()), IconModelOpenaiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
3697
3755
|
"path",
|
|
3698
3756
|
{
|
|
3699
3757
|
fill: fill || color || "currentColor",
|
|
@@ -3702,8 +3760,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3702
3760
|
) }), ModelOpenaiFilled_default = IconModelOpenaiFilled;
|
|
3703
3761
|
|
|
3704
3762
|
// src/components/ModelDeepmindFilled.tsx
|
|
3705
|
-
var
|
|
3706
|
-
/* @__PURE__ */ (0,
|
|
3763
|
+
var import_jsx_runtime112 = __toESM(require_jsx_runtime()), IconModelDeepmindFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime112.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3764
|
+
/* @__PURE__ */ (0, import_jsx_runtime112.jsx)("g", { clipPath: "url(#clip0_40_67)", children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
3707
3765
|
"path",
|
|
3708
3766
|
{
|
|
3709
3767
|
fill: fill || color || "currentColor",
|
|
@@ -3712,27 +3770,27 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3712
3770
|
clipRule: "evenodd"
|
|
3713
3771
|
}
|
|
3714
3772
|
) }),
|
|
3715
|
-
/* @__PURE__ */ (0,
|
|
3773
|
+
/* @__PURE__ */ (0, import_jsx_runtime112.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("clipPath", { id: "clip0_40_67", children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("rect", { width: "20", height: "20", fill: stroke || color || "currentColor", transform: "translate(2 2)" }) }) })
|
|
3716
3774
|
] }), ModelDeepmindFilled_default = IconModelDeepmindFilled;
|
|
3717
3775
|
|
|
3718
3776
|
// src/components/ModelSeedFilled.tsx
|
|
3719
|
-
var
|
|
3720
|
-
/* @__PURE__ */ (0,
|
|
3721
|
-
/* @__PURE__ */ (0,
|
|
3777
|
+
var import_jsx_runtime113 = __toESM(require_jsx_runtime()), IconModelSeedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3778
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { fill: fill || color || "currentColor", d: "M23 2.95271V20.0401L19.2211 21V2L23 2.95271Z" }),
|
|
3779
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
3722
3780
|
"path",
|
|
3723
3781
|
{
|
|
3724
3782
|
fill: fill || color || "currentColor",
|
|
3725
3783
|
d: "M10.7528 11.4648V19.5633L6.98126 20.5241V10.5048L10.7528 11.4648Z"
|
|
3726
3784
|
}
|
|
3727
3785
|
),
|
|
3728
|
-
/* @__PURE__ */ (0,
|
|
3786
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
3729
3787
|
"path",
|
|
3730
3788
|
{
|
|
3731
3789
|
fill: fill || color || "currentColor",
|
|
3732
3790
|
d: "M4.77158 3.95509V19.044L1 20.0048V2.99515L4.77158 3.95509Z"
|
|
3733
3791
|
}
|
|
3734
3792
|
),
|
|
3735
|
-
/* @__PURE__ */ (0,
|
|
3793
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
3736
3794
|
"path",
|
|
3737
3795
|
{
|
|
3738
3796
|
fill: fill || color || "currentColor",
|
|
@@ -3742,7 +3800,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3742
3800
|
] }), ModelSeedFilled_default = IconModelSeedFilled;
|
|
3743
3801
|
|
|
3744
3802
|
// src/components/ModelSoraFilled.tsx
|
|
3745
|
-
var
|
|
3803
|
+
var import_jsx_runtime114 = __toESM(require_jsx_runtime()), IconModelSoraFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("svg", { fill: "none", viewBox: "0 0 25 25", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
3746
3804
|
"path",
|
|
3747
3805
|
{
|
|
3748
3806
|
fill: fill || color || "currentColor",
|
|
@@ -3751,7 +3809,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3751
3809
|
) }), ModelSoraFilled_default = IconModelSoraFilled;
|
|
3752
3810
|
|
|
3753
3811
|
// src/components/ModelNanobananaLogoNomoFilled.tsx
|
|
3754
|
-
var
|
|
3812
|
+
var import_jsx_runtime115 = __toESM(require_jsx_runtime()), IconModelNanobananaLogoNomoFilled = ({
|
|
3755
3813
|
size,
|
|
3756
3814
|
width,
|
|
3757
3815
|
height,
|
|
@@ -3759,64 +3817,64 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3759
3817
|
className,
|
|
3760
3818
|
fill,
|
|
3761
3819
|
stroke
|
|
3762
|
-
}) => /* @__PURE__ */ (0,
|
|
3763
|
-
/* @__PURE__ */ (0,
|
|
3820
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3821
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3764
3822
|
"path",
|
|
3765
3823
|
{
|
|
3766
3824
|
fill: "#5A5C62",
|
|
3767
3825
|
d: "M1.64625 17.835C1.86 18.2775 2.75438 18.2494 3.24751 18.0938C4.5075 17.6963 5.29125 16.6125 5.29125 16.6125L11.7863 13.8563L13.7756 12.8119C13.7756 12.8119 14.1619 12.1556 13.3894 11.655C12.6169 11.1544 12.075 11.1169 12.075 11.1169L9.83625 12.5419C9.83625 12.5419 8.39063 11.4169 6.9225 11.2463C5.52 11.085 3.77438 12.225 3.315 14.3775C2.94188 16.1231 2.35125 16.7381 2.17313 16.965C1.995 17.1938 1.4625 17.4563 1.64625 17.835Z"
|
|
3768
3826
|
}
|
|
3769
3827
|
),
|
|
3770
|
-
/* @__PURE__ */ (0,
|
|
3828
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3771
3829
|
"path",
|
|
3772
3830
|
{
|
|
3773
3831
|
fill: "#D5D6D7",
|
|
3774
3832
|
d: "M9.42749 6.0281C10.0031 4.1231 10.7306 1.89372 11.8294 1.1306C12.8025 0.455595 13.7494 0.57747 14.1994 0.871845C14.1994 0.871845 15.0112 1.20372 15.225 2.04185C15.5775 3.4181 15.1144 5.06997 14.8125 6.77622C14.5106 8.48247 14.3531 9.65622 14.2162 11.0268C14.2031 11.1506 11.9362 15.1856 11.9362 15.1856L10.1269 16.155C10.1269 16.155 8.74499 13.1662 8.76562 12.7443C8.78437 12.3206 9.00749 7.41935 9.42749 6.0281Z"
|
|
3775
3833
|
}
|
|
3776
3834
|
),
|
|
3777
|
-
/* @__PURE__ */ (0,
|
|
3835
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3778
3836
|
"path",
|
|
3779
3837
|
{
|
|
3780
3838
|
fill: "#C4C5C7",
|
|
3781
3839
|
d: "M14.1469 12.5513C14.1713 13.0069 13.0725 16.6388 13.0725 16.6388L10.125 16.1513C10.125 16.1513 8.03439 14.9138 7.97626 12.6694C7.88626 9.28501 8.46564 7.69126 8.88564 6.30001C9.46314 4.39876 10.7494 1.89376 11.8388 1.11751C12.4781 0.661886 13.1869 0.594387 13.4775 0.650637C13.4775 0.650637 11.5425 2.16564 10.5638 4.75689C9.58501 7.34814 9.35439 10.3425 9.35439 10.3425C9.35439 10.3425 10.0744 10.8731 11.7731 11.1169C13.0856 11.3063 14.2181 10.9856 14.2181 10.9856C14.2181 10.9856 14.115 11.9738 14.1469 12.5513Z"
|
|
3782
3840
|
}
|
|
3783
3841
|
),
|
|
3784
|
-
/* @__PURE__ */ (0,
|
|
3842
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3785
3843
|
"path",
|
|
3786
3844
|
{
|
|
3787
3845
|
fill: "#7B7C81",
|
|
3788
3846
|
d: "M8.00062 15.7031L9.17999 13.2394L9.11624 12.3619C9.11624 12.3619 8.86499 11.625 10.4344 12.8156C11.1619 13.3669 11.6006 14.3831 11.6006 14.3831C11.6006 14.3831 11.8219 13.8356 12.5981 13.1119C13.2881 12.4706 14.2162 12.1594 14.2162 12.1594C14.2162 12.1594 16.1437 11.7844 16.3537 11.9475C17.7131 13.0087 18.7069 14.3006 18.7069 14.3006L19.7062 18.0787L21.3675 19.0969C21.3675 19.0969 20.9137 19.7606 20.2575 19.5131C19.7456 19.32 19.1119 18.7406 18.7706 18.0112C18.3019 17.0081 17.3175 15.1106 16.8169 14.5106C15.8494 13.3556 14.9006 12.9337 14.1937 13.2694C13.3894 13.65 14.0325 17.4487 14.0325 17.4487L19.2037 21.8006L19.2919 22.3931C19.2919 22.3931 18.54 23.115 16.4681 23.0475C14.3962 22.98 11.625 22.2131 9.87187 19.8225C8.32499 17.715 8.00062 15.7031 8.00062 15.7031Z"
|
|
3789
3847
|
}
|
|
3790
3848
|
),
|
|
3791
|
-
/* @__PURE__ */ (0,
|
|
3849
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3792
3850
|
"path",
|
|
3793
3851
|
{
|
|
3794
3852
|
fill: "#85878B",
|
|
3795
3853
|
d: "M12.0787 15.93C12.0337 16.9706 12.6825 18.5475 14.1825 19.8619C15.6806 21.1763 17.2631 21.6113 18.2456 21.6863C18.9581 21.7406 19.17 21.3338 19.17 21.3338C19.17 21.3338 17.7337 20.0119 16.6669 18.9525C15.6544 17.9456 14.5519 15.8306 14.3119 14.8575C14.0719 13.8844 14.2894 13.23 14.2894 13.23C14.2894 13.23 13.8244 13.3594 13.14 14.0456C12.4762 14.7113 12.1031 15.3525 12.0787 15.93Z"
|
|
3796
3854
|
}
|
|
3797
3855
|
),
|
|
3798
|
-
/* @__PURE__ */ (0,
|
|
3856
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3799
3857
|
"path",
|
|
3800
3858
|
{
|
|
3801
3859
|
fill: "#1B1D24",
|
|
3802
3860
|
d: "M18.4781 22.2638C18.6337 22.6256 19.1681 22.6406 19.4006 22.44C19.62 22.2506 19.8337 21.8738 19.6125 21.4519C19.4662 21.1744 18.9862 21.0975 18.7162 21.3131C18.4462 21.5288 18.3375 21.9356 18.4781 22.2638Z"
|
|
3803
3861
|
}
|
|
3804
3862
|
),
|
|
3805
|
-
/* @__PURE__ */ (0,
|
|
3863
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3806
3864
|
"path",
|
|
3807
3865
|
{
|
|
3808
3866
|
fill: "#D5D6D7",
|
|
3809
3867
|
d: "M19.545 18.345C20.16 19.1981 20.7769 19.3275 21.0319 19.3556C21.255 19.3818 21.4988 19.0968 21.4706 18.8343C21.4425 18.5718 21.0113 18.2025 20.9588 17.3962C20.9063 16.59 20.97 13.6331 19.3294 11.9343C18.1725 10.7381 16.755 11.1506 15.84 11.4675C14.8088 11.8237 14.2144 12.1612 14.2144 12.1612C14.2144 12.1612 15.0581 12.1031 16.5131 13.2506C17.3588 13.9181 17.8556 14.835 18.3244 15.8868C18.6619 16.6481 19.1119 17.745 19.545 18.345Z"
|
|
3810
3868
|
}
|
|
3811
3869
|
),
|
|
3812
|
-
/* @__PURE__ */ (0,
|
|
3870
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3813
3871
|
"path",
|
|
3814
3872
|
{
|
|
3815
3873
|
fill: "#85878B",
|
|
3816
3874
|
d: "M3.1875 20.5463C3.36 20.8913 3.78187 21.105 4.155 21.0882C4.94437 21.0544 5.66437 20.6475 6.46125 19.62C7.58812 18.165 8.56875 14.6738 9.30375 13.7438C9.80062 13.1157 10.4194 12.8044 10.4194 12.8044C10.4194 12.8044 10.0781 12.5157 9.73687 12.3375C9.39562 12.1594 8.57062 12.2438 8.57062 12.2438L5.04937 17.9025L3.1875 20.5463Z"
|
|
3817
3875
|
}
|
|
3818
3876
|
),
|
|
3819
|
-
/* @__PURE__ */ (0,
|
|
3877
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3820
3878
|
"path",
|
|
3821
3879
|
{
|
|
3822
3880
|
fill: "#D5D6D7",
|
|
@@ -3826,9 +3884,9 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3826
3884
|
] }), ModelNanobananaLogoNomoFilled_default = IconModelNanobananaLogoNomoFilled;
|
|
3827
3885
|
|
|
3828
3886
|
// src/components/ModelhappyhorseFilled.tsx
|
|
3829
|
-
var
|
|
3830
|
-
/* @__PURE__ */ (0,
|
|
3831
|
-
/* @__PURE__ */ (0,
|
|
3887
|
+
var import_jsx_runtime116 = __toESM(require_jsx_runtime()), IconModelhappyhorseFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3888
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsxs)("g", { clipPath: "url(#clip0_786_80)", children: [
|
|
3889
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
3832
3890
|
"mask",
|
|
3833
3891
|
{
|
|
3834
3892
|
id: "mask0_786_80",
|
|
@@ -3838,10 +3896,10 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3838
3896
|
y: "-8",
|
|
3839
3897
|
maskUnits: "userSpaceOnUse",
|
|
3840
3898
|
style: { maskType: "luminance" },
|
|
3841
|
-
children: /* @__PURE__ */ (0,
|
|
3899
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { fill: stroke || color || "currentColor", d: "M32 -8H-8V32H32V-8Z" })
|
|
3842
3900
|
}
|
|
3843
3901
|
),
|
|
3844
|
-
/* @__PURE__ */ (0,
|
|
3902
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("g", { mask: "url(#mask0_786_80)", children: /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
3845
3903
|
"path",
|
|
3846
3904
|
{
|
|
3847
3905
|
fill: fill || color || "currentColor",
|
|
@@ -3849,11 +3907,11 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3849
3907
|
}
|
|
3850
3908
|
) })
|
|
3851
3909
|
] }),
|
|
3852
|
-
/* @__PURE__ */ (0,
|
|
3910
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("clipPath", { id: "clip0_786_80", children: /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
3853
3911
|
] }), ModelhappyhorseFilled_default = IconModelhappyhorseFilled;
|
|
3854
3912
|
|
|
3855
3913
|
// src/components/ModelklingFilled.tsx
|
|
3856
|
-
var
|
|
3914
|
+
var import_jsx_runtime117 = __toESM(require_jsx_runtime()), IconModelklingFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
3857
3915
|
"path",
|
|
3858
3916
|
{
|
|
3859
3917
|
fill: fill || color || "currentColor",
|
|
@@ -3864,7 +3922,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3864
3922
|
) }), ModelklingFilled_default = IconModelklingFilled;
|
|
3865
3923
|
|
|
3866
3924
|
// src/components/Models.tsx
|
|
3867
|
-
var
|
|
3925
|
+
var import_jsx_runtime118 = __toESM(require_jsx_runtime()), IconModels = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
3868
3926
|
"path",
|
|
3869
3927
|
{
|
|
3870
3928
|
fill: stroke || color || "currentColor",
|
|
@@ -3875,7 +3933,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3875
3933
|
) }), Models_default = IconModels;
|
|
3876
3934
|
|
|
3877
3935
|
// src/components/MoreCollapse.tsx
|
|
3878
|
-
var
|
|
3936
|
+
var import_jsx_runtime119 = __toESM(require_jsx_runtime()), IconMoreCollapse = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
3879
3937
|
"path",
|
|
3880
3938
|
{
|
|
3881
3939
|
fill: stroke || color || "currentColor",
|
|
@@ -3884,22 +3942,22 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3884
3942
|
) }), MoreCollapse_default = IconMoreCollapse;
|
|
3885
3943
|
|
|
3886
3944
|
// src/components/MoreHorizontal.tsx
|
|
3887
|
-
var
|
|
3888
|
-
/* @__PURE__ */ (0,
|
|
3945
|
+
var import_jsx_runtime120 = __toESM(require_jsx_runtime()), IconMoreHorizontal = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3946
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
3889
3947
|
"path",
|
|
3890
3948
|
{
|
|
3891
3949
|
fill: stroke || color || "currentColor",
|
|
3892
3950
|
d: "M12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14Z"
|
|
3893
3951
|
}
|
|
3894
3952
|
),
|
|
3895
|
-
/* @__PURE__ */ (0,
|
|
3953
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
3896
3954
|
"path",
|
|
3897
3955
|
{
|
|
3898
3956
|
fill: stroke || color || "currentColor",
|
|
3899
3957
|
d: "M7 12C7 13.1046 6.10457 14 5 14C3.89543 14 3 13.1046 3 12C3 10.8954 3.89543 10 5 10C6.10457 10 7 10.8954 7 12Z"
|
|
3900
3958
|
}
|
|
3901
3959
|
),
|
|
3902
|
-
/* @__PURE__ */ (0,
|
|
3960
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
3903
3961
|
"path",
|
|
3904
3962
|
{
|
|
3905
3963
|
fill: stroke || color || "currentColor",
|
|
@@ -3909,7 +3967,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3909
3967
|
] }), MoreHorizontal_default = IconMoreHorizontal;
|
|
3910
3968
|
|
|
3911
3969
|
// src/components/MoreShowed.tsx
|
|
3912
|
-
var
|
|
3970
|
+
var import_jsx_runtime121 = __toESM(require_jsx_runtime()), IconMoreShowed = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime121.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
3913
3971
|
"path",
|
|
3914
3972
|
{
|
|
3915
3973
|
fill: stroke || color || "currentColor",
|
|
@@ -3918,22 +3976,22 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3918
3976
|
) }), MoreShowed_default = IconMoreShowed;
|
|
3919
3977
|
|
|
3920
3978
|
// src/components/More.tsx
|
|
3921
|
-
var
|
|
3922
|
-
/* @__PURE__ */ (0,
|
|
3979
|
+
var import_jsx_runtime122 = __toESM(require_jsx_runtime()), IconMore = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime122.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3980
|
+
/* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
3923
3981
|
"path",
|
|
3924
3982
|
{
|
|
3925
3983
|
fill: stroke || color || "currentColor",
|
|
3926
3984
|
d: "M14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12Z"
|
|
3927
3985
|
}
|
|
3928
3986
|
),
|
|
3929
|
-
/* @__PURE__ */ (0,
|
|
3987
|
+
/* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
3930
3988
|
"path",
|
|
3931
3989
|
{
|
|
3932
3990
|
fill: stroke || color || "currentColor",
|
|
3933
3991
|
d: "M12 17C13.1046 17 14 17.8954 14 19C14 20.1046 13.1046 21 12 21C10.8954 21 10 20.1046 10 19C10 17.8954 10.8954 17 12 17Z"
|
|
3934
3992
|
}
|
|
3935
3993
|
),
|
|
3936
|
-
/* @__PURE__ */ (0,
|
|
3994
|
+
/* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
3937
3995
|
"path",
|
|
3938
3996
|
{
|
|
3939
3997
|
fill: stroke || color || "currentColor",
|
|
@@ -3943,29 +4001,29 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3943
4001
|
] }), More_default = IconMore;
|
|
3944
4002
|
|
|
3945
4003
|
// src/components/Moresettings.tsx
|
|
3946
|
-
var
|
|
3947
|
-
/* @__PURE__ */ (0,
|
|
4004
|
+
var import_jsx_runtime123 = __toESM(require_jsx_runtime()), IconMoresettings = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4005
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
3948
4006
|
"path",
|
|
3949
4007
|
{
|
|
3950
4008
|
fill: stroke || color || "currentColor",
|
|
3951
4009
|
d: "M13.5 12C13.5 11.1716 12.8284 10.5 12 10.5C11.1716 10.5 10.5 11.1716 10.5 12C10.5 12.8284 11.1716 13.5 12 13.5C12.8284 13.5 13.5 12.8284 13.5 12Z"
|
|
3952
4010
|
}
|
|
3953
4011
|
),
|
|
3954
|
-
/* @__PURE__ */ (0,
|
|
4012
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
3955
4013
|
"path",
|
|
3956
4014
|
{
|
|
3957
4015
|
fill: stroke || color || "currentColor",
|
|
3958
4016
|
d: "M12 15.75C12.8284 15.75 13.5 16.4216 13.5 17.25C13.5 18.0784 12.8284 18.75 12 18.75C11.1716 18.75 10.5 18.0784 10.5 17.25C10.5 16.4216 11.1716 15.75 12 15.75Z"
|
|
3959
4017
|
}
|
|
3960
4018
|
),
|
|
3961
|
-
/* @__PURE__ */ (0,
|
|
4019
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
3962
4020
|
"path",
|
|
3963
4021
|
{
|
|
3964
4022
|
fill: stroke || color || "currentColor",
|
|
3965
4023
|
d: "M13.5 6.75C13.5 5.92157 12.8284 5.25 12 5.25C11.1716 5.25 10.5 5.92157 10.5 6.75C10.5 7.57843 11.1716 8.25 12 8.25C12.8284 8.25 13.5 7.57843 13.5 6.75Z"
|
|
3966
4024
|
}
|
|
3967
4025
|
),
|
|
3968
|
-
/* @__PURE__ */ (0,
|
|
4026
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
3969
4027
|
"path",
|
|
3970
4028
|
{
|
|
3971
4029
|
fill: stroke || color || "currentColor",
|
|
@@ -3977,8 +4035,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3977
4035
|
] }), Moresettings_default = IconMoresettings;
|
|
3978
4036
|
|
|
3979
4037
|
// src/components/MouseDrag.tsx
|
|
3980
|
-
var
|
|
3981
|
-
/* @__PURE__ */ (0,
|
|
4038
|
+
var import_jsx_runtime124 = __toESM(require_jsx_runtime()), IconMouseDrag = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4039
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
3982
4040
|
"path",
|
|
3983
4041
|
{
|
|
3984
4042
|
fill: fill || color || "currentColor",
|
|
@@ -3986,7 +4044,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3986
4044
|
d: "M13.5 3.5V20.5H10.5V3.5H13.5Z"
|
|
3987
4045
|
}
|
|
3988
4046
|
),
|
|
3989
|
-
/* @__PURE__ */ (0,
|
|
4047
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
3990
4048
|
"path",
|
|
3991
4049
|
{
|
|
3992
4050
|
fill: fill || color || "currentColor",
|
|
@@ -3994,7 +4052,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
3994
4052
|
d: "M6.79297 7.5L2.29297 12L6.79297 16.5H8.5V7.5H6.79297Z"
|
|
3995
4053
|
}
|
|
3996
4054
|
),
|
|
3997
|
-
/* @__PURE__ */ (0,
|
|
4055
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
3998
4056
|
"path",
|
|
3999
4057
|
{
|
|
4000
4058
|
fill: fill || color || "currentColor",
|
|
@@ -4005,8 +4063,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4005
4063
|
] }), MouseDrag_default = IconMouseDrag;
|
|
4006
4064
|
|
|
4007
4065
|
// src/components/MouseMove.tsx
|
|
4008
|
-
var
|
|
4009
|
-
/* @__PURE__ */ (0,
|
|
4066
|
+
var import_jsx_runtime125 = __toESM(require_jsx_runtime()), IconMouseMove = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4067
|
+
/* @__PURE__ */ (0, import_jsx_runtime125.jsx)("g", { clipPath: "url(#clip0_384_31)", children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
|
|
4010
4068
|
"path",
|
|
4011
4069
|
{
|
|
4012
4070
|
fill: fill || color || "currentColor",
|
|
@@ -4014,12 +4072,12 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4014
4072
|
d: "M15.5557 7.51074H13.0635V10.5635H16.1172V8.07129H18.5918L22.334 11.8135L21.9805 12.167L18.7383 15.4102L18.5918 15.5566H16.1172V13.0635H13.0635V16.1172H15.5557V18.5918L11.8135 22.334L11.46 21.9805L8.2168 18.7383L8.07031 18.5918V16.1172H10.5635V13.0635H7.50977V15.5566H5.03516L4.88867 15.4102L1.64648 12.167L1.29297 11.8135L5.03516 8.07129H7.50977V10.5635H10.5635V7.51074H8.07031V5.03516L8.2168 4.88867L11.46 1.64648L11.8135 1.29297L15.5557 5.03516V7.51074Z"
|
|
4015
4073
|
}
|
|
4016
4074
|
) }),
|
|
4017
|
-
/* @__PURE__ */ (0,
|
|
4075
|
+
/* @__PURE__ */ (0, import_jsx_runtime125.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("clipPath", { id: "clip0_384_31", children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
4018
4076
|
] }), MouseMove_default = IconMouseMove;
|
|
4019
4077
|
|
|
4020
4078
|
// src/components/MouseNumberchange.tsx
|
|
4021
|
-
var
|
|
4022
|
-
/* @__PURE__ */ (0,
|
|
4079
|
+
var import_jsx_runtime126 = __toESM(require_jsx_runtime()), IconMouseNumberchange = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime126.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4080
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
4023
4081
|
"path",
|
|
4024
4082
|
{
|
|
4025
4083
|
fill: fill || color || "currentColor",
|
|
@@ -4027,7 +4085,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4027
4085
|
d: "M10.5 17L9.30567 17L0.97168 12L9.30566 7L10.5 7L10.5 17Z"
|
|
4028
4086
|
}
|
|
4029
4087
|
),
|
|
4030
|
-
/* @__PURE__ */ (0,
|
|
4088
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
4031
4089
|
"path",
|
|
4032
4090
|
{
|
|
4033
4091
|
fill: fill || color || "currentColor",
|
|
@@ -4038,7 +4096,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4038
4096
|
] }), MouseNumberchange_default = IconMouseNumberchange;
|
|
4039
4097
|
|
|
4040
4098
|
// src/components/Musicassets.tsx
|
|
4041
|
-
var
|
|
4099
|
+
var import_jsx_runtime127 = __toESM(require_jsx_runtime()), IconMusicassets = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
4042
4100
|
"path",
|
|
4043
4101
|
{
|
|
4044
4102
|
fill: stroke || color || "currentColor",
|
|
@@ -4049,8 +4107,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4049
4107
|
) }), Musicassets_default = IconMusicassets;
|
|
4050
4108
|
|
|
4051
4109
|
// src/components/Mute.tsx
|
|
4052
|
-
var
|
|
4053
|
-
/* @__PURE__ */ (0,
|
|
4110
|
+
var import_jsx_runtime128 = __toESM(require_jsx_runtime()), IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4111
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
4054
4112
|
"path",
|
|
4055
4113
|
{
|
|
4056
4114
|
fill: stroke || color || "currentColor",
|
|
@@ -4059,7 +4117,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4059
4117
|
clipRule: "evenodd"
|
|
4060
4118
|
}
|
|
4061
4119
|
),
|
|
4062
|
-
/* @__PURE__ */ (0,
|
|
4120
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
4063
4121
|
"path",
|
|
4064
4122
|
{
|
|
4065
4123
|
fill: stroke || color || "currentColor",
|
|
@@ -4069,8 +4127,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4069
4127
|
] }), Mute_default = IconMute;
|
|
4070
4128
|
|
|
4071
4129
|
// src/components/Newchat.tsx
|
|
4072
|
-
var
|
|
4073
|
-
/* @__PURE__ */ (0,
|
|
4130
|
+
var import_jsx_runtime129 = __toESM(require_jsx_runtime()), IconNewchat = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime129.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4131
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
4074
4132
|
"path",
|
|
4075
4133
|
{
|
|
4076
4134
|
fill: stroke || color || "currentColor",
|
|
@@ -4079,7 +4137,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4079
4137
|
clipRule: "evenodd"
|
|
4080
4138
|
}
|
|
4081
4139
|
),
|
|
4082
|
-
/* @__PURE__ */ (0,
|
|
4140
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
4083
4141
|
"path",
|
|
4084
4142
|
{
|
|
4085
4143
|
fill: stroke || color || "currentColor",
|
|
@@ -4089,7 +4147,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4089
4147
|
] }), Newchat_default = IconNewchat;
|
|
4090
4148
|
|
|
4091
4149
|
// src/components/Next.tsx
|
|
4092
|
-
var
|
|
4150
|
+
var import_jsx_runtime130 = __toESM(require_jsx_runtime()), IconNext = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
4093
4151
|
"path",
|
|
4094
4152
|
{
|
|
4095
4153
|
fill: stroke || color || "currentColor",
|
|
@@ -4100,15 +4158,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4100
4158
|
) }), Next_default = IconNext;
|
|
4101
4159
|
|
|
4102
4160
|
// src/components/Nextscene.tsx
|
|
4103
|
-
var
|
|
4104
|
-
/* @__PURE__ */ (0,
|
|
4161
|
+
var import_jsx_runtime131 = __toESM(require_jsx_runtime()), IconNextscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4162
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
4105
4163
|
"path",
|
|
4106
4164
|
{
|
|
4107
4165
|
fill: stroke || color || "currentColor",
|
|
4108
4166
|
d: "M16.7959 12L10.2656 18.5303L9.2041 17.4697L14.6738 12L9.2041 6.53027L10.2656 5.46973L16.7959 12Z"
|
|
4109
4167
|
}
|
|
4110
4168
|
),
|
|
4111
|
-
/* @__PURE__ */ (0,
|
|
4169
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
4112
4170
|
"path",
|
|
4113
4171
|
{
|
|
4114
4172
|
fill: stroke || color || "currentColor",
|
|
@@ -4120,7 +4178,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4120
4178
|
] }), Nextscene_default = IconNextscene;
|
|
4121
4179
|
|
|
4122
4180
|
// src/components/Niceofficial.tsx
|
|
4123
|
-
var
|
|
4181
|
+
var import_jsx_runtime132 = __toESM(require_jsx_runtime()), IconNiceofficial = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
4124
4182
|
"path",
|
|
4125
4183
|
{
|
|
4126
4184
|
fill: fill || color || "currentColor",
|
|
@@ -4131,8 +4189,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4131
4189
|
) }), Niceofficial_default = IconNiceofficial;
|
|
4132
4190
|
|
|
4133
4191
|
// src/components/Notification.tsx
|
|
4134
|
-
var
|
|
4135
|
-
/* @__PURE__ */ (0,
|
|
4192
|
+
var import_jsx_runtime133 = __toESM(require_jsx_runtime()), IconNotification = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4193
|
+
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
4136
4194
|
"path",
|
|
4137
4195
|
{
|
|
4138
4196
|
fill: stroke || color || "currentColor",
|
|
@@ -4141,7 +4199,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4141
4199
|
clipRule: "evenodd"
|
|
4142
4200
|
}
|
|
4143
4201
|
),
|
|
4144
|
-
/* @__PURE__ */ (0,
|
|
4202
|
+
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
4145
4203
|
"path",
|
|
4146
4204
|
{
|
|
4147
4205
|
fill: stroke || color || "currentColor",
|
|
@@ -4151,17 +4209,17 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4151
4209
|
] }), Notification_default = IconNotification;
|
|
4152
4210
|
|
|
4153
4211
|
// src/components/Oneclickgenerate.tsx
|
|
4154
|
-
var
|
|
4155
|
-
/* @__PURE__ */ (0,
|
|
4156
|
-
/* @__PURE__ */ (0,
|
|
4157
|
-
/* @__PURE__ */ (0,
|
|
4212
|
+
var import_jsx_runtime134 = __toESM(require_jsx_runtime()), IconOneclickgenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4213
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { fill: stroke || color || "currentColor", d: "M12 4.5V0H9.75V4.5H12Z" }),
|
|
4214
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { fill: stroke || color || "currentColor", d: "M4.5 9.75H0V12H4.5V9.75Z" }),
|
|
4215
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
4158
4216
|
"path",
|
|
4159
4217
|
{
|
|
4160
4218
|
fill: stroke || color || "currentColor",
|
|
4161
4219
|
d: "M5.2045 6.7955L1.4545 3.0455L3.0455 1.4545L6.7955 5.2045L5.2045 6.7955Z"
|
|
4162
4220
|
}
|
|
4163
4221
|
),
|
|
4164
|
-
/* @__PURE__ */ (0,
|
|
4222
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
4165
4223
|
"path",
|
|
4166
4224
|
{
|
|
4167
4225
|
fill: stroke || color || "currentColor",
|
|
@@ -4173,8 +4231,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4173
4231
|
] }), Oneclickgenerate_default = IconOneclickgenerate;
|
|
4174
4232
|
|
|
4175
4233
|
// src/components/Opendemo.tsx
|
|
4176
|
-
var
|
|
4177
|
-
/* @__PURE__ */ (0,
|
|
4234
|
+
var import_jsx_runtime135 = __toESM(require_jsx_runtime()), IconOpendemo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4235
|
+
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
4178
4236
|
"path",
|
|
4179
4237
|
{
|
|
4180
4238
|
fill: stroke || color || "currentColor",
|
|
@@ -4183,11 +4241,11 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4183
4241
|
clipRule: "evenodd"
|
|
4184
4242
|
}
|
|
4185
4243
|
),
|
|
4186
|
-
/* @__PURE__ */ (0,
|
|
4244
|
+
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 3H9V5.25H3.75V20.25H18.75V15H21V22.5H1.5V3Z" })
|
|
4187
4245
|
] }), Opendemo_default = IconOpendemo;
|
|
4188
4246
|
|
|
4189
4247
|
// src/components/OppsFilled.tsx
|
|
4190
|
-
var
|
|
4248
|
+
var import_jsx_runtime136 = __toESM(require_jsx_runtime()), IconOppsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
|
|
4191
4249
|
"path",
|
|
4192
4250
|
{
|
|
4193
4251
|
fill: fill || color || "currentColor",
|
|
@@ -4198,7 +4256,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4198
4256
|
) }), OppsFilled_default = IconOppsFilled;
|
|
4199
4257
|
|
|
4200
4258
|
// src/components/OptionalcheckedFilled.tsx
|
|
4201
|
-
var
|
|
4259
|
+
var import_jsx_runtime137 = __toESM(require_jsx_runtime()), IconOptionalcheckedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
4202
4260
|
"path",
|
|
4203
4261
|
{
|
|
4204
4262
|
fill: fill || color || "currentColor",
|
|
@@ -4209,7 +4267,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4209
4267
|
) }), OptionalcheckedFilled_default = IconOptionalcheckedFilled;
|
|
4210
4268
|
|
|
4211
4269
|
// src/components/Optionaluncheck.tsx
|
|
4212
|
-
var
|
|
4270
|
+
var import_jsx_runtime138 = __toESM(require_jsx_runtime()), IconOptionaluncheck = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
4213
4271
|
"path",
|
|
4214
4272
|
{
|
|
4215
4273
|
fill: stroke || color || "currentColor",
|
|
@@ -4220,7 +4278,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4220
4278
|
) }), Optionaluncheck_default = IconOptionaluncheck;
|
|
4221
4279
|
|
|
4222
4280
|
// src/components/Packagegame.tsx
|
|
4223
|
-
var
|
|
4281
|
+
var import_jsx_runtime139 = __toESM(require_jsx_runtime()), IconPackagegame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
4224
4282
|
"path",
|
|
4225
4283
|
{
|
|
4226
4284
|
fill: stroke || color || "currentColor",
|
|
@@ -4231,11 +4289,11 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4231
4289
|
) }), Packagegame_default = IconPackagegame;
|
|
4232
4290
|
|
|
4233
4291
|
// src/components/PageError.tsx
|
|
4234
|
-
var
|
|
4292
|
+
var import_jsx_runtime140 = __toESM(require_jsx_runtime()), IconPageError = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("path", { fill: stroke || color || "currentColor", d: "M22.5 13.125H1.5V10.875H22.5V13.125Z" }) }), PageError_default = IconPageError;
|
|
4235
4293
|
|
|
4236
4294
|
// src/components/Parameters.tsx
|
|
4237
|
-
var
|
|
4238
|
-
/* @__PURE__ */ (0,
|
|
4295
|
+
var import_jsx_runtime141 = __toESM(require_jsx_runtime()), IconParameters = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime141.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4296
|
+
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
4239
4297
|
"path",
|
|
4240
4298
|
{
|
|
4241
4299
|
fill: stroke || color || "currentColor",
|
|
@@ -4244,7 +4302,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4244
4302
|
clipRule: "evenodd"
|
|
4245
4303
|
}
|
|
4246
4304
|
),
|
|
4247
|
-
/* @__PURE__ */ (0,
|
|
4305
|
+
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
4248
4306
|
"path",
|
|
4249
4307
|
{
|
|
4250
4308
|
fill: stroke || color || "currentColor",
|
|
@@ -4256,8 +4314,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4256
4314
|
] }), Parameters_default = IconParameters;
|
|
4257
4315
|
|
|
4258
4316
|
// src/components/Pause.tsx
|
|
4259
|
-
var
|
|
4260
|
-
/* @__PURE__ */ (0,
|
|
4317
|
+
var import_jsx_runtime142 = __toESM(require_jsx_runtime()), IconPause = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime142.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4318
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
4261
4319
|
"path",
|
|
4262
4320
|
{
|
|
4263
4321
|
fill: stroke || color || "currentColor",
|
|
@@ -4266,7 +4324,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4266
4324
|
clipRule: "evenodd"
|
|
4267
4325
|
}
|
|
4268
4326
|
),
|
|
4269
|
-
/* @__PURE__ */ (0,
|
|
4327
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
4270
4328
|
"path",
|
|
4271
4329
|
{
|
|
4272
4330
|
fill: stroke || color || "currentColor",
|
|
@@ -4278,7 +4336,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4278
4336
|
] }), Pause_default = IconPause;
|
|
4279
4337
|
|
|
4280
4338
|
// src/components/Pencil.tsx
|
|
4281
|
-
var
|
|
4339
|
+
var import_jsx_runtime143 = __toESM(require_jsx_runtime()), IconPencil = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
4282
4340
|
"path",
|
|
4283
4341
|
{
|
|
4284
4342
|
fill: stroke || color || "currentColor",
|
|
@@ -4289,7 +4347,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4289
4347
|
) }), Pencil_default = IconPencil;
|
|
4290
4348
|
|
|
4291
4349
|
// src/components/Pick.tsx
|
|
4292
|
-
var
|
|
4350
|
+
var import_jsx_runtime144 = __toESM(require_jsx_runtime()), IconPick = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
4293
4351
|
"path",
|
|
4294
4352
|
{
|
|
4295
4353
|
fill: stroke || color || "currentColor",
|
|
@@ -4300,22 +4358,22 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4300
4358
|
) }), Pick_default = IconPick;
|
|
4301
4359
|
|
|
4302
4360
|
// src/components/PickedFilled.tsx
|
|
4303
|
-
var
|
|
4361
|
+
var import_jsx_runtime145 = __toESM(require_jsx_runtime()), IconPickedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { fill: fill || color || "currentColor", d: "M3 0H21V24H18L12 18L6 24H3V0Z" }) }), PickedFilled_default = IconPickedFilled;
|
|
4304
4362
|
|
|
4305
4363
|
// src/components/PlanFilled.tsx
|
|
4306
|
-
var
|
|
4307
|
-
/* @__PURE__ */ (0,
|
|
4364
|
+
var import_jsx_runtime146 = __toESM(require_jsx_runtime()), IconPlanFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4365
|
+
/* @__PURE__ */ (0, import_jsx_runtime146.jsx)("g", { clipPath: "url(#clip0_2_30)", children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
4308
4366
|
"path",
|
|
4309
4367
|
{
|
|
4310
4368
|
fill: fill || color || "currentColor",
|
|
4311
4369
|
d: "M13.5 10.5L15 0H12L3 10.5V13.5H10.5L9 24H12L21 13.5L21 10.5H13.5Z"
|
|
4312
4370
|
}
|
|
4313
4371
|
) }),
|
|
4314
|
-
/* @__PURE__ */ (0,
|
|
4372
|
+
/* @__PURE__ */ (0, import_jsx_runtime146.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("clipPath", { id: "clip0_2_30", children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
4315
4373
|
] }), PlanFilled_default = IconPlanFilled;
|
|
4316
4374
|
|
|
4317
4375
|
// src/components/PlayFilled.tsx
|
|
4318
|
-
var
|
|
4376
|
+
var import_jsx_runtime147 = __toESM(require_jsx_runtime()), IconPlayFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
4319
4377
|
"path",
|
|
4320
4378
|
{
|
|
4321
4379
|
fill: fill || color || "currentColor",
|
|
@@ -4324,7 +4382,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4324
4382
|
) }), PlayFilled_default = IconPlayFilled;
|
|
4325
4383
|
|
|
4326
4384
|
// src/components/Play.tsx
|
|
4327
|
-
var
|
|
4385
|
+
var import_jsx_runtime148 = __toESM(require_jsx_runtime()), IconPlay = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|
|
4328
4386
|
"path",
|
|
4329
4387
|
{
|
|
4330
4388
|
fill: stroke || color || "currentColor",
|
|
@@ -4335,15 +4393,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4335
4393
|
) }), Play_default = IconPlay;
|
|
4336
4394
|
|
|
4337
4395
|
// src/components/Previouscene.tsx
|
|
4338
|
-
var
|
|
4339
|
-
/* @__PURE__ */ (0,
|
|
4396
|
+
var import_jsx_runtime149 = __toESM(require_jsx_runtime()), IconPreviouscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4397
|
+
/* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
4340
4398
|
"path",
|
|
4341
4399
|
{
|
|
4342
4400
|
fill: stroke || color || "currentColor",
|
|
4343
4401
|
d: "M7.2041 12L13.7344 18.5303L14.7959 17.4697L9.32617 12L14.7959 6.53027L13.7344 5.46973L7.2041 12Z"
|
|
4344
4402
|
}
|
|
4345
4403
|
),
|
|
4346
|
-
/* @__PURE__ */ (0,
|
|
4404
|
+
/* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
4347
4405
|
"path",
|
|
4348
4406
|
{
|
|
4349
4407
|
fill: stroke || color || "currentColor",
|
|
@@ -4355,7 +4413,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4355
4413
|
] }), Previouscene_default = IconPreviouscene;
|
|
4356
4414
|
|
|
4357
4415
|
// src/components/ProblemFilled.tsx
|
|
4358
|
-
var
|
|
4416
|
+
var import_jsx_runtime150 = __toESM(require_jsx_runtime()), IconProblemFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime150.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
4359
4417
|
"path",
|
|
4360
4418
|
{
|
|
4361
4419
|
fill: fill || color || "currentColor",
|
|
@@ -4366,7 +4424,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4366
4424
|
) }), ProblemFilled_default = IconProblemFilled;
|
|
4367
4425
|
|
|
4368
4426
|
// src/components/ProblemNoticeFilled.tsx
|
|
4369
|
-
var
|
|
4427
|
+
var import_jsx_runtime151 = __toESM(require_jsx_runtime()), IconProblemNoticeFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
4370
4428
|
"path",
|
|
4371
4429
|
{
|
|
4372
4430
|
fill: fill || color || "currentColor",
|
|
@@ -4377,10 +4435,10 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4377
4435
|
) }), ProblemNoticeFilled_default = IconProblemNoticeFilled;
|
|
4378
4436
|
|
|
4379
4437
|
// src/components/Problem.tsx
|
|
4380
|
-
var
|
|
4381
|
-
/* @__PURE__ */ (0,
|
|
4382
|
-
/* @__PURE__ */ (0,
|
|
4383
|
-
/* @__PURE__ */ (0,
|
|
4438
|
+
var import_jsx_runtime152 = __toESM(require_jsx_runtime()), IconProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4439
|
+
/* @__PURE__ */ (0, import_jsx_runtime152.jsx)("path", { fill: stroke || color || "currentColor", d: "M13.125 13.5V6H10.875V13.5H13.125Z" }),
|
|
4440
|
+
/* @__PURE__ */ (0, import_jsx_runtime152.jsx)("path", { fill: stroke || color || "currentColor", d: "M13.125 18V15.75H10.875V18H13.125Z" }),
|
|
4441
|
+
/* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
4384
4442
|
"path",
|
|
4385
4443
|
{
|
|
4386
4444
|
fill: stroke || color || "currentColor",
|
|
@@ -4392,8 +4450,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4392
4450
|
] }), Problem_default = IconProblem;
|
|
4393
4451
|
|
|
4394
4452
|
// src/components/Publish.tsx
|
|
4395
|
-
var
|
|
4396
|
-
/* @__PURE__ */ (0,
|
|
4453
|
+
var import_jsx_runtime153 = __toESM(require_jsx_runtime()), IconPublish = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4454
|
+
/* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
4397
4455
|
"path",
|
|
4398
4456
|
{
|
|
4399
4457
|
fill: stroke || color || "currentColor",
|
|
@@ -4402,12 +4460,12 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4402
4460
|
clipRule: "evenodd"
|
|
4403
4461
|
}
|
|
4404
4462
|
),
|
|
4405
|
-
/* @__PURE__ */ (0,
|
|
4463
|
+
/* @__PURE__ */ (0, import_jsx_runtime153.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 3H9V5.25H3.75V20.25H18.75V15H21V22.5H1.5V3Z" })
|
|
4406
4464
|
] }), Publish_default = IconPublish;
|
|
4407
4465
|
|
|
4408
4466
|
// src/components/Quote.tsx
|
|
4409
|
-
var
|
|
4410
|
-
/* @__PURE__ */ (0,
|
|
4467
|
+
var import_jsx_runtime154 = __toESM(require_jsx_runtime()), IconQuote = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime154.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4468
|
+
/* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
4411
4469
|
"path",
|
|
4412
4470
|
{
|
|
4413
4471
|
fill: stroke || color || "currentColor",
|
|
@@ -4416,7 +4474,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4416
4474
|
clipRule: "evenodd"
|
|
4417
4475
|
}
|
|
4418
4476
|
),
|
|
4419
|
-
/* @__PURE__ */ (0,
|
|
4477
|
+
/* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
4420
4478
|
"path",
|
|
4421
4479
|
{
|
|
4422
4480
|
fill: stroke || color || "currentColor",
|
|
@@ -4428,7 +4486,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4428
4486
|
] }), Quote_default = IconQuote;
|
|
4429
4487
|
|
|
4430
4488
|
// src/components/Ratio169.tsx
|
|
4431
|
-
var
|
|
4489
|
+
var import_jsx_runtime155 = __toESM(require_jsx_runtime()), IconRatio169 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
|
|
4432
4490
|
"path",
|
|
4433
4491
|
{
|
|
4434
4492
|
fill: stroke || color || "currentColor",
|
|
@@ -4437,15 +4495,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4437
4495
|
) }), Ratio169_default = IconRatio169;
|
|
4438
4496
|
|
|
4439
4497
|
// src/components/Ratio11.tsx
|
|
4440
|
-
var
|
|
4441
|
-
/* @__PURE__ */ (0,
|
|
4498
|
+
var import_jsx_runtime156 = __toESM(require_jsx_runtime()), IconRatio11 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime156.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4499
|
+
/* @__PURE__ */ (0, import_jsx_runtime156.jsx)("g", { clipPath: "url(#clip0_13_501)", children: /* @__PURE__ */ (0, import_jsx_runtime156.jsx)(
|
|
4442
4500
|
"path",
|
|
4443
4501
|
{
|
|
4444
4502
|
fill: stroke || color || "currentColor",
|
|
4445
4503
|
d: "M24 24L2.76562e-06 24L3.8147e-06 -1.04907e-06L24 0L24 24ZM2.40039 2.40039L2.40039 21.5996L21.5996 21.5996L21.5996 2.40039L2.40039 2.40039Z"
|
|
4446
4504
|
}
|
|
4447
4505
|
) }),
|
|
4448
|
-
/* @__PURE__ */ (0,
|
|
4506
|
+
/* @__PURE__ */ (0, import_jsx_runtime156.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime156.jsx)("clipPath", { id: "clip0_13_501", children: /* @__PURE__ */ (0, import_jsx_runtime156.jsx)(
|
|
4449
4507
|
"rect",
|
|
4450
4508
|
{
|
|
4451
4509
|
width: "24",
|
|
@@ -4457,15 +4515,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4457
4515
|
] }), Ratio11_default = IconRatio11;
|
|
4458
4516
|
|
|
4459
4517
|
// src/components/Ratio916.tsx
|
|
4460
|
-
var
|
|
4461
|
-
/* @__PURE__ */ (0,
|
|
4518
|
+
var import_jsx_runtime157 = __toESM(require_jsx_runtime()), IconRatio916 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime157.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4519
|
+
/* @__PURE__ */ (0, import_jsx_runtime157.jsx)("g", { clipPath: "url(#clip0_13_499)", children: /* @__PURE__ */ (0, import_jsx_runtime157.jsx)(
|
|
4462
4520
|
"path",
|
|
4463
4521
|
{
|
|
4464
4522
|
fill: stroke || color || "currentColor",
|
|
4465
4523
|
d: "M18.8571 24L5.14286 24L5.14286 -5.99471e-07L18.8571 0L18.8571 24ZM7.49426 2.40039L7.49426 21.5996L16.5057 21.5996L16.5057 2.40039L7.49426 2.40039Z"
|
|
4466
4524
|
}
|
|
4467
4525
|
) }),
|
|
4468
|
-
/* @__PURE__ */ (0,
|
|
4526
|
+
/* @__PURE__ */ (0, import_jsx_runtime157.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime157.jsx)("clipPath", { id: "clip0_13_499", children: /* @__PURE__ */ (0, import_jsx_runtime157.jsx)(
|
|
4469
4527
|
"rect",
|
|
4470
4528
|
{
|
|
4471
4529
|
width: "24",
|
|
@@ -4477,17 +4535,17 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4477
4535
|
] }), Ratio916_default = IconRatio916;
|
|
4478
4536
|
|
|
4479
4537
|
// src/components/RatioAuto.tsx
|
|
4480
|
-
var
|
|
4481
|
-
/* @__PURE__ */ (0,
|
|
4482
|
-
/* @__PURE__ */ (0,
|
|
4538
|
+
var import_jsx_runtime158 = __toESM(require_jsx_runtime()), IconRatioAuto = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4539
|
+
/* @__PURE__ */ (0, import_jsx_runtime158.jsxs)("g", { clipPath: "url(#clip0_468_23)", children: [
|
|
4540
|
+
/* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
4483
4541
|
"path",
|
|
4484
4542
|
{
|
|
4485
4543
|
fill: stroke || color || "currentColor",
|
|
4486
4544
|
d: "M6.25 6.24999L6.25 9.99998H4L4 3.99998L10 3.99999V6.24999H6.25Z"
|
|
4487
4545
|
}
|
|
4488
4546
|
),
|
|
4489
|
-
/* @__PURE__ */ (0,
|
|
4490
|
-
/* @__PURE__ */ (0,
|
|
4547
|
+
/* @__PURE__ */ (0, import_jsx_runtime158.jsx)("path", { fill: stroke || color || "currentColor", d: "M14 20V17.75H17.75V14H20V20H14Z" }),
|
|
4548
|
+
/* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
4491
4549
|
"path",
|
|
4492
4550
|
{
|
|
4493
4551
|
fill: stroke || color || "currentColor",
|
|
@@ -4497,7 +4555,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4497
4555
|
}
|
|
4498
4556
|
)
|
|
4499
4557
|
] }),
|
|
4500
|
-
/* @__PURE__ */ (0,
|
|
4558
|
+
/* @__PURE__ */ (0, import_jsx_runtime158.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsx)("clipPath", { id: "clip0_468_23", children: /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
4501
4559
|
"rect",
|
|
4502
4560
|
{
|
|
4503
4561
|
width: "24",
|
|
@@ -4509,15 +4567,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4509
4567
|
] }), RatioAuto_default = IconRatioAuto;
|
|
4510
4568
|
|
|
4511
4569
|
// src/components/Ratio.tsx
|
|
4512
|
-
var
|
|
4513
|
-
/* @__PURE__ */ (0,
|
|
4570
|
+
var import_jsx_runtime159 = __toESM(require_jsx_runtime()), IconRatio = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime159.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4571
|
+
/* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
4514
4572
|
"path",
|
|
4515
4573
|
{
|
|
4516
4574
|
fill: stroke || color || "currentColor",
|
|
4517
4575
|
d: "M3 0V3L0 3V5.25L18.75 5.25V24H21V21H24V18.75H21L21 3L5.25 3V0H3Z"
|
|
4518
4576
|
}
|
|
4519
4577
|
),
|
|
4520
|
-
/* @__PURE__ */ (0,
|
|
4578
|
+
/* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
4521
4579
|
"path",
|
|
4522
4580
|
{
|
|
4523
4581
|
fill: stroke || color || "currentColor",
|
|
@@ -4527,7 +4585,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4527
4585
|
] }), Ratio_default = IconRatio;
|
|
4528
4586
|
|
|
4529
4587
|
// src/components/ReEdit.tsx
|
|
4530
|
-
var
|
|
4588
|
+
var import_jsx_runtime160 = __toESM(require_jsx_runtime()), IconReEdit = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime160.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(
|
|
4531
4589
|
"path",
|
|
4532
4590
|
{
|
|
4533
4591
|
fill: stroke || color || "currentColor",
|
|
@@ -4538,7 +4596,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4538
4596
|
) }), ReEdit_default = IconReEdit;
|
|
4539
4597
|
|
|
4540
4598
|
// src/components/Regenerate.tsx
|
|
4541
|
-
var
|
|
4599
|
+
var import_jsx_runtime161 = __toESM(require_jsx_runtime()), IconRegenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime161.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
4542
4600
|
"path",
|
|
4543
4601
|
{
|
|
4544
4602
|
fill: stroke || color || "currentColor",
|
|
@@ -4549,8 +4607,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4549
4607
|
) }), Regenerate_default = IconRegenerate;
|
|
4550
4608
|
|
|
4551
4609
|
// src/components/Resultsetting.tsx
|
|
4552
|
-
var
|
|
4553
|
-
/* @__PURE__ */ (0,
|
|
4610
|
+
var import_jsx_runtime162 = __toESM(require_jsx_runtime()), IconResultsetting = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime162.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4611
|
+
/* @__PURE__ */ (0, import_jsx_runtime162.jsx)("g", { clipPath: "url(#clip0_554_27)", children: /* @__PURE__ */ (0, import_jsx_runtime162.jsx)(
|
|
4554
4612
|
"path",
|
|
4555
4613
|
{
|
|
4556
4614
|
fill: stroke || color || "currentColor",
|
|
@@ -4559,7 +4617,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4559
4617
|
clipRule: "evenodd"
|
|
4560
4618
|
}
|
|
4561
4619
|
) }),
|
|
4562
|
-
/* @__PURE__ */ (0,
|
|
4620
|
+
/* @__PURE__ */ (0, import_jsx_runtime162.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime162.jsx)("clipPath", { id: "clip0_554_27", children: /* @__PURE__ */ (0, import_jsx_runtime162.jsx)(
|
|
4563
4621
|
"rect",
|
|
4564
4622
|
{
|
|
4565
4623
|
width: "24",
|
|
@@ -4571,7 +4629,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4571
4629
|
] }), Resultsetting_default = IconResultsetting;
|
|
4572
4630
|
|
|
4573
4631
|
// src/components/RightFilled.tsx
|
|
4574
|
-
var
|
|
4632
|
+
var import_jsx_runtime163 = __toESM(require_jsx_runtime()), IconRightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime163.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime163.jsx)(
|
|
4575
4633
|
"path",
|
|
4576
4634
|
{
|
|
4577
4635
|
fill: fill || color || "currentColor",
|
|
@@ -4581,8 +4639,20 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4581
4639
|
}
|
|
4582
4640
|
) }), RightFilled_default = IconRightFilled;
|
|
4583
4641
|
|
|
4642
|
+
// src/components/SatisfiedFilled.tsx
|
|
4643
|
+
var import_jsx_runtime164 = __toESM(require_jsx_runtime()), IconSatisfiedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime164.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4644
|
+
/* @__PURE__ */ (0, import_jsx_runtime164.jsx)(
|
|
4645
|
+
"path",
|
|
4646
|
+
{
|
|
4647
|
+
fill: fill || color || "currentColor",
|
|
4648
|
+
d: "M10.5 0L7.5 7.5V21H21L24 12V7.5H15V3C15 1.34315 13.6569 0 12 0H10.5Z"
|
|
4649
|
+
}
|
|
4650
|
+
),
|
|
4651
|
+
/* @__PURE__ */ (0, import_jsx_runtime164.jsx)("path", { fill: fill || color || "currentColor", d: "M4.5 7.5H0V21H4.5V7.5Z" })
|
|
4652
|
+
] }), SatisfiedFilled_default = IconSatisfiedFilled;
|
|
4653
|
+
|
|
4584
4654
|
// src/components/Satisfied.tsx
|
|
4585
|
-
var
|
|
4655
|
+
var import_jsx_runtime165 = __toESM(require_jsx_runtime()), IconSatisfied = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime165.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime165.jsx)(
|
|
4586
4656
|
"path",
|
|
4587
4657
|
{
|
|
4588
4658
|
fill: stroke || color || "currentColor",
|
|
@@ -4593,7 +4663,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4593
4663
|
) }), Satisfied_default = IconSatisfied;
|
|
4594
4664
|
|
|
4595
4665
|
// src/components/SceneNext.tsx
|
|
4596
|
-
var
|
|
4666
|
+
var import_jsx_runtime166 = __toESM(require_jsx_runtime()), IconSceneNext = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(
|
|
4597
4667
|
"path",
|
|
4598
4668
|
{
|
|
4599
4669
|
fill: stroke || color || "currentColor",
|
|
@@ -4602,27 +4672,27 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4602
4672
|
) }), SceneNext_default = IconSceneNext;
|
|
4603
4673
|
|
|
4604
4674
|
// src/components/Scriptmode.tsx
|
|
4605
|
-
var
|
|
4606
|
-
/* @__PURE__ */ (0,
|
|
4607
|
-
/* @__PURE__ */ (0,
|
|
4608
|
-
/* @__PURE__ */ (0,
|
|
4609
|
-
/* @__PURE__ */ (0,
|
|
4610
|
-
/* @__PURE__ */ (0,
|
|
4611
|
-
/* @__PURE__ */ (0,
|
|
4612
|
-
/* @__PURE__ */ (0,
|
|
4613
|
-
/* @__PURE__ */ (0,
|
|
4675
|
+
var import_jsx_runtime167 = __toESM(require_jsx_runtime()), IconScriptmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime167.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4676
|
+
/* @__PURE__ */ (0, import_jsx_runtime167.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 3.75H3.75V1.5H1.5V3.75Z" }),
|
|
4677
|
+
/* @__PURE__ */ (0, import_jsx_runtime167.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 10.125H3.75V7.875H1.5V10.125Z" }),
|
|
4678
|
+
/* @__PURE__ */ (0, import_jsx_runtime167.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 16.125H3.75V13.875H1.5V16.125Z" }),
|
|
4679
|
+
/* @__PURE__ */ (0, import_jsx_runtime167.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 22.5H3.75V20.25H1.5V22.5Z" }),
|
|
4680
|
+
/* @__PURE__ */ (0, import_jsx_runtime167.jsx)("path", { fill: stroke || color || "currentColor", d: "M7.5 3.75H22.5V1.5H7.5V3.75Z" }),
|
|
4681
|
+
/* @__PURE__ */ (0, import_jsx_runtime167.jsx)("path", { fill: stroke || color || "currentColor", d: "M7.5 10.125H22.5V7.875H7.5V10.125Z" }),
|
|
4682
|
+
/* @__PURE__ */ (0, import_jsx_runtime167.jsx)("path", { fill: stroke || color || "currentColor", d: "M7.5 16.125H22.5V13.875H7.5V16.125Z" }),
|
|
4683
|
+
/* @__PURE__ */ (0, import_jsx_runtime167.jsx)("path", { fill: stroke || color || "currentColor", d: "M7.5 22.5H22.5V20.25H7.5V22.5Z" })
|
|
4614
4684
|
] }), Scriptmode_default = IconScriptmode;
|
|
4615
4685
|
|
|
4616
4686
|
// src/components/Scrolldown.tsx
|
|
4617
|
-
var
|
|
4618
|
-
/* @__PURE__ */ (0,
|
|
4687
|
+
var import_jsx_runtime168 = __toESM(require_jsx_runtime()), IconScrolldown = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime168.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4688
|
+
/* @__PURE__ */ (0, import_jsx_runtime168.jsx)(
|
|
4619
4689
|
"path",
|
|
4620
4690
|
{
|
|
4621
4691
|
fill: stroke || color || "currentColor",
|
|
4622
4692
|
d: "M3.79546 11.9544L12 20.1589L20.2045 11.9544L21.7955 13.5454L12 23.3409L2.20447 13.5454L3.79546 11.9544Z"
|
|
4623
4693
|
}
|
|
4624
4694
|
),
|
|
4625
|
-
/* @__PURE__ */ (0,
|
|
4695
|
+
/* @__PURE__ */ (0, import_jsx_runtime168.jsx)(
|
|
4626
4696
|
"path",
|
|
4627
4697
|
{
|
|
4628
4698
|
fill: stroke || color || "currentColor",
|
|
@@ -4632,7 +4702,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4632
4702
|
] }), Scrolldown_default = IconScrolldown;
|
|
4633
4703
|
|
|
4634
4704
|
// src/components/Sendrequest.tsx
|
|
4635
|
-
var
|
|
4705
|
+
var import_jsx_runtime169 = __toESM(require_jsx_runtime()), IconSendrequest = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime169.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime169.jsx)(
|
|
4636
4706
|
"path",
|
|
4637
4707
|
{
|
|
4638
4708
|
fill: fill || color || "currentColor",
|
|
@@ -4643,7 +4713,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4643
4713
|
) }), Sendrequest_default = IconSendrequest;
|
|
4644
4714
|
|
|
4645
4715
|
// src/components/Sendup.tsx
|
|
4646
|
-
var
|
|
4716
|
+
var import_jsx_runtime170 = __toESM(require_jsx_runtime()), IconSendup = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime170.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime170.jsx)(
|
|
4647
4717
|
"path",
|
|
4648
4718
|
{
|
|
4649
4719
|
fill: stroke || color || "currentColor",
|
|
@@ -4652,7 +4722,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4652
4722
|
) }), Sendup_default = IconSendup;
|
|
4653
4723
|
|
|
4654
4724
|
// src/components/Sendup2.tsx
|
|
4655
|
-
var
|
|
4725
|
+
var import_jsx_runtime171 = __toESM(require_jsx_runtime()), IconSendup2 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime171.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime171.jsx)(
|
|
4656
4726
|
"path",
|
|
4657
4727
|
{
|
|
4658
4728
|
fill: stroke || color || "currentColor",
|
|
@@ -4661,7 +4731,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4661
4731
|
) }), Sendup2_default = IconSendup2;
|
|
4662
4732
|
|
|
4663
4733
|
// src/components/ShareFilled.tsx
|
|
4664
|
-
var
|
|
4734
|
+
var import_jsx_runtime172 = __toESM(require_jsx_runtime()), IconShareFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime172.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime172.jsx)(
|
|
4665
4735
|
"path",
|
|
4666
4736
|
{
|
|
4667
4737
|
fill: fill || color || "currentColor",
|
|
@@ -4670,7 +4740,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4670
4740
|
) }), ShareFilled_default = IconShareFilled;
|
|
4671
4741
|
|
|
4672
4742
|
// src/components/Share.tsx
|
|
4673
|
-
var
|
|
4743
|
+
var import_jsx_runtime173 = __toESM(require_jsx_runtime()), IconShare = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime173.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime173.jsx)(
|
|
4674
4744
|
"path",
|
|
4675
4745
|
{
|
|
4676
4746
|
fill: stroke || color || "currentColor",
|
|
@@ -4681,7 +4751,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4681
4751
|
) }), Share_default = IconShare;
|
|
4682
4752
|
|
|
4683
4753
|
// src/components/Sidebar.tsx
|
|
4684
|
-
var
|
|
4754
|
+
var import_jsx_runtime174 = __toESM(require_jsx_runtime()), IconSidebar = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime174.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime174.jsx)(
|
|
4685
4755
|
"path",
|
|
4686
4756
|
{
|
|
4687
4757
|
fill: stroke || color || "currentColor",
|
|
@@ -4692,7 +4762,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4692
4762
|
) }), Sidebar_default = IconSidebar;
|
|
4693
4763
|
|
|
4694
4764
|
// src/components/Singleunchecked.tsx
|
|
4695
|
-
var
|
|
4765
|
+
var import_jsx_runtime175 = __toESM(require_jsx_runtime()), IconSingleunchecked = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime175.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime175.jsx)(
|
|
4696
4766
|
"path",
|
|
4697
4767
|
{
|
|
4698
4768
|
fill: stroke || color || "currentColor",
|
|
@@ -4703,7 +4773,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4703
4773
|
) }), Singleunchecked_default = IconSingleunchecked;
|
|
4704
4774
|
|
|
4705
4775
|
// src/components/SocialX.tsx
|
|
4706
|
-
var
|
|
4776
|
+
var import_jsx_runtime176 = __toESM(require_jsx_runtime()), IconSocialX = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime176.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime176.jsx)(
|
|
4707
4777
|
"path",
|
|
4708
4778
|
{
|
|
4709
4779
|
fill: fill || color || "currentColor",
|
|
@@ -4712,7 +4782,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4712
4782
|
) }), SocialX_default = IconSocialX;
|
|
4713
4783
|
|
|
4714
4784
|
// src/components/SocialDiscord.tsx
|
|
4715
|
-
var
|
|
4785
|
+
var import_jsx_runtime177 = __toESM(require_jsx_runtime()), IconSocialDiscord = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime177.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime177.jsx)(
|
|
4716
4786
|
"path",
|
|
4717
4787
|
{
|
|
4718
4788
|
fill: fill || color || "currentColor",
|
|
@@ -4721,8 +4791,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4721
4791
|
) }), SocialDiscord_default = IconSocialDiscord;
|
|
4722
4792
|
|
|
4723
4793
|
// src/components/SoundOff.tsx
|
|
4724
|
-
var
|
|
4725
|
-
/* @__PURE__ */ (0,
|
|
4794
|
+
var import_jsx_runtime178 = __toESM(require_jsx_runtime()), IconSoundOff = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime178.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4795
|
+
/* @__PURE__ */ (0, import_jsx_runtime178.jsx)(
|
|
4726
4796
|
"path",
|
|
4727
4797
|
{
|
|
4728
4798
|
fill: stroke || color || "currentColor",
|
|
@@ -4731,7 +4801,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4731
4801
|
clipRule: "evenodd"
|
|
4732
4802
|
}
|
|
4733
4803
|
),
|
|
4734
|
-
/* @__PURE__ */ (0,
|
|
4804
|
+
/* @__PURE__ */ (0, import_jsx_runtime178.jsx)(
|
|
4735
4805
|
"path",
|
|
4736
4806
|
{
|
|
4737
4807
|
fill: stroke || color || "currentColor",
|
|
@@ -4741,8 +4811,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4741
4811
|
] }), SoundOff_default = IconSoundOff;
|
|
4742
4812
|
|
|
4743
4813
|
// src/components/SoundOn.tsx
|
|
4744
|
-
var
|
|
4745
|
-
/* @__PURE__ */ (0,
|
|
4814
|
+
var import_jsx_runtime179 = __toESM(require_jsx_runtime()), IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime179.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4815
|
+
/* @__PURE__ */ (0, import_jsx_runtime179.jsx)(
|
|
4746
4816
|
"path",
|
|
4747
4817
|
{
|
|
4748
4818
|
fill: stroke || color || "currentColor",
|
|
@@ -4751,14 +4821,14 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4751
4821
|
clipRule: "evenodd"
|
|
4752
4822
|
}
|
|
4753
4823
|
),
|
|
4754
|
-
/* @__PURE__ */ (0,
|
|
4824
|
+
/* @__PURE__ */ (0, import_jsx_runtime179.jsx)(
|
|
4755
4825
|
"path",
|
|
4756
4826
|
{
|
|
4757
4827
|
fill: stroke || color || "currentColor",
|
|
4758
4828
|
d: "M15 5.25C18.7279 5.25 21.75 8.27208 21.75 12C21.75 15.7279 18.7279 18.75 15 18.75V21C19.9706 21 24 16.9706 24 12C24 7.02944 19.9706 3 15 3V5.25Z"
|
|
4759
4829
|
}
|
|
4760
4830
|
),
|
|
4761
|
-
/* @__PURE__ */ (0,
|
|
4831
|
+
/* @__PURE__ */ (0, import_jsx_runtime179.jsx)(
|
|
4762
4832
|
"path",
|
|
4763
4833
|
{
|
|
4764
4834
|
fill: stroke || color || "currentColor",
|
|
@@ -4768,7 +4838,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4768
4838
|
] }), SoundOn_default = IconSoundOn;
|
|
4769
4839
|
|
|
4770
4840
|
// src/components/Storyboard.tsx
|
|
4771
|
-
var
|
|
4841
|
+
var import_jsx_runtime180 = __toESM(require_jsx_runtime()), IconStoryboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime180.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime180.jsx)(
|
|
4772
4842
|
"path",
|
|
4773
4843
|
{
|
|
4774
4844
|
fill: stroke || color || "currentColor",
|
|
@@ -4779,24 +4849,24 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4779
4849
|
) }), Storyboard_default = IconStoryboard;
|
|
4780
4850
|
|
|
4781
4851
|
// src/components/StyleAutoFilled.tsx
|
|
4782
|
-
var
|
|
4783
|
-
/* @__PURE__ */ (0,
|
|
4852
|
+
var import_jsx_runtime181 = __toESM(require_jsx_runtime()), IconStyleAutoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime181.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4853
|
+
/* @__PURE__ */ (0, import_jsx_runtime181.jsx)(
|
|
4784
4854
|
"path",
|
|
4785
4855
|
{
|
|
4786
4856
|
fill: fill || color || "currentColor",
|
|
4787
4857
|
d: "M12 4.5L15.75 3.75L16.5 0H18L18.75 3.75L22.5 4.5V6L18.75 6.75L18 10.5H16.5L15.75 6.75L12 6V4.5Z"
|
|
4788
4858
|
}
|
|
4789
4859
|
),
|
|
4790
|
-
/* @__PURE__ */ (0,
|
|
4860
|
+
/* @__PURE__ */ (0, import_jsx_runtime181.jsx)(
|
|
4791
4861
|
"path",
|
|
4792
4862
|
{
|
|
4793
4863
|
fill: fill || color || "currentColor",
|
|
4794
4864
|
d: "M0 16.5V15L6 13.5L7.5 7.5H9L10.5 13.5L16.5 15V16.5L10.5 18L9 24H7.5L6 18L0 16.5Z"
|
|
4795
4865
|
}
|
|
4796
4866
|
),
|
|
4797
|
-
/* @__PURE__ */ (0,
|
|
4798
|
-
/* @__PURE__ */ (0,
|
|
4799
|
-
/* @__PURE__ */ (0,
|
|
4867
|
+
/* @__PURE__ */ (0, import_jsx_runtime181.jsx)("path", { fill: fill || color || "currentColor", d: "M1.5 3L3.75 0.75L6 3L3.75 5.25L1.5 3Z" }),
|
|
4868
|
+
/* @__PURE__ */ (0, import_jsx_runtime181.jsx)("path", { fill: fill || color || "currentColor", d: "M22.5 21L19.5 18L16.5 21L19.5 24L22.5 21Z" }),
|
|
4869
|
+
/* @__PURE__ */ (0, import_jsx_runtime181.jsx)(
|
|
4800
4870
|
"path",
|
|
4801
4871
|
{
|
|
4802
4872
|
fill: fill || color || "currentColor",
|
|
@@ -4806,43 +4876,43 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4806
4876
|
] }), StyleAutoFilled_default = IconStyleAutoFilled;
|
|
4807
4877
|
|
|
4808
4878
|
// src/components/Style.tsx
|
|
4809
|
-
var
|
|
4810
|
-
/* @__PURE__ */ (0,
|
|
4879
|
+
var import_jsx_runtime182 = __toESM(require_jsx_runtime()), IconStyle = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime182.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4880
|
+
/* @__PURE__ */ (0, import_jsx_runtime182.jsx)(
|
|
4811
4881
|
"path",
|
|
4812
4882
|
{
|
|
4813
4883
|
fill: stroke || color || "currentColor",
|
|
4814
4884
|
d: "M12 7.5C12.8284 7.5 13.5 6.82843 13.5 6C13.5 5.17157 12.8284 4.5 12 4.5C11.1716 4.5 10.5 5.17157 10.5 6C10.5 6.82843 11.1716 7.5 12 7.5Z"
|
|
4815
4885
|
}
|
|
4816
4886
|
),
|
|
4817
|
-
/* @__PURE__ */ (0,
|
|
4887
|
+
/* @__PURE__ */ (0, import_jsx_runtime182.jsx)(
|
|
4818
4888
|
"path",
|
|
4819
4889
|
{
|
|
4820
4890
|
fill: stroke || color || "currentColor",
|
|
4821
4891
|
d: "M7.5 12C7.5 12.8284 6.82843 13.5 6 13.5C5.17157 13.5 4.5 12.8284 4.5 12C4.5 11.1716 5.17157 10.5 6 10.5C6.82843 10.5 7.5 11.1716 7.5 12Z"
|
|
4822
4892
|
}
|
|
4823
4893
|
),
|
|
4824
|
-
/* @__PURE__ */ (0,
|
|
4894
|
+
/* @__PURE__ */ (0, import_jsx_runtime182.jsx)(
|
|
4825
4895
|
"path",
|
|
4826
4896
|
{
|
|
4827
4897
|
fill: stroke || color || "currentColor",
|
|
4828
4898
|
d: "M6.69679 8.81815C7.28257 9.40394 8.23232 9.40394 8.81811 8.81815C9.40389 8.23236 9.40389 7.28262 8.81811 6.69683C8.23232 6.11104 7.28257 6.11104 6.69679 6.69683C6.111 7.28262 6.111 8.23236 6.69679 8.81815Z"
|
|
4829
4899
|
}
|
|
4830
4900
|
),
|
|
4831
|
-
/* @__PURE__ */ (0,
|
|
4901
|
+
/* @__PURE__ */ (0, import_jsx_runtime182.jsx)(
|
|
4832
4902
|
"path",
|
|
4833
4903
|
{
|
|
4834
4904
|
fill: stroke || color || "currentColor",
|
|
4835
4905
|
d: "M15.182 8.81811C14.5962 8.23232 14.5962 7.28257 15.182 6.69679C15.7678 6.111 16.7176 6.111 17.3034 6.69679C17.8891 7.28257 17.8891 8.23232 17.3034 8.81811C16.7176 9.40389 15.7678 9.40389 15.182 8.81811Z"
|
|
4836
4906
|
}
|
|
4837
4907
|
),
|
|
4838
|
-
/* @__PURE__ */ (0,
|
|
4908
|
+
/* @__PURE__ */ (0, import_jsx_runtime182.jsx)(
|
|
4839
4909
|
"path",
|
|
4840
4910
|
{
|
|
4841
4911
|
fill: stroke || color || "currentColor",
|
|
4842
4912
|
d: "M8.81833 17.3032C9.40412 16.7174 9.40412 15.7677 8.81833 15.1819C8.23255 14.5961 7.2828 14.5961 6.69701 15.1819C6.11123 15.7677 6.11123 16.7174 6.69701 17.3032C7.2828 17.889 8.23255 17.889 8.81833 17.3032Z"
|
|
4843
4913
|
}
|
|
4844
4914
|
),
|
|
4845
|
-
/* @__PURE__ */ (0,
|
|
4915
|
+
/* @__PURE__ */ (0, import_jsx_runtime182.jsx)(
|
|
4846
4916
|
"path",
|
|
4847
4917
|
{
|
|
4848
4918
|
fill: stroke || color || "currentColor",
|
|
@@ -4854,8 +4924,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4854
4924
|
] }), Style_default = IconStyle;
|
|
4855
4925
|
|
|
4856
4926
|
// src/components/Styleoverall.tsx
|
|
4857
|
-
var
|
|
4858
|
-
/* @__PURE__ */ (0,
|
|
4927
|
+
var import_jsx_runtime183 = __toESM(require_jsx_runtime()), IconStyleoverall = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime183.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4928
|
+
/* @__PURE__ */ (0, import_jsx_runtime183.jsx)(
|
|
4859
4929
|
"path",
|
|
4860
4930
|
{
|
|
4861
4931
|
fill: stroke || color || "currentColor",
|
|
@@ -4864,7 +4934,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4864
4934
|
clipRule: "evenodd"
|
|
4865
4935
|
}
|
|
4866
4936
|
),
|
|
4867
|
-
/* @__PURE__ */ (0,
|
|
4937
|
+
/* @__PURE__ */ (0, import_jsx_runtime183.jsx)(
|
|
4868
4938
|
"path",
|
|
4869
4939
|
{
|
|
4870
4940
|
fill: stroke || color || "currentColor",
|
|
@@ -4873,7 +4943,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4873
4943
|
clipRule: "evenodd"
|
|
4874
4944
|
}
|
|
4875
4945
|
),
|
|
4876
|
-
/* @__PURE__ */ (0,
|
|
4946
|
+
/* @__PURE__ */ (0, import_jsx_runtime183.jsx)(
|
|
4877
4947
|
"path",
|
|
4878
4948
|
{
|
|
4879
4949
|
fill: stroke || color || "currentColor",
|
|
@@ -4882,7 +4952,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4882
4952
|
clipRule: "evenodd"
|
|
4883
4953
|
}
|
|
4884
4954
|
),
|
|
4885
|
-
/* @__PURE__ */ (0,
|
|
4955
|
+
/* @__PURE__ */ (0, import_jsx_runtime183.jsx)(
|
|
4886
4956
|
"path",
|
|
4887
4957
|
{
|
|
4888
4958
|
fill: stroke || color || "currentColor",
|
|
@@ -4894,7 +4964,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4894
4964
|
] }), Styleoverall_default = IconStyleoverall;
|
|
4895
4965
|
|
|
4896
4966
|
// src/components/SwitchOffFilled.tsx
|
|
4897
|
-
var
|
|
4967
|
+
var import_jsx_runtime184 = __toESM(require_jsx_runtime()), IconSwitchOffFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime184.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime184.jsx)(
|
|
4898
4968
|
"path",
|
|
4899
4969
|
{
|
|
4900
4970
|
fill: fill || color || "currentColor",
|
|
@@ -4905,7 +4975,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4905
4975
|
) }), SwitchOffFilled_default = IconSwitchOffFilled;
|
|
4906
4976
|
|
|
4907
4977
|
// src/components/SwitchOnFilled.tsx
|
|
4908
|
-
var
|
|
4978
|
+
var import_jsx_runtime185 = __toESM(require_jsx_runtime()), IconSwitchOnFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime185.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime185.jsx)(
|
|
4909
4979
|
"path",
|
|
4910
4980
|
{
|
|
4911
4981
|
fill: fill || color || "currentColor",
|
|
@@ -4915,9 +4985,20 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4915
4985
|
}
|
|
4916
4986
|
) }), SwitchOnFilled_default = IconSwitchOnFilled;
|
|
4917
4987
|
|
|
4988
|
+
// src/components/Table.tsx
|
|
4989
|
+
var import_jsx_runtime186 = __toESM(require_jsx_runtime()), IconTable = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime186.jsx)("svg", { fill: "none", viewBox: "0 0 24 25", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime186.jsx)(
|
|
4990
|
+
"path",
|
|
4991
|
+
{
|
|
4992
|
+
fill: stroke || color || "currentColor",
|
|
4993
|
+
d: "M24 21.875L24 3.125L0 3.125L0 21.875L24 21.875ZM21.75 5.46875L16.5 5.46875V11.3281L21.75 11.3281V5.46875ZM21.75 13.6719V19.5312L16.5 19.5312V13.6719L21.75 13.6719ZM14.25 11.3281L14.25 5.46875L8.25 5.46875L8.25 11.3281L14.25 11.3281ZM8.25 13.6719L14.25 13.6719V19.5312L8.25 19.5312V13.6719ZM6 19.5312L6 5.46875L2.25 5.46875L2.25 19.5312L6 19.5312Z",
|
|
4994
|
+
fillRule: "evenodd",
|
|
4995
|
+
clipRule: "evenodd"
|
|
4996
|
+
}
|
|
4997
|
+
) }), Table_default = IconTable;
|
|
4998
|
+
|
|
4918
4999
|
// src/components/Target.tsx
|
|
4919
|
-
var
|
|
4920
|
-
/* @__PURE__ */ (0,
|
|
5000
|
+
var import_jsx_runtime187 = __toESM(require_jsx_runtime()), IconTarget = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime187.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
5001
|
+
/* @__PURE__ */ (0, import_jsx_runtime187.jsx)(
|
|
4921
5002
|
"path",
|
|
4922
5003
|
{
|
|
4923
5004
|
fill: stroke || color || "currentColor",
|
|
@@ -4926,7 +5007,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4926
5007
|
clipRule: "evenodd"
|
|
4927
5008
|
}
|
|
4928
5009
|
),
|
|
4929
|
-
/* @__PURE__ */ (0,
|
|
5010
|
+
/* @__PURE__ */ (0, import_jsx_runtime187.jsx)(
|
|
4930
5011
|
"path",
|
|
4931
5012
|
{
|
|
4932
5013
|
fill: stroke || color || "currentColor",
|
|
@@ -4938,43 +5019,43 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4938
5019
|
] }), Target_default = IconTarget;
|
|
4939
5020
|
|
|
4940
5021
|
// src/components/TextLogo.tsx
|
|
4941
|
-
var
|
|
4942
|
-
/* @__PURE__ */ (0,
|
|
5022
|
+
var import_jsx_runtime188 = __toESM(require_jsx_runtime()), IconTextLogo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime188.jsxs)("svg", { fill: "none", viewBox: "0 0 124 40", className, width: width || size, height: height || size, children: [
|
|
5023
|
+
/* @__PURE__ */ (0, import_jsx_runtime188.jsx)(
|
|
4943
5024
|
"path",
|
|
4944
5025
|
{
|
|
4945
5026
|
fill: fill || color || "currentColor",
|
|
4946
5027
|
d: "M42.0618 5.62237C49.8822 5.62238 56.2219 11.962 56.2219 19.7823C56.2218 27.6027 49.8822 33.9423 42.0618 33.9423C34.2415 33.9423 27.9019 27.6027 27.9018 19.7823C27.9018 11.962 34.2415 5.62237 42.0618 5.62237ZM42.0618 13.1743C38.4124 13.1743 35.4538 16.1328 35.4538 19.7823C35.4538 23.4318 38.4124 26.3903 42.0618 26.3903C45.7113 26.3903 48.6698 23.4318 48.6698 19.7823C48.6698 16.1329 45.7113 13.1743 42.0618 13.1743Z"
|
|
4947
5028
|
}
|
|
4948
5029
|
),
|
|
4949
|
-
/* @__PURE__ */ (0,
|
|
5030
|
+
/* @__PURE__ */ (0, import_jsx_runtime188.jsx)(
|
|
4950
5031
|
"path",
|
|
4951
5032
|
{
|
|
4952
5033
|
fill: fill || color || "currentColor",
|
|
4953
5034
|
d: "M89.3535 5.62237C97.1738 5.62237 103.514 11.962 103.514 19.7823C103.514 27.6027 97.1738 33.9423 89.3535 33.9423C81.5331 33.9423 75.1935 27.6027 75.1935 19.7823C75.1935 11.962 81.5331 5.62239 89.3535 5.62237ZM89.3535 13.1744C85.704 13.1744 82.7455 16.1329 82.7455 19.7823C82.7455 23.4318 85.704 26.3904 89.3535 26.3904C93.003 26.3904 95.9615 23.4318 95.9615 19.7823C95.9615 16.1329 93.003 13.1744 89.3535 13.1744Z"
|
|
4954
5035
|
}
|
|
4955
5036
|
),
|
|
4956
|
-
/* @__PURE__ */ (0,
|
|
5037
|
+
/* @__PURE__ */ (0, import_jsx_runtime188.jsx)(
|
|
4957
5038
|
"path",
|
|
4958
5039
|
{
|
|
4959
5040
|
fill: fill || color || "currentColor",
|
|
4960
5041
|
d: "M59.1199 19.3272C59.1199 11.741 63.1893 6.56006 71.8774 6.56006H73.4399C73.8818 6.56006 74.2399 6.91823 74.2399 7.36006V13.3258C74.2399 13.7676 73.8818 14.1258 73.4399 14.1258H71.8774C68.8335 14.1258 66.6799 16.2577 66.6799 19.3272V32.24C66.6799 32.6818 66.3217 33.04 65.8799 33.04H59.9199C59.4781 33.04 59.1199 32.6818 59.1199 32.24V19.3272Z"
|
|
4961
5042
|
}
|
|
4962
5043
|
),
|
|
4963
|
-
/* @__PURE__ */ (0,
|
|
5044
|
+
/* @__PURE__ */ (0, import_jsx_runtime188.jsx)(
|
|
4964
5045
|
"path",
|
|
4965
5046
|
{
|
|
4966
5047
|
fill: fill || color || "currentColor",
|
|
4967
5048
|
d: "M106 0.799999C106 0.358172 106.358 0 106.8 0H112.8C113.242 0 113.6 0.358171 113.6 0.799998V32.3199C113.6 32.7618 113.242 33.1199 112.8 33.1199H106.8C106.358 33.1199 106 32.7618 106 32.3199V0.799999Z"
|
|
4968
5049
|
}
|
|
4969
5050
|
),
|
|
4970
|
-
/* @__PURE__ */ (0,
|
|
5051
|
+
/* @__PURE__ */ (0, import_jsx_runtime188.jsx)(
|
|
4971
5052
|
"path",
|
|
4972
5053
|
{
|
|
4973
5054
|
fill: fill || color || "currentColor",
|
|
4974
5055
|
d: "M116.4 0.799999C116.4 0.358172 116.758 0 117.2 0H123.2C123.642 0 124 0.358171 124 0.799998V32.3199C124 32.7618 123.642 33.1199 123.2 33.1199H117.2C116.758 33.1199 116.4 32.7618 116.4 32.3199V0.799999Z"
|
|
4975
5056
|
}
|
|
4976
5057
|
),
|
|
4977
|
-
/* @__PURE__ */ (0,
|
|
5058
|
+
/* @__PURE__ */ (0, import_jsx_runtime188.jsx)(
|
|
4978
5059
|
"path",
|
|
4979
5060
|
{
|
|
4980
5061
|
fill: fill || color || "currentColor",
|
|
@@ -4984,7 +5065,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4984
5065
|
] }), TextLogo_default = IconTextLogo;
|
|
4985
5066
|
|
|
4986
5067
|
// src/components/TipsFilled.tsx
|
|
4987
|
-
var
|
|
5068
|
+
var import_jsx_runtime189 = __toESM(require_jsx_runtime()), IconTipsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime189.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime189.jsx)(
|
|
4988
5069
|
"path",
|
|
4989
5070
|
{
|
|
4990
5071
|
fill: fill || color || "currentColor",
|
|
@@ -4995,7 +5076,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
4995
5076
|
) }), TipsFilled_default = IconTipsFilled;
|
|
4996
5077
|
|
|
4997
5078
|
// src/components/Tips.tsx
|
|
4998
|
-
var
|
|
5079
|
+
var import_jsx_runtime190 = __toESM(require_jsx_runtime()), IconTips = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime190.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime190.jsx)(
|
|
4999
5080
|
"path",
|
|
5000
5081
|
{
|
|
5001
5082
|
fill: stroke || color || "currentColor",
|
|
@@ -5006,15 +5087,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5006
5087
|
) }), Tips_default = IconTips;
|
|
5007
5088
|
|
|
5008
5089
|
// src/components/ToolsFilled.tsx
|
|
5009
|
-
var
|
|
5010
|
-
/* @__PURE__ */ (0,
|
|
5090
|
+
var import_jsx_runtime191 = __toESM(require_jsx_runtime()), IconToolsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime191.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
5091
|
+
/* @__PURE__ */ (0, import_jsx_runtime191.jsx)(
|
|
5011
5092
|
"path",
|
|
5012
5093
|
{
|
|
5013
5094
|
fill: fill || color || "currentColor",
|
|
5014
5095
|
d: "M24 12L19.5 16.5L15 15L9 9L7.5 4.5L12 0L16.5 1.5L22.5 7.5L24 12Z"
|
|
5015
5096
|
}
|
|
5016
5097
|
),
|
|
5017
|
-
/* @__PURE__ */ (0,
|
|
5098
|
+
/* @__PURE__ */ (0, import_jsx_runtime191.jsx)(
|
|
5018
5099
|
"path",
|
|
5019
5100
|
{
|
|
5020
5101
|
fill: fill || color || "currentColor",
|
|
@@ -5024,7 +5105,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5024
5105
|
] }), ToolsFilled_default = IconToolsFilled;
|
|
5025
5106
|
|
|
5026
5107
|
// src/components/Tools.tsx
|
|
5027
|
-
var
|
|
5108
|
+
var import_jsx_runtime192 = __toESM(require_jsx_runtime()), IconTools = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime192.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime192.jsx)(
|
|
5028
5109
|
"path",
|
|
5029
5110
|
{
|
|
5030
5111
|
stroke: stroke || color || "currentColor",
|
|
@@ -5034,7 +5115,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5034
5115
|
) }), Tools_default = IconTools;
|
|
5035
5116
|
|
|
5036
5117
|
// src/components/Undo.tsx
|
|
5037
|
-
var
|
|
5118
|
+
var import_jsx_runtime193 = __toESM(require_jsx_runtime()), IconUndo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime193.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(
|
|
5038
5119
|
"path",
|
|
5039
5120
|
{
|
|
5040
5121
|
fill: stroke || color || "currentColor",
|
|
@@ -5044,8 +5125,20 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5044
5125
|
}
|
|
5045
5126
|
) }), Undo_default = IconUndo;
|
|
5046
5127
|
|
|
5128
|
+
// src/components/UnsatisfiedFilled.tsx
|
|
5129
|
+
var import_jsx_runtime194 = __toESM(require_jsx_runtime()), IconUnsatisfiedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime194.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
5130
|
+
/* @__PURE__ */ (0, import_jsx_runtime194.jsx)(
|
|
5131
|
+
"path",
|
|
5132
|
+
{
|
|
5133
|
+
fill: fill || color || "currentColor",
|
|
5134
|
+
d: "M10.5 24L7.5 16.5V3H21L24 12V16.5H15V21C15 22.6569 13.6569 24 12 24H10.5Z"
|
|
5135
|
+
}
|
|
5136
|
+
),
|
|
5137
|
+
/* @__PURE__ */ (0, import_jsx_runtime194.jsx)("path", { fill: fill || color || "currentColor", d: "M4.5 16.5H0V3H4.5V16.5Z" })
|
|
5138
|
+
] }), UnsatisfiedFilled_default = IconUnsatisfiedFilled;
|
|
5139
|
+
|
|
5047
5140
|
// src/components/Unsatisfied.tsx
|
|
5048
|
-
var
|
|
5141
|
+
var import_jsx_runtime195 = __toESM(require_jsx_runtime()), IconUnsatisfied = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime195.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime195.jsx)(
|
|
5049
5142
|
"path",
|
|
5050
5143
|
{
|
|
5051
5144
|
fill: stroke || color || "currentColor",
|
|
@@ -5056,7 +5149,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5056
5149
|
) }), Unsatisfied_default = IconUnsatisfied;
|
|
5057
5150
|
|
|
5058
5151
|
// src/components/UpFilled.tsx
|
|
5059
|
-
var
|
|
5152
|
+
var import_jsx_runtime196 = __toESM(require_jsx_runtime()), IconUpFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime196.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime196.jsx)(
|
|
5060
5153
|
"path",
|
|
5061
5154
|
{
|
|
5062
5155
|
fill: fill || color || "currentColor",
|
|
@@ -5067,7 +5160,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5067
5160
|
) }), UpFilled_default = IconUpFilled;
|
|
5068
5161
|
|
|
5069
5162
|
// src/components/UpleftFilled.tsx
|
|
5070
|
-
var
|
|
5163
|
+
var import_jsx_runtime197 = __toESM(require_jsx_runtime()), IconUpleftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime197.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime197.jsx)(
|
|
5071
5164
|
"path",
|
|
5072
5165
|
{
|
|
5073
5166
|
fill: fill || color || "currentColor",
|
|
@@ -5078,7 +5171,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5078
5171
|
) }), UpleftFilled_default = IconUpleftFilled;
|
|
5079
5172
|
|
|
5080
5173
|
// src/components/Uploadedvideo.tsx
|
|
5081
|
-
var
|
|
5174
|
+
var import_jsx_runtime198 = __toESM(require_jsx_runtime()), IconUploadedvideo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime198.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime198.jsx)(
|
|
5082
5175
|
"path",
|
|
5083
5176
|
{
|
|
5084
5177
|
fill: fill || color || "currentColor",
|
|
@@ -5089,7 +5182,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5089
5182
|
) }), Uploadedvideo_default = IconUploadedvideo;
|
|
5090
5183
|
|
|
5091
5184
|
// src/components/Uploadfiles.tsx
|
|
5092
|
-
var
|
|
5185
|
+
var import_jsx_runtime199 = __toESM(require_jsx_runtime()), IconUploadfiles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime199.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime199.jsx)(
|
|
5093
5186
|
"path",
|
|
5094
5187
|
{
|
|
5095
5188
|
fill: stroke || color || "currentColor",
|
|
@@ -5098,7 +5191,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5098
5191
|
) }), Uploadfiles_default = IconUploadfiles;
|
|
5099
5192
|
|
|
5100
5193
|
// src/components/Uploadstory.tsx
|
|
5101
|
-
var
|
|
5194
|
+
var import_jsx_runtime200 = __toESM(require_jsx_runtime()), IconUploadstory = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime200.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime200.jsx)(
|
|
5102
5195
|
"path",
|
|
5103
5196
|
{
|
|
5104
5197
|
fill: stroke || color || "currentColor",
|
|
@@ -5109,7 +5202,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5109
5202
|
) }), Uploadstory_default = IconUploadstory;
|
|
5110
5203
|
|
|
5111
5204
|
// src/components/UprightFilled.tsx
|
|
5112
|
-
var
|
|
5205
|
+
var import_jsx_runtime201 = __toESM(require_jsx_runtime()), IconUprightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime201.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime201.jsx)(
|
|
5113
5206
|
"path",
|
|
5114
5207
|
{
|
|
5115
5208
|
fill: fill || color || "currentColor",
|
|
@@ -5120,7 +5213,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5120
5213
|
) }), UprightFilled_default = IconUprightFilled;
|
|
5121
5214
|
|
|
5122
5215
|
// src/components/Userfeedback.tsx
|
|
5123
|
-
var
|
|
5216
|
+
var import_jsx_runtime202 = __toESM(require_jsx_runtime()), IconUserfeedback = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime202.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime202.jsx)(
|
|
5124
5217
|
"path",
|
|
5125
5218
|
{
|
|
5126
5219
|
fill: stroke || color || "currentColor",
|
|
@@ -5131,16 +5224,16 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5131
5224
|
) }), Userfeedback_default = IconUserfeedback;
|
|
5132
5225
|
|
|
5133
5226
|
// src/components/Userfollow.tsx
|
|
5134
|
-
var
|
|
5135
|
-
/* @__PURE__ */ (0,
|
|
5227
|
+
var import_jsx_runtime203 = __toESM(require_jsx_runtime()), IconUserfollow = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime203.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
5228
|
+
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)(
|
|
5136
5229
|
"path",
|
|
5137
5230
|
{
|
|
5138
5231
|
fill: stroke || color || "currentColor",
|
|
5139
5232
|
d: "M15 15.25H6.5C5.25736 15.25 4.25 16.2574 4.25 17.5V19.75H12V22H2V17.5C2 15.0147 4.01472 13 6.5 13H15V15.25Z"
|
|
5140
5233
|
}
|
|
5141
5234
|
),
|
|
5142
|
-
/* @__PURE__ */ (0,
|
|
5143
|
-
/* @__PURE__ */ (0,
|
|
5235
|
+
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { fill: stroke || color || "currentColor", d: "M19 17H22V19H19V22H17V19H14V17H17V14H19V17Z" }),
|
|
5236
|
+
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)(
|
|
5144
5237
|
"path",
|
|
5145
5238
|
{
|
|
5146
5239
|
fill: stroke || color || "currentColor",
|
|
@@ -5152,7 +5245,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5152
5245
|
] }), Userfollow_default = IconUserfollow;
|
|
5153
5246
|
|
|
5154
5247
|
// src/components/Userfollowback.tsx
|
|
5155
|
-
var
|
|
5248
|
+
var import_jsx_runtime204 = __toESM(require_jsx_runtime()), IconUserfollowback = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime204.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime204.jsx)(
|
|
5156
5249
|
"path",
|
|
5157
5250
|
{
|
|
5158
5251
|
fill: stroke || color || "currentColor",
|
|
@@ -5161,7 +5254,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5161
5254
|
) }), Userfollowback_default = IconUserfollowback;
|
|
5162
5255
|
|
|
5163
5256
|
// src/components/Userfollowed.tsx
|
|
5164
|
-
var
|
|
5257
|
+
var import_jsx_runtime205 = __toESM(require_jsx_runtime()), IconUserfollowed = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime205.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime205.jsx)(
|
|
5165
5258
|
"path",
|
|
5166
5259
|
{
|
|
5167
5260
|
fill: stroke || color || "currentColor",
|
|
@@ -5170,15 +5263,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5170
5263
|
) }), Userfollowed_default = IconUserfollowed;
|
|
5171
5264
|
|
|
5172
5265
|
// src/components/VideoGeneration.tsx
|
|
5173
|
-
var
|
|
5174
|
-
/* @__PURE__ */ (0,
|
|
5266
|
+
var import_jsx_runtime206 = __toESM(require_jsx_runtime()), IconVideoGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime206.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
5267
|
+
/* @__PURE__ */ (0, import_jsx_runtime206.jsx)(
|
|
5175
5268
|
"path",
|
|
5176
5269
|
{
|
|
5177
5270
|
fill: stroke || color || "currentColor",
|
|
5178
5271
|
d: "M12 2.25C6.61522 2.25 2.25 6.61522 2.25 12C2.25 17.3848 6.61522 21.75 12 21.75C17.3848 21.75 21.75 17.3848 21.75 12H24C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0V2.25Z"
|
|
5179
5272
|
}
|
|
5180
5273
|
),
|
|
5181
|
-
/* @__PURE__ */ (0,
|
|
5274
|
+
/* @__PURE__ */ (0, import_jsx_runtime206.jsx)(
|
|
5182
5275
|
"path",
|
|
5183
5276
|
{
|
|
5184
5277
|
fill: stroke || color || "currentColor",
|
|
@@ -5187,7 +5280,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5187
5280
|
clipRule: "evenodd"
|
|
5188
5281
|
}
|
|
5189
5282
|
),
|
|
5190
|
-
/* @__PURE__ */ (0,
|
|
5283
|
+
/* @__PURE__ */ (0, import_jsx_runtime206.jsx)(
|
|
5191
5284
|
"path",
|
|
5192
5285
|
{
|
|
5193
5286
|
fill: stroke || color || "currentColor",
|
|
@@ -5197,9 +5290,9 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5197
5290
|
] }), VideoGeneration_default = IconVideoGeneration;
|
|
5198
5291
|
|
|
5199
5292
|
// src/components/VideoLength.tsx
|
|
5200
|
-
var
|
|
5201
|
-
/* @__PURE__ */ (0,
|
|
5202
|
-
/* @__PURE__ */ (0,
|
|
5293
|
+
var import_jsx_runtime207 = __toESM(require_jsx_runtime()), IconVideoLength = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime207.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
5294
|
+
/* @__PURE__ */ (0, import_jsx_runtime207.jsx)("path", { fill: stroke || color || "currentColor", d: "M10.875 9V15H13.125V9H10.875Z" }),
|
|
5295
|
+
/* @__PURE__ */ (0, import_jsx_runtime207.jsx)(
|
|
5203
5296
|
"path",
|
|
5204
5297
|
{
|
|
5205
5298
|
fill: stroke || color || "currentColor",
|
|
@@ -5211,8 +5304,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5211
5304
|
] }), VideoLength_default = IconVideoLength;
|
|
5212
5305
|
|
|
5213
5306
|
// src/components/Videogenerate.tsx
|
|
5214
|
-
var
|
|
5215
|
-
/* @__PURE__ */ (0,
|
|
5307
|
+
var import_jsx_runtime208 = __toESM(require_jsx_runtime()), IconVideogenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime208.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
5308
|
+
/* @__PURE__ */ (0, import_jsx_runtime208.jsx)(
|
|
5216
5309
|
"path",
|
|
5217
5310
|
{
|
|
5218
5311
|
fill: stroke || color || "currentColor",
|
|
@@ -5221,7 +5314,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5221
5314
|
clipRule: "evenodd"
|
|
5222
5315
|
}
|
|
5223
5316
|
),
|
|
5224
|
-
/* @__PURE__ */ (0,
|
|
5317
|
+
/* @__PURE__ */ (0, import_jsx_runtime208.jsx)(
|
|
5225
5318
|
"path",
|
|
5226
5319
|
{
|
|
5227
5320
|
fill: stroke || color || "currentColor",
|
|
@@ -5233,7 +5326,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5233
5326
|
] }), Videogenerate_default = IconVideogenerate;
|
|
5234
5327
|
|
|
5235
5328
|
// src/components/Visualstyles.tsx
|
|
5236
|
-
var
|
|
5329
|
+
var import_jsx_runtime209 = __toESM(require_jsx_runtime()), IconVisualstyles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime209.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime209.jsx)(
|
|
5237
5330
|
"path",
|
|
5238
5331
|
{
|
|
5239
5332
|
fill: stroke || color || "currentColor",
|
|
@@ -5244,8 +5337,8 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5244
5337
|
) }), Visualstyles_default = IconVisualstyles;
|
|
5245
5338
|
|
|
5246
5339
|
// src/components/Volume.tsx
|
|
5247
|
-
var
|
|
5248
|
-
/* @__PURE__ */ (0,
|
|
5340
|
+
var import_jsx_runtime210 = __toESM(require_jsx_runtime()), IconVolume = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime210.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
5341
|
+
/* @__PURE__ */ (0, import_jsx_runtime210.jsx)(
|
|
5249
5342
|
"path",
|
|
5250
5343
|
{
|
|
5251
5344
|
fill: stroke || color || "currentColor",
|
|
@@ -5254,14 +5347,14 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5254
5347
|
clipRule: "evenodd"
|
|
5255
5348
|
}
|
|
5256
5349
|
),
|
|
5257
|
-
/* @__PURE__ */ (0,
|
|
5350
|
+
/* @__PURE__ */ (0, import_jsx_runtime210.jsx)(
|
|
5258
5351
|
"path",
|
|
5259
5352
|
{
|
|
5260
5353
|
fill: stroke || color || "currentColor",
|
|
5261
5354
|
d: "M15 5.25C18.7279 5.25 21.75 8.27208 21.75 12C21.75 15.7279 18.7279 18.75 15 18.75V21C19.9706 21 24 16.9706 24 12C24 7.02944 19.9706 3 15 3V5.25Z"
|
|
5262
5355
|
}
|
|
5263
5356
|
),
|
|
5264
|
-
/* @__PURE__ */ (0,
|
|
5357
|
+
/* @__PURE__ */ (0, import_jsx_runtime210.jsx)(
|
|
5265
5358
|
"path",
|
|
5266
5359
|
{
|
|
5267
5360
|
fill: stroke || color || "currentColor",
|
|
@@ -5271,7 +5364,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5271
5364
|
] }), Volume_default = IconVolume;
|
|
5272
5365
|
|
|
5273
5366
|
// src/components/Withdrawgame.tsx
|
|
5274
|
-
var
|
|
5367
|
+
var import_jsx_runtime211 = __toESM(require_jsx_runtime()), IconWithdrawgame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime211.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime211.jsx)(
|
|
5275
5368
|
"path",
|
|
5276
5369
|
{
|
|
5277
5370
|
fill: stroke || color || "currentColor",
|
|
@@ -5282,15 +5375,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5282
5375
|
) }), Withdrawgame_default = IconWithdrawgame;
|
|
5283
5376
|
|
|
5284
5377
|
// src/components/Zoomhandle.tsx
|
|
5285
|
-
var
|
|
5286
|
-
/* @__PURE__ */ (0,
|
|
5378
|
+
var import_jsx_runtime212 = __toESM(require_jsx_runtime()), IconZoomhandle = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime212.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
5379
|
+
/* @__PURE__ */ (0, import_jsx_runtime212.jsx)(
|
|
5287
5380
|
"path",
|
|
5288
5381
|
{
|
|
5289
5382
|
fill: fill || color || "currentColor",
|
|
5290
5383
|
d: "M12 -2.62268e-07C15.3137 -1.17422e-07 18 2.68629 18 6L18 18C18 21.3137 15.3137 24 12 24C8.68629 24 6 21.3137 6 18L6 6C6 2.68629 8.68629 -4.07115e-07 12 -2.62268e-07Z"
|
|
5291
5384
|
}
|
|
5292
5385
|
),
|
|
5293
|
-
/* @__PURE__ */ (0,
|
|
5386
|
+
/* @__PURE__ */ (0, import_jsx_runtime212.jsx)(
|
|
5294
5387
|
"path",
|
|
5295
5388
|
{
|
|
5296
5389
|
fill: stroke || color || "currentColor",
|
|
@@ -5300,15 +5393,15 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5300
5393
|
] }), Zoomhandle_default = IconZoomhandle;
|
|
5301
5394
|
|
|
5302
5395
|
// src/components/Zoomin.tsx
|
|
5303
|
-
var
|
|
5304
|
-
/* @__PURE__ */ (0,
|
|
5396
|
+
var import_jsx_runtime213 = __toESM(require_jsx_runtime()), IconZoomin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime213.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
5397
|
+
/* @__PURE__ */ (0, import_jsx_runtime213.jsx)(
|
|
5305
5398
|
"path",
|
|
5306
5399
|
{
|
|
5307
5400
|
fill: stroke || color || "currentColor",
|
|
5308
5401
|
d: "M11.625 11.625H15V9.375H11.625V6H9.375V9.375H6V11.625H9.375V15H11.625V11.625Z"
|
|
5309
5402
|
}
|
|
5310
5403
|
),
|
|
5311
|
-
/* @__PURE__ */ (0,
|
|
5404
|
+
/* @__PURE__ */ (0, import_jsx_runtime213.jsx)(
|
|
5312
5405
|
"path",
|
|
5313
5406
|
{
|
|
5314
5407
|
fill: stroke || color || "currentColor",
|
|
@@ -5320,9 +5413,9 @@ React keys must be passed directly to JSX without using spread:
|
|
|
5320
5413
|
] }), Zoomin_default = IconZoomin;
|
|
5321
5414
|
|
|
5322
5415
|
// src/components/Zoomout.tsx
|
|
5323
|
-
var
|
|
5324
|
-
/* @__PURE__ */ (0,
|
|
5325
|
-
/* @__PURE__ */ (0,
|
|
5416
|
+
var import_jsx_runtime214 = __toESM(require_jsx_runtime()), IconZoomout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime214.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
5417
|
+
/* @__PURE__ */ (0, import_jsx_runtime214.jsx)("path", { fill: stroke || color || "currentColor", d: "M15 11.625H6V9.375H15V11.625Z" }),
|
|
5418
|
+
/* @__PURE__ */ (0, import_jsx_runtime214.jsx)(
|
|
5326
5419
|
"path",
|
|
5327
5420
|
{
|
|
5328
5421
|
fill: stroke || color || "currentColor",
|