@abqm-ds/icons 1.0.8 → 1.0.10
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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +12 -0
- package/dist/index.cjs +169 -112
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +167 -112
- package/package.json +1 -1
- package/src/components/BarChartIcon.tsx +17 -0
- package/src/components/FileEarmarkTextIcon.tsx +21 -0
- package/src/icons/bar-chart.svg +3 -0
- package/src/icons/file-earmark-text.svg +4 -0
- package/src/index.ts +2 -0
package/dist/index.cjs
CHANGED
|
@@ -1737,6 +1737,7 @@ var index_exports = {};
|
|
|
1737
1737
|
__export(index_exports, {
|
|
1738
1738
|
ArrowDownShortIcon: () => ArrowDownShortIcon_default,
|
|
1739
1739
|
AwardFillIcon: () => AwardFillIcon_default,
|
|
1740
|
+
BarChartIcon: () => BarChartIcon_default,
|
|
1740
1741
|
BoxArrowInLeftIcon: () => BoxArrowInLeftIcon_default,
|
|
1741
1742
|
BroadcastIcon: () => BroadcastIcon_default,
|
|
1742
1743
|
CaretDownFillIcon: () => CaretDownFillIcon_default,
|
|
@@ -1744,6 +1745,7 @@ __export(index_exports, {
|
|
|
1744
1745
|
CaretRightFillIcon: () => CaretRightFillIcon_default,
|
|
1745
1746
|
CircleIcon: () => CircleIcon_default,
|
|
1746
1747
|
FacebookIcon: () => FacebookIcon_default,
|
|
1748
|
+
FileEarmarkTextIcon: () => FileEarmarkTextIcon_default,
|
|
1747
1749
|
FileTextIcon: () => FileTextIcon_default,
|
|
1748
1750
|
FilterIcon: () => FilterIcon_default,
|
|
1749
1751
|
HorseIcon: () => HorseIcon_default,
|
|
@@ -1820,9 +1822,31 @@ var AwardFillIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
|
1820
1822
|
);
|
|
1821
1823
|
var AwardFillIcon_default = AwardFillIcon;
|
|
1822
1824
|
|
|
1823
|
-
// src/components/
|
|
1825
|
+
// src/components/BarChartIcon.tsx
|
|
1824
1826
|
var import_jsx_runtime3 = __toESM(require_jsx_runtime(), 1);
|
|
1825
|
-
var
|
|
1827
|
+
var BarChartIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
1828
|
+
"svg",
|
|
1829
|
+
{
|
|
1830
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1831
|
+
width: "1em",
|
|
1832
|
+
height: "1em",
|
|
1833
|
+
fill: "none",
|
|
1834
|
+
viewBox: "0 0 24 24",
|
|
1835
|
+
...props,
|
|
1836
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
1837
|
+
"path",
|
|
1838
|
+
{
|
|
1839
|
+
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
1840
|
+
d: "M6 16.5H3V21h3zm7.5-6h-3V21h3zM21 3v18h-3V3zm-3-1.5A1.5 1.5 0 0 0 16.5 3v18a1.5 1.5 0 0 0 1.5 1.5h3a1.5 1.5 0 0 0 1.5-1.5V3A1.5 1.5 0 0 0 21 1.5zm-9 9A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5V21a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 21zm-7.5 6A1.5 1.5 0 0 1 3 15h3a1.5 1.5 0 0 1 1.5 1.5V21A1.5 1.5 0 0 1 6 22.5H3A1.5 1.5 0 0 1 1.5 21z"
|
|
1841
|
+
}
|
|
1842
|
+
)
|
|
1843
|
+
}
|
|
1844
|
+
);
|
|
1845
|
+
var BarChartIcon_default = BarChartIcon;
|
|
1846
|
+
|
|
1847
|
+
// src/components/BoxArrowInLeftIcon.tsx
|
|
1848
|
+
var import_jsx_runtime4 = __toESM(require_jsx_runtime(), 1);
|
|
1849
|
+
var BoxArrowInLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
1826
1850
|
"svg",
|
|
1827
1851
|
{
|
|
1828
1852
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1832,7 +1856,7 @@ var BoxArrowInLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsxs
|
|
|
1832
1856
|
viewBox: "0 0 24 24",
|
|
1833
1857
|
...props,
|
|
1834
1858
|
children: [
|
|
1835
|
-
/* @__PURE__ */ (0,
|
|
1859
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1836
1860
|
"path",
|
|
1837
1861
|
{
|
|
1838
1862
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -1841,7 +1865,7 @@ var BoxArrowInLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsxs
|
|
|
1841
1865
|
clipRule: "evenodd"
|
|
1842
1866
|
}
|
|
1843
1867
|
),
|
|
1844
|
-
/* @__PURE__ */ (0,
|
|
1868
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1845
1869
|
"path",
|
|
1846
1870
|
{
|
|
1847
1871
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -1856,8 +1880,8 @@ var BoxArrowInLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsxs
|
|
|
1856
1880
|
var BoxArrowInLeftIcon_default = BoxArrowInLeftIcon;
|
|
1857
1881
|
|
|
1858
1882
|
// src/components/BroadcastIcon.tsx
|
|
1859
|
-
var
|
|
1860
|
-
var BroadcastIcon = (props) => /* @__PURE__ */ (0,
|
|
1883
|
+
var import_jsx_runtime5 = __toESM(require_jsx_runtime(), 1);
|
|
1884
|
+
var BroadcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
1861
1885
|
"svg",
|
|
1862
1886
|
{
|
|
1863
1887
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1867,22 +1891,22 @@ var BroadcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
|
1867
1891
|
viewBox: "0 0 24 24",
|
|
1868
1892
|
...props,
|
|
1869
1893
|
children: [
|
|
1870
|
-
/* @__PURE__ */ (0,
|
|
1894
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("g", { clipPath: "url(#broadcast_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1871
1895
|
"path",
|
|
1872
1896
|
{
|
|
1873
1897
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
1874
1898
|
d: "M4.575 4.575a10.5 10.5 0 0 0 0 14.85.75.75 0 0 1-1.06 1.06 12 12 0 0 1 0-16.97.75.75 0 0 1 1.06 1.06m3.183 3.183a6 6 0 0 0 0 8.484.75.75 0 1 1-1.062 1.062 7.5 7.5 0 0 1 0-10.608.75.75 0 1 1 1.062 1.062m8.484-1.062a.75.75 0 0 1 1.062 0 7.5 7.5 0 0 1 0 10.608.752.752 0 0 1-1.062-1.062 6 6 0 0 0 0-8.484.75.75 0 0 1 0-1.062m3.183-3.18a.75.75 0 0 1 1.06 0 12 12 0 0 1 0 16.97.75.75 0 0 1-1.06-1.061 10.5 10.5 0 0 0 0-14.85.75.75 0 0 1 0-1.06zM15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0"
|
|
1875
1899
|
}
|
|
1876
1900
|
) }),
|
|
1877
|
-
/* @__PURE__ */ (0,
|
|
1901
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("clipPath", { id: "broadcast_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { fill: props?.fill ? props.fill : "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
1878
1902
|
]
|
|
1879
1903
|
}
|
|
1880
1904
|
);
|
|
1881
1905
|
var BroadcastIcon_default = BroadcastIcon;
|
|
1882
1906
|
|
|
1883
1907
|
// src/components/CaretDownFillIcon.tsx
|
|
1884
|
-
var
|
|
1885
|
-
var CaretDownFillIcon = (props) => /* @__PURE__ */ (0,
|
|
1908
|
+
var import_jsx_runtime6 = __toESM(require_jsx_runtime(), 1);
|
|
1909
|
+
var CaretDownFillIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1886
1910
|
"svg",
|
|
1887
1911
|
{
|
|
1888
1912
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1891,7 +1915,7 @@ var CaretDownFillIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
|
1891
1915
|
fill: "none",
|
|
1892
1916
|
viewBox: "0 0 24 24",
|
|
1893
1917
|
...props,
|
|
1894
|
-
children: /* @__PURE__ */ (0,
|
|
1918
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1895
1919
|
"path",
|
|
1896
1920
|
{
|
|
1897
1921
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -1903,8 +1927,8 @@ var CaretDownFillIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
|
1903
1927
|
var CaretDownFillIcon_default = CaretDownFillIcon;
|
|
1904
1928
|
|
|
1905
1929
|
// src/components/CaretLeftFillIcon.tsx
|
|
1906
|
-
var
|
|
1907
|
-
var CaretLeftFillIcon = (props) => /* @__PURE__ */ (0,
|
|
1930
|
+
var import_jsx_runtime7 = __toESM(require_jsx_runtime(), 1);
|
|
1931
|
+
var CaretLeftFillIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1908
1932
|
"svg",
|
|
1909
1933
|
{
|
|
1910
1934
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1913,7 +1937,7 @@ var CaretLeftFillIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
|
1913
1937
|
fill: "none",
|
|
1914
1938
|
viewBox: "0 0 24 24",
|
|
1915
1939
|
...props,
|
|
1916
|
-
children: /* @__PURE__ */ (0,
|
|
1940
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1917
1941
|
"path",
|
|
1918
1942
|
{
|
|
1919
1943
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -1925,8 +1949,8 @@ var CaretLeftFillIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
|
1925
1949
|
var CaretLeftFillIcon_default = CaretLeftFillIcon;
|
|
1926
1950
|
|
|
1927
1951
|
// src/components/CaretRightFillIcon.tsx
|
|
1928
|
-
var
|
|
1929
|
-
var CaretRightFillIcon = (props) => /* @__PURE__ */ (0,
|
|
1952
|
+
var import_jsx_runtime8 = __toESM(require_jsx_runtime(), 1);
|
|
1953
|
+
var CaretRightFillIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1930
1954
|
"svg",
|
|
1931
1955
|
{
|
|
1932
1956
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1935,7 +1959,7 @@ var CaretRightFillIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)
|
|
|
1935
1959
|
fill: "none",
|
|
1936
1960
|
viewBox: "0 0 24 24",
|
|
1937
1961
|
...props,
|
|
1938
|
-
children: /* @__PURE__ */ (0,
|
|
1962
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1939
1963
|
"path",
|
|
1940
1964
|
{
|
|
1941
1965
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -1947,8 +1971,8 @@ var CaretRightFillIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)
|
|
|
1947
1971
|
var CaretRightFillIcon_default = CaretRightFillIcon;
|
|
1948
1972
|
|
|
1949
1973
|
// src/components/CircleIcon.tsx
|
|
1950
|
-
var
|
|
1951
|
-
var CircleIcon = (props) => /* @__PURE__ */ (0,
|
|
1974
|
+
var import_jsx_runtime9 = __toESM(require_jsx_runtime(), 1);
|
|
1975
|
+
var CircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
1952
1976
|
"svg",
|
|
1953
1977
|
{
|
|
1954
1978
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1958,22 +1982,22 @@ var CircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
|
1958
1982
|
viewBox: "0 0 24 24",
|
|
1959
1983
|
...props,
|
|
1960
1984
|
children: [
|
|
1961
|
-
/* @__PURE__ */ (0,
|
|
1985
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("g", { clipPath: "url(#circle_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1962
1986
|
"path",
|
|
1963
1987
|
{
|
|
1964
1988
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
1965
1989
|
d: "M12 22.5a10.5 10.5 0 1 1 0-21 10.5 10.5 0 0 1 0 21m0 1.5a12 12 0 1 0 0-24 12 12 0 0 0 0 24"
|
|
1966
1990
|
}
|
|
1967
1991
|
) }),
|
|
1968
|
-
/* @__PURE__ */ (0,
|
|
1992
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("clipPath", { id: "circle_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { fill: props?.fill ? props.fill : "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
1969
1993
|
]
|
|
1970
1994
|
}
|
|
1971
1995
|
);
|
|
1972
1996
|
var CircleIcon_default = CircleIcon;
|
|
1973
1997
|
|
|
1974
1998
|
// src/components/FacebookIcon.tsx
|
|
1975
|
-
var
|
|
1976
|
-
var FacebookIcon = (props) => /* @__PURE__ */ (0,
|
|
1999
|
+
var import_jsx_runtime10 = __toESM(require_jsx_runtime(), 1);
|
|
2000
|
+
var FacebookIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
1977
2001
|
"svg",
|
|
1978
2002
|
{
|
|
1979
2003
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1983,22 +2007,53 @@ var FacebookIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
|
1983
2007
|
viewBox: "0 0 24 24",
|
|
1984
2008
|
...props,
|
|
1985
2009
|
children: [
|
|
1986
|
-
/* @__PURE__ */ (0,
|
|
2010
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("g", { clipPath: "url(#facebook_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1987
2011
|
"path",
|
|
1988
2012
|
{
|
|
1989
2013
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
1990
2014
|
d: "M24 12.074C24 5.403 18.627-.002 12-.002 5.37 0-.003 5.405-.003 12.075c0 6.026 4.39 11.02 10.125 11.927v-8.438H7.077v-3.489h3.048V9.413c0-3.026 1.793-4.697 4.533-4.697 1.314 0 2.687.236 2.687.236v2.97H15.83c-1.49 0-1.954.931-1.954 1.887v2.265h3.327l-.531 3.489h-2.798V24C19.611 23.094 24 18.099 24 12.074"
|
|
1991
2015
|
}
|
|
1992
2016
|
) }),
|
|
1993
|
-
/* @__PURE__ */ (0,
|
|
2017
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("clipPath", { id: "facebook_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { fill: props?.fill ? props.fill : "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
1994
2018
|
]
|
|
1995
2019
|
}
|
|
1996
2020
|
);
|
|
1997
2021
|
var FacebookIcon_default = FacebookIcon;
|
|
1998
2022
|
|
|
2023
|
+
// src/components/FileEarmarkTextIcon.tsx
|
|
2024
|
+
var import_jsx_runtime11 = __toESM(require_jsx_runtime(), 1);
|
|
2025
|
+
var FileEarmarkTextIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
2026
|
+
"svg",
|
|
2027
|
+
{
|
|
2028
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2029
|
+
width: "1em",
|
|
2030
|
+
height: "1em",
|
|
2031
|
+
fill: "none",
|
|
2032
|
+
viewBox: "0 0 24 24",
|
|
2033
|
+
...props,
|
|
2034
|
+
children: [
|
|
2035
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
2036
|
+
"path",
|
|
2037
|
+
{
|
|
2038
|
+
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
2039
|
+
d: "M8.25 10.5a.75.75 0 1 0 0 1.5h7.5a.75.75 0 1 0 0-1.5zm-.75 3.75a.75.75 0 0 1 .75-.75h7.5a.75.75 0 1 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75m0 3a.75.75 0 0 1 .75-.75h3a.75.75 0 1 1 0 1.5h-3a.75.75 0 0 1-.75-.75"
|
|
2040
|
+
}
|
|
2041
|
+
),
|
|
2042
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
2043
|
+
"path",
|
|
2044
|
+
{
|
|
2045
|
+
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
2046
|
+
d: "M14.25 0H6a3 3 0 0 0-3 3v18a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6.75zm0 1.5v3a2.25 2.25 0 0 0 2.25 2.25h3V21a1.5 1.5 0 0 1-1.5 1.5H6A1.5 1.5 0 0 1 4.5 21V3A1.5 1.5 0 0 1 6 1.5z"
|
|
2047
|
+
}
|
|
2048
|
+
)
|
|
2049
|
+
]
|
|
2050
|
+
}
|
|
2051
|
+
);
|
|
2052
|
+
var FileEarmarkTextIcon_default = FileEarmarkTextIcon;
|
|
2053
|
+
|
|
1999
2054
|
// src/components/FileTextIcon.tsx
|
|
2000
|
-
var
|
|
2001
|
-
var FileTextIcon = (props) => /* @__PURE__ */ (0,
|
|
2055
|
+
var import_jsx_runtime12 = __toESM(require_jsx_runtime(), 1);
|
|
2056
|
+
var FileTextIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
2002
2057
|
"svg",
|
|
2003
2058
|
{
|
|
2004
2059
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2008,14 +2063,14 @@ var FileTextIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
|
2008
2063
|
viewBox: "0 0 24 24",
|
|
2009
2064
|
...props,
|
|
2010
2065
|
children: [
|
|
2011
|
-
/* @__PURE__ */ (0,
|
|
2066
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
2012
2067
|
"path",
|
|
2013
2068
|
{
|
|
2014
2069
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
2015
2070
|
d: "M7.5 6a.75.75 0 0 0 0 1.5h9a.75.75 0 1 0 0-1.5zm-.75 3.75A.75.75 0 0 1 7.5 9h9a.75.75 0 1 1 0 1.5h-9a.75.75 0 0 1-.75-.75M7.5 12a.75.75 0 1 0 0 1.5h9a.75.75 0 1 0 0-1.5zm0 3a.75.75 0 1 0 0 1.5H12a.75.75 0 1 0 0-1.5z"
|
|
2016
2071
|
}
|
|
2017
2072
|
),
|
|
2018
|
-
/* @__PURE__ */ (0,
|
|
2073
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
2019
2074
|
"path",
|
|
2020
2075
|
{
|
|
2021
2076
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -2028,8 +2083,8 @@ var FileTextIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
|
2028
2083
|
var FileTextIcon_default = FileTextIcon;
|
|
2029
2084
|
|
|
2030
2085
|
// src/components/FilterIcon.tsx
|
|
2031
|
-
var
|
|
2032
|
-
var FilterIcon = (props) => /* @__PURE__ */ (0,
|
|
2086
|
+
var import_jsx_runtime13 = __toESM(require_jsx_runtime(), 1);
|
|
2087
|
+
var FilterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
2033
2088
|
"svg",
|
|
2034
2089
|
{
|
|
2035
2090
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2038,7 +2093,7 @@ var FilterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
|
2038
2093
|
fill: "none",
|
|
2039
2094
|
viewBox: "0 0 24 24",
|
|
2040
2095
|
...props,
|
|
2041
|
-
children: /* @__PURE__ */ (0,
|
|
2096
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
2042
2097
|
"path",
|
|
2043
2098
|
{
|
|
2044
2099
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -2050,8 +2105,8 @@ var FilterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
|
2050
2105
|
var FilterIcon_default = FilterIcon;
|
|
2051
2106
|
|
|
2052
2107
|
// src/components/HorseIcon.tsx
|
|
2053
|
-
var
|
|
2054
|
-
var HorseIcon = (props) => /* @__PURE__ */ (0,
|
|
2108
|
+
var import_jsx_runtime14 = __toESM(require_jsx_runtime(), 1);
|
|
2109
|
+
var HorseIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
2055
2110
|
"svg",
|
|
2056
2111
|
{
|
|
2057
2112
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2059,7 +2114,7 @@ var HorseIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
|
2059
2114
|
height: "1em",
|
|
2060
2115
|
viewBox: "0 0 34.272 30.373",
|
|
2061
2116
|
...props,
|
|
2062
|
-
children: /* @__PURE__ */ (0,
|
|
2117
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
2063
2118
|
"path",
|
|
2064
2119
|
{
|
|
2065
2120
|
fill: props?.fill ? props.fill : "#a6a7a9",
|
|
@@ -2071,8 +2126,8 @@ var HorseIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
|
2071
2126
|
var HorseIcon_default = HorseIcon;
|
|
2072
2127
|
|
|
2073
2128
|
// src/components/InstagramIcon.tsx
|
|
2074
|
-
var
|
|
2075
|
-
var InstagramIcon = (props) => /* @__PURE__ */ (0,
|
|
2129
|
+
var import_jsx_runtime15 = __toESM(require_jsx_runtime(), 1);
|
|
2130
|
+
var InstagramIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
2076
2131
|
"svg",
|
|
2077
2132
|
{
|
|
2078
2133
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2082,22 +2137,22 @@ var InstagramIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
|
2082
2137
|
viewBox: "0 0 24 24",
|
|
2083
2138
|
...props,
|
|
2084
2139
|
children: [
|
|
2085
|
-
/* @__PURE__ */ (0,
|
|
2140
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("g", { clipPath: "url(#instagram_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2086
2141
|
"path",
|
|
2087
2142
|
{
|
|
2088
2143
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
2089
2144
|
d: "M12 0C8.743 0 8.334.015 7.055.072 5.775.132 4.904.333 4.14.63c-.8.301-1.526.774-2.125 1.385A5.9 5.9 0 0 0 .63 4.14c-.297.762-.5 1.635-.558 2.91C.015 8.332 0 8.74 0 12.002c0 3.257.015 3.665.072 4.945.06 1.278.261 2.15.558 2.913a5.9 5.9 0 0 0 1.385 2.125 5.86 5.86 0 0 0 2.123 1.385c.766.297 1.636.5 2.914.558C8.332 23.985 8.74 24 12 24s3.666-.015 4.947-.072c1.277-.06 2.151-.261 2.915-.558a5.9 5.9 0 0 0 2.124-1.385 5.9 5.9 0 0 0 1.384-2.125c.296-.764.498-1.635.558-2.913.057-1.28.072-1.687.072-4.947s-.015-3.668-.072-4.948c-.06-1.277-.262-2.15-.558-2.912a5.9 5.9 0 0 0-1.385-2.125A5.9 5.9 0 0 0 19.86.63c-.765-.297-1.638-.5-2.915-.558C15.666.015 15.259 0 11.997 0h.005zm-1.075 2.163H12c3.205 0 3.584.01 4.849.069 1.17.052 1.805.249 2.228.412.56.218.96.479 1.38.899s.68.819.898 1.38c.164.422.36 1.058.412 2.228.058 1.264.07 1.643.07 4.846s-.012 3.584-.07 4.848c-.053 1.17-.249 1.805-.413 2.228-.192.52-.499.992-.898 1.378-.42.42-.819.68-1.38.897-.42.165-1.056.36-2.228.414-1.264.057-1.643.07-4.847.07s-3.586-.013-4.85-.07c-1.17-.054-1.804-.249-2.227-.414a3.7 3.7 0 0 1-1.38-.897 3.7 3.7 0 0 1-.9-1.38c-.164-.422-.36-1.058-.413-2.228-.057-1.264-.069-1.643-.069-4.849 0-3.204.012-3.582.069-4.846.054-1.17.249-1.806.414-2.23.218-.559.478-.96.899-1.38.42-.42.819-.679 1.38-.896.423-.165 1.057-.36 2.227-.414 1.107-.052 1.536-.066 3.773-.068zm7.482 1.992a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88m-6.405 1.683a6.163 6.163 0 1 0-.193 12.325 6.163 6.163 0 0 0 .193-12.325m0 2.162a4 4 0 1 1 0 8 4 4 0 0 1 0-8"
|
|
2090
2145
|
}
|
|
2091
2146
|
) }),
|
|
2092
|
-
/* @__PURE__ */ (0,
|
|
2147
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("clipPath", { id: "instagram_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { fill: props?.fill ? props.fill : "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
2093
2148
|
]
|
|
2094
2149
|
}
|
|
2095
2150
|
);
|
|
2096
2151
|
var InstagramIcon_default = InstagramIcon;
|
|
2097
2152
|
|
|
2098
2153
|
// src/components/ListIcon.tsx
|
|
2099
|
-
var
|
|
2100
|
-
var ListIcon = (props) => /* @__PURE__ */ (0,
|
|
2154
|
+
var import_jsx_runtime16 = __toESM(require_jsx_runtime(), 1);
|
|
2155
|
+
var ListIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2101
2156
|
"svg",
|
|
2102
2157
|
{
|
|
2103
2158
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2106,7 +2161,7 @@ var ListIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
|
2106
2161
|
fill: "none",
|
|
2107
2162
|
viewBox: "0 0 24 24",
|
|
2108
2163
|
...props,
|
|
2109
|
-
children: /* @__PURE__ */ (0,
|
|
2164
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2110
2165
|
"path",
|
|
2111
2166
|
{
|
|
2112
2167
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -2120,8 +2175,8 @@ var ListIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
|
2120
2175
|
var ListIcon_default = ListIcon;
|
|
2121
2176
|
|
|
2122
2177
|
// src/components/ListOlIcon.tsx
|
|
2123
|
-
var
|
|
2124
|
-
var ListOlIcon = (props) => /* @__PURE__ */ (0,
|
|
2178
|
+
var import_jsx_runtime17 = __toESM(require_jsx_runtime(), 1);
|
|
2179
|
+
var ListOlIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
2125
2180
|
"svg",
|
|
2126
2181
|
{
|
|
2127
2182
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2131,7 +2186,7 @@ var ListOlIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
|
2131
2186
|
viewBox: "0 0 24 24",
|
|
2132
2187
|
...props,
|
|
2133
2188
|
children: [
|
|
2134
|
-
/* @__PURE__ */ (0,
|
|
2189
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2135
2190
|
"path",
|
|
2136
2191
|
{
|
|
2137
2192
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -2140,7 +2195,7 @@ var ListOlIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
|
2140
2195
|
clipRule: "evenodd"
|
|
2141
2196
|
}
|
|
2142
2197
|
),
|
|
2143
|
-
/* @__PURE__ */ (0,
|
|
2198
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2144
2199
|
"path",
|
|
2145
2200
|
{
|
|
2146
2201
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -2153,8 +2208,8 @@ var ListOlIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
|
2153
2208
|
var ListOlIcon_default = ListOlIcon;
|
|
2154
2209
|
|
|
2155
2210
|
// src/components/LogoPadraoIcon.tsx
|
|
2156
|
-
var
|
|
2157
|
-
var LogoPadraoIcon = (props) => /* @__PURE__ */ (0,
|
|
2211
|
+
var import_jsx_runtime18 = __toESM(require_jsx_runtime(), 1);
|
|
2212
|
+
var LogoPadraoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
2158
2213
|
"svg",
|
|
2159
2214
|
{
|
|
2160
2215
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2164,7 +2219,7 @@ var LogoPadraoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
|
2164
2219
|
viewBox: "0 0 60 60",
|
|
2165
2220
|
...props,
|
|
2166
2221
|
children: [
|
|
2167
|
-
/* @__PURE__ */ (0,
|
|
2222
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2168
2223
|
"rect",
|
|
2169
2224
|
{
|
|
2170
2225
|
width: 59,
|
|
@@ -2176,7 +2231,7 @@ var LogoPadraoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
|
2176
2231
|
rx: 29.5
|
|
2177
2232
|
}
|
|
2178
2233
|
),
|
|
2179
|
-
/* @__PURE__ */ (0,
|
|
2234
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2180
2235
|
"path",
|
|
2181
2236
|
{
|
|
2182
2237
|
fill: props?.fill ? props.fill : "#002710",
|
|
@@ -2184,7 +2239,7 @@ var LogoPadraoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
|
2184
2239
|
d: "m19.264 24.41 1.31-.643.992 1.071-.207-1.448 1.324-.613-1.437-.25-.174-1.45-.682 1.29-1.431-.28 1.016 1.047zM22.877 26.915l-.005.032.008-.025zM15.885 24.688l.894-1.022 1.236.562-.695-1.166.914-1.004-1.323.3-.67-1.181-.121 1.354-1.331.274 1.248.532zM24.812 26.058l-.596-1.22-1.34.22.976-.945-.621-1.208 1.199.636.954-.965-.235 1.338 1.213.613-1.344.187z"
|
|
2185
2240
|
}
|
|
2186
2241
|
),
|
|
2187
|
-
/* @__PURE__ */ (0,
|
|
2242
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2188
2243
|
"path",
|
|
2189
2244
|
{
|
|
2190
2245
|
fill: props?.fill ? props.fill : "#002710",
|
|
@@ -2192,7 +2247,7 @@ var LogoPadraoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
|
2192
2247
|
d: "M13.302 34.783c-.771-.447-.697-1.08-.771-1.383-.076-.3-.298-1.834-.298-2.28 0-.448-.398-.95-.672-1.53s-.995-2.11-1.043-2.215c-.052-.105-.373-.369-.896-.132-.522.237-1.119.054-1.268.132s-.695.263-.944.29c-.25.027-.224.343-.398.448-.174.107-.672-.185-.672-.185s-.248-.13-.297-.236c-.05-.106-.05-.254-.15-.553-.148-.449.125-.492.125-.492s.422-.388.572-.52.779-.876.794-1.15c.026-.449.422-.712.598-.923.086-.106.282-.211.347-.371.066-.157 0-.367 0-.367-.273-.21 0-1.082 0-1.082h.1s0 .237.098.37c.101.132.299.58.424.448.124-.133.347.026.347.026-.198-.29.1-1.002.1-1.002h.1v.079c0 .079.05.369.1.501.049.132.447.791.447.791s.386.2.535.329.276.089.458.049c.374-.08 3.131 1.53 4.4 2.996.677.781 1.244.765 1.592.79.348.027 1.815.74 1.815.74s1.616.105 3.107-.448c1.491-.554 2.66-1.028 4.4-.344 0 0 .397.159.646.21.25.055.72.239.72.239s1.369-.185 2.238 1.767c.869 1.95 1.044 3.954.72 5.562 0 0 0-.344-.074-.527-.074-.185-.447 1.238-.596 1.475v-.527c0-.08-.375.87-.447 1.159-.075.29-.1.527-.1.527s-.024-.869.075-1.106c.098-.237-.224.42-.224.316 0-.105.024-.764.024-.949s-.199.106-.174-1.132c.026-1.24.224-2.162.026-3.033-.2-.869-.124-1.002-.124-1.002s-.025.738-.1.896c0 0-.249 1.582-.672 2.32-.423.739-.992 1.477-.795 2.057.198.58.498 1.238.498 1.45 0 .21.049.263.125.422.073.157.347.686.172 1.08-.172.396-.148 1.24-.148 1.74 0 .501.024 1.924.024 2.03s0 .21-.1.264c-.097.053-.149.184-.173.263-.026.08-.274.132-.274.317 0 .184.15.423.15.501s-.225.236-.225.236-1.167.08-1.167 0 .422-.66.422-.66 0-.184.175-.262c.172-.079.247-.212.247-.5 0-.291-.049-.345.05-.634.1-.29.027-2.558.027-2.558l-.077-.104s-.446 1.58-.472 1.872c-.024.29.076.711-.199 1.027a2.3 2.3 0 0 1-.497.448s-.124.186-.024.317c.1.132.223.317.148.395-.073.08-.248.132-.248.132s-.82.159-1.068.053c0 0 .173-.448.222-.553.05-.107.1-.264.274-.42.174-.16.348-.134.348-.372 0-.236.124-.316.299-.763.173-.45.348-1.925.348-2.109 0-.186-.348-1.054-.348-1.715V36.55s-.274-.29-.449-1.003c-.171-.71-.87-1.554-1.042-1.713-.174-.158-.274-.105-.473-.079-.199.027-.199-.079-.424-.184-.223-.105-1.143.422-1.54.713-.391.285-2.176.874-4.15 1.095l-.102.01c-2.013.21-.943.157-1.044.157 0 0 .2.767.274 1.451.075.686.225 1.344.225 1.74 0 .397-.025 1.082.048 1.213.076.132.352 1.371.352 1.371s.394.396.295.554c-.1.157-.293.184-.295.449-.004.262-.096.711 0 .79.097.079.127.157 0 .185-.127.025-.3.157-.3.157s-.225.29-.97.132c0 0 0-.21.2-.422.198-.21.198-.21.346-.289.15-.08.075-.21.174-.475.1-.264.15-.422.15-.422s-.2-.184-.2-.422c0-.237-.397-1.45-.447-1.582-.05-.131-.398-.659-.546-1.265-.15-.606-.523-1.766-.673-2.108-.148-.343-.173-.211-.173.051 0 .264-.29 1.082-.132 1.53s.14 1.317 0 1.502c-.142.186-.142.607-.142.923s.085 1.108.142 1.292.19.343 0 .5c-.192.16-.265.266-.341.343-.074.08-.173.527-.173.607 0 .078.224.21.15.264-.076.052-.299.343-.299.343s-.747.052-1.168-.027v-.106s.401-.632.61-.764.16-.264.26-.422c.098-.156.222-.554.222-.66 0-.104 0-.368.025-.447s-.073-1.476-.073-1.476-.275-.818-.25-1.424.04-1.063-.184-1.398c-.81-1.21-.585-2.45-.585-2.45"
|
|
2193
2248
|
}
|
|
2194
2249
|
),
|
|
2195
|
-
/* @__PURE__ */ (0,
|
|
2250
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2196
2251
|
"path",
|
|
2197
2252
|
{
|
|
2198
2253
|
fill: props?.fill ? props.fill : "#002710",
|
|
@@ -2200,7 +2255,7 @@ var LogoPadraoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
|
2200
2255
|
d: "M29.483 25.416c2.17 2.276 3.117 4.93 3.117 8.324a12.64 12.64 0 0 1-3.995 9.238c7.623-3.566 14.452-10.992 14.452-10.992-4.504-.582-9.693-3.395-13.574-6.57M51.437 15.85c.396 3.34.906 7.368-1.018 13.32l3.62-9.927c.731-2.106-1.753-3.239-2.602-3.393"
|
|
2201
2256
|
}
|
|
2202
2257
|
),
|
|
2203
|
-
/* @__PURE__ */ (0,
|
|
2258
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2204
2259
|
"path",
|
|
2205
2260
|
{
|
|
2206
2261
|
fill: props?.fill ? props.fill : "#002710",
|
|
@@ -2214,8 +2269,8 @@ var LogoPadraoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
|
2214
2269
|
var LogoPadraoIcon_default = LogoPadraoIcon;
|
|
2215
2270
|
|
|
2216
2271
|
// src/components/LogoSeqmIcon.tsx
|
|
2217
|
-
var
|
|
2218
|
-
var LogoSeqmIcon = (props) => /* @__PURE__ */ (0,
|
|
2272
|
+
var import_jsx_runtime19 = __toESM(require_jsx_runtime(), 1);
|
|
2273
|
+
var LogoSeqmIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
2219
2274
|
"svg",
|
|
2220
2275
|
{
|
|
2221
2276
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2225,8 +2280,8 @@ var LogoSeqmIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
|
2225
2280
|
viewBox: "0 0 110 48",
|
|
2226
2281
|
...props,
|
|
2227
2282
|
children: [
|
|
2228
|
-
/* @__PURE__ */ (0,
|
|
2229
|
-
/* @__PURE__ */ (0,
|
|
2283
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("g", { clipPath: "url(#logo-seqm_svg__a)", children: [
|
|
2284
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2230
2285
|
"path",
|
|
2231
2286
|
{
|
|
2232
2287
|
stroke: "#fff",
|
|
@@ -2236,7 +2291,7 @@ var LogoSeqmIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
|
2236
2291
|
d: "M.916 47.835h107.353"
|
|
2237
2292
|
}
|
|
2238
2293
|
),
|
|
2239
|
-
/* @__PURE__ */ (0,
|
|
2294
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2240
2295
|
"path",
|
|
2241
2296
|
{
|
|
2242
2297
|
fill: props?.fill ? props.fill : "#fff",
|
|
@@ -2244,7 +2299,7 @@ var LogoSeqmIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
|
2244
2299
|
d: "M1.291 45.394c-.114-.05-.114-.082-.114-.297 0-.38.032-.693.032-.808 0-.083.017-.116.066-.116s.049.017.049.083 0 .181.016.28c.114.561.62.776 1.126.776.734 0 1.076-.528 1.076-1.023 0-.528-.212-.841-.864-1.386l-.343-.28c-.8-.66-.979-1.138-.979-1.666 0-.825.604-1.386 1.566-1.386.294 0 .523.033.702.083.147.033.212.033.261.033s.082.016.082.05c0 .032-.033.296-.033.807 0 .116-.016.182-.049.182-.049 0-.049-.033-.065-.099 0-.099-.05-.297-.098-.38-.049-.082-.245-.412-.946-.412-.522 0-.93.33-.93.89 0 .43.195.71.93 1.288l.212.165c.897.709 1.11 1.187 1.11 1.797 0 .314-.115.891-.653 1.27-.327.231-.735.33-1.142.33a1.9 1.9 0 0 1-1.012-.181M6.348 43.596c0 .627 0 1.138.033 1.419.016.198.05.313.245.346.098.017.245.033.31.033.032 0 .049.033.049.05 0 .033-.033.05-.114.05-.376 0-.8-.017-.833-.017s-.456.016-.652.016c-.065 0-.114-.016-.114-.05 0-.016.016-.049.049-.049a1 1 0 0 0 .212-.033c.13-.033.147-.148.18-.346.032-.264.032-.776.032-1.419v-1.154c0-1.007 0-1.205-.016-1.403-.017-.214-.066-.33-.213-.346-.081-.016-.163-.016-.212-.016-.032 0-.049-.033-.049-.05 0-.033.033-.05.115-.05.212 0 .636.017.668.017s.457-.016.67-.016c.081 0 .114.016.114.05 0 .016-.033.049-.05.049-.048 0-.097 0-.162.016-.18.033-.213.132-.229.363v2.54zM7.947 45.41c-.098-.05-.098-.066-.098-.247 0-.33.033-.577.033-.693 0-.066.016-.115.049-.115.032 0 .065.016.065.082 0 .05 0 .149.016.231.114.478.604.643 1.06.643.653 0 .996-.38.996-.874 0-.462-.245-.693-.848-1.138l-.31-.231c-.718-.544-.963-.94-.963-1.402 0-.759.604-1.22 1.485-1.22.26 0 .538.032.685.082.13.033.18.033.228.033.05 0 .066 0 .066.05 0 .032-.033.247-.033.692 0 .099 0 .149-.049.149s-.049-.033-.065-.083c0-.082-.066-.247-.098-.33-.05-.082-.261-.33-.865-.33-.49 0-.88.248-.88.71 0 .412.211.66.864 1.105l.196.132c.815.56 1.093 1.006 1.093 1.567 0 .379-.147.791-.62 1.105-.278.181-.702.23-1.06.23-.278.017-.67-.016-.947-.148M13.755 43.596c0 .627 0 1.138.033 1.419.016.198.049.313.261.346.098.017.245.033.31.033.049 0 .049.033.049.05 0 .033-.033.05-.114.05-.36 0-.783-.017-.832-.017-.033 0-.49.016-.686.016-.081 0-.114-.016-.114-.05 0-.016.016-.049.05-.049.064 0 .13-.016.195-.033.13-.033.18-.165.196-.346.032-.264.032-.776.032-1.419v-2.738l-.962.017c-.425 0-.571.049-.67.214-.08.115-.08.165-.113.214-.017.05-.033.066-.066.066-.016 0-.049-.016-.049-.05 0-.065.13-.659.147-.708 0-.033.05-.116.066-.116.048 0 .114.05.293.083.196.016.44.033.522.033h2.513c.212 0 .375-.017.473-.033.098-.017.163-.033.196-.033.032 0 .032.033.032.082 0 .198-.016.66-.016.742 0 .05-.033.083-.065.083-.033 0-.05-.017-.05-.116v-.066c-.015-.198-.162-.346-.799-.363l-.832-.016zM16.758 42.458c0-1.006 0-1.204-.017-1.402-.016-.215-.049-.33-.277-.363-.05 0-.163-.017-.229-.017-.016 0-.049-.033-.049-.05 0-.032.033-.049.115-.049.31 0 .734.017.767.017h1.598c.13 0 .245-.033.31-.033.033 0 .066-.033.098-.033.017 0 .033.033.033.066 0 .05-.033.115-.049.313 0 .066-.016.347-.033.43 0 .032-.032.065-.065.065s-.049-.033-.049-.082c0-.05 0-.149-.033-.231-.048-.116-.114-.149-.473-.198-.114-.017-.88-.017-.962-.017-.033 0-.033.017-.033.066v1.765c0 .05 0 .066.033.066.081 0 .962 0 1.11-.016.162-.017.26-.017.325-.1.05-.049.082-.082.098-.082.017 0 .033.017.033.05s-.033.148-.049.363c-.016.132-.033.379-.033.428 0 .05-.016.116-.065.116-.032 0-.049-.017-.049-.066 0-.066 0-.132-.032-.215-.017-.099-.082-.165-.343-.198-.18-.016-.897-.032-1.011-.032q-.05 0-.05.049v1.649c.017.43.131.528.8.528.18 0 .49 0 .669-.066.18-.082.26-.198.31-.445.016-.083.033-.099.065-.099.033 0 .05.05.05.099 0 .05-.05.495-.099.627-.049.165-.114.165-.375.165-.506 0-.881-.017-1.158-.017-.278-.016-.457-.016-.555-.016h-.294c-.13 0-.277.016-.391.016-.066 0-.115-.016-.115-.05 0-.016.017-.049.05-.049a1 1 0 0 0 .212-.033c.13-.016.146-.148.179-.346.033-.264.033-.775.033-1.419zM25.747 44.668c.016.231.065.578.343.676.195.066.359.066.424.066q.05 0 .049.05c0 .033-.066.066-.13.066-.148 0-.898 0-1.143-.033-.163-.017-.196-.033-.196-.066 0-.017.017-.05.05-.05.032 0 .048-.115.032-.23l-.326-3.316h-.017l-1.615 3.332c-.13.28-.18.346-.228.346-.05 0-.098-.066-.229-.297-.18-.33-.62-1.154-.783-1.517-.196-.412-.734-1.517-.848-1.781h-.033l-.26 2.952v.33c0 .099.064.165.162.181a1 1 0 0 0 .261.033c.017 0 .05.017.05.05 0 .05-.05.066-.115.066-.245 0-.57-.017-.62-.017-.065 0-.375.017-.555.017-.065 0-.114-.017-.114-.066 0-.017.033-.05.066-.05.048 0 .097 0 .195-.016.212-.033.229-.28.261-.528l.49-4.255c0-.066.032-.116.081-.116.05 0 .098.017.13.099l2.024 4.041 1.941-4.041c.033-.066.066-.116.115-.116s.081.05.098.182z"
|
|
2245
2300
|
}
|
|
2246
2301
|
),
|
|
2247
|
-
/* @__PURE__ */ (0,
|
|
2302
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2248
2303
|
"path",
|
|
2249
2304
|
{
|
|
2250
2305
|
fill: props?.fill ? props.fill : "#fff",
|
|
@@ -2252,7 +2307,7 @@ var LogoSeqmIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
|
2252
2307
|
d: "M28.733 40.693c.081-.215.114-.248.163-.248.065 0 .098.1.163.231.114.28 1.19 2.97 1.599 3.959.244.577.424.66.57.71.099.032.197.032.262.032.033 0 .081.017.081.05s-.081.05-.146.05c-.098 0-.588 0-1.06-.017-.131 0-.23 0-.23-.05 0-.033.017-.033.05-.05.032-.016.114-.065.065-.18l-.62-1.469c-.016-.033-.016-.033-.065-.033H28.03c-.033 0-.049.017-.065.05l-.376 1.039c-.065.165-.097.33-.097.429 0 .132.114.181.228.181h.065c.05 0 .066.017.066.05q0 .05-.098.05c-.164 0-.522-.017-.604-.017-.065 0-.408.016-.669.016-.082 0-.13-.016-.13-.05 0-.032.032-.049.065-.049.049 0 .147 0 .196-.016.31-.033.424-.264.554-.594zm.734 2.721c.032 0 .032-.016.016-.05l-.652-1.78c-.033-.1-.082-.1-.115 0l-.62 1.78c0 .034 0 .05.017.05zM34.54 42.458c0-1.006 0-1.204-.016-1.402-.016-.215-.049-.33-.277-.363-.049 0-.163-.017-.228-.017-.017 0-.05-.032-.05-.049 0-.033.033-.05.115-.05.31 0 .734.017.767.017.081 0 .505-.017.897-.017.669 0 1.893-.066 2.676.743.326.33.652.874.652 1.65 0 .824-.342 1.45-.718 1.83-.293.297-.88.759-2.023.759-.293 0-.652-.017-.93-.033l-.538-.033h-.277c-.13 0-.294.016-.408.016-.065 0-.114-.016-.114-.05 0-.016.016-.049.049-.049a1 1 0 0 0 .212-.032c.13-.034.146-.149.18-.347.032-.264.032-.775.032-1.419zm.62.693v1.418c0 .165.017.396.082.462.082.116.327.264 1.11.264.62 0 1.158-.214 1.566-.594.343-.33.522-.956.522-1.55 0-.825-.359-1.353-.636-1.633-.637-.644-1.37-.726-2.17-.726-.13 0-.343.016-.408.05-.065.016-.082.049-.082.131v2.178zM40.43 42.458c0-1.006 0-1.204-.015-1.402-.017-.215-.05-.33-.278-.363-.049 0-.163-.017-.228-.017-.017 0-.05-.033-.05-.05 0-.032.033-.049.115-.049.31 0 .734.017.767.017h1.599c.13 0 .244-.033.31-.033.032 0 .065-.033.098-.033.016 0 .032.033.032.066 0 .05-.032.115-.049.313 0 .066-.016.347-.032.43 0 .032-.033.065-.066.065-.032 0-.049-.033-.049-.082 0-.05 0-.149-.032-.231-.05-.116-.114-.149-.473-.198-.114-.017-.881-.017-.963-.017-.032 0-.032.017-.032.066v1.765c0 .05 0 .066.032.066.082 0 .963 0 1.11-.016.163-.017.26-.017.326-.1.049-.049.081-.082.098-.082.016 0 .032.017.032.05s-.032.148-.049.363c-.016.132-.032.379-.032.428 0 .05-.017.116-.066.116-.032 0-.048-.017-.048-.066 0-.066 0-.132-.033-.215-.016-.099-.082-.165-.343-.198-.18-.016-.897-.032-1.011-.032q-.05 0-.05.049v1.649c.017.43.131.528.8.528.18 0 .49 0 .67-.066.179-.082.26-.198.31-.445.016-.083.032-.099.065-.099.032 0 .048.05.048.099 0 .05-.048.495-.097.627-.05.165-.115.165-.376.165-.505 0-.88-.017-1.158-.017-.277-.016-.457-.016-.555-.016h-.293c-.131 0-.278.016-.392.016-.065 0-.114-.016-.114-.05 0-.016.016-.049.049-.049a1 1 0 0 0 .212-.033c.13-.016.147-.148.18-.346.032-.264.032-.775.032-1.419zM46.892 41.93c0-1.204 0-1.419-.017-1.65-.016-.263-.081-.379-.326-.445-.065-.016-.196-.016-.261-.016-.033 0-.065-.017-.065-.05 0-.05.032-.066.114-.066h.538l.31.017h1.73c.147 0 .26-.017.326-.033.033 0 .065-.033.114-.033.017 0 .033.033.033.066 0 .05-.033.148-.066.363 0 .082-.016.412-.032.511 0 .033-.016.082-.05.082-.048 0-.064-.032-.064-.099 0-.049 0-.18-.05-.28-.048-.115-.13-.214-.538-.264-.13-.016-.962-.016-1.044-.016-.032 0-.049.016-.049.082v2.112c0 .049 0 .082.05.082.097 0 1.027 0 1.206-.017.18-.016.294-.033.36-.115.048-.066.081-.099.114-.099.016 0 .032.017.032.066 0 .05-.032.181-.065.429a8 8 0 0 0-.033.495c0 .066 0 .148-.049.148-.032 0-.048-.033-.048-.066 0-.082 0-.148-.033-.247-.033-.116-.098-.231-.392-.264a29 29 0 0 0-1.077-.033q-.048 0-.049.05v1.996c.017.527.131.626.882.626.195 0 .538 0 .734-.082.195-.083.293-.231.342-.545.017-.082.033-.115.066-.115.049 0 .049.066.049.115 0 .066-.066.578-.098.742-.05.198-.114.198-.408.198-.571 0-.98-.016-1.29-.016-.293-.017-.472-.017-.586-.017h-.31c-.147 0-.327.017-.44.017-.082 0-.115-.017-.115-.066 0-.017.016-.05.065-.05.065 0 .163-.016.228-.032.147-.034.196-.198.213-.43.032-.33.032-.923.032-1.665V41.93zM50.595 45.41c-.098-.05-.098-.066-.098-.247 0-.33.033-.577.033-.693 0-.066.016-.115.049-.115.032 0 .065.016.065.082 0 .05 0 .149.016.231.114.478.604.643 1.06.643.653 0 .996-.38.996-.874 0-.462-.245-.693-.849-1.138l-.31-.231c-.717-.544-.962-.94-.962-1.402 0-.759.604-1.22 1.485-1.22.26 0 .538.032.685.082.13.033.18.033.228.033.05 0 .066 0 .066.05 0 .032-.033.247-.033.692 0 .099 0 .149-.049.149s-.049-.033-.065-.083c0-.082-.066-.247-.098-.33-.05-.082-.261-.33-.865-.33-.49 0-.88.248-.88.71 0 .412.211.66.864 1.105l.196.132c.815.56 1.093 1.006 1.093 1.567 0 .379-.147.791-.62 1.105-.278.181-.702.23-1.06.23-.278.017-.67-.016-.947-.148M54.804 42.458c0-1.006 0-1.204-.016-1.402-.016-.214-.049-.33-.277-.363-.05 0-.163-.016-.229-.016-.016 0-.049-.033-.049-.05 0-.033.033-.05.115-.05.31 0 .718.017.766.017.147 0 .653-.016.947-.016.864 0 1.158.264 1.272.362.147.133.327.43.327.776 0 .94-.702 1.55-1.73 1.55h-.196c-.032 0-.065-.033-.065-.066 0-.05.033-.066.18-.066.718 0 1.24-.462 1.24-1.055 0-.215-.017-.644-.376-.99-.342-.346-.75-.313-.897-.313-.114 0-.31.033-.375.05-.033 0-.05.048-.05.114v2.656c0 .627 0 1.138.033 1.419.017.198.066.313.261.346.098.017.229.033.294.033.033 0 .05.033.05.05 0 .033-.034.05-.115.05-.36 0-.8-.017-.832-.017-.017 0-.457.016-.653.016-.065 0-.114-.016-.114-.05 0-.016.016-.049.049-.049a1 1 0 0 0 .212-.033c.13-.033.147-.148.18-.346.032-.264.032-.776.032-1.419v-1.138zM60.955 40.479c1.501 0 2.643.923 2.643 2.44 0 1.452-1.077 2.656-2.676 2.656-1.827 0-2.61-1.385-2.61-2.556 0-1.056.8-2.54 2.643-2.54m.147 4.833c.604 0 1.81-.33 1.81-2.21 0-1.568-.945-2.393-1.99-2.393-1.109 0-1.925.71-1.925 2.128 0 1.518.898 2.474 2.105 2.474M64.805 42.458c0-1.006 0-1.204-.016-1.402-.016-.214-.049-.33-.277-.363-.05 0-.163-.016-.229-.016-.016 0-.049-.033-.049-.05 0-.033.033-.05.115-.05.31 0 .75.017.783.017.065 0 .636-.016.832-.016.424 0 .897.033 1.24.28.163.116.457.429.457.89 0 .48-.196.958-.816 1.485.538.693 1.011 1.287 1.403 1.683.359.363.57.429.75.445.13.017.196.017.229.017.032 0 .065.033.065.05 0 .032-.033.049-.163.049h-.424c-.376 0-.539-.033-.718-.132-.294-.149-.539-.462-.914-.957-.277-.346-.57-.775-.718-.957-.032-.033-.049-.033-.098-.033l-.848-.016q-.05 0-.049.05v.148c0 .627 0 1.138.033 1.402.016.198.065.313.26.346.099.017.23.033.294.033.05 0 .05.033.05.05 0 .033-.033.05-.115.05-.359 0-.783-.017-.816-.017 0 0-.456.016-.652.016-.065 0-.114-.016-.114-.05 0-.016.016-.049.049-.049a1 1 0 0 0 .212-.033c.13-.033.146-.148.18-.346.032-.264.032-.776.032-1.419v-1.105zm.571.544a.09.09 0 0 0 .05.083c.097.05.44.099.734.099.163 0 .342 0 .505-.116.229-.148.408-.494.408-.99 0-.808-.44-1.286-1.158-1.286-.196 0-.408.017-.473.033-.033.017-.05.033-.05.082v2.095zM70.826 43.596c0 .627 0 1.138.032 1.419.016.198.05.313.261.346.098.017.245.033.31.033.05 0 .05.033.05.05 0 .033-.033.05-.115.05-.359 0-.783-.017-.832-.017-.033 0-.49.016-.685.016-.082 0-.114-.016-.114-.05 0-.016.016-.049.048-.049a.8.8 0 0 0 .196-.033c.13-.033.18-.165.196-.346.033-.264.033-.776.033-1.419v-2.738l-.963.017c-.424 0-.571.049-.669.214-.081.115-.081.165-.114.214-.016.05-.033.066-.065.066-.017 0-.05-.016-.05-.05 0-.065.131-.659.148-.708 0-.033.049-.116.065-.116.049 0 .114.05.293.083.196.016.441.033.523.033h2.512c.212 0 .375-.017.473-.033.098-.017.163-.033.196-.033s.033.033.033.082c0 .198-.017.66-.017.742 0 .05-.032.083-.065.083s-.049-.017-.049-.116v-.066c-.016-.198-.163-.346-.8-.363l-.831-.016zM73.811 42.458c0-1.006 0-1.204-.016-1.402-.016-.215-.049-.33-.277-.363-.05 0-.164-.017-.229-.017-.016 0-.049-.033-.049-.05 0-.032.033-.049.114-.049.31 0 .735.017.767.017h1.6c.13 0 .244-.033.31-.033.032 0 .064-.033.097-.033.016 0 .033.033.033.066 0 .05-.033.115-.05.313 0 .066-.016.347-.032.43 0 .032-.033.065-.065.065-.033 0-.05-.033-.05-.082 0-.05 0-.149-.032-.231-.049-.116-.114-.149-.473-.198-.114-.017-.88-.017-.963-.017-.032 0-.032.017-.032.066v1.765c0 .05 0 .066.032.066.082 0 .963 0 1.11-.016.163-.017.261-.017.326-.1.05-.049.082-.082.098-.082s.033.017.033.05-.033.148-.05.363c-.016.132-.032.379-.032.428 0 .05-.016.116-.065.116-.033 0-.049-.017-.049-.066 0-.066 0-.132-.033-.215-.016-.099-.081-.165-.342-.198-.18-.016-.898-.032-1.012-.032q-.048 0-.049.049v1.649c.017.43.13.528.8.528.18 0 .49 0 .669-.066.18-.082.26-.198.31-.445.016-.083.032-.099.065-.099.032 0 .049.05.049.099 0 .05-.05.495-.098.627-.049.165-.114.165-.375.165-.506 0-.881-.017-1.159-.017-.277-.016-.456-.016-.554-.016h-.294c-.13 0-.277.016-.392.016-.065 0-.114-.016-.114-.05 0-.016.016-.049.05-.049a1 1 0 0 0 .211-.033c.13-.016.147-.148.18-.346.032-.264.032-.775.032-1.419zM77.254 45.41c-.098-.05-.098-.066-.098-.247 0-.33.033-.577.033-.693 0-.066.016-.115.049-.115.032 0 .065.016.065.082 0 .05 0 .149.016.231.115.478.604.643 1.06.643.653 0 .996-.38.996-.874 0-.462-.245-.693-.848-1.138l-.31-.231c-.718-.544-.963-.94-.963-1.402 0-.759.604-1.22 1.485-1.22.26 0 .538.032.685.082.13.033.18.033.228.033.05 0 .066 0 .066.05 0 .032-.033.247-.033.692 0 .099 0 .149-.049.149s-.049-.033-.065-.083c0-.082-.065-.247-.098-.33-.049-.082-.261-.33-.865-.33-.49 0-.88.248-.88.71 0 .412.211.66.864 1.105l.196.132c.816.56 1.093 1.006 1.093 1.567 0 .379-.147.791-.62 1.105-.277.181-.702.23-1.06.23-.294.017-.67-.016-.947-.148M85.15 39.885c.098-.248.115-.297.163-.297.05 0 .082.033.164.28.114.297 1.305 3.464 1.762 4.619.277.676.49.808.652.858.114.033.229.05.31.05.05 0 .082 0 .082.049s-.065.066-.147.066c-.114 0-.669 0-1.191-.017-.147 0-.228 0-.228-.05q0-.048.049-.049c.048-.016.097-.082.048-.214l-.701-1.88c-.016-.034-.033-.05-.065-.05h-1.632c-.032 0-.065.016-.081.066l-.457 1.352c-.066.198-.114.38-.114.512 0 .148.163.214.293.214h.082c.049 0 .081.017.081.05 0 .049-.049.066-.114.066-.18 0-.506-.017-.587-.017-.082 0-.506.017-.865.017-.098 0-.147-.017-.147-.066 0-.033.033-.05.066-.05.049 0 .163 0 .212-.016.342-.05.505-.33.636-.726zm.8 3.068c.032 0 .032-.017.032-.05l-.717-2.078c-.033-.116-.082-.116-.115 0l-.669 2.078c-.016.033 0 .05.017.05zM89.196 41.93c0-1.204 0-1.419-.016-1.65-.016-.264-.082-.379-.326-.445-.066-.016-.196-.016-.261-.016-.033 0-.066-.017-.066-.05 0-.05.033-.066.115-.066.342 0 .815.017.864.017.18 0 .473-.017.832-.017 1.24 0 1.518.759 1.518 1.155 0 .627-.36 1.006-.718 1.385.554.182 1.305.726 1.305 1.617 0 .825-.636 1.666-1.942 1.666-.081 0-.326-.017-.538-.017-.212-.016-.424-.016-.457-.016h-.31c-.147 0-.326.016-.44.016-.082 0-.114-.016-.114-.066 0-.016.016-.05.065-.05.065 0 .163-.016.228-.032.147-.033.196-.198.212-.429.033-.33.033-.924.033-1.666V41.93zm.604.165c0 .05.016.066.049.082.049 0 .18.033.457.033.424 0 .538-.016.685-.198.163-.181.277-.462.277-.775 0-.643-.277-1.32-1.028-1.32-.081 0-.244 0-.358.033-.066.017-.098.033-.098.083v2.062zm0 .808v1.65c.016.379.016.478.261.593.212.1.538.116.669.116.408 0 1.077-.215 1.077-1.089 0-.462-.147-1.121-.734-1.534-.261-.181-.441-.198-.637-.214-.098-.017-.473-.017-.587-.017q-.05 0-.05.05zM97.517 45.345c-.277.148-.783.264-1.19.264-2.105 0-2.97-1.634-2.97-3.019 0-1.237.897-3.002 2.986-3.002 1.713 0 2.985 1.088 2.985 2.87 0 1.353-.848 2.243-1.338 2.573l1.55.808c1.664.875 2.807.908 3.198.908a4.3 4.3 0 0 0 1.501-.297c.049-.017.082-.033.114-.033q.05 0 .049.05c0 .032-.016.049-.065.082a5.8 5.8 0 0 1-2.398.528c-.914 0-1.893-.33-3.133-1.023zm-1.011-.033c.685 0 2.088-.396 2.088-2.623 0-1.847-1.11-2.837-2.3-2.837-1.273 0-2.22.841-2.22 2.524 0 1.781 1.061 2.936 2.432 2.936"
|
|
2253
2308
|
}
|
|
2254
2309
|
),
|
|
2255
|
-
/* @__PURE__ */ (0,
|
|
2310
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2256
2311
|
"path",
|
|
2257
2312
|
{
|
|
2258
2313
|
fill: props?.fill ? props.fill : "#fff",
|
|
@@ -2260,7 +2315,7 @@ var LogoSeqmIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
|
2260
2315
|
d: "M106.67 44.52c.033.28.082.71.408.808.212.066.424.066.489.066.033 0 .066 0 .066.033 0 .05-.066.066-.163.066-.164 0-.979 0-1.273-.033-.179-.016-.212-.033-.212-.082q0-.05.049-.05c.032 0 .049-.132.032-.28l-.358-3.976h-.017l-1.86 3.992c-.163.33-.179.413-.244.413-.049 0-.098-.083-.229-.347a89 89 0 0 1-.881-1.781 99 99 0 0 1-.995-2.194h-.065l-.31 3.563v.396a.23.23 0 0 0 .195.23c.131.034.245.034.294.034.033 0 .065.016.065.033 0 .05-.049.066-.13.066-.277 0-.653-.017-.702-.017-.065 0-.44.017-.636.017-.082 0-.131-.017-.131-.066 0-.017.033-.033.082-.033.065 0 .114 0 .228-.017.245-.05.278-.346.31-.643l.539-4.998c0-.083.032-.132.081-.132s.082.033.115.115l2.316 4.817 2.236-4.817c.032-.066.065-.115.114-.115s.081.066.098.214z"
|
|
2261
2316
|
}
|
|
2262
2317
|
),
|
|
2263
|
-
/* @__PURE__ */ (0,
|
|
2318
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2264
2319
|
"path",
|
|
2265
2320
|
{
|
|
2266
2321
|
stroke: "#fff",
|
|
@@ -2270,7 +2325,7 @@ var LogoSeqmIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
|
2270
2325
|
d: "M.916 38.103h41.277M56.387 38.103h51.882"
|
|
2271
2326
|
}
|
|
2272
2327
|
),
|
|
2273
|
-
/* @__PURE__ */ (0,
|
|
2328
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2274
2329
|
"path",
|
|
2275
2330
|
{
|
|
2276
2331
|
fill: props?.fill ? props.fill : "#fff",
|
|
@@ -2278,21 +2333,21 @@ var LogoSeqmIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
|
2278
2333
|
d: "M3.38 32.973c-.392-.198-.409-.297-.409-1.055 0-1.386.114-2.491.13-2.937.033-.297.082-.445.213-.445.163 0 .196.082.196.297 0 .247 0 .643.081 1.023.408 2.045 2.219 2.82 4.063 2.82 2.626 0 3.915-1.913 3.915-3.678 0-1.914-.8-3.019-3.149-4.982l-1.24-1.022c-2.904-2.408-3.556-4.124-3.556-6.02 0-2.97 2.186-4.982 5.677-4.982 1.077 0 1.86.115 2.546.28.522.116.734.132.962.132.212 0 .277.05.277.198 0 .132-.114 1.056-.114 2.936 0 .445-.049.643-.195.643-.164 0-.196-.132-.212-.363-.033-.33-.196-1.088-.36-1.385s-.897-1.468-3.426-1.468c-1.892 0-3.377 1.188-3.377 3.216 0 1.584.718 2.574 3.345 4.652l.767.61c3.23 2.573 3.997 4.289 3.997 6.516 0 1.138-.44 3.25-2.333 4.602-1.175.825-2.66 1.17-4.144 1.17-1.273 0-2.546-.197-3.655-.758M19.107 20.42c0-4.32 0-5.096-.049-5.987-.049-.94-.277-1.385-1.175-1.583-.212-.05-.685-.083-.93-.083-.114 0-.212-.05-.212-.165 0-.165.13-.214.44-.214.637 0 1.371 0 1.975.033l1.126.05c.195 0 5.645 0 6.28-.034.523-.033.963-.082 1.176-.132.13-.033.244-.132.391-.132.082 0 .114.116.114.248 0 .198-.13.528-.212 1.303-.032.28-.081 1.5-.13 1.83-.033.133-.082.298-.196.298-.163 0-.212-.132-.212-.363 0-.198-.033-.66-.163-.99-.196-.445-.473-.775-1.942-.94-.473-.05-3.459-.083-3.752-.083-.114 0-.163.083-.163.28v7.654c0 .198.032.28.163.28.359 0 3.72 0 4.356-.049.652-.05 1.044-.115 1.289-.395.196-.215.293-.363.408-.363.081 0 .13.05.13.214 0 .165-.13.643-.212 1.55-.049.561-.114 1.584-.114 1.782 0 .214 0 .528-.196.528-.13 0-.196-.116-.196-.248 0-.28 0-.56-.114-.907-.114-.396-.359-.857-1.42-.973-.733-.082-3.458-.132-3.915-.132-.13 0-.196.082-.196.198v2.441c0 .94-.032 4.157 0 4.734.082 1.914.49 2.276 3.182 2.276.718 0 1.925 0 2.626-.296.718-.297 1.045-.858 1.24-1.996.05-.297.115-.413.245-.413.163 0 .163.215.163.413 0 .214-.212 2.111-.359 2.688-.195.726-.408.726-1.484.726-2.056 0-3.557-.05-4.634-.082-1.077-.05-1.73-.083-2.137-.083-.049 0-.522 0-1.093.033-.555 0-1.175.05-1.583.05-.293 0-.44-.05-.44-.215 0-.082.049-.165.212-.165.245 0 .57-.05.816-.115.554-.116.685-.726.799-1.518.13-1.17.13-3.348.13-6.02V20.42z"
|
|
2279
2334
|
}
|
|
2280
2335
|
),
|
|
2281
|
-
/* @__PURE__ */ (0,
|
|
2336
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2282
2337
|
"path",
|
|
2283
2338
|
{
|
|
2284
2339
|
fill: props?.fill ? props.fill : "#009640",
|
|
2285
2340
|
d: "M41.279 32.445c-4.373 0-8.892-3.58-8.892-10.474 0-5.674 3.41-9.04 8.027-9.04 4.372 0 8.892 3.547 8.892 10.475 0 5.674-3.443 9.04-8.027 9.04M54.46 36.42c-.897.396-1.974.61-3.295.61-2.35 0-5.352-1.731-7.897-4.222 5.123-1.27 8.517-6.07 8.517-10.474 0-5.279-4.357-10.128-10.67-10.128-6.608 0-11.225 5.674-11.225 10.788 0 5.262 4.225 10.029 10.458 10.16 0 0 1.517-.033 2.12.644.816.874 5.972 6.103 11.992 3.002.196-.1.05-.412 0-.38"
|
|
2286
2341
|
}
|
|
2287
2342
|
),
|
|
2288
|
-
/* @__PURE__ */ (0,
|
|
2343
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2289
2344
|
"path",
|
|
2290
2345
|
{
|
|
2291
2346
|
fill: props?.fill ? props.fill : "#FFCD00",
|
|
2292
2347
|
d: "M48.164 38.697c.391.066.815.082 1.207.082 2.773 0 3.964-.924 5.172-1.616-6.38 3.266-11.551-1.864-12.367-2.738-.604-.66-2.496-.644-2.496-.644 2.626 2.409 4.715 3.761 6.689 4.42 0 .017 1.158.397 1.794.496"
|
|
2293
2348
|
}
|
|
2294
2349
|
),
|
|
2295
|
-
/* @__PURE__ */ (0,
|
|
2350
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2296
2351
|
"path",
|
|
2297
2352
|
{
|
|
2298
2353
|
fill: props?.fill ? props.fill : "#fff",
|
|
@@ -2300,21 +2355,21 @@ var LogoSeqmIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
|
2300
2355
|
d: "M75.345 29.625c.098.957.294 2.441 1.436 2.82.8.265 1.517.265 1.81.265.131 0 .23.066.23.197 0 .166-.262.264-.572.264-.636 0-3.752-.032-4.764-.132-.669-.066-.8-.165-.8-.296 0-.1.066-.198.197-.231.163-.033.195-.446.13-.957l-1.338-13.856h-.065L64.87 31.604c-.571 1.188-.734 1.452-.98 1.452-.26 0-.407-.264-.945-1.254-.735-1.352-2.578-4.85-3.263-6.317-.833-1.732-3.084-6.318-3.557-7.44h-.13l-1.077 12.322c-.033.413-.033.924-.033 1.386 0 .412.261.676.669.775.473.132.88.165 1.077.165.098 0 .228.1.228.198 0 .198-.196.264-.506.264-1.044 0-2.382-.099-2.61-.099-.261 0-1.583.099-2.35.099-.293 0-.473-.066-.473-.264 0-.099.13-.198.294-.198.228 0 .408-.033.832-.099.914-.165.946-1.155 1.077-2.177l2.023-17.815c.033-.296.163-.478.31-.478.196 0 .408.099.571.412l8.435 16.94 8.125-16.907c.13-.264.26-.445.44-.445s.343.231.408.742zM68.313 10.359l1.55-.759 1.175 1.27-.245-1.715 1.55-.742-1.697-.297-.212-1.732-.783 1.534-1.697-.33 1.175 1.237zM64.365 10.656l1.06-1.22 1.452.675-.816-1.385 1.06-1.188-1.55.363L64.79 6.5l-.147 1.584-1.566.33 1.452.643zM74.806 12.272l-.701-1.435-1.566.264L73.68 9.98l-.734-1.435 1.386.758 1.11-1.121-.261 1.583 1.419.742-1.566.215z"
|
|
2301
2356
|
}
|
|
2302
2357
|
),
|
|
2303
|
-
/* @__PURE__ */ (0,
|
|
2358
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2304
2359
|
"path",
|
|
2305
2360
|
{
|
|
2306
2361
|
fill: props?.fill ? props.fill : "#FFCD00",
|
|
2307
2362
|
d: "M80.288 11.332c2.529 2.672 3.638 5.79 3.638 9.781 0 4.29-1.778 8.149-4.633 10.838l-.033.033c8.892-4.19 16.837-12.949 16.837-12.949-5.22-.66-11.273-3.975-15.809-7.703"
|
|
2308
2363
|
}
|
|
2309
2364
|
),
|
|
2310
|
-
/* @__PURE__ */ (0,
|
|
2365
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2311
2366
|
"path",
|
|
2312
2367
|
{
|
|
2313
2368
|
fill: props?.fill ? props.fill : "#006B2D",
|
|
2314
2369
|
d: "M105.903.083c.441 3.909 1.061 8.66-1.174 15.67l4.209-11.662c.832-2.491-2.056-3.827-3.035-4.008"
|
|
2315
2370
|
}
|
|
2316
2371
|
),
|
|
2317
|
-
/* @__PURE__ */ (0,
|
|
2372
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2318
2373
|
"path",
|
|
2319
2374
|
{
|
|
2320
2375
|
fill: props?.fill ? props.fill : "#009640",
|
|
@@ -2322,15 +2377,15 @@ var LogoSeqmIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
|
2322
2377
|
}
|
|
2323
2378
|
)
|
|
2324
2379
|
] }),
|
|
2325
|
-
/* @__PURE__ */ (0,
|
|
2380
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("clipPath", { id: "logo-seqm_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { fill: props?.fill ? props.fill : "#fff", d: "M.916 0h108.169v48H.915z" }) }) })
|
|
2326
2381
|
]
|
|
2327
2382
|
}
|
|
2328
2383
|
);
|
|
2329
2384
|
var LogoSeqmIcon_default = LogoSeqmIcon;
|
|
2330
2385
|
|
|
2331
2386
|
// src/components/LogoSeqmMobileIcon.tsx
|
|
2332
|
-
var
|
|
2333
|
-
var LogoSeqmMobileIcon = (props) => /* @__PURE__ */ (0,
|
|
2387
|
+
var import_jsx_runtime20 = __toESM(require_jsx_runtime(), 1);
|
|
2388
|
+
var LogoSeqmMobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
2334
2389
|
"svg",
|
|
2335
2390
|
{
|
|
2336
2391
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2340,7 +2395,7 @@ var LogoSeqmMobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx
|
|
|
2340
2395
|
viewBox: "0 0 56 40",
|
|
2341
2396
|
...props,
|
|
2342
2397
|
children: [
|
|
2343
|
-
/* @__PURE__ */ (0,
|
|
2398
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2344
2399
|
"path",
|
|
2345
2400
|
{
|
|
2346
2401
|
fill: props?.fill ? props.fill : "#fff",
|
|
@@ -2348,7 +2403,7 @@ var LogoSeqmMobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx
|
|
|
2348
2403
|
d: "m15.175 13.68 1.482-.729 1.123 1.212-.234-1.637 1.497-.694-1.625-.283-.197-1.64-.772 1.46-1.619-.317 1.15 1.184zM19.263 16.512l-.005.036.009-.029zM11.353 13.994l1.012-1.156 1.397.636-.786-1.32 1.034-1.134-1.496.34-.757-1.337-.138 1.531-1.506.31 1.412.602zM21.452 15.543l-.675-1.38-1.515.248 1.103-1.068-.702-1.365 1.356.718 1.08-1.09-.266 1.512 1.372.693-1.52.212z"
|
|
2349
2404
|
}
|
|
2350
2405
|
),
|
|
2351
|
-
/* @__PURE__ */ (0,
|
|
2406
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2352
2407
|
"path",
|
|
2353
2408
|
{
|
|
2354
2409
|
fill: props?.fill ? props.fill : "#fff",
|
|
@@ -2356,21 +2411,21 @@ var LogoSeqmMobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx
|
|
|
2356
2411
|
d: "M8.43 25.409c-.871-.506-.787-1.223-.871-1.565-.085-.34-.337-2.073-.337-2.579s-.45-1.073-.76-1.73c-.31-.655-1.126-2.384-1.18-2.503-.058-.119-.422-.417-1.013-.15-.591.269-1.266.061-1.435.15s-.786.297-1.068.328c-.282.03-.254.387-.45.507-.197.12-.76-.21-.76-.21s-.28-.147-.337-.267-.056-.287-.17-.625c-.166-.508.143-.557.143-.557s.477-.438.646-.588c.169-.148.882-.99.898-1.3.03-.508.479-.805.678-1.043.096-.12.318-.24.391-.42.075-.177 0-.415 0-.415-.308-.238 0-1.223 0-1.223h.114s0 .268.111.418c.114.15.338.655.48.507.14-.151.392.029.392.029-.224-.328.112-1.134.112-1.134h.114v.09c0 .09.056.417.112.567s.507.894.507.894.437.226.605.372c.169.146.313.1.518.055.423-.09 3.543 1.731 4.977 3.388.767.884 1.408.865 1.801.894.395.03 2.054.835 2.054.835s1.828.12 3.515-.506 3.008-1.162 4.977-.388c0 0 .45.18.732.238.281.06.814.269.814.269s1.548-.209 2.531 1.998c.983 2.205 1.182 4.471.815 6.29 0 0 0-.389-.083-.596-.084-.21-.506 1.4-.675 1.668v-.596c0-.09-.424.983-.506 1.31-.084.328-.113.596-.113.596s-.027-.982.085-1.25c.11-.269-.254.476-.254.356 0-.117.028-.863.028-1.072s-.225.12-.197-1.28c.03-1.403.254-2.445.03-3.43-.227-.982-.141-1.132-.141-1.132s-.028.834-.114 1.013c0 0-.28 1.788-.76 2.623-.478.835-1.122 1.67-.898 2.325s.563 1.4.563 1.64c0 .238.055.298.14.478.084.177.394.775.196 1.222-.195.447-.168 1.401-.168 1.967s.027 2.175.027 2.295 0 .238-.113.298c-.11.06-.168.208-.195.298-.03.09-.31.149-.31.358 0 .208.17.478.17.567s-.255.267-.255.267-1.32.09-1.32 0 .477-.746.477-.746 0-.209.198-.297c.195-.09.28-.24.28-.566 0-.329-.056-.39.057-.716.112-.328.03-2.892.03-2.892l-.087-.119s-.505 1.787-.535 2.117c-.027.327.086.805-.224 1.161-.31.36-.563.508-.563.508s-.14.21-.028.358c.114.149.253.358.17.446-.084.09-.282.15-.282.15s-.928.18-1.209.06c0 0 .196-.507.252-.625.057-.121.113-.299.31-.477.196-.18.394-.15.394-.42 0-.267.14-.356.337-.863.197-.508.394-2.176.394-2.384 0-.21-.394-1.192-.394-1.939v-1.31s-.31-.329-.507-1.135c-.194-.804-.984-1.758-1.18-1.937-.195-.178-.31-.118-.534-.09-.225.031-.225-.088-.48-.207-.251-.12-1.292.477-1.741.806-.444.322-2.462.989-4.695 1.238l-.116.012c-2.277.238-1.067.177-1.18.177 0 0 .225.867.31 1.641.084.776.254 1.52.254 1.968s-.03 1.222.054 1.371c.086.15.398 1.55.398 1.55s.445.448.334.626c-.113.178-.331.21-.334.508-.004.297-.11.805 0 .894s.144.177 0 .208c-.144.03-.34.178-.34.178s-.254.329-1.096.15c0 0 0-.238.225-.477.224-.237.224-.237.392-.327.169-.09.084-.238.197-.538.113-.298.17-.477.17-.477s-.226-.208-.226-.477c0-.268-.45-1.639-.506-1.788s-.45-.746-.619-1.43c-.169-.687-.59-1.998-.76-2.385-.168-.388-.196-.239-.196.058 0 .298-.328 1.224-.15 1.73.178.507.16 1.49 0 1.698-.16.21-.16.687-.16 1.044 0 .358.096 1.253.16 1.461.066.208.216.388 0 .566-.216.18-.3.3-.386.387-.083.09-.195.596-.195.687 0 .087.253.237.17.298-.086.059-.338.388-.338.388s-.845.059-1.321-.03v-.12s.453-.715.69-.865c.236-.148.18-.298.293-.476.111-.177.251-.627.251-.746s0-.417.029-.506-.083-1.67-.083-1.67-.31-.924-.282-1.61c.028-.685.045-1.201-.209-1.58-.915-1.368-.662-2.77-.662-2.77"
|
|
2357
2412
|
}
|
|
2358
2413
|
),
|
|
2359
|
-
/* @__PURE__ */ (0,
|
|
2414
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2360
2415
|
"path",
|
|
2361
2416
|
{
|
|
2362
2417
|
fill: props?.fill ? props.fill : "#FFCD00",
|
|
2363
2418
|
d: "M26.737 14.817c2.454 2.573 3.527 5.575 3.527 9.412a14.3 14.3 0 0 1-4.52 10.446c8.624-4.032 16.348-12.429 16.348-12.429-5.095-.659-10.965-3.84-15.355-7.429"
|
|
2364
2419
|
}
|
|
2365
2420
|
),
|
|
2366
|
-
/* @__PURE__ */ (0,
|
|
2421
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2367
2422
|
"path",
|
|
2368
2423
|
{
|
|
2369
2424
|
fill: props?.fill ? props.fill : "#006B2D",
|
|
2370
2425
|
d: "M51.573 4c.448 3.777 1.025 8.332-1.151 15.062l4.096-11.225c.826-2.381-1.984-3.663-2.945-3.837"
|
|
2371
2426
|
}
|
|
2372
2427
|
),
|
|
2373
|
-
/* @__PURE__ */ (0,
|
|
2428
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2374
2429
|
"path",
|
|
2375
2430
|
{
|
|
2376
2431
|
fill: props?.fill ? props.fill : "#009640",
|
|
@@ -2383,8 +2438,8 @@ var LogoSeqmMobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx
|
|
|
2383
2438
|
var LogoSeqmMobileIcon_default = LogoSeqmMobileIcon;
|
|
2384
2439
|
|
|
2385
2440
|
// src/components/PencilSquareIcon.tsx
|
|
2386
|
-
var
|
|
2387
|
-
var PencilSquareIcon = (props) => /* @__PURE__ */ (0,
|
|
2441
|
+
var import_jsx_runtime21 = __toESM(require_jsx_runtime(), 1);
|
|
2442
|
+
var PencilSquareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
2388
2443
|
"svg",
|
|
2389
2444
|
{
|
|
2390
2445
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2394,14 +2449,14 @@ var PencilSquareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)
|
|
|
2394
2449
|
viewBox: "0 0 24 24",
|
|
2395
2450
|
...props,
|
|
2396
2451
|
children: [
|
|
2397
|
-
/* @__PURE__ */ (0,
|
|
2452
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2398
2453
|
"path",
|
|
2399
2454
|
{
|
|
2400
2455
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
2401
2456
|
d: "M23.253 2.91a.75.75 0 0 1 0 1.059L21.69 5.535l-3-3L20.253.969a.75.75 0 0 1 1.06 0l1.94 1.94m-2.625 3.684-3-3-10.22 10.22a.75.75 0 0 0-.18.295l-1.208 3.62a.375.375 0 0 0 .474.475l3.62-1.208a.75.75 0 0 0 .295-.18l10.22-10.22z"
|
|
2402
2457
|
}
|
|
2403
2458
|
),
|
|
2404
|
-
/* @__PURE__ */ (0,
|
|
2459
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2405
2460
|
"path",
|
|
2406
2461
|
{
|
|
2407
2462
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -2416,8 +2471,8 @@ var PencilSquareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)
|
|
|
2416
2471
|
var PencilSquareIcon_default = PencilSquareIcon;
|
|
2417
2472
|
|
|
2418
2473
|
// src/components/PersonCircleIcon.tsx
|
|
2419
|
-
var
|
|
2420
|
-
var PersonCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
2474
|
+
var import_jsx_runtime22 = __toESM(require_jsx_runtime(), 1);
|
|
2475
|
+
var PersonCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
2421
2476
|
"svg",
|
|
2422
2477
|
{
|
|
2423
2478
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2427,9 +2482,9 @@ var PersonCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)
|
|
|
2427
2482
|
viewBox: "0 0 24 24",
|
|
2428
2483
|
...props,
|
|
2429
2484
|
children: [
|
|
2430
|
-
/* @__PURE__ */ (0,
|
|
2431
|
-
/* @__PURE__ */ (0,
|
|
2432
|
-
/* @__PURE__ */ (0,
|
|
2485
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("g", { fill: "#1E1E1E", clipPath: "url(#person-circle_svg__a)", children: [
|
|
2486
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M16.5 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0" }),
|
|
2487
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
2433
2488
|
"path",
|
|
2434
2489
|
{
|
|
2435
2490
|
fillRule: "evenodd",
|
|
@@ -2438,15 +2493,15 @@ var PersonCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)
|
|
|
2438
2493
|
}
|
|
2439
2494
|
)
|
|
2440
2495
|
] }),
|
|
2441
|
-
/* @__PURE__ */ (0,
|
|
2496
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("clipPath", { id: "person-circle_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { fill: props?.fill ? props.fill : "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
2442
2497
|
]
|
|
2443
2498
|
}
|
|
2444
2499
|
);
|
|
2445
2500
|
var PersonCircleIcon_default = PersonCircleIcon;
|
|
2446
2501
|
|
|
2447
2502
|
// src/components/PlusIcon.tsx
|
|
2448
|
-
var
|
|
2449
|
-
var PlusIcon = (props) => /* @__PURE__ */ (0,
|
|
2503
|
+
var import_jsx_runtime23 = __toESM(require_jsx_runtime(), 1);
|
|
2504
|
+
var PlusIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2450
2505
|
"svg",
|
|
2451
2506
|
{
|
|
2452
2507
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2455,7 +2510,7 @@ var PlusIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
|
2455
2510
|
fill: "none",
|
|
2456
2511
|
viewBox: "0 0 24 24",
|
|
2457
2512
|
...props,
|
|
2458
|
-
children: /* @__PURE__ */ (0,
|
|
2513
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2459
2514
|
"path",
|
|
2460
2515
|
{
|
|
2461
2516
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -2467,8 +2522,8 @@ var PlusIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
|
2467
2522
|
var PlusIcon_default = PlusIcon;
|
|
2468
2523
|
|
|
2469
2524
|
// src/components/PrinterIcon.tsx
|
|
2470
|
-
var
|
|
2471
|
-
var PrinterIcon = (props) => /* @__PURE__ */ (0,
|
|
2525
|
+
var import_jsx_runtime24 = __toESM(require_jsx_runtime(), 1);
|
|
2526
|
+
var PrinterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
2472
2527
|
"svg",
|
|
2473
2528
|
{
|
|
2474
2529
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2478,8 +2533,8 @@ var PrinterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
|
2478
2533
|
viewBox: "0 0 24 24",
|
|
2479
2534
|
...props,
|
|
2480
2535
|
children: [
|
|
2481
|
-
/* @__PURE__ */ (0,
|
|
2482
|
-
/* @__PURE__ */ (0,
|
|
2536
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { fill: props?.fill ? props.fill : "#1E1E1E", d: "M3.75 12a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" }),
|
|
2537
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2483
2538
|
"path",
|
|
2484
2539
|
{
|
|
2485
2540
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -2492,8 +2547,8 @@ var PrinterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
|
2492
2547
|
var PrinterIcon_default = PrinterIcon;
|
|
2493
2548
|
|
|
2494
2549
|
// src/components/SearchIcon.tsx
|
|
2495
|
-
var
|
|
2496
|
-
var SearchIcon = (props) => /* @__PURE__ */ (0,
|
|
2550
|
+
var import_jsx_runtime25 = __toESM(require_jsx_runtime(), 1);
|
|
2551
|
+
var SearchIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
2497
2552
|
"svg",
|
|
2498
2553
|
{
|
|
2499
2554
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2503,22 +2558,22 @@ var SearchIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
|
2503
2558
|
viewBox: "0 0 24 24",
|
|
2504
2559
|
...props,
|
|
2505
2560
|
children: [
|
|
2506
|
-
/* @__PURE__ */ (0,
|
|
2561
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("g", { clipPath: "url(#search_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2507
2562
|
"path",
|
|
2508
2563
|
{
|
|
2509
2564
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
2510
2565
|
d: "M17.613 15.515a9.75 9.75 0 1 0-2.095 2.097h-.002q.067.09.147.173l5.775 5.775a1.5 1.5 0 0 0 2.123-2.121l-5.775-5.775a1.5 1.5 0 0 0-.173-.15zM18 9.75a8.25 8.25 0 1 1-16.5 0 8.25 8.25 0 0 1 16.5 0"
|
|
2511
2566
|
}
|
|
2512
2567
|
) }),
|
|
2513
|
-
/* @__PURE__ */ (0,
|
|
2568
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("clipPath", { id: "search_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { fill: props?.fill ? props.fill : "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
2514
2569
|
]
|
|
2515
2570
|
}
|
|
2516
2571
|
);
|
|
2517
2572
|
var SearchIcon_default = SearchIcon;
|
|
2518
2573
|
|
|
2519
2574
|
// src/components/SpinnerRingResizeIcon.tsx
|
|
2520
|
-
var
|
|
2521
|
-
var SpinnerRingResizeIcon = (props) => /* @__PURE__ */ (0,
|
|
2575
|
+
var import_jsx_runtime26 = __toESM(require_jsx_runtime(), 1);
|
|
2576
|
+
var SpinnerRingResizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
2522
2577
|
"svg",
|
|
2523
2578
|
{
|
|
2524
2579
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2528,15 +2583,15 @@ var SpinnerRingResizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.
|
|
|
2528
2583
|
viewBox: "0 0 24 24",
|
|
2529
2584
|
...props,
|
|
2530
2585
|
children: [
|
|
2531
|
-
/* @__PURE__ */ (0,
|
|
2532
|
-
/* @__PURE__ */ (0,
|
|
2586
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("style", { children: "@keyframes spinner_zKoa{to{transform:rotate(360deg)}}@keyframes spinner_YpZS{0%{stroke-dasharray:0 150;stroke-dashoffset:0}47.5%{stroke-dasharray:42 150;stroke-dashoffset:-16}95%,to{stroke-dasharray:42 150;stroke-dashoffset:-59}}" }),
|
|
2587
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2533
2588
|
"g",
|
|
2534
2589
|
{
|
|
2535
2590
|
style: {
|
|
2536
2591
|
transformOrigin: "center",
|
|
2537
2592
|
animation: "spinner_zKoa 2s linear infinite"
|
|
2538
2593
|
},
|
|
2539
|
-
children: /* @__PURE__ */ (0,
|
|
2594
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2540
2595
|
"circle",
|
|
2541
2596
|
{
|
|
2542
2597
|
cx: 12,
|
|
@@ -2559,8 +2614,8 @@ var SpinnerRingResizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.
|
|
|
2559
2614
|
var SpinnerRingResizeIcon_default = SpinnerRingResizeIcon;
|
|
2560
2615
|
|
|
2561
2616
|
// src/components/StarIcon.tsx
|
|
2562
|
-
var
|
|
2563
|
-
var StarIcon = (props) => /* @__PURE__ */ (0,
|
|
2617
|
+
var import_jsx_runtime27 = __toESM(require_jsx_runtime(), 1);
|
|
2618
|
+
var StarIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
2564
2619
|
"svg",
|
|
2565
2620
|
{
|
|
2566
2621
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2570,22 +2625,22 @@ var StarIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
|
2570
2625
|
viewBox: "0 0 24 24",
|
|
2571
2626
|
...props,
|
|
2572
2627
|
children: [
|
|
2573
|
-
/* @__PURE__ */ (0,
|
|
2628
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("g", { clipPath: "url(#star_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2574
2629
|
"path",
|
|
2575
2630
|
{
|
|
2576
2631
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
2577
2632
|
d: "M4.299 22.275c-.117.666.54 1.187 1.119.89l6.585-3.384 6.583 3.384c.58.297 1.236-.224 1.12-.889l-1.246-7.094 5.283-5.034c.495-.471.24-1.332-.423-1.425l-7.347-1.044-3.276-6.491a.77.77 0 0 0-1.39 0L8.03 7.68.684 8.724c-.662.093-.918.954-.425 1.425l5.285 5.034-1.245 7.095zm7.357-4.15-5.529 2.84 1.041-5.935a.85.85 0 0 0-.244-.757l-4.36-4.155 6.079-.864a.79.79 0 0 0 .59-.432L12 3.335l2.77 5.487a.79.79 0 0 0 .59.432l6.078.862-4.36 4.155a.85.85 0 0 0-.244.759l1.041 5.935-5.529-2.84a.76.76 0 0 0-.691 0z"
|
|
2578
2633
|
}
|
|
2579
2634
|
) }),
|
|
2580
|
-
/* @__PURE__ */ (0,
|
|
2635
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("clipPath", { id: "star_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { fill: props?.fill ? props.fill : "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
2581
2636
|
]
|
|
2582
2637
|
}
|
|
2583
2638
|
);
|
|
2584
2639
|
var StarIcon_default = StarIcon;
|
|
2585
2640
|
|
|
2586
2641
|
// src/components/XIcon.tsx
|
|
2587
|
-
var
|
|
2588
|
-
var XIcon = (props) => /* @__PURE__ */ (0,
|
|
2642
|
+
var import_jsx_runtime28 = __toESM(require_jsx_runtime(), 1);
|
|
2643
|
+
var XIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2589
2644
|
"svg",
|
|
2590
2645
|
{
|
|
2591
2646
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2594,7 +2649,7 @@ var XIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
|
2594
2649
|
fill: "none",
|
|
2595
2650
|
viewBox: "0 0 24 24",
|
|
2596
2651
|
...props,
|
|
2597
|
-
children: /* @__PURE__ */ (0,
|
|
2652
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2598
2653
|
"path",
|
|
2599
2654
|
{
|
|
2600
2655
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -2606,8 +2661,8 @@ var XIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
|
2606
2661
|
var XIcon_default = XIcon;
|
|
2607
2662
|
|
|
2608
2663
|
// src/components/YoutubeIcon.tsx
|
|
2609
|
-
var
|
|
2610
|
-
var YoutubeIcon = (props) => /* @__PURE__ */ (0,
|
|
2664
|
+
var import_jsx_runtime29 = __toESM(require_jsx_runtime(), 1);
|
|
2665
|
+
var YoutubeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2611
2666
|
"svg",
|
|
2612
2667
|
{
|
|
2613
2668
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2616,7 +2671,7 @@ var YoutubeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
|
2616
2671
|
fill: "none",
|
|
2617
2672
|
viewBox: "0 0 24 24",
|
|
2618
2673
|
...props,
|
|
2619
|
-
children: /* @__PURE__ */ (0,
|
|
2674
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2620
2675
|
"path",
|
|
2621
2676
|
{
|
|
2622
2677
|
fill: props?.fill ? props.fill : "#1E1E1E",
|
|
@@ -2630,6 +2685,7 @@ var YoutubeIcon_default = YoutubeIcon;
|
|
|
2630
2685
|
0 && (module.exports = {
|
|
2631
2686
|
ArrowDownShortIcon,
|
|
2632
2687
|
AwardFillIcon,
|
|
2688
|
+
BarChartIcon,
|
|
2633
2689
|
BoxArrowInLeftIcon,
|
|
2634
2690
|
BroadcastIcon,
|
|
2635
2691
|
CaretDownFillIcon,
|
|
@@ -2637,6 +2693,7 @@ var YoutubeIcon_default = YoutubeIcon;
|
|
|
2637
2693
|
CaretRightFillIcon,
|
|
2638
2694
|
CircleIcon,
|
|
2639
2695
|
FacebookIcon,
|
|
2696
|
+
FileEarmarkTextIcon,
|
|
2640
2697
|
FileTextIcon,
|
|
2641
2698
|
FilterIcon,
|
|
2642
2699
|
HorseIcon,
|