@edux-design/icons 0.0.2 → 0.0.4
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.d.mts +45 -1
- package/dist/index.d.ts +45 -1
- package/dist/index.js +602 -97
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +581 -98
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/24/addimage.svg +1 -0
- package/src/24/boldtext.svg +1 -0
- package/src/24/draghandle.svg +1 -0
- package/src/24/headingtext.svg +1 -0
- package/src/24/headingtext1.svg +1 -0
- package/src/24/headingtext2.svg +1 -0
- package/src/24/headingtext3.svg +1 -0
- package/src/24/headingtext4.svg +1 -0
- package/src/24/headingtext5.svg +1 -0
- package/src/24/headingtext6.svg +1 -0
- package/src/24/italicstext.svg +1 -0
- package/src/24/list.svg +1 -0
- package/src/24/listordered.svg +1 -0
- package/src/24/redo.svg +1 -0
- package/src/24/sigma.svg +1 -0
- package/src/24/table.svg +1 -0
- package/src/24/text-align-center.svg +1 -0
- package/src/24/text-align-end.svg +1 -0
- package/src/24/text-align-justify.svg +1 -0
- package/src/24/text-align-start.svg +1 -0
- package/src/24/underlinetext.svg +1 -0
- package/src/24/undo.svg +1 -0
package/dist/index.js
CHANGED
|
@@ -1723,9 +1723,55 @@ var require_jsx_runtime = __commonJS({
|
|
|
1723
1723
|
}
|
|
1724
1724
|
});
|
|
1725
1725
|
|
|
1726
|
-
// src/components/
|
|
1726
|
+
// src/components/Addimage.tsx
|
|
1727
1727
|
var import_jsx_runtime = __toESM(require_jsx_runtime());
|
|
1728
|
-
var
|
|
1728
|
+
var SvgAddimage = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
1729
|
+
"svg",
|
|
1730
|
+
{
|
|
1731
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1732
|
+
width: "1em",
|
|
1733
|
+
height: "1em",
|
|
1734
|
+
fill: "none",
|
|
1735
|
+
stroke: "currentColor",
|
|
1736
|
+
strokeLinecap: "round",
|
|
1737
|
+
strokeLinejoin: "round",
|
|
1738
|
+
strokeWidth: 2,
|
|
1739
|
+
className: "addimage_svg__lucide addimage_svg__lucide-image-plus-icon addimage_svg__lucide-image-plus",
|
|
1740
|
+
viewBox: "0 0 24 24",
|
|
1741
|
+
...props,
|
|
1742
|
+
children: [
|
|
1743
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M16 5h6M19 2v6M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5" }),
|
|
1744
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" }),
|
|
1745
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: 9, cy: 9, r: 2 })
|
|
1746
|
+
]
|
|
1747
|
+
}
|
|
1748
|
+
);
|
|
1749
|
+
var Addimage_default = SvgAddimage;
|
|
1750
|
+
|
|
1751
|
+
// src/components/Boldtext.tsx
|
|
1752
|
+
var import_jsx_runtime2 = __toESM(require_jsx_runtime());
|
|
1753
|
+
var SvgBoldtext = (props) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
1754
|
+
"svg",
|
|
1755
|
+
{
|
|
1756
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1757
|
+
width: "1em",
|
|
1758
|
+
height: "1em",
|
|
1759
|
+
fill: "none",
|
|
1760
|
+
stroke: "currentColor",
|
|
1761
|
+
strokeLinecap: "round",
|
|
1762
|
+
strokeLinejoin: "round",
|
|
1763
|
+
strokeWidth: 2,
|
|
1764
|
+
className: "boldtext_svg__lucide boldtext_svg__lucide-bold-icon boldtext_svg__lucide-bold",
|
|
1765
|
+
viewBox: "0 0 24 24",
|
|
1766
|
+
...props,
|
|
1767
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8" })
|
|
1768
|
+
}
|
|
1769
|
+
);
|
|
1770
|
+
var Boldtext_default = SvgBoldtext;
|
|
1771
|
+
|
|
1772
|
+
// src/components/Book.tsx
|
|
1773
|
+
var import_jsx_runtime3 = __toESM(require_jsx_runtime());
|
|
1774
|
+
var SvgBook = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
1729
1775
|
"svg",
|
|
1730
1776
|
{
|
|
1731
1777
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1734,7 +1780,7 @@ var SvgBook = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
|
1734
1780
|
fill: "none",
|
|
1735
1781
|
viewBox: "0 0 22 19",
|
|
1736
1782
|
...props,
|
|
1737
|
-
children: /* @__PURE__ */ (0,
|
|
1783
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
1738
1784
|
"path",
|
|
1739
1785
|
{
|
|
1740
1786
|
fill: "currentColor",
|
|
@@ -1748,8 +1794,8 @@ var SvgBook = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
|
1748
1794
|
var Book_default = SvgBook;
|
|
1749
1795
|
|
|
1750
1796
|
// src/components/Check.tsx
|
|
1751
|
-
var
|
|
1752
|
-
var SvgCheck = (props) => /* @__PURE__ */ (0,
|
|
1797
|
+
var import_jsx_runtime4 = __toESM(require_jsx_runtime());
|
|
1798
|
+
var SvgCheck = (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1753
1799
|
"svg",
|
|
1754
1800
|
{
|
|
1755
1801
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1758,7 +1804,7 @@ var SvgCheck = (props) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
|
1758
1804
|
fill: "none",
|
|
1759
1805
|
viewBox: "0 0 24 24",
|
|
1760
1806
|
...props,
|
|
1761
|
-
children: /* @__PURE__ */ (0,
|
|
1807
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1762
1808
|
"path",
|
|
1763
1809
|
{
|
|
1764
1810
|
fill: "currentColor",
|
|
@@ -1772,8 +1818,8 @@ var SvgCheck = (props) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
|
1772
1818
|
var Check_default = SvgCheck;
|
|
1773
1819
|
|
|
1774
1820
|
// src/components/Chevron.tsx
|
|
1775
|
-
var
|
|
1776
|
-
var SvgChevron = (props) => /* @__PURE__ */ (0,
|
|
1821
|
+
var import_jsx_runtime5 = __toESM(require_jsx_runtime());
|
|
1822
|
+
var SvgChevron = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1777
1823
|
"svg",
|
|
1778
1824
|
{
|
|
1779
1825
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1782,7 +1828,7 @@ var SvgChevron = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
|
1782
1828
|
fill: "none",
|
|
1783
1829
|
viewBox: "0 0 24 24",
|
|
1784
1830
|
...props,
|
|
1785
|
-
children: /* @__PURE__ */ (0,
|
|
1831
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1786
1832
|
"path",
|
|
1787
1833
|
{
|
|
1788
1834
|
fill: "currentColor",
|
|
@@ -1796,8 +1842,8 @@ var SvgChevron = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
|
1796
1842
|
var Chevron_default = SvgChevron;
|
|
1797
1843
|
|
|
1798
1844
|
// src/components/Class.tsx
|
|
1799
|
-
var
|
|
1800
|
-
var SvgClass = (props) => /* @__PURE__ */ (0,
|
|
1845
|
+
var import_jsx_runtime6 = __toESM(require_jsx_runtime());
|
|
1846
|
+
var SvgClass = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1801
1847
|
"svg",
|
|
1802
1848
|
{
|
|
1803
1849
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1806,7 +1852,7 @@ var SvgClass = (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
|
1806
1852
|
fill: "none",
|
|
1807
1853
|
viewBox: "0 0 24 25",
|
|
1808
1854
|
...props,
|
|
1809
|
-
children: /* @__PURE__ */ (0,
|
|
1855
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1810
1856
|
"path",
|
|
1811
1857
|
{
|
|
1812
1858
|
fill: "currentColor",
|
|
@@ -1820,8 +1866,8 @@ var SvgClass = (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
|
1820
1866
|
var Class_default = SvgClass;
|
|
1821
1867
|
|
|
1822
1868
|
// src/components/Close.tsx
|
|
1823
|
-
var
|
|
1824
|
-
var SvgClose = (props) => /* @__PURE__ */ (0,
|
|
1869
|
+
var import_jsx_runtime7 = __toESM(require_jsx_runtime());
|
|
1870
|
+
var SvgClose = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1825
1871
|
"svg",
|
|
1826
1872
|
{
|
|
1827
1873
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1830,7 +1876,7 @@ var SvgClose = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
|
1830
1876
|
fill: "none",
|
|
1831
1877
|
viewBox: "0 0 24 24",
|
|
1832
1878
|
...props,
|
|
1833
|
-
children: /* @__PURE__ */ (0,
|
|
1879
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1834
1880
|
"path",
|
|
1835
1881
|
{
|
|
1836
1882
|
fill: "currentColor",
|
|
@@ -1844,8 +1890,8 @@ var SvgClose = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
|
1844
1890
|
var Close_default = SvgClose;
|
|
1845
1891
|
|
|
1846
1892
|
// src/components/Code.tsx
|
|
1847
|
-
var
|
|
1848
|
-
var SvgCode = (props) => /* @__PURE__ */ (0,
|
|
1893
|
+
var import_jsx_runtime8 = __toESM(require_jsx_runtime());
|
|
1894
|
+
var SvgCode = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1849
1895
|
"svg",
|
|
1850
1896
|
{
|
|
1851
1897
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1854,7 +1900,7 @@ var SvgCode = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
|
1854
1900
|
fill: "none",
|
|
1855
1901
|
viewBox: "0 0 18 10",
|
|
1856
1902
|
...props,
|
|
1857
|
-
children: /* @__PURE__ */ (0,
|
|
1903
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1858
1904
|
"path",
|
|
1859
1905
|
{
|
|
1860
1906
|
fill: "currentColor",
|
|
@@ -1868,8 +1914,8 @@ var SvgCode = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
|
1868
1914
|
var Code_default = SvgCode;
|
|
1869
1915
|
|
|
1870
1916
|
// src/components/Collapse.tsx
|
|
1871
|
-
var
|
|
1872
|
-
var SvgCollapse = (props) => /* @__PURE__ */ (0,
|
|
1917
|
+
var import_jsx_runtime9 = __toESM(require_jsx_runtime());
|
|
1918
|
+
var SvgCollapse = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
1873
1919
|
"svg",
|
|
1874
1920
|
{
|
|
1875
1921
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1879,7 +1925,7 @@ var SvgCollapse = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
|
1879
1925
|
viewBox: "0 0 20 20",
|
|
1880
1926
|
...props,
|
|
1881
1927
|
children: [
|
|
1882
|
-
/* @__PURE__ */ (0,
|
|
1928
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1883
1929
|
"path",
|
|
1884
1930
|
{
|
|
1885
1931
|
fill: "#212529",
|
|
@@ -1888,7 +1934,7 @@ var SvgCollapse = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
|
1888
1934
|
clipRule: "evenodd"
|
|
1889
1935
|
}
|
|
1890
1936
|
),
|
|
1891
|
-
/* @__PURE__ */ (0,
|
|
1937
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1892
1938
|
"path",
|
|
1893
1939
|
{
|
|
1894
1940
|
fill: "currentColor",
|
|
@@ -1903,8 +1949,8 @@ var SvgCollapse = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
|
1903
1949
|
var Collapse_default = SvgCollapse;
|
|
1904
1950
|
|
|
1905
1951
|
// src/components/Copy.tsx
|
|
1906
|
-
var
|
|
1907
|
-
var SvgCopy = (props) => /* @__PURE__ */ (0,
|
|
1952
|
+
var import_jsx_runtime10 = __toESM(require_jsx_runtime());
|
|
1953
|
+
var SvgCopy = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1908
1954
|
"svg",
|
|
1909
1955
|
{
|
|
1910
1956
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1913,7 +1959,7 @@ var SvgCopy = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
|
1913
1959
|
fill: "none",
|
|
1914
1960
|
viewBox: "0 0 24 24",
|
|
1915
1961
|
...props,
|
|
1916
|
-
children: /* @__PURE__ */ (0,
|
|
1962
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1917
1963
|
"path",
|
|
1918
1964
|
{
|
|
1919
1965
|
fill: "currentColor",
|
|
@@ -1926,9 +1972,37 @@ var SvgCopy = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
|
1926
1972
|
);
|
|
1927
1973
|
var Copy_default = SvgCopy;
|
|
1928
1974
|
|
|
1975
|
+
// src/components/Draghandle.tsx
|
|
1976
|
+
var import_jsx_runtime11 = __toESM(require_jsx_runtime());
|
|
1977
|
+
var SvgDraghandle = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
1978
|
+
"svg",
|
|
1979
|
+
{
|
|
1980
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1981
|
+
width: "1em",
|
|
1982
|
+
height: "1em",
|
|
1983
|
+
fill: "none",
|
|
1984
|
+
stroke: "currentColor",
|
|
1985
|
+
strokeLinecap: "round",
|
|
1986
|
+
strokeLinejoin: "round",
|
|
1987
|
+
strokeWidth: 2,
|
|
1988
|
+
className: "draghandle_svg__lucide draghandle_svg__lucide-grip-vertical-icon draghandle_svg__lucide-grip-vertical",
|
|
1989
|
+
viewBox: "0 0 24 24",
|
|
1990
|
+
...props,
|
|
1991
|
+
children: [
|
|
1992
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: 9, cy: 12, r: 1 }),
|
|
1993
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: 9, cy: 5, r: 1 }),
|
|
1994
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: 9, cy: 19, r: 1 }),
|
|
1995
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: 15, cy: 12, r: 1 }),
|
|
1996
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: 15, cy: 5, r: 1 }),
|
|
1997
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: 15, cy: 19, r: 1 })
|
|
1998
|
+
]
|
|
1999
|
+
}
|
|
2000
|
+
);
|
|
2001
|
+
var Draghandle_default = SvgDraghandle;
|
|
2002
|
+
|
|
1929
2003
|
// src/components/Error.tsx
|
|
1930
|
-
var
|
|
1931
|
-
var SvgError = (props) => /* @__PURE__ */ (0,
|
|
2004
|
+
var import_jsx_runtime12 = __toESM(require_jsx_runtime());
|
|
2005
|
+
var SvgError = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1932
2006
|
"svg",
|
|
1933
2007
|
{
|
|
1934
2008
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1937,7 +2011,7 @@ var SvgError = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
|
1937
2011
|
fill: "none",
|
|
1938
2012
|
viewBox: "0 0 24 24",
|
|
1939
2013
|
...props,
|
|
1940
|
-
children: /* @__PURE__ */ (0,
|
|
2014
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1941
2015
|
"path",
|
|
1942
2016
|
{
|
|
1943
2017
|
fill: "currentColor",
|
|
@@ -1951,8 +2025,8 @@ var SvgError = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
|
1951
2025
|
var Error_default = SvgError;
|
|
1952
2026
|
|
|
1953
2027
|
// src/components/External.tsx
|
|
1954
|
-
var
|
|
1955
|
-
var SvgExternal = (props) => /* @__PURE__ */ (0,
|
|
2028
|
+
var import_jsx_runtime13 = __toESM(require_jsx_runtime());
|
|
2029
|
+
var SvgExternal = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1956
2030
|
"svg",
|
|
1957
2031
|
{
|
|
1958
2032
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1961,7 +2035,7 @@ var SvgExternal = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
|
1961
2035
|
fill: "none",
|
|
1962
2036
|
viewBox: "0 0 24 24",
|
|
1963
2037
|
...props,
|
|
1964
|
-
children: /* @__PURE__ */ (0,
|
|
2038
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1965
2039
|
"path",
|
|
1966
2040
|
{
|
|
1967
2041
|
fill: "currentColor",
|
|
@@ -1975,8 +2049,8 @@ var SvgExternal = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
|
1975
2049
|
var External_default = SvgExternal;
|
|
1976
2050
|
|
|
1977
2051
|
// src/components/Eye.tsx
|
|
1978
|
-
var
|
|
1979
|
-
var SvgEye = (props) => /* @__PURE__ */ (0,
|
|
2052
|
+
var import_jsx_runtime14 = __toESM(require_jsx_runtime());
|
|
2053
|
+
var SvgEye = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1980
2054
|
"svg",
|
|
1981
2055
|
{
|
|
1982
2056
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1985,7 +2059,7 @@ var SvgEye = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
|
1985
2059
|
fill: "none",
|
|
1986
2060
|
viewBox: "0 0 24 24",
|
|
1987
2061
|
...props,
|
|
1988
|
-
children: /* @__PURE__ */ (0,
|
|
2062
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1989
2063
|
"path",
|
|
1990
2064
|
{
|
|
1991
2065
|
fill: "currentColor",
|
|
@@ -1999,8 +2073,8 @@ var SvgEye = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
|
1999
2073
|
var Eye_default = SvgEye;
|
|
2000
2074
|
|
|
2001
2075
|
// src/components/Eyehide.tsx
|
|
2002
|
-
var
|
|
2003
|
-
var SvgEyehide = (props) => /* @__PURE__ */ (0,
|
|
2076
|
+
var import_jsx_runtime15 = __toESM(require_jsx_runtime());
|
|
2077
|
+
var SvgEyehide = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2004
2078
|
"svg",
|
|
2005
2079
|
{
|
|
2006
2080
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2009,7 +2083,7 @@ var SvgEyehide = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
|
2009
2083
|
fill: "none",
|
|
2010
2084
|
viewBox: "0 0 24 24",
|
|
2011
2085
|
...props,
|
|
2012
|
-
children: /* @__PURE__ */ (0,
|
|
2086
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2013
2087
|
"path",
|
|
2014
2088
|
{
|
|
2015
2089
|
fill: "#212529",
|
|
@@ -2021,8 +2095,8 @@ var SvgEyehide = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
|
2021
2095
|
var Eyehide_default = SvgEyehide;
|
|
2022
2096
|
|
|
2023
2097
|
// src/components/First.tsx
|
|
2024
|
-
var
|
|
2025
|
-
var SvgFirst = (props) => /* @__PURE__ */ (0,
|
|
2098
|
+
var import_jsx_runtime16 = __toESM(require_jsx_runtime());
|
|
2099
|
+
var SvgFirst = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
2026
2100
|
"svg",
|
|
2027
2101
|
{
|
|
2028
2102
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2032,14 +2106,14 @@ var SvgFirst = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
|
2032
2106
|
viewBox: "0 0 24 24",
|
|
2033
2107
|
...props,
|
|
2034
2108
|
children: [
|
|
2035
|
-
/* @__PURE__ */ (0,
|
|
2109
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2036
2110
|
"path",
|
|
2037
2111
|
{
|
|
2038
2112
|
fill: "#212529",
|
|
2039
2113
|
d: "M7.293 7.707 11.586 12l-4.293 4.293a1 1 0 1 0 1.414 1.414l5-5a1 1 0 0 0 0-1.414l-5-5a1 1 0 0 0-1.414 1.414"
|
|
2040
2114
|
}
|
|
2041
2115
|
),
|
|
2042
|
-
/* @__PURE__ */ (0,
|
|
2116
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2043
2117
|
"path",
|
|
2044
2118
|
{
|
|
2045
2119
|
fill: "currentColor",
|
|
@@ -2052,8 +2126,8 @@ var SvgFirst = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
|
2052
2126
|
var First_default = SvgFirst;
|
|
2053
2127
|
|
|
2054
2128
|
// src/components/Gologo.tsx
|
|
2055
|
-
var
|
|
2056
|
-
var SvgGologo = (props) => /* @__PURE__ */ (0,
|
|
2129
|
+
var import_jsx_runtime17 = __toESM(require_jsx_runtime());
|
|
2130
|
+
var SvgGologo = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
2057
2131
|
"svg",
|
|
2058
2132
|
{
|
|
2059
2133
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2063,14 +2137,14 @@ var SvgGologo = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
|
|
|
2063
2137
|
viewBox: "0 0 35 36",
|
|
2064
2138
|
...props,
|
|
2065
2139
|
children: [
|
|
2066
|
-
/* @__PURE__ */ (0,
|
|
2140
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2067
2141
|
"path",
|
|
2068
2142
|
{
|
|
2069
2143
|
fill: "#082663",
|
|
2070
2144
|
d: "M.385 0v18.72c0 9.203 5.372 11.83 7.954 13.092.474.232 8.442 3.795 8.952 4.023l.344.165.343-.165c.46-.206 8.477-3.79 8.952-4.023 2.582-1.262 7.955-3.89 7.955-13.093V0z"
|
|
2071
2145
|
}
|
|
2072
2146
|
),
|
|
2073
|
-
/* @__PURE__ */ (0,
|
|
2147
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2074
2148
|
"path",
|
|
2075
2149
|
{
|
|
2076
2150
|
fill: "#fff",
|
|
@@ -2083,8 +2157,8 @@ var SvgGologo = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
|
|
|
2083
2157
|
var Gologo_default = SvgGologo;
|
|
2084
2158
|
|
|
2085
2159
|
// src/components/Hamburger.tsx
|
|
2086
|
-
var
|
|
2087
|
-
var SvgHamburger = (props) => /* @__PURE__ */ (0,
|
|
2160
|
+
var import_jsx_runtime18 = __toESM(require_jsx_runtime());
|
|
2161
|
+
var SvgHamburger = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2088
2162
|
"svg",
|
|
2089
2163
|
{
|
|
2090
2164
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2093,7 +2167,7 @@ var SvgHamburger = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
|
2093
2167
|
fill: "none",
|
|
2094
2168
|
viewBox: "0 0 24 24",
|
|
2095
2169
|
...props,
|
|
2096
|
-
children: /* @__PURE__ */ (0,
|
|
2170
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2097
2171
|
"path",
|
|
2098
2172
|
{
|
|
2099
2173
|
fill: "currentColor",
|
|
@@ -2106,9 +2180,160 @@ var SvgHamburger = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
|
2106
2180
|
);
|
|
2107
2181
|
var Hamburger_default = SvgHamburger;
|
|
2108
2182
|
|
|
2183
|
+
// src/components/Headingtext.tsx
|
|
2184
|
+
var import_jsx_runtime19 = __toESM(require_jsx_runtime());
|
|
2185
|
+
var SvgHeadingtext = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2186
|
+
"svg",
|
|
2187
|
+
{
|
|
2188
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2189
|
+
width: "1em",
|
|
2190
|
+
height: "1em",
|
|
2191
|
+
fill: "none",
|
|
2192
|
+
stroke: "currentColor",
|
|
2193
|
+
strokeLinecap: "round",
|
|
2194
|
+
strokeLinejoin: "round",
|
|
2195
|
+
strokeWidth: 2,
|
|
2196
|
+
className: "headingtext_svg__lucide headingtext_svg__lucide-heading-icon headingtext_svg__lucide-heading",
|
|
2197
|
+
viewBox: "0 0 24 24",
|
|
2198
|
+
...props,
|
|
2199
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M6 12h12M6 20V4M18 20V4" })
|
|
2200
|
+
}
|
|
2201
|
+
);
|
|
2202
|
+
var Headingtext_default = SvgHeadingtext;
|
|
2203
|
+
|
|
2204
|
+
// src/components/Headingtext1.tsx
|
|
2205
|
+
var import_jsx_runtime20 = __toESM(require_jsx_runtime());
|
|
2206
|
+
var SvgHeadingtext1 = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2207
|
+
"svg",
|
|
2208
|
+
{
|
|
2209
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2210
|
+
width: "1em",
|
|
2211
|
+
height: "1em",
|
|
2212
|
+
fill: "none",
|
|
2213
|
+
stroke: "currentColor",
|
|
2214
|
+
strokeLinecap: "round",
|
|
2215
|
+
strokeLinejoin: "round",
|
|
2216
|
+
strokeWidth: 2,
|
|
2217
|
+
className: "headingtext1_svg__lucide headingtext1_svg__lucide-heading1-icon headingtext1_svg__lucide-heading-1",
|
|
2218
|
+
viewBox: "0 0 24 24",
|
|
2219
|
+
...props,
|
|
2220
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M4 12h8M4 18V6M12 18V6M17 12l3-2v8" })
|
|
2221
|
+
}
|
|
2222
|
+
);
|
|
2223
|
+
var Headingtext1_default = SvgHeadingtext1;
|
|
2224
|
+
|
|
2225
|
+
// src/components/Headingtext2.tsx
|
|
2226
|
+
var import_jsx_runtime21 = __toESM(require_jsx_runtime());
|
|
2227
|
+
var SvgHeadingtext2 = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2228
|
+
"svg",
|
|
2229
|
+
{
|
|
2230
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2231
|
+
width: "1em",
|
|
2232
|
+
height: "1em",
|
|
2233
|
+
fill: "none",
|
|
2234
|
+
stroke: "currentColor",
|
|
2235
|
+
strokeLinecap: "round",
|
|
2236
|
+
strokeLinejoin: "round",
|
|
2237
|
+
strokeWidth: 2,
|
|
2238
|
+
className: "headingtext2_svg__lucide headingtext2_svg__lucide-heading1-icon headingtext2_svg__lucide-heading-1",
|
|
2239
|
+
viewBox: "0 0 24 24",
|
|
2240
|
+
...props,
|
|
2241
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M4 12h8M4 18V6M12 18V6M17 12l3-2v8" })
|
|
2242
|
+
}
|
|
2243
|
+
);
|
|
2244
|
+
var Headingtext2_default = SvgHeadingtext2;
|
|
2245
|
+
|
|
2246
|
+
// src/components/Headingtext3.tsx
|
|
2247
|
+
var import_jsx_runtime22 = __toESM(require_jsx_runtime());
|
|
2248
|
+
var SvgHeadingtext3 = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
2249
|
+
"svg",
|
|
2250
|
+
{
|
|
2251
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2252
|
+
width: "1em",
|
|
2253
|
+
height: "1em",
|
|
2254
|
+
fill: "none",
|
|
2255
|
+
stroke: "currentColor",
|
|
2256
|
+
strokeLinecap: "round",
|
|
2257
|
+
strokeLinejoin: "round",
|
|
2258
|
+
strokeWidth: 2,
|
|
2259
|
+
className: "headingtext3_svg__lucide headingtext3_svg__lucide-heading3-icon headingtext3_svg__lucide-heading-3",
|
|
2260
|
+
viewBox: "0 0 24 24",
|
|
2261
|
+
...props,
|
|
2262
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M4 12h8M4 18V6M12 18V6M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2" })
|
|
2263
|
+
}
|
|
2264
|
+
);
|
|
2265
|
+
var Headingtext3_default = SvgHeadingtext3;
|
|
2266
|
+
|
|
2267
|
+
// src/components/Headingtext4.tsx
|
|
2268
|
+
var import_jsx_runtime23 = __toESM(require_jsx_runtime());
|
|
2269
|
+
var SvgHeadingtext4 = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2270
|
+
"svg",
|
|
2271
|
+
{
|
|
2272
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2273
|
+
width: "1em",
|
|
2274
|
+
height: "1em",
|
|
2275
|
+
fill: "none",
|
|
2276
|
+
stroke: "currentColor",
|
|
2277
|
+
strokeLinecap: "round",
|
|
2278
|
+
strokeLinejoin: "round",
|
|
2279
|
+
strokeWidth: 2,
|
|
2280
|
+
className: "headingtext4_svg__lucide headingtext4_svg__lucide-heading4-icon headingtext4_svg__lucide-heading-4",
|
|
2281
|
+
viewBox: "0 0 24 24",
|
|
2282
|
+
...props,
|
|
2283
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "M12 18V6M17 10v3a1 1 0 0 0 1 1h3M21 10v8M4 12h8M4 18V6" })
|
|
2284
|
+
}
|
|
2285
|
+
);
|
|
2286
|
+
var Headingtext4_default = SvgHeadingtext4;
|
|
2287
|
+
|
|
2288
|
+
// src/components/Headingtext5.tsx
|
|
2289
|
+
var import_jsx_runtime24 = __toESM(require_jsx_runtime());
|
|
2290
|
+
var SvgHeadingtext5 = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2291
|
+
"svg",
|
|
2292
|
+
{
|
|
2293
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2294
|
+
width: "1em",
|
|
2295
|
+
height: "1em",
|
|
2296
|
+
fill: "none",
|
|
2297
|
+
stroke: "currentColor",
|
|
2298
|
+
strokeLinecap: "round",
|
|
2299
|
+
strokeLinejoin: "round",
|
|
2300
|
+
strokeWidth: 2,
|
|
2301
|
+
className: "headingtext5_svg__lucide headingtext5_svg__lucide-heading5-icon headingtext5_svg__lucide-heading-5",
|
|
2302
|
+
viewBox: "0 0 24 24",
|
|
2303
|
+
...props,
|
|
2304
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "M4 12h8M4 18V6M12 18V6M17 13v-3h4M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17" })
|
|
2305
|
+
}
|
|
2306
|
+
);
|
|
2307
|
+
var Headingtext5_default = SvgHeadingtext5;
|
|
2308
|
+
|
|
2309
|
+
// src/components/Headingtext6.tsx
|
|
2310
|
+
var import_jsx_runtime25 = __toESM(require_jsx_runtime());
|
|
2311
|
+
var SvgHeadingtext6 = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
2312
|
+
"svg",
|
|
2313
|
+
{
|
|
2314
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2315
|
+
width: "1em",
|
|
2316
|
+
height: "1em",
|
|
2317
|
+
fill: "none",
|
|
2318
|
+
stroke: "currentColor",
|
|
2319
|
+
strokeLinecap: "round",
|
|
2320
|
+
strokeLinejoin: "round",
|
|
2321
|
+
strokeWidth: 2,
|
|
2322
|
+
className: "headingtext6_svg__lucide headingtext6_svg__lucide-heading6-icon headingtext6_svg__lucide-heading-6",
|
|
2323
|
+
viewBox: "0 0 24 24",
|
|
2324
|
+
...props,
|
|
2325
|
+
children: [
|
|
2326
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M4 12h8M4 18V6M12 18V6" }),
|
|
2327
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: 19, cy: 16, r: 2 }),
|
|
2328
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M20 10c-2 2-3 3.5-3 6" })
|
|
2329
|
+
]
|
|
2330
|
+
}
|
|
2331
|
+
);
|
|
2332
|
+
var Headingtext6_default = SvgHeadingtext6;
|
|
2333
|
+
|
|
2109
2334
|
// src/components/Indeterminate.tsx
|
|
2110
|
-
var
|
|
2111
|
-
var SvgIndeterminate = (props) => /* @__PURE__ */ (0,
|
|
2335
|
+
var import_jsx_runtime26 = __toESM(require_jsx_runtime());
|
|
2336
|
+
var SvgIndeterminate = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2112
2337
|
"svg",
|
|
2113
2338
|
{
|
|
2114
2339
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2117,7 +2342,7 @@ var SvgIndeterminate = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
|
2117
2342
|
fill: "none",
|
|
2118
2343
|
viewBox: "0 0 24 24",
|
|
2119
2344
|
...props,
|
|
2120
|
-
children: /* @__PURE__ */ (0,
|
|
2345
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2121
2346
|
"path",
|
|
2122
2347
|
{
|
|
2123
2348
|
fill: "currentColor",
|
|
@@ -2131,8 +2356,8 @@ var SvgIndeterminate = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
|
2131
2356
|
var Indeterminate_default = SvgIndeterminate;
|
|
2132
2357
|
|
|
2133
2358
|
// src/components/Info.tsx
|
|
2134
|
-
var
|
|
2135
|
-
var SvgInfo = (props) => /* @__PURE__ */ (0,
|
|
2359
|
+
var import_jsx_runtime27 = __toESM(require_jsx_runtime());
|
|
2360
|
+
var SvgInfo = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2136
2361
|
"svg",
|
|
2137
2362
|
{
|
|
2138
2363
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2141,7 +2366,7 @@ var SvgInfo = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
|
2141
2366
|
fill: "none",
|
|
2142
2367
|
viewBox: "0 0 24 24",
|
|
2143
2368
|
...props,
|
|
2144
|
-
children: /* @__PURE__ */ (0,
|
|
2369
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2145
2370
|
"path",
|
|
2146
2371
|
{
|
|
2147
2372
|
fill: "currentColor",
|
|
@@ -2154,9 +2379,30 @@ var SvgInfo = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
|
2154
2379
|
);
|
|
2155
2380
|
var Info_default = SvgInfo;
|
|
2156
2381
|
|
|
2382
|
+
// src/components/Italicstext.tsx
|
|
2383
|
+
var import_jsx_runtime28 = __toESM(require_jsx_runtime());
|
|
2384
|
+
var SvgItalicstext = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2385
|
+
"svg",
|
|
2386
|
+
{
|
|
2387
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2388
|
+
width: "1em",
|
|
2389
|
+
height: "1em",
|
|
2390
|
+
fill: "none",
|
|
2391
|
+
stroke: "currentColor",
|
|
2392
|
+
strokeLinecap: "round",
|
|
2393
|
+
strokeLinejoin: "round",
|
|
2394
|
+
strokeWidth: 2,
|
|
2395
|
+
className: "italicstext_svg__lucide italicstext_svg__lucide-italic-icon italicstext_svg__lucide-italic",
|
|
2396
|
+
viewBox: "0 0 24 24",
|
|
2397
|
+
...props,
|
|
2398
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M19 4h-9M14 20H5M15 4 9 20" })
|
|
2399
|
+
}
|
|
2400
|
+
);
|
|
2401
|
+
var Italicstext_default = SvgItalicstext;
|
|
2402
|
+
|
|
2157
2403
|
// src/components/Last.tsx
|
|
2158
|
-
var
|
|
2159
|
-
var SvgLast = (props) => /* @__PURE__ */ (0,
|
|
2404
|
+
var import_jsx_runtime29 = __toESM(require_jsx_runtime());
|
|
2405
|
+
var SvgLast = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
2160
2406
|
"svg",
|
|
2161
2407
|
{
|
|
2162
2408
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2166,14 +2412,14 @@ var SvgLast = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
|
2166
2412
|
viewBox: "0 0 24 24",
|
|
2167
2413
|
...props,
|
|
2168
2414
|
children: [
|
|
2169
|
-
/* @__PURE__ */ (0,
|
|
2415
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2170
2416
|
"path",
|
|
2171
2417
|
{
|
|
2172
2418
|
fill: "#212529",
|
|
2173
2419
|
d: "M17.707 16.293 13.414 12l4.293-4.293a1 1 0 0 0-1.414-1.414l-5 5a1 1 0 0 0 0 1.414l5 5a1 1 0 0 0 1.414-1.414"
|
|
2174
2420
|
}
|
|
2175
2421
|
),
|
|
2176
|
-
/* @__PURE__ */ (0,
|
|
2422
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2177
2423
|
"path",
|
|
2178
2424
|
{
|
|
2179
2425
|
fill: "currentColor",
|
|
@@ -2185,9 +2431,51 @@ var SvgLast = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
|
2185
2431
|
);
|
|
2186
2432
|
var Last_default = SvgLast;
|
|
2187
2433
|
|
|
2434
|
+
// src/components/List.tsx
|
|
2435
|
+
var import_jsx_runtime30 = __toESM(require_jsx_runtime());
|
|
2436
|
+
var SvgList = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2437
|
+
"svg",
|
|
2438
|
+
{
|
|
2439
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2440
|
+
width: "1em",
|
|
2441
|
+
height: "1em",
|
|
2442
|
+
fill: "none",
|
|
2443
|
+
stroke: "currentColor",
|
|
2444
|
+
strokeLinecap: "round",
|
|
2445
|
+
strokeLinejoin: "round",
|
|
2446
|
+
strokeWidth: 2,
|
|
2447
|
+
className: "list_svg__lucide list_svg__lucide-list-icon list_svg__lucide-list",
|
|
2448
|
+
viewBox: "0 0 24 24",
|
|
2449
|
+
...props,
|
|
2450
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M3 5h.01M3 12h.01M3 19h.01M8 5h13M8 12h13M8 19h13" })
|
|
2451
|
+
}
|
|
2452
|
+
);
|
|
2453
|
+
var List_default = SvgList;
|
|
2454
|
+
|
|
2455
|
+
// src/components/Listordered.tsx
|
|
2456
|
+
var import_jsx_runtime31 = __toESM(require_jsx_runtime());
|
|
2457
|
+
var SvgListordered = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2458
|
+
"svg",
|
|
2459
|
+
{
|
|
2460
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2461
|
+
width: "1em",
|
|
2462
|
+
height: "1em",
|
|
2463
|
+
fill: "none",
|
|
2464
|
+
stroke: "currentColor",
|
|
2465
|
+
strokeLinecap: "round",
|
|
2466
|
+
strokeLinejoin: "round",
|
|
2467
|
+
strokeWidth: 2,
|
|
2468
|
+
className: "listordered_svg__lucide listordered_svg__lucide-list-ordered-icon listordered_svg__lucide-list-ordered",
|
|
2469
|
+
viewBox: "0 0 24 24",
|
|
2470
|
+
...props,
|
|
2471
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M11 5h10M11 12h10M11 19h10M4 4h1v5M4 9h2M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02" })
|
|
2472
|
+
}
|
|
2473
|
+
);
|
|
2474
|
+
var Listordered_default = SvgListordered;
|
|
2475
|
+
|
|
2188
2476
|
// src/components/Next.tsx
|
|
2189
|
-
var
|
|
2190
|
-
var SvgNext = (props) => /* @__PURE__ */ (0,
|
|
2477
|
+
var import_jsx_runtime32 = __toESM(require_jsx_runtime());
|
|
2478
|
+
var SvgNext = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2191
2479
|
"svg",
|
|
2192
2480
|
{
|
|
2193
2481
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2196,7 +2484,7 @@ var SvgNext = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
|
2196
2484
|
fill: "none",
|
|
2197
2485
|
viewBox: "0 0 24 24",
|
|
2198
2486
|
...props,
|
|
2199
|
-
children: /* @__PURE__ */ (0,
|
|
2487
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2200
2488
|
"path",
|
|
2201
2489
|
{
|
|
2202
2490
|
fill: "currentColor",
|
|
@@ -2210,8 +2498,8 @@ var SvgNext = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
|
2210
2498
|
var Next_default = SvgNext;
|
|
2211
2499
|
|
|
2212
2500
|
// src/components/PersonAvatar.tsx
|
|
2213
|
-
var
|
|
2214
|
-
var SvgPersonAvatar = (props) => /* @__PURE__ */ (0,
|
|
2501
|
+
var import_jsx_runtime33 = __toESM(require_jsx_runtime());
|
|
2502
|
+
var SvgPersonAvatar = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2215
2503
|
"svg",
|
|
2216
2504
|
{
|
|
2217
2505
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2220,7 +2508,7 @@ var SvgPersonAvatar = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
|
2220
2508
|
fill: "none",
|
|
2221
2509
|
viewBox: "0 0 24 24",
|
|
2222
2510
|
...props,
|
|
2223
|
-
children: /* @__PURE__ */ (0,
|
|
2511
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2224
2512
|
"path",
|
|
2225
2513
|
{
|
|
2226
2514
|
fill: "currentColor",
|
|
@@ -2234,8 +2522,8 @@ var SvgPersonAvatar = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
|
2234
2522
|
var PersonAvatar_default = SvgPersonAvatar;
|
|
2235
2523
|
|
|
2236
2524
|
// src/components/Plus.tsx
|
|
2237
|
-
var
|
|
2238
|
-
var SvgPlus = (props) => /* @__PURE__ */ (0,
|
|
2525
|
+
var import_jsx_runtime34 = __toESM(require_jsx_runtime());
|
|
2526
|
+
var SvgPlus = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2239
2527
|
"svg",
|
|
2240
2528
|
{
|
|
2241
2529
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2244,7 +2532,7 @@ var SvgPlus = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
|
2244
2532
|
fill: "none",
|
|
2245
2533
|
viewBox: "0 0 24 24",
|
|
2246
2534
|
...props,
|
|
2247
|
-
children: /* @__PURE__ */ (0,
|
|
2535
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2248
2536
|
"path",
|
|
2249
2537
|
{
|
|
2250
2538
|
fill: "currentColor",
|
|
@@ -2258,8 +2546,8 @@ var SvgPlus = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
|
2258
2546
|
var Plus_default = SvgPlus;
|
|
2259
2547
|
|
|
2260
2548
|
// src/components/Previous.tsx
|
|
2261
|
-
var
|
|
2262
|
-
var SvgPrevious = (props) => /* @__PURE__ */ (0,
|
|
2549
|
+
var import_jsx_runtime35 = __toESM(require_jsx_runtime());
|
|
2550
|
+
var SvgPrevious = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2263
2551
|
"svg",
|
|
2264
2552
|
{
|
|
2265
2553
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2268,7 +2556,7 @@ var SvgPrevious = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
|
2268
2556
|
fill: "none",
|
|
2269
2557
|
viewBox: "0 0 24 24",
|
|
2270
2558
|
...props,
|
|
2271
|
-
children: /* @__PURE__ */ (0,
|
|
2559
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2272
2560
|
"path",
|
|
2273
2561
|
{
|
|
2274
2562
|
fill: "currentColor",
|
|
@@ -2282,8 +2570,8 @@ var SvgPrevious = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
|
2282
2570
|
var Previous_default = SvgPrevious;
|
|
2283
2571
|
|
|
2284
2572
|
// src/components/Product.tsx
|
|
2285
|
-
var
|
|
2286
|
-
var SvgProduct = (props) => /* @__PURE__ */ (0,
|
|
2573
|
+
var import_jsx_runtime36 = __toESM(require_jsx_runtime());
|
|
2574
|
+
var SvgProduct = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2287
2575
|
"svg",
|
|
2288
2576
|
{
|
|
2289
2577
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2292,7 +2580,7 @@ var SvgProduct = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
|
2292
2580
|
fill: "none",
|
|
2293
2581
|
viewBox: "0 0 18 20",
|
|
2294
2582
|
...props,
|
|
2295
|
-
children: /* @__PURE__ */ (0,
|
|
2583
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2296
2584
|
"path",
|
|
2297
2585
|
{
|
|
2298
2586
|
fill: "currentColor",
|
|
@@ -2305,9 +2593,33 @@ var SvgProduct = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
|
2305
2593
|
);
|
|
2306
2594
|
var Product_default = SvgProduct;
|
|
2307
2595
|
|
|
2596
|
+
// src/components/Redo.tsx
|
|
2597
|
+
var import_jsx_runtime37 = __toESM(require_jsx_runtime());
|
|
2598
|
+
var SvgRedo = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
2599
|
+
"svg",
|
|
2600
|
+
{
|
|
2601
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2602
|
+
width: "1em",
|
|
2603
|
+
height: "1em",
|
|
2604
|
+
fill: "none",
|
|
2605
|
+
stroke: "currentColor",
|
|
2606
|
+
strokeLinecap: "round",
|
|
2607
|
+
strokeLinejoin: "round",
|
|
2608
|
+
strokeWidth: 2,
|
|
2609
|
+
className: "redo_svg__lucide redo_svg__lucide-redo2-icon redo_svg__lucide-redo-2",
|
|
2610
|
+
viewBox: "0 0 24 24",
|
|
2611
|
+
...props,
|
|
2612
|
+
children: [
|
|
2613
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "m15 14 5-5-5-5" }),
|
|
2614
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M20 9H9.5A5.5 5.5 0 0 0 4 14.5 5.5 5.5 0 0 0 9.5 20H13" })
|
|
2615
|
+
]
|
|
2616
|
+
}
|
|
2617
|
+
);
|
|
2618
|
+
var Redo_default = SvgRedo;
|
|
2619
|
+
|
|
2308
2620
|
// src/components/Searchglass.tsx
|
|
2309
|
-
var
|
|
2310
|
-
var SvgSearchglass = (props) => /* @__PURE__ */ (0,
|
|
2621
|
+
var import_jsx_runtime38 = __toESM(require_jsx_runtime());
|
|
2622
|
+
var SvgSearchglass = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2311
2623
|
"svg",
|
|
2312
2624
|
{
|
|
2313
2625
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2316,7 +2628,7 @@ var SvgSearchglass = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
|
2316
2628
|
fill: "none",
|
|
2317
2629
|
viewBox: "0 0 24 24",
|
|
2318
2630
|
...props,
|
|
2319
|
-
children: /* @__PURE__ */ (0,
|
|
2631
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2320
2632
|
"path",
|
|
2321
2633
|
{
|
|
2322
2634
|
fill: "currentColor",
|
|
@@ -2330,8 +2642,8 @@ var SvgSearchglass = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
|
2330
2642
|
var Searchglass_default = SvgSearchglass;
|
|
2331
2643
|
|
|
2332
2644
|
// src/components/Series.tsx
|
|
2333
|
-
var
|
|
2334
|
-
var SvgSeries = (props) => /* @__PURE__ */ (0,
|
|
2645
|
+
var import_jsx_runtime39 = __toESM(require_jsx_runtime());
|
|
2646
|
+
var SvgSeries = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2335
2647
|
"svg",
|
|
2336
2648
|
{
|
|
2337
2649
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2340,7 +2652,7 @@ var SvgSeries = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
|
2340
2652
|
fill: "none",
|
|
2341
2653
|
viewBox: "0 0 24 24",
|
|
2342
2654
|
...props,
|
|
2343
|
-
children: /* @__PURE__ */ (0,
|
|
2655
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2344
2656
|
"path",
|
|
2345
2657
|
{
|
|
2346
2658
|
fill: "currentColor",
|
|
@@ -2354,8 +2666,8 @@ var SvgSeries = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
|
2354
2666
|
var Series_default = SvgSeries;
|
|
2355
2667
|
|
|
2356
2668
|
// src/components/Settings.tsx
|
|
2357
|
-
var
|
|
2358
|
-
var SvgSettings = (props) => /* @__PURE__ */ (0,
|
|
2669
|
+
var import_jsx_runtime40 = __toESM(require_jsx_runtime());
|
|
2670
|
+
var SvgSettings = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2359
2671
|
"svg",
|
|
2360
2672
|
{
|
|
2361
2673
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2364,7 +2676,7 @@ var SvgSettings = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
|
2364
2676
|
fill: "none",
|
|
2365
2677
|
viewBox: "0 0 20 20",
|
|
2366
2678
|
...props,
|
|
2367
|
-
children: /* @__PURE__ */ (0,
|
|
2679
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2368
2680
|
"path",
|
|
2369
2681
|
{
|
|
2370
2682
|
fill: "currentColor",
|
|
@@ -2377,9 +2689,30 @@ var SvgSettings = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
|
2377
2689
|
);
|
|
2378
2690
|
var Settings_default = SvgSettings;
|
|
2379
2691
|
|
|
2692
|
+
// src/components/Sigma.tsx
|
|
2693
|
+
var import_jsx_runtime41 = __toESM(require_jsx_runtime());
|
|
2694
|
+
var SvgSigma = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2695
|
+
"svg",
|
|
2696
|
+
{
|
|
2697
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2698
|
+
width: "1em",
|
|
2699
|
+
height: "1em",
|
|
2700
|
+
fill: "none",
|
|
2701
|
+
stroke: "currentColor",
|
|
2702
|
+
strokeLinecap: "round",
|
|
2703
|
+
strokeLinejoin: "round",
|
|
2704
|
+
strokeWidth: 2,
|
|
2705
|
+
className: "sigma_svg__lucide sigma_svg__lucide-sigma-icon sigma_svg__lucide-sigma",
|
|
2706
|
+
viewBox: "0 0 24 24",
|
|
2707
|
+
...props,
|
|
2708
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { d: "M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2" })
|
|
2709
|
+
}
|
|
2710
|
+
);
|
|
2711
|
+
var Sigma_default = SvgSigma;
|
|
2712
|
+
|
|
2380
2713
|
// src/components/Success.tsx
|
|
2381
|
-
var
|
|
2382
|
-
var SvgSuccess = (props) => /* @__PURE__ */ (0,
|
|
2714
|
+
var import_jsx_runtime42 = __toESM(require_jsx_runtime());
|
|
2715
|
+
var SvgSuccess = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2383
2716
|
"svg",
|
|
2384
2717
|
{
|
|
2385
2718
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2388,7 +2721,7 @@ var SvgSuccess = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
|
2388
2721
|
fill: "none",
|
|
2389
2722
|
viewBox: "0 0 24 24",
|
|
2390
2723
|
...props,
|
|
2391
|
-
children: /* @__PURE__ */ (0,
|
|
2724
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2392
2725
|
"path",
|
|
2393
2726
|
{
|
|
2394
2727
|
fill: "currentColor",
|
|
@@ -2402,8 +2735,8 @@ var SvgSuccess = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
|
2402
2735
|
var Success_default = SvgSuccess;
|
|
2403
2736
|
|
|
2404
2737
|
// src/components/Swaporder.tsx
|
|
2405
|
-
var
|
|
2406
|
-
var SvgSwaporder = (props) => /* @__PURE__ */ (0,
|
|
2738
|
+
var import_jsx_runtime43 = __toESM(require_jsx_runtime());
|
|
2739
|
+
var SvgSwaporder = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2407
2740
|
"svg",
|
|
2408
2741
|
{
|
|
2409
2742
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2412,7 +2745,7 @@ var SvgSwaporder = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
|
2412
2745
|
fill: "none",
|
|
2413
2746
|
viewBox: "0 0 24 24",
|
|
2414
2747
|
...props,
|
|
2415
|
-
children: /* @__PURE__ */ (0,
|
|
2748
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2416
2749
|
"path",
|
|
2417
2750
|
{
|
|
2418
2751
|
fill: "currentColor",
|
|
@@ -2425,9 +2758,159 @@ var SvgSwaporder = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
|
2425
2758
|
);
|
|
2426
2759
|
var Swaporder_default = SvgSwaporder;
|
|
2427
2760
|
|
|
2761
|
+
// src/components/Table.tsx
|
|
2762
|
+
var import_jsx_runtime44 = __toESM(require_jsx_runtime());
|
|
2763
|
+
var SvgTable = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2764
|
+
"svg",
|
|
2765
|
+
{
|
|
2766
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2767
|
+
width: "1em",
|
|
2768
|
+
height: "1em",
|
|
2769
|
+
fill: "none",
|
|
2770
|
+
stroke: "currentColor",
|
|
2771
|
+
strokeLinecap: "round",
|
|
2772
|
+
strokeLinejoin: "round",
|
|
2773
|
+
strokeWidth: 2,
|
|
2774
|
+
className: "table_svg__lucide table_svg__lucide-table2-icon table_svg__lucide-table-2",
|
|
2775
|
+
viewBox: "0 0 24 24",
|
|
2776
|
+
...props,
|
|
2777
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("path", { d: "M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18" })
|
|
2778
|
+
}
|
|
2779
|
+
);
|
|
2780
|
+
var Table_default = SvgTable;
|
|
2781
|
+
|
|
2782
|
+
// src/components/TextAlignCenter.tsx
|
|
2783
|
+
var import_jsx_runtime45 = __toESM(require_jsx_runtime());
|
|
2784
|
+
var SvgTextAlignCenter = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2785
|
+
"svg",
|
|
2786
|
+
{
|
|
2787
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2788
|
+
width: "1em",
|
|
2789
|
+
height: "1em",
|
|
2790
|
+
fill: "none",
|
|
2791
|
+
stroke: "currentColor",
|
|
2792
|
+
strokeLinecap: "round",
|
|
2793
|
+
strokeLinejoin: "round",
|
|
2794
|
+
strokeWidth: 2,
|
|
2795
|
+
className: "text-align-center_svg__lucide text-align-center_svg__lucide-text-align-center-icon text-align-center_svg__lucide-text-align-center",
|
|
2796
|
+
viewBox: "0 0 24 24",
|
|
2797
|
+
...props,
|
|
2798
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { d: "M21 5H3M17 12H7M19 19H5" })
|
|
2799
|
+
}
|
|
2800
|
+
);
|
|
2801
|
+
var TextAlignCenter_default = SvgTextAlignCenter;
|
|
2802
|
+
|
|
2803
|
+
// src/components/TextAlignEnd.tsx
|
|
2804
|
+
var import_jsx_runtime46 = __toESM(require_jsx_runtime());
|
|
2805
|
+
var SvgTextAlignEnd = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2806
|
+
"svg",
|
|
2807
|
+
{
|
|
2808
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2809
|
+
width: "1em",
|
|
2810
|
+
height: "1em",
|
|
2811
|
+
fill: "none",
|
|
2812
|
+
stroke: "currentColor",
|
|
2813
|
+
strokeLinecap: "round",
|
|
2814
|
+
strokeLinejoin: "round",
|
|
2815
|
+
strokeWidth: 2,
|
|
2816
|
+
className: "text-align-end_svg__lucide text-align-end_svg__lucide-text-align-end-icon text-align-end_svg__lucide-text-align-end",
|
|
2817
|
+
viewBox: "0 0 24 24",
|
|
2818
|
+
...props,
|
|
2819
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { d: "M21 5H3M21 12H9M21 19H7" })
|
|
2820
|
+
}
|
|
2821
|
+
);
|
|
2822
|
+
var TextAlignEnd_default = SvgTextAlignEnd;
|
|
2823
|
+
|
|
2824
|
+
// src/components/TextAlignJustify.tsx
|
|
2825
|
+
var import_jsx_runtime47 = __toESM(require_jsx_runtime());
|
|
2826
|
+
var SvgTextAlignJustify = (props) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2827
|
+
"svg",
|
|
2828
|
+
{
|
|
2829
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2830
|
+
width: "1em",
|
|
2831
|
+
height: "1em",
|
|
2832
|
+
fill: "none",
|
|
2833
|
+
stroke: "currentColor",
|
|
2834
|
+
strokeLinecap: "round",
|
|
2835
|
+
strokeLinejoin: "round",
|
|
2836
|
+
strokeWidth: 2,
|
|
2837
|
+
className: "text-align-justify_svg__lucide text-align-justify_svg__lucide-text-align-justify-icon text-align-justify_svg__lucide-text-align-justify",
|
|
2838
|
+
viewBox: "0 0 24 24",
|
|
2839
|
+
...props,
|
|
2840
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { d: "M3 5h18M3 12h18M3 19h18" })
|
|
2841
|
+
}
|
|
2842
|
+
);
|
|
2843
|
+
var TextAlignJustify_default = SvgTextAlignJustify;
|
|
2844
|
+
|
|
2845
|
+
// src/components/TextAlignStart.tsx
|
|
2846
|
+
var import_jsx_runtime48 = __toESM(require_jsx_runtime());
|
|
2847
|
+
var SvgTextAlignStart = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2848
|
+
"svg",
|
|
2849
|
+
{
|
|
2850
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2851
|
+
width: "1em",
|
|
2852
|
+
height: "1em",
|
|
2853
|
+
fill: "none",
|
|
2854
|
+
stroke: "currentColor",
|
|
2855
|
+
strokeLinecap: "round",
|
|
2856
|
+
strokeLinejoin: "round",
|
|
2857
|
+
strokeWidth: 2,
|
|
2858
|
+
className: "text-align-start_svg__lucide text-align-start_svg__lucide-text-align-start-icon text-align-start_svg__lucide-text-align-start",
|
|
2859
|
+
viewBox: "0 0 24 24",
|
|
2860
|
+
...props,
|
|
2861
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M21 5H3M15 12H3M17 19H3" })
|
|
2862
|
+
}
|
|
2863
|
+
);
|
|
2864
|
+
var TextAlignStart_default = SvgTextAlignStart;
|
|
2865
|
+
|
|
2866
|
+
// src/components/Underlinetext.tsx
|
|
2867
|
+
var import_jsx_runtime49 = __toESM(require_jsx_runtime());
|
|
2868
|
+
var SvgUnderlinetext = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2869
|
+
"svg",
|
|
2870
|
+
{
|
|
2871
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2872
|
+
width: "1em",
|
|
2873
|
+
height: "1em",
|
|
2874
|
+
fill: "none",
|
|
2875
|
+
stroke: "currentColor",
|
|
2876
|
+
strokeLinecap: "round",
|
|
2877
|
+
strokeLinejoin: "round",
|
|
2878
|
+
strokeWidth: 2,
|
|
2879
|
+
className: "underlinetext_svg__lucide underlinetext_svg__lucide-underline-icon underlinetext_svg__lucide-underline",
|
|
2880
|
+
viewBox: "0 0 24 24",
|
|
2881
|
+
...props,
|
|
2882
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M6 4v6a6 6 0 0 0 12 0V4M4 20h16" })
|
|
2883
|
+
}
|
|
2884
|
+
);
|
|
2885
|
+
var Underlinetext_default = SvgUnderlinetext;
|
|
2886
|
+
|
|
2887
|
+
// src/components/Undo.tsx
|
|
2888
|
+
var import_jsx_runtime50 = __toESM(require_jsx_runtime());
|
|
2889
|
+
var SvgUndo = (props) => /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
|
|
2890
|
+
"svg",
|
|
2891
|
+
{
|
|
2892
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2893
|
+
width: "1em",
|
|
2894
|
+
height: "1em",
|
|
2895
|
+
fill: "none",
|
|
2896
|
+
stroke: "currentColor",
|
|
2897
|
+
strokeLinecap: "round",
|
|
2898
|
+
strokeLinejoin: "round",
|
|
2899
|
+
strokeWidth: 2,
|
|
2900
|
+
className: "undo_svg__lucide undo_svg__lucide-undo2-icon undo_svg__lucide-undo-2",
|
|
2901
|
+
viewBox: "0 0 24 24",
|
|
2902
|
+
...props,
|
|
2903
|
+
children: [
|
|
2904
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M9 14 4 9l5-5" }),
|
|
2905
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5 5.5 5.5 0 0 1-5.5 5.5H11" })
|
|
2906
|
+
]
|
|
2907
|
+
}
|
|
2908
|
+
);
|
|
2909
|
+
var Undo_default = SvgUndo;
|
|
2910
|
+
|
|
2428
2911
|
// src/components/Unknown.tsx
|
|
2429
|
-
var
|
|
2430
|
-
var SvgUnknown = (props) => /* @__PURE__ */ (0,
|
|
2912
|
+
var import_jsx_runtime51 = __toESM(require_jsx_runtime());
|
|
2913
|
+
var SvgUnknown = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2431
2914
|
"svg",
|
|
2432
2915
|
{
|
|
2433
2916
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2436,7 +2919,7 @@ var SvgUnknown = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
|
2436
2919
|
fill: "none",
|
|
2437
2920
|
viewBox: "0 0 24 24",
|
|
2438
2921
|
...props,
|
|
2439
|
-
children: /* @__PURE__ */ (0,
|
|
2922
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2440
2923
|
"path",
|
|
2441
2924
|
{
|
|
2442
2925
|
fill: "currentColor",
|
|
@@ -2450,8 +2933,8 @@ var SvgUnknown = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
|
2450
2933
|
var Unknown_default = SvgUnknown;
|
|
2451
2934
|
|
|
2452
2935
|
// src/components/Users.tsx
|
|
2453
|
-
var
|
|
2454
|
-
var SvgUsers = (props) => /* @__PURE__ */ (0,
|
|
2936
|
+
var import_jsx_runtime52 = __toESM(require_jsx_runtime());
|
|
2937
|
+
var SvgUsers = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2455
2938
|
"svg",
|
|
2456
2939
|
{
|
|
2457
2940
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2460,7 +2943,7 @@ var SvgUsers = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
|
2460
2943
|
fill: "none",
|
|
2461
2944
|
viewBox: "0 0 24 24",
|
|
2462
2945
|
...props,
|
|
2463
|
-
children: /* @__PURE__ */ (0,
|
|
2946
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2464
2947
|
"path",
|
|
2465
2948
|
{
|
|
2466
2949
|
fill: "currentColor",
|
|
@@ -2474,8 +2957,8 @@ var SvgUsers = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
|
2474
2957
|
var Users_default = SvgUsers;
|
|
2475
2958
|
|
|
2476
2959
|
// src/components/Warning.tsx
|
|
2477
|
-
var
|
|
2478
|
-
var SvgWarning = (props) => /* @__PURE__ */ (0,
|
|
2960
|
+
var import_jsx_runtime53 = __toESM(require_jsx_runtime());
|
|
2961
|
+
var SvgWarning = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2479
2962
|
"svg",
|
|
2480
2963
|
{
|
|
2481
2964
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2484,7 +2967,7 @@ var SvgWarning = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
|
2484
2967
|
fill: "none",
|
|
2485
2968
|
viewBox: "0 0 24 24",
|
|
2486
2969
|
...props,
|
|
2487
|
-
children: /* @__PURE__ */ (0,
|
|
2970
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2488
2971
|
"path",
|
|
2489
2972
|
{
|
|
2490
2973
|
fill: "currentColor",
|
|
@@ -2543,6 +3026,8 @@ react/cjs/react-jsx-runtime.development.js:
|
|
|
2543
3026
|
*)
|
|
2544
3027
|
*/
|
|
2545
3028
|
|
|
3029
|
+
exports.Addimage = Addimage_default;
|
|
3030
|
+
exports.Boldtext = Boldtext_default;
|
|
2546
3031
|
exports.Book = Book_default;
|
|
2547
3032
|
exports.Check = Check_default;
|
|
2548
3033
|
exports.Chevron = Chevron_default;
|
|
@@ -2551,6 +3036,7 @@ exports.Close = Close_default;
|
|
|
2551
3036
|
exports.Code = Code_default;
|
|
2552
3037
|
exports.Collapse = Collapse_default;
|
|
2553
3038
|
exports.Copy = Copy_default;
|
|
3039
|
+
exports.Draghandle = Draghandle_default;
|
|
2554
3040
|
exports.Error = Error_default;
|
|
2555
3041
|
exports.External = External_default;
|
|
2556
3042
|
exports.Eye = Eye_default;
|
|
@@ -2558,19 +3044,38 @@ exports.Eyehide = Eyehide_default;
|
|
|
2558
3044
|
exports.First = First_default;
|
|
2559
3045
|
exports.Gologo = Gologo_default;
|
|
2560
3046
|
exports.Hamburger = Hamburger_default;
|
|
3047
|
+
exports.Headingtext = Headingtext_default;
|
|
3048
|
+
exports.Headingtext1 = Headingtext1_default;
|
|
3049
|
+
exports.Headingtext2 = Headingtext2_default;
|
|
3050
|
+
exports.Headingtext3 = Headingtext3_default;
|
|
3051
|
+
exports.Headingtext4 = Headingtext4_default;
|
|
3052
|
+
exports.Headingtext5 = Headingtext5_default;
|
|
3053
|
+
exports.Headingtext6 = Headingtext6_default;
|
|
2561
3054
|
exports.Indeterminate = Indeterminate_default;
|
|
2562
3055
|
exports.Info = Info_default;
|
|
3056
|
+
exports.Italicstext = Italicstext_default;
|
|
2563
3057
|
exports.Last = Last_default;
|
|
3058
|
+
exports.List = List_default;
|
|
3059
|
+
exports.Listordered = Listordered_default;
|
|
2564
3060
|
exports.Next = Next_default;
|
|
2565
3061
|
exports.PersonAvatar = PersonAvatar_default;
|
|
2566
3062
|
exports.Plus = Plus_default;
|
|
2567
3063
|
exports.Previous = Previous_default;
|
|
2568
3064
|
exports.Product = Product_default;
|
|
3065
|
+
exports.Redo = Redo_default;
|
|
2569
3066
|
exports.Searchglass = Searchglass_default;
|
|
2570
3067
|
exports.Series = Series_default;
|
|
2571
3068
|
exports.Settings = Settings_default;
|
|
3069
|
+
exports.Sigma = Sigma_default;
|
|
2572
3070
|
exports.Success = Success_default;
|
|
2573
3071
|
exports.Swaporder = Swaporder_default;
|
|
3072
|
+
exports.Table = Table_default;
|
|
3073
|
+
exports.TextAlignCenter = TextAlignCenter_default;
|
|
3074
|
+
exports.TextAlignEnd = TextAlignEnd_default;
|
|
3075
|
+
exports.TextAlignJustify = TextAlignJustify_default;
|
|
3076
|
+
exports.TextAlignStart = TextAlignStart_default;
|
|
3077
|
+
exports.Underlinetext = Underlinetext_default;
|
|
3078
|
+
exports.Undo = Undo_default;
|
|
2574
3079
|
exports.Unknown = Unknown_default;
|
|
2575
3080
|
exports.Users = Users_default;
|
|
2576
3081
|
exports.Warning = Warning_default;
|