@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.mjs
CHANGED
|
@@ -1721,9 +1721,55 @@ var require_jsx_runtime = __commonJS({
|
|
|
1721
1721
|
}
|
|
1722
1722
|
});
|
|
1723
1723
|
|
|
1724
|
-
// src/components/
|
|
1724
|
+
// src/components/Addimage.tsx
|
|
1725
1725
|
var import_jsx_runtime = __toESM(require_jsx_runtime());
|
|
1726
|
-
var
|
|
1726
|
+
var SvgAddimage = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
1727
|
+
"svg",
|
|
1728
|
+
{
|
|
1729
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1730
|
+
width: "1em",
|
|
1731
|
+
height: "1em",
|
|
1732
|
+
fill: "none",
|
|
1733
|
+
stroke: "currentColor",
|
|
1734
|
+
strokeLinecap: "round",
|
|
1735
|
+
strokeLinejoin: "round",
|
|
1736
|
+
strokeWidth: 2,
|
|
1737
|
+
className: "addimage_svg__lucide addimage_svg__lucide-image-plus-icon addimage_svg__lucide-image-plus",
|
|
1738
|
+
viewBox: "0 0 24 24",
|
|
1739
|
+
...props,
|
|
1740
|
+
children: [
|
|
1741
|
+
/* @__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" }),
|
|
1742
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" }),
|
|
1743
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: 9, cy: 9, r: 2 })
|
|
1744
|
+
]
|
|
1745
|
+
}
|
|
1746
|
+
);
|
|
1747
|
+
var Addimage_default = SvgAddimage;
|
|
1748
|
+
|
|
1749
|
+
// src/components/Boldtext.tsx
|
|
1750
|
+
var import_jsx_runtime2 = __toESM(require_jsx_runtime());
|
|
1751
|
+
var SvgBoldtext = (props) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
1752
|
+
"svg",
|
|
1753
|
+
{
|
|
1754
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1755
|
+
width: "1em",
|
|
1756
|
+
height: "1em",
|
|
1757
|
+
fill: "none",
|
|
1758
|
+
stroke: "currentColor",
|
|
1759
|
+
strokeLinecap: "round",
|
|
1760
|
+
strokeLinejoin: "round",
|
|
1761
|
+
strokeWidth: 2,
|
|
1762
|
+
className: "boldtext_svg__lucide boldtext_svg__lucide-bold-icon boldtext_svg__lucide-bold",
|
|
1763
|
+
viewBox: "0 0 24 24",
|
|
1764
|
+
...props,
|
|
1765
|
+
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" })
|
|
1766
|
+
}
|
|
1767
|
+
);
|
|
1768
|
+
var Boldtext_default = SvgBoldtext;
|
|
1769
|
+
|
|
1770
|
+
// src/components/Book.tsx
|
|
1771
|
+
var import_jsx_runtime3 = __toESM(require_jsx_runtime());
|
|
1772
|
+
var SvgBook = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
1727
1773
|
"svg",
|
|
1728
1774
|
{
|
|
1729
1775
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1732,7 +1778,7 @@ var SvgBook = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
|
1732
1778
|
fill: "none",
|
|
1733
1779
|
viewBox: "0 0 22 19",
|
|
1734
1780
|
...props,
|
|
1735
|
-
children: /* @__PURE__ */ (0,
|
|
1781
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
1736
1782
|
"path",
|
|
1737
1783
|
{
|
|
1738
1784
|
fill: "currentColor",
|
|
@@ -1746,8 +1792,8 @@ var SvgBook = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
|
1746
1792
|
var Book_default = SvgBook;
|
|
1747
1793
|
|
|
1748
1794
|
// src/components/Check.tsx
|
|
1749
|
-
var
|
|
1750
|
-
var SvgCheck = (props) => /* @__PURE__ */ (0,
|
|
1795
|
+
var import_jsx_runtime4 = __toESM(require_jsx_runtime());
|
|
1796
|
+
var SvgCheck = (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1751
1797
|
"svg",
|
|
1752
1798
|
{
|
|
1753
1799
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1756,7 +1802,7 @@ var SvgCheck = (props) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
|
1756
1802
|
fill: "none",
|
|
1757
1803
|
viewBox: "0 0 24 24",
|
|
1758
1804
|
...props,
|
|
1759
|
-
children: /* @__PURE__ */ (0,
|
|
1805
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1760
1806
|
"path",
|
|
1761
1807
|
{
|
|
1762
1808
|
fill: "currentColor",
|
|
@@ -1770,8 +1816,8 @@ var SvgCheck = (props) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
|
1770
1816
|
var Check_default = SvgCheck;
|
|
1771
1817
|
|
|
1772
1818
|
// src/components/Chevron.tsx
|
|
1773
|
-
var
|
|
1774
|
-
var SvgChevron = (props) => /* @__PURE__ */ (0,
|
|
1819
|
+
var import_jsx_runtime5 = __toESM(require_jsx_runtime());
|
|
1820
|
+
var SvgChevron = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1775
1821
|
"svg",
|
|
1776
1822
|
{
|
|
1777
1823
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1780,7 +1826,7 @@ var SvgChevron = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
|
1780
1826
|
fill: "none",
|
|
1781
1827
|
viewBox: "0 0 24 24",
|
|
1782
1828
|
...props,
|
|
1783
|
-
children: /* @__PURE__ */ (0,
|
|
1829
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1784
1830
|
"path",
|
|
1785
1831
|
{
|
|
1786
1832
|
fill: "currentColor",
|
|
@@ -1794,8 +1840,8 @@ var SvgChevron = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
|
1794
1840
|
var Chevron_default = SvgChevron;
|
|
1795
1841
|
|
|
1796
1842
|
// src/components/Class.tsx
|
|
1797
|
-
var
|
|
1798
|
-
var SvgClass = (props) => /* @__PURE__ */ (0,
|
|
1843
|
+
var import_jsx_runtime6 = __toESM(require_jsx_runtime());
|
|
1844
|
+
var SvgClass = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1799
1845
|
"svg",
|
|
1800
1846
|
{
|
|
1801
1847
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1804,7 +1850,7 @@ var SvgClass = (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
|
1804
1850
|
fill: "none",
|
|
1805
1851
|
viewBox: "0 0 24 25",
|
|
1806
1852
|
...props,
|
|
1807
|
-
children: /* @__PURE__ */ (0,
|
|
1853
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1808
1854
|
"path",
|
|
1809
1855
|
{
|
|
1810
1856
|
fill: "currentColor",
|
|
@@ -1818,8 +1864,8 @@ var SvgClass = (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
|
1818
1864
|
var Class_default = SvgClass;
|
|
1819
1865
|
|
|
1820
1866
|
// src/components/Close.tsx
|
|
1821
|
-
var
|
|
1822
|
-
var SvgClose = (props) => /* @__PURE__ */ (0,
|
|
1867
|
+
var import_jsx_runtime7 = __toESM(require_jsx_runtime());
|
|
1868
|
+
var SvgClose = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1823
1869
|
"svg",
|
|
1824
1870
|
{
|
|
1825
1871
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1828,7 +1874,7 @@ var SvgClose = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
|
1828
1874
|
fill: "none",
|
|
1829
1875
|
viewBox: "0 0 24 24",
|
|
1830
1876
|
...props,
|
|
1831
|
-
children: /* @__PURE__ */ (0,
|
|
1877
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1832
1878
|
"path",
|
|
1833
1879
|
{
|
|
1834
1880
|
fill: "currentColor",
|
|
@@ -1842,8 +1888,8 @@ var SvgClose = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
|
1842
1888
|
var Close_default = SvgClose;
|
|
1843
1889
|
|
|
1844
1890
|
// src/components/Code.tsx
|
|
1845
|
-
var
|
|
1846
|
-
var SvgCode = (props) => /* @__PURE__ */ (0,
|
|
1891
|
+
var import_jsx_runtime8 = __toESM(require_jsx_runtime());
|
|
1892
|
+
var SvgCode = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1847
1893
|
"svg",
|
|
1848
1894
|
{
|
|
1849
1895
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1852,7 +1898,7 @@ var SvgCode = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
|
1852
1898
|
fill: "none",
|
|
1853
1899
|
viewBox: "0 0 18 10",
|
|
1854
1900
|
...props,
|
|
1855
|
-
children: /* @__PURE__ */ (0,
|
|
1901
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1856
1902
|
"path",
|
|
1857
1903
|
{
|
|
1858
1904
|
fill: "currentColor",
|
|
@@ -1866,8 +1912,8 @@ var SvgCode = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
|
1866
1912
|
var Code_default = SvgCode;
|
|
1867
1913
|
|
|
1868
1914
|
// src/components/Collapse.tsx
|
|
1869
|
-
var
|
|
1870
|
-
var SvgCollapse = (props) => /* @__PURE__ */ (0,
|
|
1915
|
+
var import_jsx_runtime9 = __toESM(require_jsx_runtime());
|
|
1916
|
+
var SvgCollapse = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
1871
1917
|
"svg",
|
|
1872
1918
|
{
|
|
1873
1919
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1877,7 +1923,7 @@ var SvgCollapse = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
|
1877
1923
|
viewBox: "0 0 20 20",
|
|
1878
1924
|
...props,
|
|
1879
1925
|
children: [
|
|
1880
|
-
/* @__PURE__ */ (0,
|
|
1926
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1881
1927
|
"path",
|
|
1882
1928
|
{
|
|
1883
1929
|
fill: "#212529",
|
|
@@ -1886,7 +1932,7 @@ var SvgCollapse = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
|
1886
1932
|
clipRule: "evenodd"
|
|
1887
1933
|
}
|
|
1888
1934
|
),
|
|
1889
|
-
/* @__PURE__ */ (0,
|
|
1935
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1890
1936
|
"path",
|
|
1891
1937
|
{
|
|
1892
1938
|
fill: "currentColor",
|
|
@@ -1901,8 +1947,8 @@ var SvgCollapse = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
|
1901
1947
|
var Collapse_default = SvgCollapse;
|
|
1902
1948
|
|
|
1903
1949
|
// src/components/Copy.tsx
|
|
1904
|
-
var
|
|
1905
|
-
var SvgCopy = (props) => /* @__PURE__ */ (0,
|
|
1950
|
+
var import_jsx_runtime10 = __toESM(require_jsx_runtime());
|
|
1951
|
+
var SvgCopy = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1906
1952
|
"svg",
|
|
1907
1953
|
{
|
|
1908
1954
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1911,7 +1957,7 @@ var SvgCopy = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
|
1911
1957
|
fill: "none",
|
|
1912
1958
|
viewBox: "0 0 24 24",
|
|
1913
1959
|
...props,
|
|
1914
|
-
children: /* @__PURE__ */ (0,
|
|
1960
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1915
1961
|
"path",
|
|
1916
1962
|
{
|
|
1917
1963
|
fill: "currentColor",
|
|
@@ -1924,9 +1970,37 @@ var SvgCopy = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
|
1924
1970
|
);
|
|
1925
1971
|
var Copy_default = SvgCopy;
|
|
1926
1972
|
|
|
1973
|
+
// src/components/Draghandle.tsx
|
|
1974
|
+
var import_jsx_runtime11 = __toESM(require_jsx_runtime());
|
|
1975
|
+
var SvgDraghandle = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
1976
|
+
"svg",
|
|
1977
|
+
{
|
|
1978
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1979
|
+
width: "1em",
|
|
1980
|
+
height: "1em",
|
|
1981
|
+
fill: "none",
|
|
1982
|
+
stroke: "currentColor",
|
|
1983
|
+
strokeLinecap: "round",
|
|
1984
|
+
strokeLinejoin: "round",
|
|
1985
|
+
strokeWidth: 2,
|
|
1986
|
+
className: "draghandle_svg__lucide draghandle_svg__lucide-grip-vertical-icon draghandle_svg__lucide-grip-vertical",
|
|
1987
|
+
viewBox: "0 0 24 24",
|
|
1988
|
+
...props,
|
|
1989
|
+
children: [
|
|
1990
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: 9, cy: 12, r: 1 }),
|
|
1991
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: 9, cy: 5, r: 1 }),
|
|
1992
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: 9, cy: 19, r: 1 }),
|
|
1993
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: 15, cy: 12, r: 1 }),
|
|
1994
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: 15, cy: 5, r: 1 }),
|
|
1995
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: 15, cy: 19, r: 1 })
|
|
1996
|
+
]
|
|
1997
|
+
}
|
|
1998
|
+
);
|
|
1999
|
+
var Draghandle_default = SvgDraghandle;
|
|
2000
|
+
|
|
1927
2001
|
// src/components/Error.tsx
|
|
1928
|
-
var
|
|
1929
|
-
var SvgError = (props) => /* @__PURE__ */ (0,
|
|
2002
|
+
var import_jsx_runtime12 = __toESM(require_jsx_runtime());
|
|
2003
|
+
var SvgError = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1930
2004
|
"svg",
|
|
1931
2005
|
{
|
|
1932
2006
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1935,7 +2009,7 @@ var SvgError = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
|
1935
2009
|
fill: "none",
|
|
1936
2010
|
viewBox: "0 0 24 24",
|
|
1937
2011
|
...props,
|
|
1938
|
-
children: /* @__PURE__ */ (0,
|
|
2012
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1939
2013
|
"path",
|
|
1940
2014
|
{
|
|
1941
2015
|
fill: "currentColor",
|
|
@@ -1949,8 +2023,8 @@ var SvgError = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
|
1949
2023
|
var Error_default = SvgError;
|
|
1950
2024
|
|
|
1951
2025
|
// src/components/External.tsx
|
|
1952
|
-
var
|
|
1953
|
-
var SvgExternal = (props) => /* @__PURE__ */ (0,
|
|
2026
|
+
var import_jsx_runtime13 = __toESM(require_jsx_runtime());
|
|
2027
|
+
var SvgExternal = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1954
2028
|
"svg",
|
|
1955
2029
|
{
|
|
1956
2030
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1959,7 +2033,7 @@ var SvgExternal = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
|
1959
2033
|
fill: "none",
|
|
1960
2034
|
viewBox: "0 0 24 24",
|
|
1961
2035
|
...props,
|
|
1962
|
-
children: /* @__PURE__ */ (0,
|
|
2036
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1963
2037
|
"path",
|
|
1964
2038
|
{
|
|
1965
2039
|
fill: "currentColor",
|
|
@@ -1973,8 +2047,8 @@ var SvgExternal = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
|
1973
2047
|
var External_default = SvgExternal;
|
|
1974
2048
|
|
|
1975
2049
|
// src/components/Eye.tsx
|
|
1976
|
-
var
|
|
1977
|
-
var SvgEye = (props) => /* @__PURE__ */ (0,
|
|
2050
|
+
var import_jsx_runtime14 = __toESM(require_jsx_runtime());
|
|
2051
|
+
var SvgEye = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1978
2052
|
"svg",
|
|
1979
2053
|
{
|
|
1980
2054
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1983,7 +2057,7 @@ var SvgEye = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
|
1983
2057
|
fill: "none",
|
|
1984
2058
|
viewBox: "0 0 24 24",
|
|
1985
2059
|
...props,
|
|
1986
|
-
children: /* @__PURE__ */ (0,
|
|
2060
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1987
2061
|
"path",
|
|
1988
2062
|
{
|
|
1989
2063
|
fill: "currentColor",
|
|
@@ -1997,8 +2071,8 @@ var SvgEye = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
|
1997
2071
|
var Eye_default = SvgEye;
|
|
1998
2072
|
|
|
1999
2073
|
// src/components/Eyehide.tsx
|
|
2000
|
-
var
|
|
2001
|
-
var SvgEyehide = (props) => /* @__PURE__ */ (0,
|
|
2074
|
+
var import_jsx_runtime15 = __toESM(require_jsx_runtime());
|
|
2075
|
+
var SvgEyehide = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2002
2076
|
"svg",
|
|
2003
2077
|
{
|
|
2004
2078
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2007,7 +2081,7 @@ var SvgEyehide = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
|
2007
2081
|
fill: "none",
|
|
2008
2082
|
viewBox: "0 0 24 24",
|
|
2009
2083
|
...props,
|
|
2010
|
-
children: /* @__PURE__ */ (0,
|
|
2084
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2011
2085
|
"path",
|
|
2012
2086
|
{
|
|
2013
2087
|
fill: "#212529",
|
|
@@ -2019,8 +2093,8 @@ var SvgEyehide = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
|
2019
2093
|
var Eyehide_default = SvgEyehide;
|
|
2020
2094
|
|
|
2021
2095
|
// src/components/First.tsx
|
|
2022
|
-
var
|
|
2023
|
-
var SvgFirst = (props) => /* @__PURE__ */ (0,
|
|
2096
|
+
var import_jsx_runtime16 = __toESM(require_jsx_runtime());
|
|
2097
|
+
var SvgFirst = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
2024
2098
|
"svg",
|
|
2025
2099
|
{
|
|
2026
2100
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2030,14 +2104,14 @@ var SvgFirst = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
|
2030
2104
|
viewBox: "0 0 24 24",
|
|
2031
2105
|
...props,
|
|
2032
2106
|
children: [
|
|
2033
|
-
/* @__PURE__ */ (0,
|
|
2107
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2034
2108
|
"path",
|
|
2035
2109
|
{
|
|
2036
2110
|
fill: "#212529",
|
|
2037
2111
|
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"
|
|
2038
2112
|
}
|
|
2039
2113
|
),
|
|
2040
|
-
/* @__PURE__ */ (0,
|
|
2114
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2041
2115
|
"path",
|
|
2042
2116
|
{
|
|
2043
2117
|
fill: "currentColor",
|
|
@@ -2050,8 +2124,8 @@ var SvgFirst = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
|
2050
2124
|
var First_default = SvgFirst;
|
|
2051
2125
|
|
|
2052
2126
|
// src/components/Gologo.tsx
|
|
2053
|
-
var
|
|
2054
|
-
var SvgGologo = (props) => /* @__PURE__ */ (0,
|
|
2127
|
+
var import_jsx_runtime17 = __toESM(require_jsx_runtime());
|
|
2128
|
+
var SvgGologo = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
2055
2129
|
"svg",
|
|
2056
2130
|
{
|
|
2057
2131
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2061,14 +2135,14 @@ var SvgGologo = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
|
|
|
2061
2135
|
viewBox: "0 0 35 36",
|
|
2062
2136
|
...props,
|
|
2063
2137
|
children: [
|
|
2064
|
-
/* @__PURE__ */ (0,
|
|
2138
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2065
2139
|
"path",
|
|
2066
2140
|
{
|
|
2067
2141
|
fill: "#082663",
|
|
2068
2142
|
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"
|
|
2069
2143
|
}
|
|
2070
2144
|
),
|
|
2071
|
-
/* @__PURE__ */ (0,
|
|
2145
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2072
2146
|
"path",
|
|
2073
2147
|
{
|
|
2074
2148
|
fill: "#fff",
|
|
@@ -2081,8 +2155,8 @@ var SvgGologo = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
|
|
|
2081
2155
|
var Gologo_default = SvgGologo;
|
|
2082
2156
|
|
|
2083
2157
|
// src/components/Hamburger.tsx
|
|
2084
|
-
var
|
|
2085
|
-
var SvgHamburger = (props) => /* @__PURE__ */ (0,
|
|
2158
|
+
var import_jsx_runtime18 = __toESM(require_jsx_runtime());
|
|
2159
|
+
var SvgHamburger = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2086
2160
|
"svg",
|
|
2087
2161
|
{
|
|
2088
2162
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2091,7 +2165,7 @@ var SvgHamburger = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
|
2091
2165
|
fill: "none",
|
|
2092
2166
|
viewBox: "0 0 24 24",
|
|
2093
2167
|
...props,
|
|
2094
|
-
children: /* @__PURE__ */ (0,
|
|
2168
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2095
2169
|
"path",
|
|
2096
2170
|
{
|
|
2097
2171
|
fill: "currentColor",
|
|
@@ -2104,9 +2178,160 @@ var SvgHamburger = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
|
2104
2178
|
);
|
|
2105
2179
|
var Hamburger_default = SvgHamburger;
|
|
2106
2180
|
|
|
2181
|
+
// src/components/Headingtext.tsx
|
|
2182
|
+
var import_jsx_runtime19 = __toESM(require_jsx_runtime());
|
|
2183
|
+
var SvgHeadingtext = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2184
|
+
"svg",
|
|
2185
|
+
{
|
|
2186
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2187
|
+
width: "1em",
|
|
2188
|
+
height: "1em",
|
|
2189
|
+
fill: "none",
|
|
2190
|
+
stroke: "currentColor",
|
|
2191
|
+
strokeLinecap: "round",
|
|
2192
|
+
strokeLinejoin: "round",
|
|
2193
|
+
strokeWidth: 2,
|
|
2194
|
+
className: "headingtext_svg__lucide headingtext_svg__lucide-heading-icon headingtext_svg__lucide-heading",
|
|
2195
|
+
viewBox: "0 0 24 24",
|
|
2196
|
+
...props,
|
|
2197
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M6 12h12M6 20V4M18 20V4" })
|
|
2198
|
+
}
|
|
2199
|
+
);
|
|
2200
|
+
var Headingtext_default = SvgHeadingtext;
|
|
2201
|
+
|
|
2202
|
+
// src/components/Headingtext1.tsx
|
|
2203
|
+
var import_jsx_runtime20 = __toESM(require_jsx_runtime());
|
|
2204
|
+
var SvgHeadingtext1 = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2205
|
+
"svg",
|
|
2206
|
+
{
|
|
2207
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2208
|
+
width: "1em",
|
|
2209
|
+
height: "1em",
|
|
2210
|
+
fill: "none",
|
|
2211
|
+
stroke: "currentColor",
|
|
2212
|
+
strokeLinecap: "round",
|
|
2213
|
+
strokeLinejoin: "round",
|
|
2214
|
+
strokeWidth: 2,
|
|
2215
|
+
className: "headingtext1_svg__lucide headingtext1_svg__lucide-heading1-icon headingtext1_svg__lucide-heading-1",
|
|
2216
|
+
viewBox: "0 0 24 24",
|
|
2217
|
+
...props,
|
|
2218
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M4 12h8M4 18V6M12 18V6M17 12l3-2v8" })
|
|
2219
|
+
}
|
|
2220
|
+
);
|
|
2221
|
+
var Headingtext1_default = SvgHeadingtext1;
|
|
2222
|
+
|
|
2223
|
+
// src/components/Headingtext2.tsx
|
|
2224
|
+
var import_jsx_runtime21 = __toESM(require_jsx_runtime());
|
|
2225
|
+
var SvgHeadingtext2 = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2226
|
+
"svg",
|
|
2227
|
+
{
|
|
2228
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2229
|
+
width: "1em",
|
|
2230
|
+
height: "1em",
|
|
2231
|
+
fill: "none",
|
|
2232
|
+
stroke: "currentColor",
|
|
2233
|
+
strokeLinecap: "round",
|
|
2234
|
+
strokeLinejoin: "round",
|
|
2235
|
+
strokeWidth: 2,
|
|
2236
|
+
className: "headingtext2_svg__lucide headingtext2_svg__lucide-heading1-icon headingtext2_svg__lucide-heading-1",
|
|
2237
|
+
viewBox: "0 0 24 24",
|
|
2238
|
+
...props,
|
|
2239
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M4 12h8M4 18V6M12 18V6M17 12l3-2v8" })
|
|
2240
|
+
}
|
|
2241
|
+
);
|
|
2242
|
+
var Headingtext2_default = SvgHeadingtext2;
|
|
2243
|
+
|
|
2244
|
+
// src/components/Headingtext3.tsx
|
|
2245
|
+
var import_jsx_runtime22 = __toESM(require_jsx_runtime());
|
|
2246
|
+
var SvgHeadingtext3 = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
2247
|
+
"svg",
|
|
2248
|
+
{
|
|
2249
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2250
|
+
width: "1em",
|
|
2251
|
+
height: "1em",
|
|
2252
|
+
fill: "none",
|
|
2253
|
+
stroke: "currentColor",
|
|
2254
|
+
strokeLinecap: "round",
|
|
2255
|
+
strokeLinejoin: "round",
|
|
2256
|
+
strokeWidth: 2,
|
|
2257
|
+
className: "headingtext3_svg__lucide headingtext3_svg__lucide-heading3-icon headingtext3_svg__lucide-heading-3",
|
|
2258
|
+
viewBox: "0 0 24 24",
|
|
2259
|
+
...props,
|
|
2260
|
+
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" })
|
|
2261
|
+
}
|
|
2262
|
+
);
|
|
2263
|
+
var Headingtext3_default = SvgHeadingtext3;
|
|
2264
|
+
|
|
2265
|
+
// src/components/Headingtext4.tsx
|
|
2266
|
+
var import_jsx_runtime23 = __toESM(require_jsx_runtime());
|
|
2267
|
+
var SvgHeadingtext4 = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2268
|
+
"svg",
|
|
2269
|
+
{
|
|
2270
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2271
|
+
width: "1em",
|
|
2272
|
+
height: "1em",
|
|
2273
|
+
fill: "none",
|
|
2274
|
+
stroke: "currentColor",
|
|
2275
|
+
strokeLinecap: "round",
|
|
2276
|
+
strokeLinejoin: "round",
|
|
2277
|
+
strokeWidth: 2,
|
|
2278
|
+
className: "headingtext4_svg__lucide headingtext4_svg__lucide-heading4-icon headingtext4_svg__lucide-heading-4",
|
|
2279
|
+
viewBox: "0 0 24 24",
|
|
2280
|
+
...props,
|
|
2281
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "M12 18V6M17 10v3a1 1 0 0 0 1 1h3M21 10v8M4 12h8M4 18V6" })
|
|
2282
|
+
}
|
|
2283
|
+
);
|
|
2284
|
+
var Headingtext4_default = SvgHeadingtext4;
|
|
2285
|
+
|
|
2286
|
+
// src/components/Headingtext5.tsx
|
|
2287
|
+
var import_jsx_runtime24 = __toESM(require_jsx_runtime());
|
|
2288
|
+
var SvgHeadingtext5 = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2289
|
+
"svg",
|
|
2290
|
+
{
|
|
2291
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2292
|
+
width: "1em",
|
|
2293
|
+
height: "1em",
|
|
2294
|
+
fill: "none",
|
|
2295
|
+
stroke: "currentColor",
|
|
2296
|
+
strokeLinecap: "round",
|
|
2297
|
+
strokeLinejoin: "round",
|
|
2298
|
+
strokeWidth: 2,
|
|
2299
|
+
className: "headingtext5_svg__lucide headingtext5_svg__lucide-heading5-icon headingtext5_svg__lucide-heading-5",
|
|
2300
|
+
viewBox: "0 0 24 24",
|
|
2301
|
+
...props,
|
|
2302
|
+
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" })
|
|
2303
|
+
}
|
|
2304
|
+
);
|
|
2305
|
+
var Headingtext5_default = SvgHeadingtext5;
|
|
2306
|
+
|
|
2307
|
+
// src/components/Headingtext6.tsx
|
|
2308
|
+
var import_jsx_runtime25 = __toESM(require_jsx_runtime());
|
|
2309
|
+
var SvgHeadingtext6 = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
2310
|
+
"svg",
|
|
2311
|
+
{
|
|
2312
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2313
|
+
width: "1em",
|
|
2314
|
+
height: "1em",
|
|
2315
|
+
fill: "none",
|
|
2316
|
+
stroke: "currentColor",
|
|
2317
|
+
strokeLinecap: "round",
|
|
2318
|
+
strokeLinejoin: "round",
|
|
2319
|
+
strokeWidth: 2,
|
|
2320
|
+
className: "headingtext6_svg__lucide headingtext6_svg__lucide-heading6-icon headingtext6_svg__lucide-heading-6",
|
|
2321
|
+
viewBox: "0 0 24 24",
|
|
2322
|
+
...props,
|
|
2323
|
+
children: [
|
|
2324
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M4 12h8M4 18V6M12 18V6" }),
|
|
2325
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: 19, cy: 16, r: 2 }),
|
|
2326
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M20 10c-2 2-3 3.5-3 6" })
|
|
2327
|
+
]
|
|
2328
|
+
}
|
|
2329
|
+
);
|
|
2330
|
+
var Headingtext6_default = SvgHeadingtext6;
|
|
2331
|
+
|
|
2107
2332
|
// src/components/Indeterminate.tsx
|
|
2108
|
-
var
|
|
2109
|
-
var SvgIndeterminate = (props) => /* @__PURE__ */ (0,
|
|
2333
|
+
var import_jsx_runtime26 = __toESM(require_jsx_runtime());
|
|
2334
|
+
var SvgIndeterminate = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2110
2335
|
"svg",
|
|
2111
2336
|
{
|
|
2112
2337
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2115,7 +2340,7 @@ var SvgIndeterminate = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
|
2115
2340
|
fill: "none",
|
|
2116
2341
|
viewBox: "0 0 24 24",
|
|
2117
2342
|
...props,
|
|
2118
|
-
children: /* @__PURE__ */ (0,
|
|
2343
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2119
2344
|
"path",
|
|
2120
2345
|
{
|
|
2121
2346
|
fill: "currentColor",
|
|
@@ -2129,8 +2354,8 @@ var SvgIndeterminate = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
|
2129
2354
|
var Indeterminate_default = SvgIndeterminate;
|
|
2130
2355
|
|
|
2131
2356
|
// src/components/Info.tsx
|
|
2132
|
-
var
|
|
2133
|
-
var SvgInfo = (props) => /* @__PURE__ */ (0,
|
|
2357
|
+
var import_jsx_runtime27 = __toESM(require_jsx_runtime());
|
|
2358
|
+
var SvgInfo = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2134
2359
|
"svg",
|
|
2135
2360
|
{
|
|
2136
2361
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2139,7 +2364,7 @@ var SvgInfo = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
|
2139
2364
|
fill: "none",
|
|
2140
2365
|
viewBox: "0 0 24 24",
|
|
2141
2366
|
...props,
|
|
2142
|
-
children: /* @__PURE__ */ (0,
|
|
2367
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2143
2368
|
"path",
|
|
2144
2369
|
{
|
|
2145
2370
|
fill: "currentColor",
|
|
@@ -2152,9 +2377,30 @@ var SvgInfo = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
|
2152
2377
|
);
|
|
2153
2378
|
var Info_default = SvgInfo;
|
|
2154
2379
|
|
|
2380
|
+
// src/components/Italicstext.tsx
|
|
2381
|
+
var import_jsx_runtime28 = __toESM(require_jsx_runtime());
|
|
2382
|
+
var SvgItalicstext = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2383
|
+
"svg",
|
|
2384
|
+
{
|
|
2385
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2386
|
+
width: "1em",
|
|
2387
|
+
height: "1em",
|
|
2388
|
+
fill: "none",
|
|
2389
|
+
stroke: "currentColor",
|
|
2390
|
+
strokeLinecap: "round",
|
|
2391
|
+
strokeLinejoin: "round",
|
|
2392
|
+
strokeWidth: 2,
|
|
2393
|
+
className: "italicstext_svg__lucide italicstext_svg__lucide-italic-icon italicstext_svg__lucide-italic",
|
|
2394
|
+
viewBox: "0 0 24 24",
|
|
2395
|
+
...props,
|
|
2396
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M19 4h-9M14 20H5M15 4 9 20" })
|
|
2397
|
+
}
|
|
2398
|
+
);
|
|
2399
|
+
var Italicstext_default = SvgItalicstext;
|
|
2400
|
+
|
|
2155
2401
|
// src/components/Last.tsx
|
|
2156
|
-
var
|
|
2157
|
-
var SvgLast = (props) => /* @__PURE__ */ (0,
|
|
2402
|
+
var import_jsx_runtime29 = __toESM(require_jsx_runtime());
|
|
2403
|
+
var SvgLast = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
2158
2404
|
"svg",
|
|
2159
2405
|
{
|
|
2160
2406
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2164,14 +2410,14 @@ var SvgLast = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
|
2164
2410
|
viewBox: "0 0 24 24",
|
|
2165
2411
|
...props,
|
|
2166
2412
|
children: [
|
|
2167
|
-
/* @__PURE__ */ (0,
|
|
2413
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2168
2414
|
"path",
|
|
2169
2415
|
{
|
|
2170
2416
|
fill: "#212529",
|
|
2171
2417
|
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"
|
|
2172
2418
|
}
|
|
2173
2419
|
),
|
|
2174
|
-
/* @__PURE__ */ (0,
|
|
2420
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2175
2421
|
"path",
|
|
2176
2422
|
{
|
|
2177
2423
|
fill: "currentColor",
|
|
@@ -2183,9 +2429,51 @@ var SvgLast = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
|
2183
2429
|
);
|
|
2184
2430
|
var Last_default = SvgLast;
|
|
2185
2431
|
|
|
2432
|
+
// src/components/List.tsx
|
|
2433
|
+
var import_jsx_runtime30 = __toESM(require_jsx_runtime());
|
|
2434
|
+
var SvgList = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2435
|
+
"svg",
|
|
2436
|
+
{
|
|
2437
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2438
|
+
width: "1em",
|
|
2439
|
+
height: "1em",
|
|
2440
|
+
fill: "none",
|
|
2441
|
+
stroke: "currentColor",
|
|
2442
|
+
strokeLinecap: "round",
|
|
2443
|
+
strokeLinejoin: "round",
|
|
2444
|
+
strokeWidth: 2,
|
|
2445
|
+
className: "list_svg__lucide list_svg__lucide-list-icon list_svg__lucide-list",
|
|
2446
|
+
viewBox: "0 0 24 24",
|
|
2447
|
+
...props,
|
|
2448
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M3 5h.01M3 12h.01M3 19h.01M8 5h13M8 12h13M8 19h13" })
|
|
2449
|
+
}
|
|
2450
|
+
);
|
|
2451
|
+
var List_default = SvgList;
|
|
2452
|
+
|
|
2453
|
+
// src/components/Listordered.tsx
|
|
2454
|
+
var import_jsx_runtime31 = __toESM(require_jsx_runtime());
|
|
2455
|
+
var SvgListordered = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2456
|
+
"svg",
|
|
2457
|
+
{
|
|
2458
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2459
|
+
width: "1em",
|
|
2460
|
+
height: "1em",
|
|
2461
|
+
fill: "none",
|
|
2462
|
+
stroke: "currentColor",
|
|
2463
|
+
strokeLinecap: "round",
|
|
2464
|
+
strokeLinejoin: "round",
|
|
2465
|
+
strokeWidth: 2,
|
|
2466
|
+
className: "listordered_svg__lucide listordered_svg__lucide-list-ordered-icon listordered_svg__lucide-list-ordered",
|
|
2467
|
+
viewBox: "0 0 24 24",
|
|
2468
|
+
...props,
|
|
2469
|
+
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" })
|
|
2470
|
+
}
|
|
2471
|
+
);
|
|
2472
|
+
var Listordered_default = SvgListordered;
|
|
2473
|
+
|
|
2186
2474
|
// src/components/Next.tsx
|
|
2187
|
-
var
|
|
2188
|
-
var SvgNext = (props) => /* @__PURE__ */ (0,
|
|
2475
|
+
var import_jsx_runtime32 = __toESM(require_jsx_runtime());
|
|
2476
|
+
var SvgNext = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2189
2477
|
"svg",
|
|
2190
2478
|
{
|
|
2191
2479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2194,7 +2482,7 @@ var SvgNext = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
|
2194
2482
|
fill: "none",
|
|
2195
2483
|
viewBox: "0 0 24 24",
|
|
2196
2484
|
...props,
|
|
2197
|
-
children: /* @__PURE__ */ (0,
|
|
2485
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2198
2486
|
"path",
|
|
2199
2487
|
{
|
|
2200
2488
|
fill: "currentColor",
|
|
@@ -2208,8 +2496,8 @@ var SvgNext = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
|
2208
2496
|
var Next_default = SvgNext;
|
|
2209
2497
|
|
|
2210
2498
|
// src/components/PersonAvatar.tsx
|
|
2211
|
-
var
|
|
2212
|
-
var SvgPersonAvatar = (props) => /* @__PURE__ */ (0,
|
|
2499
|
+
var import_jsx_runtime33 = __toESM(require_jsx_runtime());
|
|
2500
|
+
var SvgPersonAvatar = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2213
2501
|
"svg",
|
|
2214
2502
|
{
|
|
2215
2503
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2218,7 +2506,7 @@ var SvgPersonAvatar = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
|
2218
2506
|
fill: "none",
|
|
2219
2507
|
viewBox: "0 0 24 24",
|
|
2220
2508
|
...props,
|
|
2221
|
-
children: /* @__PURE__ */ (0,
|
|
2509
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2222
2510
|
"path",
|
|
2223
2511
|
{
|
|
2224
2512
|
fill: "currentColor",
|
|
@@ -2232,8 +2520,8 @@ var SvgPersonAvatar = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
|
2232
2520
|
var PersonAvatar_default = SvgPersonAvatar;
|
|
2233
2521
|
|
|
2234
2522
|
// src/components/Plus.tsx
|
|
2235
|
-
var
|
|
2236
|
-
var SvgPlus = (props) => /* @__PURE__ */ (0,
|
|
2523
|
+
var import_jsx_runtime34 = __toESM(require_jsx_runtime());
|
|
2524
|
+
var SvgPlus = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2237
2525
|
"svg",
|
|
2238
2526
|
{
|
|
2239
2527
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2242,7 +2530,7 @@ var SvgPlus = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
|
2242
2530
|
fill: "none",
|
|
2243
2531
|
viewBox: "0 0 24 24",
|
|
2244
2532
|
...props,
|
|
2245
|
-
children: /* @__PURE__ */ (0,
|
|
2533
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2246
2534
|
"path",
|
|
2247
2535
|
{
|
|
2248
2536
|
fill: "currentColor",
|
|
@@ -2256,8 +2544,8 @@ var SvgPlus = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
|
2256
2544
|
var Plus_default = SvgPlus;
|
|
2257
2545
|
|
|
2258
2546
|
// src/components/Previous.tsx
|
|
2259
|
-
var
|
|
2260
|
-
var SvgPrevious = (props) => /* @__PURE__ */ (0,
|
|
2547
|
+
var import_jsx_runtime35 = __toESM(require_jsx_runtime());
|
|
2548
|
+
var SvgPrevious = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2261
2549
|
"svg",
|
|
2262
2550
|
{
|
|
2263
2551
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2266,7 +2554,7 @@ var SvgPrevious = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
|
2266
2554
|
fill: "none",
|
|
2267
2555
|
viewBox: "0 0 24 24",
|
|
2268
2556
|
...props,
|
|
2269
|
-
children: /* @__PURE__ */ (0,
|
|
2557
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2270
2558
|
"path",
|
|
2271
2559
|
{
|
|
2272
2560
|
fill: "currentColor",
|
|
@@ -2280,8 +2568,8 @@ var SvgPrevious = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
|
2280
2568
|
var Previous_default = SvgPrevious;
|
|
2281
2569
|
|
|
2282
2570
|
// src/components/Product.tsx
|
|
2283
|
-
var
|
|
2284
|
-
var SvgProduct = (props) => /* @__PURE__ */ (0,
|
|
2571
|
+
var import_jsx_runtime36 = __toESM(require_jsx_runtime());
|
|
2572
|
+
var SvgProduct = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2285
2573
|
"svg",
|
|
2286
2574
|
{
|
|
2287
2575
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2290,7 +2578,7 @@ var SvgProduct = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
|
2290
2578
|
fill: "none",
|
|
2291
2579
|
viewBox: "0 0 18 20",
|
|
2292
2580
|
...props,
|
|
2293
|
-
children: /* @__PURE__ */ (0,
|
|
2581
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2294
2582
|
"path",
|
|
2295
2583
|
{
|
|
2296
2584
|
fill: "currentColor",
|
|
@@ -2303,9 +2591,33 @@ var SvgProduct = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
|
2303
2591
|
);
|
|
2304
2592
|
var Product_default = SvgProduct;
|
|
2305
2593
|
|
|
2594
|
+
// src/components/Redo.tsx
|
|
2595
|
+
var import_jsx_runtime37 = __toESM(require_jsx_runtime());
|
|
2596
|
+
var SvgRedo = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
2597
|
+
"svg",
|
|
2598
|
+
{
|
|
2599
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2600
|
+
width: "1em",
|
|
2601
|
+
height: "1em",
|
|
2602
|
+
fill: "none",
|
|
2603
|
+
stroke: "currentColor",
|
|
2604
|
+
strokeLinecap: "round",
|
|
2605
|
+
strokeLinejoin: "round",
|
|
2606
|
+
strokeWidth: 2,
|
|
2607
|
+
className: "redo_svg__lucide redo_svg__lucide-redo2-icon redo_svg__lucide-redo-2",
|
|
2608
|
+
viewBox: "0 0 24 24",
|
|
2609
|
+
...props,
|
|
2610
|
+
children: [
|
|
2611
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "m15 14 5-5-5-5" }),
|
|
2612
|
+
/* @__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" })
|
|
2613
|
+
]
|
|
2614
|
+
}
|
|
2615
|
+
);
|
|
2616
|
+
var Redo_default = SvgRedo;
|
|
2617
|
+
|
|
2306
2618
|
// src/components/Searchglass.tsx
|
|
2307
|
-
var
|
|
2308
|
-
var SvgSearchglass = (props) => /* @__PURE__ */ (0,
|
|
2619
|
+
var import_jsx_runtime38 = __toESM(require_jsx_runtime());
|
|
2620
|
+
var SvgSearchglass = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2309
2621
|
"svg",
|
|
2310
2622
|
{
|
|
2311
2623
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2314,7 +2626,7 @@ var SvgSearchglass = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
|
2314
2626
|
fill: "none",
|
|
2315
2627
|
viewBox: "0 0 24 24",
|
|
2316
2628
|
...props,
|
|
2317
|
-
children: /* @__PURE__ */ (0,
|
|
2629
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2318
2630
|
"path",
|
|
2319
2631
|
{
|
|
2320
2632
|
fill: "currentColor",
|
|
@@ -2328,8 +2640,8 @@ var SvgSearchglass = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
|
2328
2640
|
var Searchglass_default = SvgSearchglass;
|
|
2329
2641
|
|
|
2330
2642
|
// src/components/Series.tsx
|
|
2331
|
-
var
|
|
2332
|
-
var SvgSeries = (props) => /* @__PURE__ */ (0,
|
|
2643
|
+
var import_jsx_runtime39 = __toESM(require_jsx_runtime());
|
|
2644
|
+
var SvgSeries = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2333
2645
|
"svg",
|
|
2334
2646
|
{
|
|
2335
2647
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2338,7 +2650,7 @@ var SvgSeries = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
|
2338
2650
|
fill: "none",
|
|
2339
2651
|
viewBox: "0 0 24 24",
|
|
2340
2652
|
...props,
|
|
2341
|
-
children: /* @__PURE__ */ (0,
|
|
2653
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2342
2654
|
"path",
|
|
2343
2655
|
{
|
|
2344
2656
|
fill: "currentColor",
|
|
@@ -2352,8 +2664,8 @@ var SvgSeries = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
|
2352
2664
|
var Series_default = SvgSeries;
|
|
2353
2665
|
|
|
2354
2666
|
// src/components/Settings.tsx
|
|
2355
|
-
var
|
|
2356
|
-
var SvgSettings = (props) => /* @__PURE__ */ (0,
|
|
2667
|
+
var import_jsx_runtime40 = __toESM(require_jsx_runtime());
|
|
2668
|
+
var SvgSettings = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2357
2669
|
"svg",
|
|
2358
2670
|
{
|
|
2359
2671
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2362,7 +2674,7 @@ var SvgSettings = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
|
2362
2674
|
fill: "none",
|
|
2363
2675
|
viewBox: "0 0 20 20",
|
|
2364
2676
|
...props,
|
|
2365
|
-
children: /* @__PURE__ */ (0,
|
|
2677
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2366
2678
|
"path",
|
|
2367
2679
|
{
|
|
2368
2680
|
fill: "currentColor",
|
|
@@ -2375,9 +2687,30 @@ var SvgSettings = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
|
2375
2687
|
);
|
|
2376
2688
|
var Settings_default = SvgSettings;
|
|
2377
2689
|
|
|
2690
|
+
// src/components/Sigma.tsx
|
|
2691
|
+
var import_jsx_runtime41 = __toESM(require_jsx_runtime());
|
|
2692
|
+
var SvgSigma = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2693
|
+
"svg",
|
|
2694
|
+
{
|
|
2695
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2696
|
+
width: "1em",
|
|
2697
|
+
height: "1em",
|
|
2698
|
+
fill: "none",
|
|
2699
|
+
stroke: "currentColor",
|
|
2700
|
+
strokeLinecap: "round",
|
|
2701
|
+
strokeLinejoin: "round",
|
|
2702
|
+
strokeWidth: 2,
|
|
2703
|
+
className: "sigma_svg__lucide sigma_svg__lucide-sigma-icon sigma_svg__lucide-sigma",
|
|
2704
|
+
viewBox: "0 0 24 24",
|
|
2705
|
+
...props,
|
|
2706
|
+
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" })
|
|
2707
|
+
}
|
|
2708
|
+
);
|
|
2709
|
+
var Sigma_default = SvgSigma;
|
|
2710
|
+
|
|
2378
2711
|
// src/components/Success.tsx
|
|
2379
|
-
var
|
|
2380
|
-
var SvgSuccess = (props) => /* @__PURE__ */ (0,
|
|
2712
|
+
var import_jsx_runtime42 = __toESM(require_jsx_runtime());
|
|
2713
|
+
var SvgSuccess = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2381
2714
|
"svg",
|
|
2382
2715
|
{
|
|
2383
2716
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2386,7 +2719,7 @@ var SvgSuccess = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
|
2386
2719
|
fill: "none",
|
|
2387
2720
|
viewBox: "0 0 24 24",
|
|
2388
2721
|
...props,
|
|
2389
|
-
children: /* @__PURE__ */ (0,
|
|
2722
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2390
2723
|
"path",
|
|
2391
2724
|
{
|
|
2392
2725
|
fill: "currentColor",
|
|
@@ -2400,8 +2733,8 @@ var SvgSuccess = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
|
2400
2733
|
var Success_default = SvgSuccess;
|
|
2401
2734
|
|
|
2402
2735
|
// src/components/Swaporder.tsx
|
|
2403
|
-
var
|
|
2404
|
-
var SvgSwaporder = (props) => /* @__PURE__ */ (0,
|
|
2736
|
+
var import_jsx_runtime43 = __toESM(require_jsx_runtime());
|
|
2737
|
+
var SvgSwaporder = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2405
2738
|
"svg",
|
|
2406
2739
|
{
|
|
2407
2740
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2410,7 +2743,7 @@ var SvgSwaporder = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
|
2410
2743
|
fill: "none",
|
|
2411
2744
|
viewBox: "0 0 24 24",
|
|
2412
2745
|
...props,
|
|
2413
|
-
children: /* @__PURE__ */ (0,
|
|
2746
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2414
2747
|
"path",
|
|
2415
2748
|
{
|
|
2416
2749
|
fill: "currentColor",
|
|
@@ -2423,9 +2756,159 @@ var SvgSwaporder = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
|
2423
2756
|
);
|
|
2424
2757
|
var Swaporder_default = SvgSwaporder;
|
|
2425
2758
|
|
|
2759
|
+
// src/components/Table.tsx
|
|
2760
|
+
var import_jsx_runtime44 = __toESM(require_jsx_runtime());
|
|
2761
|
+
var SvgTable = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2762
|
+
"svg",
|
|
2763
|
+
{
|
|
2764
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2765
|
+
width: "1em",
|
|
2766
|
+
height: "1em",
|
|
2767
|
+
fill: "none",
|
|
2768
|
+
stroke: "currentColor",
|
|
2769
|
+
strokeLinecap: "round",
|
|
2770
|
+
strokeLinejoin: "round",
|
|
2771
|
+
strokeWidth: 2,
|
|
2772
|
+
className: "table_svg__lucide table_svg__lucide-table2-icon table_svg__lucide-table-2",
|
|
2773
|
+
viewBox: "0 0 24 24",
|
|
2774
|
+
...props,
|
|
2775
|
+
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" })
|
|
2776
|
+
}
|
|
2777
|
+
);
|
|
2778
|
+
var Table_default = SvgTable;
|
|
2779
|
+
|
|
2780
|
+
// src/components/TextAlignCenter.tsx
|
|
2781
|
+
var import_jsx_runtime45 = __toESM(require_jsx_runtime());
|
|
2782
|
+
var SvgTextAlignCenter = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2783
|
+
"svg",
|
|
2784
|
+
{
|
|
2785
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2786
|
+
width: "1em",
|
|
2787
|
+
height: "1em",
|
|
2788
|
+
fill: "none",
|
|
2789
|
+
stroke: "currentColor",
|
|
2790
|
+
strokeLinecap: "round",
|
|
2791
|
+
strokeLinejoin: "round",
|
|
2792
|
+
strokeWidth: 2,
|
|
2793
|
+
className: "text-align-center_svg__lucide text-align-center_svg__lucide-text-align-center-icon text-align-center_svg__lucide-text-align-center",
|
|
2794
|
+
viewBox: "0 0 24 24",
|
|
2795
|
+
...props,
|
|
2796
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { d: "M21 5H3M17 12H7M19 19H5" })
|
|
2797
|
+
}
|
|
2798
|
+
);
|
|
2799
|
+
var TextAlignCenter_default = SvgTextAlignCenter;
|
|
2800
|
+
|
|
2801
|
+
// src/components/TextAlignEnd.tsx
|
|
2802
|
+
var import_jsx_runtime46 = __toESM(require_jsx_runtime());
|
|
2803
|
+
var SvgTextAlignEnd = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2804
|
+
"svg",
|
|
2805
|
+
{
|
|
2806
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2807
|
+
width: "1em",
|
|
2808
|
+
height: "1em",
|
|
2809
|
+
fill: "none",
|
|
2810
|
+
stroke: "currentColor",
|
|
2811
|
+
strokeLinecap: "round",
|
|
2812
|
+
strokeLinejoin: "round",
|
|
2813
|
+
strokeWidth: 2,
|
|
2814
|
+
className: "text-align-end_svg__lucide text-align-end_svg__lucide-text-align-end-icon text-align-end_svg__lucide-text-align-end",
|
|
2815
|
+
viewBox: "0 0 24 24",
|
|
2816
|
+
...props,
|
|
2817
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { d: "M21 5H3M21 12H9M21 19H7" })
|
|
2818
|
+
}
|
|
2819
|
+
);
|
|
2820
|
+
var TextAlignEnd_default = SvgTextAlignEnd;
|
|
2821
|
+
|
|
2822
|
+
// src/components/TextAlignJustify.tsx
|
|
2823
|
+
var import_jsx_runtime47 = __toESM(require_jsx_runtime());
|
|
2824
|
+
var SvgTextAlignJustify = (props) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2825
|
+
"svg",
|
|
2826
|
+
{
|
|
2827
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2828
|
+
width: "1em",
|
|
2829
|
+
height: "1em",
|
|
2830
|
+
fill: "none",
|
|
2831
|
+
stroke: "currentColor",
|
|
2832
|
+
strokeLinecap: "round",
|
|
2833
|
+
strokeLinejoin: "round",
|
|
2834
|
+
strokeWidth: 2,
|
|
2835
|
+
className: "text-align-justify_svg__lucide text-align-justify_svg__lucide-text-align-justify-icon text-align-justify_svg__lucide-text-align-justify",
|
|
2836
|
+
viewBox: "0 0 24 24",
|
|
2837
|
+
...props,
|
|
2838
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { d: "M3 5h18M3 12h18M3 19h18" })
|
|
2839
|
+
}
|
|
2840
|
+
);
|
|
2841
|
+
var TextAlignJustify_default = SvgTextAlignJustify;
|
|
2842
|
+
|
|
2843
|
+
// src/components/TextAlignStart.tsx
|
|
2844
|
+
var import_jsx_runtime48 = __toESM(require_jsx_runtime());
|
|
2845
|
+
var SvgTextAlignStart = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2846
|
+
"svg",
|
|
2847
|
+
{
|
|
2848
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2849
|
+
width: "1em",
|
|
2850
|
+
height: "1em",
|
|
2851
|
+
fill: "none",
|
|
2852
|
+
stroke: "currentColor",
|
|
2853
|
+
strokeLinecap: "round",
|
|
2854
|
+
strokeLinejoin: "round",
|
|
2855
|
+
strokeWidth: 2,
|
|
2856
|
+
className: "text-align-start_svg__lucide text-align-start_svg__lucide-text-align-start-icon text-align-start_svg__lucide-text-align-start",
|
|
2857
|
+
viewBox: "0 0 24 24",
|
|
2858
|
+
...props,
|
|
2859
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M21 5H3M15 12H3M17 19H3" })
|
|
2860
|
+
}
|
|
2861
|
+
);
|
|
2862
|
+
var TextAlignStart_default = SvgTextAlignStart;
|
|
2863
|
+
|
|
2864
|
+
// src/components/Underlinetext.tsx
|
|
2865
|
+
var import_jsx_runtime49 = __toESM(require_jsx_runtime());
|
|
2866
|
+
var SvgUnderlinetext = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2867
|
+
"svg",
|
|
2868
|
+
{
|
|
2869
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2870
|
+
width: "1em",
|
|
2871
|
+
height: "1em",
|
|
2872
|
+
fill: "none",
|
|
2873
|
+
stroke: "currentColor",
|
|
2874
|
+
strokeLinecap: "round",
|
|
2875
|
+
strokeLinejoin: "round",
|
|
2876
|
+
strokeWidth: 2,
|
|
2877
|
+
className: "underlinetext_svg__lucide underlinetext_svg__lucide-underline-icon underlinetext_svg__lucide-underline",
|
|
2878
|
+
viewBox: "0 0 24 24",
|
|
2879
|
+
...props,
|
|
2880
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M6 4v6a6 6 0 0 0 12 0V4M4 20h16" })
|
|
2881
|
+
}
|
|
2882
|
+
);
|
|
2883
|
+
var Underlinetext_default = SvgUnderlinetext;
|
|
2884
|
+
|
|
2885
|
+
// src/components/Undo.tsx
|
|
2886
|
+
var import_jsx_runtime50 = __toESM(require_jsx_runtime());
|
|
2887
|
+
var SvgUndo = (props) => /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
|
|
2888
|
+
"svg",
|
|
2889
|
+
{
|
|
2890
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2891
|
+
width: "1em",
|
|
2892
|
+
height: "1em",
|
|
2893
|
+
fill: "none",
|
|
2894
|
+
stroke: "currentColor",
|
|
2895
|
+
strokeLinecap: "round",
|
|
2896
|
+
strokeLinejoin: "round",
|
|
2897
|
+
strokeWidth: 2,
|
|
2898
|
+
className: "undo_svg__lucide undo_svg__lucide-undo2-icon undo_svg__lucide-undo-2",
|
|
2899
|
+
viewBox: "0 0 24 24",
|
|
2900
|
+
...props,
|
|
2901
|
+
children: [
|
|
2902
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M9 14 4 9l5-5" }),
|
|
2903
|
+
/* @__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" })
|
|
2904
|
+
]
|
|
2905
|
+
}
|
|
2906
|
+
);
|
|
2907
|
+
var Undo_default = SvgUndo;
|
|
2908
|
+
|
|
2426
2909
|
// src/components/Unknown.tsx
|
|
2427
|
-
var
|
|
2428
|
-
var SvgUnknown = (props) => /* @__PURE__ */ (0,
|
|
2910
|
+
var import_jsx_runtime51 = __toESM(require_jsx_runtime());
|
|
2911
|
+
var SvgUnknown = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2429
2912
|
"svg",
|
|
2430
2913
|
{
|
|
2431
2914
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2434,7 +2917,7 @@ var SvgUnknown = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
|
2434
2917
|
fill: "none",
|
|
2435
2918
|
viewBox: "0 0 24 24",
|
|
2436
2919
|
...props,
|
|
2437
|
-
children: /* @__PURE__ */ (0,
|
|
2920
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2438
2921
|
"path",
|
|
2439
2922
|
{
|
|
2440
2923
|
fill: "currentColor",
|
|
@@ -2448,8 +2931,8 @@ var SvgUnknown = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
|
2448
2931
|
var Unknown_default = SvgUnknown;
|
|
2449
2932
|
|
|
2450
2933
|
// src/components/Users.tsx
|
|
2451
|
-
var
|
|
2452
|
-
var SvgUsers = (props) => /* @__PURE__ */ (0,
|
|
2934
|
+
var import_jsx_runtime52 = __toESM(require_jsx_runtime());
|
|
2935
|
+
var SvgUsers = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2453
2936
|
"svg",
|
|
2454
2937
|
{
|
|
2455
2938
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2458,7 +2941,7 @@ var SvgUsers = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
|
2458
2941
|
fill: "none",
|
|
2459
2942
|
viewBox: "0 0 24 24",
|
|
2460
2943
|
...props,
|
|
2461
|
-
children: /* @__PURE__ */ (0,
|
|
2944
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2462
2945
|
"path",
|
|
2463
2946
|
{
|
|
2464
2947
|
fill: "currentColor",
|
|
@@ -2472,8 +2955,8 @@ var SvgUsers = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
|
2472
2955
|
var Users_default = SvgUsers;
|
|
2473
2956
|
|
|
2474
2957
|
// src/components/Warning.tsx
|
|
2475
|
-
var
|
|
2476
|
-
var SvgWarning = (props) => /* @__PURE__ */ (0,
|
|
2958
|
+
var import_jsx_runtime53 = __toESM(require_jsx_runtime());
|
|
2959
|
+
var SvgWarning = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2477
2960
|
"svg",
|
|
2478
2961
|
{
|
|
2479
2962
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2482,7 +2965,7 @@ var SvgWarning = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
|
2482
2965
|
fill: "none",
|
|
2483
2966
|
viewBox: "0 0 24 24",
|
|
2484
2967
|
...props,
|
|
2485
|
-
children: /* @__PURE__ */ (0,
|
|
2968
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2486
2969
|
"path",
|
|
2487
2970
|
{
|
|
2488
2971
|
fill: "currentColor",
|
|
@@ -2541,6 +3024,6 @@ react/cjs/react-jsx-runtime.development.js:
|
|
|
2541
3024
|
*)
|
|
2542
3025
|
*/
|
|
2543
3026
|
|
|
2544
|
-
export { Book_default as Book, Check_default as Check, Chevron_default as Chevron, Class_default as Class, Close_default as Close, Code_default as Code, Collapse_default as Collapse, Copy_default as Copy, Error_default as Error, External_default as External, Eye_default as Eye, Eyehide_default as Eyehide, First_default as First, Gologo_default as Gologo, Hamburger_default as Hamburger, Indeterminate_default as Indeterminate, Info_default as Info, Last_default as Last, Next_default as Next, PersonAvatar_default as PersonAvatar, Plus_default as Plus, Previous_default as Previous, Product_default as Product, Searchglass_default as Searchglass, Series_default as Series, Settings_default as Settings, Success_default as Success, Swaporder_default as Swaporder, Unknown_default as Unknown, Users_default as Users, Warning_default as Warning };
|
|
3027
|
+
export { Addimage_default as Addimage, Boldtext_default as Boldtext, Book_default as Book, Check_default as Check, Chevron_default as Chevron, Class_default as Class, Close_default as Close, Code_default as Code, Collapse_default as Collapse, Copy_default as Copy, Draghandle_default as Draghandle, Error_default as Error, External_default as External, Eye_default as Eye, Eyehide_default as Eyehide, First_default as First, Gologo_default as Gologo, Hamburger_default as Hamburger, Headingtext_default as Headingtext, Headingtext1_default as Headingtext1, Headingtext2_default as Headingtext2, Headingtext3_default as Headingtext3, Headingtext4_default as Headingtext4, Headingtext5_default as Headingtext5, Headingtext6_default as Headingtext6, Indeterminate_default as Indeterminate, Info_default as Info, Italicstext_default as Italicstext, Last_default as Last, List_default as List, Listordered_default as Listordered, Next_default as Next, PersonAvatar_default as PersonAvatar, Plus_default as Plus, Previous_default as Previous, Product_default as Product, Redo_default as Redo, Searchglass_default as Searchglass, Series_default as Series, Settings_default as Settings, Sigma_default as Sigma, Success_default as Success, Swaporder_default as Swaporder, Table_default as Table, TextAlignCenter_default as TextAlignCenter, TextAlignEnd_default as TextAlignEnd, TextAlignJustify_default as TextAlignJustify, TextAlignStart_default as TextAlignStart, Underlinetext_default as Underlinetext, Undo_default as Undo, Unknown_default as Unknown, Users_default as Users, Warning_default as Warning };
|
|
2545
3028
|
//# sourceMappingURL=index.mjs.map
|
|
2546
3029
|
//# sourceMappingURL=index.mjs.map
|