@snapcall/design-system 1.10.0 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +53 -2
- package/dist/index.d.ts +53 -2
- package/dist/index.js +941 -557
- package/dist/index.mjs +914 -542
- package/dist/tailwind.css +1 -1
- package/package.json +2 -1
package/dist/index.mjs
CHANGED
|
@@ -142,7 +142,8 @@ var buttonVariants = cva(
|
|
|
142
142
|
secondary: "bg-gray-50 text-gray-1000 hover:bg-gray-100 active:bg-gray-500 focus-visible:ring-gray-1000",
|
|
143
143
|
tertiary: "bg-gray-50 text-blue-700 hover:bg-blue-100 active:bg-blue-200 focus-visible:ring-blue-700",
|
|
144
144
|
outline: "bg-white ring-1 ring-offset-0 ring-gray-200 text-gray-1000 hover:bg-gray-50 active:bg-gray-200 focus-visible:ring-gray-1000",
|
|
145
|
-
outlineBlue: "bg-transparent ring-1 ring-offset-0 ring-blue-700 text-blue-700 hover:bg-blue-50 active:bg-blue-200 focus-visible:ring-blue-700",
|
|
145
|
+
outlineBlue: "bg-transparent ring-1 ring-inset ring-offset-0 ring-blue-700 text-blue-700 hover:bg-blue-50 active:bg-blue-200 focus-visible:ring-blue-700 ",
|
|
146
|
+
outlineWhite: "bg-transparent ring-1 ring-inset ring-offset-0 ring-white text-white hover:bg-blue-50 hover:text-blue-700 active:bg-blue-200 active:text-blue-700 focus-visible:ring-blue-700",
|
|
146
147
|
destructive: "bg-red-700 text-white hover:bg-red-800 active:bg-red-900 focus-visible:ring-red-1000",
|
|
147
148
|
ghostBlue: "bg-transparent text-blue-700 hover:bg-blue-100 active:bg-blue-200 focus-visible:ring-blue-700",
|
|
148
149
|
ghostRed: "bg-transparent text-red-700 hover:bg-red-100 active:bg-red-200 focus-visible:ring-red-700",
|
|
@@ -1854,13 +1855,87 @@ var ExpandIcon = forwardRef35(
|
|
|
1854
1855
|
}
|
|
1855
1856
|
);
|
|
1856
1857
|
|
|
1857
|
-
// src/icons/
|
|
1858
|
+
// src/icons/eye.tsx
|
|
1858
1859
|
import { forwardRef as forwardRef36 } from "react";
|
|
1859
1860
|
import { jsx as jsx38, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1860
|
-
var
|
|
1861
|
+
var EyeIcon = forwardRef36(function EyeIcon2(_a, ref) {
|
|
1862
|
+
var _b = _a, { size = 24, className = "text-gray-1000" } = _b, other = __objRest(_b, ["size", "className"]);
|
|
1863
|
+
return /* @__PURE__ */ jsxs22(
|
|
1864
|
+
"svg",
|
|
1865
|
+
__spreadProps(__spreadValues({
|
|
1866
|
+
ref,
|
|
1867
|
+
width: size,
|
|
1868
|
+
height: size,
|
|
1869
|
+
viewBox: "0 0 16 16",
|
|
1870
|
+
fill: "none",
|
|
1871
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1872
|
+
className
|
|
1873
|
+
}, other), {
|
|
1874
|
+
children: [
|
|
1875
|
+
/* @__PURE__ */ jsx38(
|
|
1876
|
+
"path",
|
|
1877
|
+
{
|
|
1878
|
+
d: "M1.61342 8.47549C1.52262 8.33173 1.47723 8.25985 1.45182 8.14898C1.43273 8.06571 1.43273 7.93437 1.45182 7.8511C1.47723 7.74023 1.52262 7.66835 1.61341 7.52459C2.36369 6.3366 4.59693 3.33337 8.00027 3.33337C11.4036 3.33337 13.6369 6.3366 14.3871 7.52459C14.4779 7.66835 14.5233 7.74023 14.5487 7.8511C14.5678 7.93437 14.5678 8.06571 14.5487 8.14898C14.5233 8.25985 14.4779 8.33173 14.3871 8.47549C13.6369 9.66348 11.4036 12.6667 8.00027 12.6667C4.59693 12.6667 2.36369 9.66348 1.61342 8.47549Z",
|
|
1879
|
+
stroke: "currentColor",
|
|
1880
|
+
strokeWidth: "1.4",
|
|
1881
|
+
strokeLinecap: "round",
|
|
1882
|
+
strokeLinejoin: "round"
|
|
1883
|
+
}
|
|
1884
|
+
),
|
|
1885
|
+
/* @__PURE__ */ jsx38(
|
|
1886
|
+
"path",
|
|
1887
|
+
{
|
|
1888
|
+
d: "M8.00027 10C9.10484 10 10.0003 9.10461 10.0003 8.00004C10.0003 6.89547 9.10484 6.00004 8.00027 6.00004C6.8957 6.00004 6.00027 6.89547 6.00027 8.00004C6.00027 9.10461 6.8957 10 8.00027 10Z",
|
|
1889
|
+
stroke: "currentColor",
|
|
1890
|
+
strokeWidth: "1.4",
|
|
1891
|
+
strokeLinecap: "round",
|
|
1892
|
+
strokeLinejoin: "round"
|
|
1893
|
+
}
|
|
1894
|
+
)
|
|
1895
|
+
]
|
|
1896
|
+
})
|
|
1897
|
+
);
|
|
1898
|
+
});
|
|
1899
|
+
|
|
1900
|
+
// src/icons/eyeOff.tsx
|
|
1901
|
+
import { forwardRef as forwardRef37 } from "react";
|
|
1902
|
+
import { jsx as jsx39 } from "react/jsx-runtime";
|
|
1903
|
+
var EyeOffIcon = forwardRef37(
|
|
1904
|
+
function EyeOffIcon2(_a, ref) {
|
|
1905
|
+
var _b = _a, { size = 24, className = "text-gray-1000" } = _b, other = __objRest(_b, ["size", "className"]);
|
|
1906
|
+
return /* @__PURE__ */ jsx39(
|
|
1907
|
+
"svg",
|
|
1908
|
+
__spreadProps(__spreadValues({
|
|
1909
|
+
ref,
|
|
1910
|
+
width: size,
|
|
1911
|
+
height: size,
|
|
1912
|
+
viewBox: "0 0 16 16",
|
|
1913
|
+
fill: "none",
|
|
1914
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1915
|
+
className
|
|
1916
|
+
}, other), {
|
|
1917
|
+
children: /* @__PURE__ */ jsx39(
|
|
1918
|
+
"path",
|
|
1919
|
+
{
|
|
1920
|
+
d: "M7.16196 3.39488C7.4329 3.35482 7.7124 3.33333 8.00028 3.33333C11.4036 3.33333 13.6369 6.33656 14.3871 7.52455C14.4779 7.66833 14.5233 7.74023 14.5488 7.85112C14.5678 7.93439 14.5678 8.06578 14.5487 8.14905C14.5233 8.25993 14.4776 8.3323 14.3861 8.47705C14.1862 8.79343 13.8814 9.23807 13.4777 9.7203M4.48288 4.47669C3.0415 5.45447 2.06297 6.81292 1.61407 7.52352C1.52286 7.66791 1.47725 7.74011 1.45183 7.85099C1.43273 7.93426 1.43272 8.06563 1.45181 8.14891C1.47722 8.25979 1.52262 8.33168 1.61342 8.47545C2.36369 9.66344 4.59694 12.6667 8.00028 12.6667C9.37255 12.6667 10.5546 12.1784 11.5259 11.5177M2.00028 2L14.0003 14M6.58606 6.58579C6.22413 6.94772 6.00028 7.44772 6.00028 8C6.00028 9.10457 6.89571 10 8.00028 10C8.55256 10 9.05256 9.77614 9.41449 9.41421",
|
|
1921
|
+
stroke: "currentColor",
|
|
1922
|
+
strokeWidth: "1.4",
|
|
1923
|
+
strokeLinecap: "round",
|
|
1924
|
+
strokeLinejoin: "round"
|
|
1925
|
+
}
|
|
1926
|
+
)
|
|
1927
|
+
})
|
|
1928
|
+
);
|
|
1929
|
+
}
|
|
1930
|
+
);
|
|
1931
|
+
|
|
1932
|
+
// src/icons/fileQuestion.tsx
|
|
1933
|
+
import { forwardRef as forwardRef38 } from "react";
|
|
1934
|
+
import { jsx as jsx40, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1935
|
+
var FileQuestionIcon = forwardRef38(
|
|
1861
1936
|
function FileQuestionIcon2(_a, ref) {
|
|
1862
1937
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1863
|
-
return /* @__PURE__ */
|
|
1938
|
+
return /* @__PURE__ */ jsxs23(
|
|
1864
1939
|
"svg",
|
|
1865
1940
|
__spreadProps(__spreadValues({
|
|
1866
1941
|
ref,
|
|
@@ -1872,7 +1947,7 @@ var FileQuestionIcon = forwardRef36(
|
|
|
1872
1947
|
className
|
|
1873
1948
|
}, other), {
|
|
1874
1949
|
children: [
|
|
1875
|
-
duotone && /* @__PURE__ */
|
|
1950
|
+
duotone && /* @__PURE__ */ jsx40(
|
|
1876
1951
|
"path",
|
|
1877
1952
|
{
|
|
1878
1953
|
opacity: "0.12",
|
|
@@ -1880,7 +1955,7 @@ var FileQuestionIcon = forwardRef36(
|
|
|
1880
1955
|
fill: "currentColor"
|
|
1881
1956
|
}
|
|
1882
1957
|
),
|
|
1883
|
-
/* @__PURE__ */
|
|
1958
|
+
/* @__PURE__ */ jsx40(
|
|
1884
1959
|
"path",
|
|
1885
1960
|
{
|
|
1886
1961
|
d: "M20 9.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H14M14 11H8M10 15H8M16 7H8M16.5 15.0022C16.6762 14.5014 17.024 14.079 17.4817 13.81C17.9395 13.5409 18.4777 13.4426 19.001 13.5324C19.5243 13.6221 19.999 13.8942 20.3409 14.3004C20.6829 14.7066 20.87 15.2207 20.8692 15.7517C20.8692 17.2506 18.6209 18 18.6209 18M18.6499 21H18.6599",
|
|
@@ -1897,12 +1972,12 @@ var FileQuestionIcon = forwardRef36(
|
|
|
1897
1972
|
);
|
|
1898
1973
|
|
|
1899
1974
|
// src/icons/filterLines.tsx
|
|
1900
|
-
import { forwardRef as
|
|
1901
|
-
import { jsx as
|
|
1902
|
-
var FilterLinesIcon =
|
|
1975
|
+
import { forwardRef as forwardRef39 } from "react";
|
|
1976
|
+
import { jsx as jsx41 } from "react/jsx-runtime";
|
|
1977
|
+
var FilterLinesIcon = forwardRef39(
|
|
1903
1978
|
function FilterLinesIcon2(_a, ref) {
|
|
1904
1979
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1905
|
-
return /* @__PURE__ */
|
|
1980
|
+
return /* @__PURE__ */ jsx41(
|
|
1906
1981
|
"svg",
|
|
1907
1982
|
__spreadProps(__spreadValues({
|
|
1908
1983
|
ref,
|
|
@@ -1913,7 +1988,7 @@ var FilterLinesIcon = forwardRef37(
|
|
|
1913
1988
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1914
1989
|
className
|
|
1915
1990
|
}, other), {
|
|
1916
|
-
children: /* @__PURE__ */
|
|
1991
|
+
children: /* @__PURE__ */ jsx41(
|
|
1917
1992
|
"path",
|
|
1918
1993
|
{
|
|
1919
1994
|
d: "M6 12H18M3 6H21M9 18H15",
|
|
@@ -1929,12 +2004,12 @@ var FilterLinesIcon = forwardRef37(
|
|
|
1929
2004
|
);
|
|
1930
2005
|
|
|
1931
2006
|
// src/icons/flipBackward.tsx
|
|
1932
|
-
import { forwardRef as
|
|
1933
|
-
import { jsx as
|
|
1934
|
-
var FlipBackwardIcon =
|
|
2007
|
+
import { forwardRef as forwardRef40 } from "react";
|
|
2008
|
+
import { jsx as jsx42 } from "react/jsx-runtime";
|
|
2009
|
+
var FlipBackwardIcon = forwardRef40(
|
|
1935
2010
|
function FlipBackwardIcon2(_a, ref) {
|
|
1936
2011
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1937
|
-
return /* @__PURE__ */
|
|
2012
|
+
return /* @__PURE__ */ jsx42(
|
|
1938
2013
|
"svg",
|
|
1939
2014
|
__spreadProps(__spreadValues({
|
|
1940
2015
|
ref,
|
|
@@ -1945,7 +2020,7 @@ var FlipBackwardIcon = forwardRef38(
|
|
|
1945
2020
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1946
2021
|
className
|
|
1947
2022
|
}, other), {
|
|
1948
|
-
children: /* @__PURE__ */
|
|
2023
|
+
children: /* @__PURE__ */ jsx42(
|
|
1949
2024
|
"path",
|
|
1950
2025
|
{
|
|
1951
2026
|
d: "M3 9H16.5C18.9853 9 21 11.0147 21 13.5C21 15.9853 18.9853 18 16.5 18H12M3 9L7 5M3 9L7 13",
|
|
@@ -1961,12 +2036,12 @@ var FlipBackwardIcon = forwardRef38(
|
|
|
1961
2036
|
);
|
|
1962
2037
|
|
|
1963
2038
|
// src/icons/flipForward.tsx
|
|
1964
|
-
import { forwardRef as
|
|
1965
|
-
import { jsx as
|
|
1966
|
-
var FlipForwardIcon =
|
|
2039
|
+
import { forwardRef as forwardRef41 } from "react";
|
|
2040
|
+
import { jsx as jsx43 } from "react/jsx-runtime";
|
|
2041
|
+
var FlipForwardIcon = forwardRef41(
|
|
1967
2042
|
function FlipForwardIcon2(_a, ref) {
|
|
1968
2043
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1969
|
-
return /* @__PURE__ */
|
|
2044
|
+
return /* @__PURE__ */ jsx43(
|
|
1970
2045
|
"svg",
|
|
1971
2046
|
__spreadProps(__spreadValues({
|
|
1972
2047
|
ref,
|
|
@@ -1977,7 +2052,7 @@ var FlipForwardIcon = forwardRef39(
|
|
|
1977
2052
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1978
2053
|
className
|
|
1979
2054
|
}, other), {
|
|
1980
|
-
children: /* @__PURE__ */
|
|
2055
|
+
children: /* @__PURE__ */ jsx43(
|
|
1981
2056
|
"path",
|
|
1982
2057
|
{
|
|
1983
2058
|
d: "M21 9H7.5C5.01472 9 3 11.0147 3 13.5C3 15.9853 5.01472 18 7.5 18H12M21 9L17 5M21 9L17 13",
|
|
@@ -1993,12 +2068,12 @@ var FlipForwardIcon = forwardRef39(
|
|
|
1993
2068
|
);
|
|
1994
2069
|
|
|
1995
2070
|
// src/icons/helpCircle.tsx
|
|
1996
|
-
import { forwardRef as
|
|
1997
|
-
import { jsx as
|
|
1998
|
-
var HelpCircleIcon =
|
|
2071
|
+
import { forwardRef as forwardRef42 } from "react";
|
|
2072
|
+
import { jsx as jsx44, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
2073
|
+
var HelpCircleIcon = forwardRef42(
|
|
1999
2074
|
function HelpCircleIcon2(_a, ref) {
|
|
2000
2075
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2001
|
-
return /* @__PURE__ */
|
|
2076
|
+
return /* @__PURE__ */ jsxs24(
|
|
2002
2077
|
"svg",
|
|
2003
2078
|
__spreadProps(__spreadValues({
|
|
2004
2079
|
ref,
|
|
@@ -2010,7 +2085,7 @@ var HelpCircleIcon = forwardRef40(
|
|
|
2010
2085
|
className
|
|
2011
2086
|
}, other), {
|
|
2012
2087
|
children: [
|
|
2013
|
-
duotone && /* @__PURE__ */
|
|
2088
|
+
duotone && /* @__PURE__ */ jsx44(
|
|
2014
2089
|
"path",
|
|
2015
2090
|
{
|
|
2016
2091
|
opacity: "0.12",
|
|
@@ -2018,7 +2093,7 @@ var HelpCircleIcon = forwardRef40(
|
|
|
2018
2093
|
fill: "currentColor"
|
|
2019
2094
|
}
|
|
2020
2095
|
),
|
|
2021
|
-
/* @__PURE__ */
|
|
2096
|
+
/* @__PURE__ */ jsx44(
|
|
2022
2097
|
"path",
|
|
2023
2098
|
{
|
|
2024
2099
|
d: "M9.09 9C9.3251 8.33167 9.78915 7.76811 10.4 7.40913C11.0108 7.05016 11.7289 6.91894 12.4272 7.03871C13.1255 7.15849 13.7588 7.52152 14.2151 8.06353C14.6713 8.60553 14.9211 9.29152 14.92 10C14.92 12 11.92 13 11.92 13M12 17H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -2035,11 +2110,11 @@ var HelpCircleIcon = forwardRef40(
|
|
|
2035
2110
|
);
|
|
2036
2111
|
|
|
2037
2112
|
// src/icons/home.tsx
|
|
2038
|
-
import { forwardRef as
|
|
2039
|
-
import { jsx as
|
|
2040
|
-
var HomeIcon =
|
|
2113
|
+
import { forwardRef as forwardRef43 } from "react";
|
|
2114
|
+
import { jsx as jsx45, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
2115
|
+
var HomeIcon = forwardRef43(function HomeIcon2(_a, ref) {
|
|
2041
2116
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2042
|
-
return /* @__PURE__ */
|
|
2117
|
+
return /* @__PURE__ */ jsxs25(
|
|
2043
2118
|
"svg",
|
|
2044
2119
|
__spreadProps(__spreadValues({
|
|
2045
2120
|
ref,
|
|
@@ -2051,8 +2126,8 @@ var HomeIcon = forwardRef41(function HomeIcon2(_a, ref) {
|
|
|
2051
2126
|
className
|
|
2052
2127
|
}, other), {
|
|
2053
2128
|
children: [
|
|
2054
|
-
duotone && /* @__PURE__ */
|
|
2055
|
-
/* @__PURE__ */
|
|
2129
|
+
duotone && /* @__PURE__ */ jsx45("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
|
|
2130
|
+
/* @__PURE__ */ jsx45(
|
|
2056
2131
|
"path",
|
|
2057
2132
|
{
|
|
2058
2133
|
d: "M9 21V13.6C9 13.0399 9 12.7599 9.10899 12.546C9.20487 12.3578 9.35785 12.2049 9.54601 12.109C9.75992 12 10.0399 12 10.6 12H13.4C13.9601 12 14.2401 12 14.454 12.109C14.6422 12.2049 14.7951 12.3578 14.891 12.546C15 12.7599 15 13.0399 15 13.6V21M11.0177 2.764L4.23539 8.03912C3.78202 8.39175 3.55534 8.56806 3.39203 8.78886C3.24737 8.98444 3.1396 9.20478 3.07403 9.43905C3 9.70352 3 9.9907 3 10.5651V17.8C3 18.9201 3 19.4801 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.07989 21 6.2 21H17.8C18.9201 21 19.4802 21 19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908C21 19.4801 21 18.9201 21 17.8V10.5651C21 9.9907 21 9.70352 20.926 9.43905C20.8604 9.20478 20.7526 8.98444 20.608 8.78886C20.4447 8.56806 20.218 8.39175 19.7646 8.03913L12.9823 2.764C12.631 2.49075 12.4553 2.35412 12.2613 2.3016C12.0902 2.25526 11.9098 2.25526 11.7387 2.3016C11.5447 2.35412 11.369 2.49075 11.0177 2.764Z",
|
|
@@ -2068,12 +2143,12 @@ var HomeIcon = forwardRef41(function HomeIcon2(_a, ref) {
|
|
|
2068
2143
|
});
|
|
2069
2144
|
|
|
2070
2145
|
// src/icons/image.tsx
|
|
2071
|
-
import { forwardRef as
|
|
2072
|
-
import { jsx as
|
|
2073
|
-
var ImageIcon =
|
|
2146
|
+
import { forwardRef as forwardRef44 } from "react";
|
|
2147
|
+
import { jsx as jsx46, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
2148
|
+
var ImageIcon = forwardRef44(
|
|
2074
2149
|
function ImageIcon2(_a, ref) {
|
|
2075
2150
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2076
|
-
return /* @__PURE__ */
|
|
2151
|
+
return /* @__PURE__ */ jsxs26(
|
|
2077
2152
|
"svg",
|
|
2078
2153
|
__spreadProps(__spreadValues({
|
|
2079
2154
|
ref,
|
|
@@ -2085,15 +2160,15 @@ var ImageIcon = forwardRef42(
|
|
|
2085
2160
|
className
|
|
2086
2161
|
}, other), {
|
|
2087
2162
|
children: [
|
|
2088
|
-
duotone && /* @__PURE__ */
|
|
2089
|
-
/* @__PURE__ */
|
|
2163
|
+
duotone && /* @__PURE__ */ jsxs26("g", { opacity: "0.12", children: [
|
|
2164
|
+
/* @__PURE__ */ jsx46(
|
|
2090
2165
|
"path",
|
|
2091
2166
|
{
|
|
2092
2167
|
d: "M6.36567 19.6343L14.8686 11.1314C15.2646 10.7354 15.4626 10.5373 15.691 10.4632C15.8918 10.3979 16.1082 10.3979 16.309 10.4632C16.5373 10.5373 16.7353 10.7354 17.1314 11.1314L21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9264 20.3854 19.362 20.673C18.7202 21 17.8801 21 16.2 21H6.93136C6.32554 21 6.02264 21 5.88237 20.8802C5.76067 20.7763 5.69608 20.6203 5.70864 20.4608C5.72311 20.2769 5.9373 20.0627 6.36567 19.6343Z",
|
|
2093
2168
|
fill: "currentColor"
|
|
2094
2169
|
}
|
|
2095
2170
|
),
|
|
2096
|
-
/* @__PURE__ */
|
|
2171
|
+
/* @__PURE__ */ jsx46(
|
|
2097
2172
|
"path",
|
|
2098
2173
|
{
|
|
2099
2174
|
d: "M8.49999 10.5C9.60456 10.5 10.5 9.60457 10.5 8.5C10.5 7.39543 9.60456 6.5 8.49999 6.5C7.39542 6.5 6.49999 7.39543 6.49999 8.5C6.49999 9.60457 7.39542 10.5 8.49999 10.5Z",
|
|
@@ -2101,7 +2176,7 @@ var ImageIcon = forwardRef42(
|
|
|
2101
2176
|
}
|
|
2102
2177
|
)
|
|
2103
2178
|
] }),
|
|
2104
|
-
/* @__PURE__ */
|
|
2179
|
+
/* @__PURE__ */ jsx46(
|
|
2105
2180
|
"path",
|
|
2106
2181
|
{
|
|
2107
2182
|
d: "M16.2 21H6.93137C6.32555 21 6.02265 21 5.88238 20.8802C5.76068 20.7763 5.69609 20.6203 5.70865 20.4608C5.72312 20.2769 5.93731 20.0627 6.36569 19.6343L14.8686 11.1314C15.2646 10.7354 15.4627 10.5373 15.691 10.4632C15.8918 10.3979 16.1082 10.3979 16.309 10.4632C16.5373 10.5373 16.7354 10.7354 17.1314 11.1314L21 15V16.2M16.2 21C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2M16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5Z",
|
|
@@ -2118,12 +2193,12 @@ var ImageIcon = forwardRef42(
|
|
|
2118
2193
|
);
|
|
2119
2194
|
|
|
2120
2195
|
// src/icons/imageDown.tsx
|
|
2121
|
-
import { forwardRef as
|
|
2122
|
-
import { jsx as
|
|
2123
|
-
var ImageDownIcon =
|
|
2196
|
+
import { forwardRef as forwardRef45 } from "react";
|
|
2197
|
+
import { jsx as jsx47, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
2198
|
+
var ImageDownIcon = forwardRef45(
|
|
2124
2199
|
function ImageDownIcon2(_a, ref) {
|
|
2125
2200
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2126
|
-
return /* @__PURE__ */
|
|
2201
|
+
return /* @__PURE__ */ jsxs27(
|
|
2127
2202
|
"svg",
|
|
2128
2203
|
__spreadProps(__spreadValues({
|
|
2129
2204
|
ref,
|
|
@@ -2135,15 +2210,15 @@ var ImageDownIcon = forwardRef43(
|
|
|
2135
2210
|
className
|
|
2136
2211
|
}, other), {
|
|
2137
2212
|
children: [
|
|
2138
|
-
duotone && /* @__PURE__ */
|
|
2139
|
-
/* @__PURE__ */
|
|
2213
|
+
duotone && /* @__PURE__ */ jsxs27("g", { opacity: "0.12", children: [
|
|
2214
|
+
/* @__PURE__ */ jsx47(
|
|
2140
2215
|
"path",
|
|
2141
2216
|
{
|
|
2142
2217
|
d: "M8.50004 10.5C9.60461 10.5 10.5 9.60457 10.5 8.5C10.5 7.39543 9.60461 6.5 8.50004 6.5C7.39547 6.5 6.50004 7.39543 6.50004 8.5C6.50004 9.60457 7.39547 10.5 8.50004 10.5Z",
|
|
2143
2218
|
fill: "currentColor"
|
|
2144
2219
|
}
|
|
2145
2220
|
),
|
|
2146
|
-
/* @__PURE__ */
|
|
2221
|
+
/* @__PURE__ */ jsx47(
|
|
2147
2222
|
"path",
|
|
2148
2223
|
{
|
|
2149
2224
|
d: "M6.53118 19.608L14.9901 11.9181C15.3487 11.5921 15.528 11.4291 15.7326 11.3627C15.9129 11.3041 16.1062 11.298 16.2898 11.3451C16.4982 11.3985 16.6874 11.5499 17.0659 11.8527L19.8631 14.0905C20.2412 14.3929 20.4303 14.5442 20.5733 14.7264C20.753 14.9554 20.8806 15.2208 20.9471 15.5042C21 15.7296 21 15.9717 21 16.456C21 17.8951 21 18.6147 20.7583 19.1799C20.4547 19.8894 19.8895 20.4547 19.18 20.7582C18.6148 21 17.8952 21 16.456 21H7.06932C6.42632 21 6.10481 21 5.96322 20.8755C5.84049 20.7676 5.77822 20.6066 5.79646 20.4442C5.81751 20.2568 6.0554 20.0406 6.53118 19.608Z",
|
|
@@ -2151,7 +2226,7 @@ var ImageDownIcon = forwardRef43(
|
|
|
2151
2226
|
}
|
|
2152
2227
|
)
|
|
2153
2228
|
] }),
|
|
2154
|
-
/* @__PURE__ */
|
|
2229
|
+
/* @__PURE__ */ jsx47(
|
|
2155
2230
|
"path",
|
|
2156
2231
|
{
|
|
2157
2232
|
d: "M16 5L19 8M19 8L22 5M19 8V2M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z",
|
|
@@ -2168,12 +2243,12 @@ var ImageDownIcon = forwardRef43(
|
|
|
2168
2243
|
);
|
|
2169
2244
|
|
|
2170
2245
|
// src/icons/imageX.tsx
|
|
2171
|
-
import { forwardRef as
|
|
2172
|
-
import { jsx as
|
|
2173
|
-
var ImageXIcon =
|
|
2246
|
+
import { forwardRef as forwardRef46 } from "react";
|
|
2247
|
+
import { jsx as jsx48, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
2248
|
+
var ImageXIcon = forwardRef46(
|
|
2174
2249
|
function ImageXIcon2(_a, ref) {
|
|
2175
2250
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2176
|
-
return /* @__PURE__ */
|
|
2251
|
+
return /* @__PURE__ */ jsxs28(
|
|
2177
2252
|
"svg",
|
|
2178
2253
|
__spreadProps(__spreadValues({
|
|
2179
2254
|
ref,
|
|
@@ -2185,15 +2260,15 @@ var ImageXIcon = forwardRef44(
|
|
|
2185
2260
|
className
|
|
2186
2261
|
}, other), {
|
|
2187
2262
|
children: [
|
|
2188
|
-
duotone && /* @__PURE__ */
|
|
2189
|
-
/* @__PURE__ */
|
|
2263
|
+
duotone && /* @__PURE__ */ jsxs28("g", { opacity: "0.12", children: [
|
|
2264
|
+
/* @__PURE__ */ jsx48(
|
|
2190
2265
|
"path",
|
|
2191
2266
|
{
|
|
2192
2267
|
d: "M8.50016 10.5C9.60473 10.5 10.5002 9.60457 10.5002 8.5C10.5002 7.39543 9.60473 6.5 8.50016 6.5C7.39559 6.5 6.50016 7.39543 6.50016 8.5C6.50016 9.60457 7.39559 10.5 8.50016 10.5Z",
|
|
2193
2268
|
fill: "currentColor"
|
|
2194
2269
|
}
|
|
2195
2270
|
),
|
|
2196
|
-
/* @__PURE__ */
|
|
2271
|
+
/* @__PURE__ */ jsx48(
|
|
2197
2272
|
"path",
|
|
2198
2273
|
{
|
|
2199
2274
|
d: "M6.53131 19.608L14.9902 11.9181C15.3488 11.5921 15.5281 11.4291 15.7327 11.3627C15.913 11.3041 16.1063 11.298 16.29 11.3451C16.4983 11.3985 16.6875 11.5499 17.066 11.8527L19.8632 14.0905C20.2413 14.3929 20.4304 14.5442 20.5734 14.7264C20.7531 14.9554 20.8807 15.2208 20.9472 15.5042C21.0002 15.7296 21.0002 15.9717 21.0002 16.456C21.0002 17.8951 21.0002 18.6147 20.7584 19.1799C20.4549 19.8894 19.8896 20.4547 19.1801 20.7582C18.6149 21 17.8953 21 16.4561 21H7.06944C6.42644 21 6.10494 21 5.96334 20.8755C5.84061 20.7676 5.77835 20.6066 5.79659 20.4442C5.81763 20.2568 6.05552 20.0406 6.53131 19.608Z",
|
|
@@ -2201,7 +2276,7 @@ var ImageXIcon = forwardRef44(
|
|
|
2201
2276
|
}
|
|
2202
2277
|
)
|
|
2203
2278
|
] }),
|
|
2204
|
-
/* @__PURE__ */
|
|
2279
|
+
/* @__PURE__ */ jsx48(
|
|
2205
2280
|
"path",
|
|
2206
2281
|
{
|
|
2207
2282
|
d: "M16.5 2.5L21.5 7.5M21.5 2.5L16.5 7.5M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z",
|
|
@@ -2218,12 +2293,12 @@ var ImageXIcon = forwardRef44(
|
|
|
2218
2293
|
);
|
|
2219
2294
|
|
|
2220
2295
|
// src/icons/infoCircle.tsx
|
|
2221
|
-
import { forwardRef as
|
|
2222
|
-
import { jsx as
|
|
2223
|
-
var InfoCircleIcon =
|
|
2296
|
+
import { forwardRef as forwardRef47 } from "react";
|
|
2297
|
+
import { jsx as jsx49, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
2298
|
+
var InfoCircleIcon = forwardRef47(
|
|
2224
2299
|
function InfoCircleIcon2(_a, ref) {
|
|
2225
2300
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2226
|
-
return /* @__PURE__ */
|
|
2301
|
+
return /* @__PURE__ */ jsxs29(
|
|
2227
2302
|
"svg",
|
|
2228
2303
|
__spreadProps(__spreadValues({
|
|
2229
2304
|
ref,
|
|
@@ -2235,7 +2310,7 @@ var InfoCircleIcon = forwardRef45(
|
|
|
2235
2310
|
className
|
|
2236
2311
|
}, other), {
|
|
2237
2312
|
children: [
|
|
2238
|
-
duotone && /* @__PURE__ */
|
|
2313
|
+
duotone && /* @__PURE__ */ jsx49(
|
|
2239
2314
|
"path",
|
|
2240
2315
|
{
|
|
2241
2316
|
opacity: "0.12",
|
|
@@ -2243,7 +2318,7 @@ var InfoCircleIcon = forwardRef45(
|
|
|
2243
2318
|
fill: "currentColor"
|
|
2244
2319
|
}
|
|
2245
2320
|
),
|
|
2246
|
-
/* @__PURE__ */
|
|
2321
|
+
/* @__PURE__ */ jsx49(
|
|
2247
2322
|
"path",
|
|
2248
2323
|
{
|
|
2249
2324
|
d: "M12 16V12M12 8H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -2260,12 +2335,12 @@ var InfoCircleIcon = forwardRef45(
|
|
|
2260
2335
|
);
|
|
2261
2336
|
|
|
2262
2337
|
// src/icons/lightbulb.tsx
|
|
2263
|
-
import { forwardRef as
|
|
2264
|
-
import { jsx as
|
|
2265
|
-
var LightbulbIcon =
|
|
2338
|
+
import { forwardRef as forwardRef48 } from "react";
|
|
2339
|
+
import { jsx as jsx50, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
2340
|
+
var LightbulbIcon = forwardRef48(
|
|
2266
2341
|
function LightbulbIcon2(_a, ref) {
|
|
2267
2342
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2268
|
-
return /* @__PURE__ */
|
|
2343
|
+
return /* @__PURE__ */ jsxs30(
|
|
2269
2344
|
"svg",
|
|
2270
2345
|
__spreadProps(__spreadValues({
|
|
2271
2346
|
ref,
|
|
@@ -2277,7 +2352,7 @@ var LightbulbIcon = forwardRef46(
|
|
|
2277
2352
|
className
|
|
2278
2353
|
}, other), {
|
|
2279
2354
|
children: [
|
|
2280
|
-
duotone && /* @__PURE__ */
|
|
2355
|
+
duotone && /* @__PURE__ */ jsx50(
|
|
2281
2356
|
"path",
|
|
2282
2357
|
{
|
|
2283
2358
|
opacity: "0.12",
|
|
@@ -2285,7 +2360,7 @@ var LightbulbIcon = forwardRef46(
|
|
|
2285
2360
|
fill: "currentColor"
|
|
2286
2361
|
}
|
|
2287
2362
|
),
|
|
2288
|
-
/* @__PURE__ */
|
|
2363
|
+
/* @__PURE__ */ jsx50(
|
|
2289
2364
|
"path",
|
|
2290
2365
|
{
|
|
2291
2366
|
d: "M9.5 22H14.5M10 10H14M12 10L12 16M15 15.3264C17.3649 14.2029 19 11.7924 19 9C19 5.13401 15.866 2 12 2C8.13401 2 5 5.13401 5 9C5 11.7924 6.63505 14.2029 9 15.3264V16C9 16.9319 9 17.3978 9.15224 17.7654C9.35523 18.2554 9.74458 18.6448 10.2346 18.8478C10.6022 19 11.0681 19 12 19C12.9319 19 13.3978 19 13.7654 18.8478C14.2554 18.6448 14.6448 18.2554 14.8478 17.7654C15 17.3978 15 16.9319 15 16V15.3264Z",
|
|
@@ -2302,11 +2377,11 @@ var LightbulbIcon = forwardRef46(
|
|
|
2302
2377
|
);
|
|
2303
2378
|
|
|
2304
2379
|
// src/icons/link.tsx
|
|
2305
|
-
import { forwardRef as
|
|
2306
|
-
import { jsx as
|
|
2307
|
-
var LinkIcon =
|
|
2380
|
+
import { forwardRef as forwardRef49 } from "react";
|
|
2381
|
+
import { jsx as jsx51 } from "react/jsx-runtime";
|
|
2382
|
+
var LinkIcon = forwardRef49(function LinkIcon2(_a, ref) {
|
|
2308
2383
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2309
|
-
return /* @__PURE__ */
|
|
2384
|
+
return /* @__PURE__ */ jsx51(
|
|
2310
2385
|
"svg",
|
|
2311
2386
|
__spreadProps(__spreadValues({
|
|
2312
2387
|
ref,
|
|
@@ -2317,7 +2392,7 @@ var LinkIcon = forwardRef47(function LinkIcon2(_a, ref) {
|
|
|
2317
2392
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2318
2393
|
className
|
|
2319
2394
|
}, other), {
|
|
2320
|
-
children: /* @__PURE__ */
|
|
2395
|
+
children: /* @__PURE__ */ jsx51(
|
|
2321
2396
|
"path",
|
|
2322
2397
|
{
|
|
2323
2398
|
d: "M12.7076 18.3639L11.2933 19.7781C9.34072 21.7308 6.1749 21.7308 4.22228 19.7781C2.26966 17.8255 2.26966 14.6597 4.22228 12.7071L5.63649 11.2929M18.3644 12.7071L19.7786 11.2929C21.7312 9.34024 21.7312 6.17441 19.7786 4.22179C17.826 2.26917 14.6602 2.26917 12.7076 4.22179L11.2933 5.636M8.50045 15.4999L15.5005 8.49994",
|
|
@@ -2332,11 +2407,11 @@ var LinkIcon = forwardRef47(function LinkIcon2(_a, ref) {
|
|
|
2332
2407
|
});
|
|
2333
2408
|
|
|
2334
2409
|
// src/icons/lock.tsx
|
|
2335
|
-
import { forwardRef as
|
|
2336
|
-
import { jsx as
|
|
2337
|
-
var LockIcon =
|
|
2410
|
+
import { forwardRef as forwardRef50 } from "react";
|
|
2411
|
+
import { jsx as jsx52, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
2412
|
+
var LockIcon = forwardRef50(function LockIcon2(_a, ref) {
|
|
2338
2413
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2339
|
-
return /* @__PURE__ */
|
|
2414
|
+
return /* @__PURE__ */ jsxs31(
|
|
2340
2415
|
"svg",
|
|
2341
2416
|
__spreadProps(__spreadValues({
|
|
2342
2417
|
ref,
|
|
@@ -2348,7 +2423,7 @@ var LockIcon = forwardRef48(function LockIcon2(_a, ref) {
|
|
|
2348
2423
|
className
|
|
2349
2424
|
}, other), {
|
|
2350
2425
|
children: [
|
|
2351
|
-
duotone && /* @__PURE__ */
|
|
2426
|
+
duotone && /* @__PURE__ */ jsx52(
|
|
2352
2427
|
"path",
|
|
2353
2428
|
{
|
|
2354
2429
|
opacity: "0.12",
|
|
@@ -2356,7 +2431,7 @@ var LockIcon = forwardRef48(function LockIcon2(_a, ref) {
|
|
|
2356
2431
|
fill: "currentColor"
|
|
2357
2432
|
}
|
|
2358
2433
|
),
|
|
2359
|
-
/* @__PURE__ */
|
|
2434
|
+
/* @__PURE__ */ jsx52(
|
|
2360
2435
|
"path",
|
|
2361
2436
|
{
|
|
2362
2437
|
d: "M17 10V8C17 5.23858 14.7614 3 12 3C9.23858 3 7 5.23858 7 8V10M12 14.5V16.5M8.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V14.8C20 13.1198 20 12.2798 19.673 11.638C19.3854 11.0735 18.9265 10.6146 18.362 10.327C17.7202 10 16.8802 10 15.2 10H8.8C7.11984 10 6.27976 10 5.63803 10.327C5.07354 10.6146 4.6146 11.0735 4.32698 11.638C4 12.2798 4 13.1198 4 14.8V16.2C4 17.8802 4 18.7202 4.32698 19.362C4.6146 19.9265 5.07354 20.3854 5.63803 20.673C6.27976 21 7.11984 21 8.8 21Z",
|
|
@@ -2372,12 +2447,12 @@ var LockIcon = forwardRef48(function LockIcon2(_a, ref) {
|
|
|
2372
2447
|
});
|
|
2373
2448
|
|
|
2374
2449
|
// src/icons/logIn.tsx
|
|
2375
|
-
import { forwardRef as
|
|
2376
|
-
import { jsx as
|
|
2377
|
-
var LogInIcon =
|
|
2450
|
+
import { forwardRef as forwardRef51 } from "react";
|
|
2451
|
+
import { jsx as jsx53, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
2452
|
+
var LogInIcon = forwardRef51(
|
|
2378
2453
|
function LogInIcon2(_a, ref) {
|
|
2379
2454
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2380
|
-
return /* @__PURE__ */
|
|
2455
|
+
return /* @__PURE__ */ jsxs32(
|
|
2381
2456
|
"svg",
|
|
2382
2457
|
__spreadProps(__spreadValues({
|
|
2383
2458
|
ref,
|
|
@@ -2389,7 +2464,7 @@ var LogInIcon = forwardRef49(
|
|
|
2389
2464
|
className
|
|
2390
2465
|
}, other), {
|
|
2391
2466
|
children: [
|
|
2392
|
-
duotone && /* @__PURE__ */
|
|
2467
|
+
duotone && /* @__PURE__ */ jsx53(
|
|
2393
2468
|
"path",
|
|
2394
2469
|
{
|
|
2395
2470
|
opacity: "0.12",
|
|
@@ -2397,7 +2472,7 @@ var LogInIcon = forwardRef49(
|
|
|
2397
2472
|
fill: "currentColor"
|
|
2398
2473
|
}
|
|
2399
2474
|
),
|
|
2400
|
-
/* @__PURE__ */
|
|
2475
|
+
/* @__PURE__ */ jsx53(
|
|
2401
2476
|
"path",
|
|
2402
2477
|
{
|
|
2403
2478
|
d: "M6 17C6 17.93 6 18.395 6.10222 18.7765C6.37962 19.8117 7.18827 20.6204 8.22354 20.8978C8.60504 21 9.07003 21 10 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H10C9.07003 3 8.60504 3 8.22354 3.10222C7.18827 3.37962 6.37962 4.18827 6.10222 5.22354C6 5.60504 6 6.07003 6 7M12 8L16 12M16 12L12 16M16 12H3",
|
|
@@ -2414,12 +2489,12 @@ var LogInIcon = forwardRef49(
|
|
|
2414
2489
|
);
|
|
2415
2490
|
|
|
2416
2491
|
// src/icons/magicWand.tsx
|
|
2417
|
-
import { forwardRef as
|
|
2418
|
-
import { jsx as
|
|
2419
|
-
var MagicWandIcon =
|
|
2492
|
+
import { forwardRef as forwardRef52 } from "react";
|
|
2493
|
+
import { jsx as jsx54, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
2494
|
+
var MagicWandIcon = forwardRef52(
|
|
2420
2495
|
function MagicWandIcon2(_a, ref) {
|
|
2421
2496
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2422
|
-
return /* @__PURE__ */
|
|
2497
|
+
return /* @__PURE__ */ jsxs33(
|
|
2423
2498
|
"svg",
|
|
2424
2499
|
__spreadProps(__spreadValues({
|
|
2425
2500
|
ref,
|
|
@@ -2431,7 +2506,7 @@ var MagicWandIcon = forwardRef50(
|
|
|
2431
2506
|
className
|
|
2432
2507
|
}, other), {
|
|
2433
2508
|
children: [
|
|
2434
|
-
duotone && /* @__PURE__ */
|
|
2509
|
+
duotone && /* @__PURE__ */ jsx54(
|
|
2435
2510
|
"path",
|
|
2436
2511
|
{
|
|
2437
2512
|
opacity: "0.12",
|
|
@@ -2439,7 +2514,7 @@ var MagicWandIcon = forwardRef50(
|
|
|
2439
2514
|
fill: "currentColor"
|
|
2440
2515
|
}
|
|
2441
2516
|
),
|
|
2442
|
-
/* @__PURE__ */
|
|
2517
|
+
/* @__PURE__ */ jsx54(
|
|
2443
2518
|
"path",
|
|
2444
2519
|
{
|
|
2445
2520
|
d: "M13 14L9.99997 11M15.0103 3.5V2M18.9497 5.06066L20.0103 4M18.9497 13L20.0103 14.0607M11.0103 5.06066L9.94966 4M20.5103 9H22.0103M6.13134 20.8686L15.3686 11.6314C15.7646 11.2354 15.9626 11.0373 16.0368 10.809C16.1021 10.6082 16.1021 10.3918 16.0368 10.191C15.9626 9.96265 15.7646 9.76465 15.3686 9.36863L14.6313 8.63137C14.2353 8.23535 14.0373 8.03735 13.809 7.96316C13.6081 7.8979 13.3918 7.8979 13.191 7.96316C12.9626 8.03735 12.7646 8.23535 12.3686 8.63137L3.13134 17.8686C2.73532 18.2646 2.53732 18.4627 2.46313 18.691C2.39787 18.8918 2.39787 19.1082 2.46313 19.309C2.53732 19.5373 2.73533 19.7354 3.13134 20.1314L3.8686 20.8686C4.26462 21.2646 4.46263 21.4627 4.69095 21.5368C4.8918 21.6021 5.10814 21.6021 5.30899 21.5368C5.53732 21.4627 5.73533 21.2646 6.13134 20.8686Z",
|
|
@@ -2456,11 +2531,11 @@ var MagicWandIcon = forwardRef50(
|
|
|
2456
2531
|
);
|
|
2457
2532
|
|
|
2458
2533
|
// src/icons/mail.tsx
|
|
2459
|
-
import { forwardRef as
|
|
2460
|
-
import { jsx as
|
|
2461
|
-
var MailIcon =
|
|
2534
|
+
import { forwardRef as forwardRef53 } from "react";
|
|
2535
|
+
import { jsx as jsx55, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
2536
|
+
var MailIcon = forwardRef53(function MailIcon2(_a, ref) {
|
|
2462
2537
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2463
|
-
return /* @__PURE__ */
|
|
2538
|
+
return /* @__PURE__ */ jsxs34(
|
|
2464
2539
|
"svg",
|
|
2465
2540
|
__spreadProps(__spreadValues({
|
|
2466
2541
|
ref,
|
|
@@ -2472,7 +2547,7 @@ var MailIcon = forwardRef51(function MailIcon2(_a, ref) {
|
|
|
2472
2547
|
className
|
|
2473
2548
|
}, other), {
|
|
2474
2549
|
children: [
|
|
2475
|
-
duotone && /* @__PURE__ */
|
|
2550
|
+
duotone && /* @__PURE__ */ jsx55(
|
|
2476
2551
|
"path",
|
|
2477
2552
|
{
|
|
2478
2553
|
opacity: "0.12",
|
|
@@ -2480,7 +2555,7 @@ var MailIcon = forwardRef51(function MailIcon2(_a, ref) {
|
|
|
2480
2555
|
fill: "currentColor"
|
|
2481
2556
|
}
|
|
2482
2557
|
),
|
|
2483
|
-
/* @__PURE__ */
|
|
2558
|
+
/* @__PURE__ */ jsx55(
|
|
2484
2559
|
"path",
|
|
2485
2560
|
{
|
|
2486
2561
|
d: "M2 7L10.1649 12.7154C10.8261 13.1783 11.1567 13.4097 11.5163 13.4993C11.8339 13.5785 12.1661 13.5785 12.4837 13.4993C12.8433 13.4097 13.1739 13.1783 13.8351 12.7154L22 7M6.8 20H17.2C18.8802 20 19.7202 20 20.362 19.673C20.9265 19.3854 21.3854 18.9265 21.673 18.362C22 17.7202 22 16.8802 22 15.2V8.8C22 7.11984 22 6.27976 21.673 5.63803C21.3854 5.07354 20.9265 4.6146 20.362 4.32698C19.7202 4 18.8802 4 17.2 4H6.8C5.11984 4 4.27976 4 3.63803 4.32698C3.07354 4.6146 2.6146 5.07354 2.32698 5.63803C2 6.27976 2 7.11984 2 8.8V15.2C2 16.8802 2 17.7202 2.32698 18.362C2.6146 18.9265 3.07354 19.3854 3.63803 19.673C4.27976 20 5.11984 20 6.8 20Z",
|
|
@@ -2496,11 +2571,11 @@ var MailIcon = forwardRef51(function MailIcon2(_a, ref) {
|
|
|
2496
2571
|
});
|
|
2497
2572
|
|
|
2498
2573
|
// src/icons/menu.tsx
|
|
2499
|
-
import { forwardRef as
|
|
2500
|
-
import { jsx as
|
|
2501
|
-
var MenuIcon =
|
|
2574
|
+
import { forwardRef as forwardRef54 } from "react";
|
|
2575
|
+
import { jsx as jsx56 } from "react/jsx-runtime";
|
|
2576
|
+
var MenuIcon = forwardRef54(function MenuIcon2(_a, ref) {
|
|
2502
2577
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2503
|
-
return /* @__PURE__ */
|
|
2578
|
+
return /* @__PURE__ */ jsx56(
|
|
2504
2579
|
"svg",
|
|
2505
2580
|
__spreadProps(__spreadValues({
|
|
2506
2581
|
ref,
|
|
@@ -2511,7 +2586,7 @@ var MenuIcon = forwardRef52(function MenuIcon2(_a, ref) {
|
|
|
2511
2586
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2512
2587
|
className
|
|
2513
2588
|
}, other), {
|
|
2514
|
-
children: /* @__PURE__ */
|
|
2589
|
+
children: /* @__PURE__ */ jsx56(
|
|
2515
2590
|
"path",
|
|
2516
2591
|
{
|
|
2517
2592
|
d: "M3 12H21M3 6H21M3 18H21",
|
|
@@ -2526,12 +2601,12 @@ var MenuIcon = forwardRef52(function MenuIcon2(_a, ref) {
|
|
|
2526
2601
|
});
|
|
2527
2602
|
|
|
2528
2603
|
// src/icons/messageChatSquare.tsx
|
|
2529
|
-
import { forwardRef as
|
|
2530
|
-
import { jsx as
|
|
2531
|
-
var MessageChatSquareIcon =
|
|
2604
|
+
import { forwardRef as forwardRef55 } from "react";
|
|
2605
|
+
import { jsx as jsx57, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
2606
|
+
var MessageChatSquareIcon = forwardRef55(
|
|
2532
2607
|
function MessageChatSquareIcon2(_a, ref) {
|
|
2533
2608
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2534
|
-
return /* @__PURE__ */
|
|
2609
|
+
return /* @__PURE__ */ jsxs35(
|
|
2535
2610
|
"svg",
|
|
2536
2611
|
__spreadProps(__spreadValues({
|
|
2537
2612
|
ref,
|
|
@@ -2543,7 +2618,7 @@ var MessageChatSquareIcon = forwardRef53(
|
|
|
2543
2618
|
className
|
|
2544
2619
|
}, other), {
|
|
2545
2620
|
children: [
|
|
2546
|
-
duotone && /* @__PURE__ */
|
|
2621
|
+
duotone && /* @__PURE__ */ jsx57(
|
|
2547
2622
|
"path",
|
|
2548
2623
|
{
|
|
2549
2624
|
opacity: "0.12",
|
|
@@ -2551,7 +2626,7 @@ var MessageChatSquareIcon = forwardRef53(
|
|
|
2551
2626
|
fill: "currentColor"
|
|
2552
2627
|
}
|
|
2553
2628
|
),
|
|
2554
|
-
/* @__PURE__ */
|
|
2629
|
+
/* @__PURE__ */ jsx57(
|
|
2555
2630
|
"path",
|
|
2556
2631
|
{
|
|
2557
2632
|
d: "M10 15L6.92474 18.1137C6.49579 18.548 6.28131 18.7652 6.09695 18.7805C5.93701 18.7938 5.78042 18.7295 5.67596 18.6076C5.55556 18.4672 5.55556 18.162 5.55556 17.5515V15.9916C5.55556 15.444 5.10707 15.0477 4.5652 14.9683V14.9683C3.25374 14.7762 2.22378 13.7463 2.03168 12.4348C2 12.2186 2 11.9605 2 11.4444V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H14.2C15.8802 2 16.7202 2 17.362 2.32698C17.9265 2.6146 18.3854 3.07354 18.673 3.63803C19 4.27976 19 5.11984 19 6.8V11M19 22L16.8236 20.4869C16.5177 20.2742 16.3647 20.1678 16.1982 20.0924C16.0504 20.0255 15.8951 19.9768 15.7356 19.9474C15.5558 19.9143 15.3695 19.9143 14.9969 19.9143H13.2C12.0799 19.9143 11.5198 19.9143 11.092 19.6963C10.7157 19.5046 10.4097 19.1986 10.218 18.8223C10 18.3944 10 17.8344 10 16.7143V14.2C10 13.0799 10 12.5198 10.218 12.092C10.4097 11.7157 10.7157 11.4097 11.092 11.218C11.5198 11 12.0799 11 13.2 11H18.8C19.9201 11 20.4802 11 20.908 11.218C21.2843 11.4097 21.5903 11.7157 21.782 12.092C22 12.5198 22 13.0799 22 14.2V16.9143C22 17.8462 22 18.3121 21.8478 18.6797C21.6448 19.1697 21.2554 19.5591 20.7654 19.762C20.3978 19.9143 19.9319 19.9143 19 19.9143V22Z",
|
|
@@ -2568,12 +2643,12 @@ var MessageChatSquareIcon = forwardRef53(
|
|
|
2568
2643
|
);
|
|
2569
2644
|
|
|
2570
2645
|
// src/icons/messagePlusSquare.tsx
|
|
2571
|
-
import { forwardRef as
|
|
2572
|
-
import { jsx as
|
|
2573
|
-
var MessagePlusSquareIcon =
|
|
2646
|
+
import { forwardRef as forwardRef56 } from "react";
|
|
2647
|
+
import { jsx as jsx58, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
2648
|
+
var MessagePlusSquareIcon = forwardRef56(
|
|
2574
2649
|
function MessagePlusSquareIcon2(_a, ref) {
|
|
2575
2650
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2576
|
-
return /* @__PURE__ */
|
|
2651
|
+
return /* @__PURE__ */ jsxs36(
|
|
2577
2652
|
"svg",
|
|
2578
2653
|
__spreadProps(__spreadValues({
|
|
2579
2654
|
ref,
|
|
@@ -2585,7 +2660,7 @@ var MessagePlusSquareIcon = forwardRef54(
|
|
|
2585
2660
|
className
|
|
2586
2661
|
}, other), {
|
|
2587
2662
|
children: [
|
|
2588
|
-
duotone && /* @__PURE__ */
|
|
2663
|
+
duotone && /* @__PURE__ */ jsx58(
|
|
2589
2664
|
"path",
|
|
2590
2665
|
{
|
|
2591
2666
|
opacity: "0.12",
|
|
@@ -2593,7 +2668,7 @@ var MessagePlusSquareIcon = forwardRef54(
|
|
|
2593
2668
|
fill: "currentColor"
|
|
2594
2669
|
}
|
|
2595
2670
|
),
|
|
2596
|
-
/* @__PURE__ */
|
|
2671
|
+
/* @__PURE__ */ jsx58(
|
|
2597
2672
|
"path",
|
|
2598
2673
|
{
|
|
2599
2674
|
d: "M12 13.5V7.5M9 10.5H15M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z",
|
|
@@ -2610,12 +2685,12 @@ var MessagePlusSquareIcon = forwardRef54(
|
|
|
2610
2685
|
);
|
|
2611
2686
|
|
|
2612
2687
|
// src/icons/messageTextSquare.tsx
|
|
2613
|
-
import { forwardRef as
|
|
2614
|
-
import { jsx as
|
|
2615
|
-
var MessageTextSquareIcon =
|
|
2688
|
+
import { forwardRef as forwardRef57 } from "react";
|
|
2689
|
+
import { jsx as jsx59, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2690
|
+
var MessageTextSquareIcon = forwardRef57(
|
|
2616
2691
|
function MessageTextSquareIcon2(_a, ref) {
|
|
2617
2692
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2618
|
-
return /* @__PURE__ */
|
|
2693
|
+
return /* @__PURE__ */ jsxs37(
|
|
2619
2694
|
"svg",
|
|
2620
2695
|
__spreadProps(__spreadValues({
|
|
2621
2696
|
ref,
|
|
@@ -2627,7 +2702,7 @@ var MessageTextSquareIcon = forwardRef55(
|
|
|
2627
2702
|
className
|
|
2628
2703
|
}, other), {
|
|
2629
2704
|
children: [
|
|
2630
|
-
duotone && /* @__PURE__ */
|
|
2705
|
+
duotone && /* @__PURE__ */ jsx59(
|
|
2631
2706
|
"path",
|
|
2632
2707
|
{
|
|
2633
2708
|
opacity: "0.12",
|
|
@@ -2635,7 +2710,7 @@ var MessageTextSquareIcon = forwardRef55(
|
|
|
2635
2710
|
fill: "currentColor"
|
|
2636
2711
|
}
|
|
2637
2712
|
),
|
|
2638
|
-
/* @__PURE__ */
|
|
2713
|
+
/* @__PURE__ */ jsx59(
|
|
2639
2714
|
"path",
|
|
2640
2715
|
{
|
|
2641
2716
|
d: "M7 8.5H12M7 12H15M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z",
|
|
@@ -2652,12 +2727,12 @@ var MessageTextSquareIcon = forwardRef55(
|
|
|
2652
2727
|
);
|
|
2653
2728
|
|
|
2654
2729
|
// src/icons/microphone.tsx
|
|
2655
|
-
import { forwardRef as
|
|
2656
|
-
import { jsx as
|
|
2657
|
-
var MicrophoneIcon =
|
|
2730
|
+
import { forwardRef as forwardRef58 } from "react";
|
|
2731
|
+
import { jsx as jsx60, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
2732
|
+
var MicrophoneIcon = forwardRef58(
|
|
2658
2733
|
function MicrophoneIcon2(_a, ref) {
|
|
2659
2734
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2660
|
-
return /* @__PURE__ */
|
|
2735
|
+
return /* @__PURE__ */ jsxs38(
|
|
2661
2736
|
"svg",
|
|
2662
2737
|
__spreadProps(__spreadValues({
|
|
2663
2738
|
ref,
|
|
@@ -2669,7 +2744,7 @@ var MicrophoneIcon = forwardRef56(
|
|
|
2669
2744
|
className
|
|
2670
2745
|
}, other), {
|
|
2671
2746
|
children: [
|
|
2672
|
-
duotone && /* @__PURE__ */
|
|
2747
|
+
duotone && /* @__PURE__ */ jsx60(
|
|
2673
2748
|
"path",
|
|
2674
2749
|
{
|
|
2675
2750
|
opacity: "0.12",
|
|
@@ -2677,7 +2752,7 @@ var MicrophoneIcon = forwardRef56(
|
|
|
2677
2752
|
fill: "currentColor"
|
|
2678
2753
|
}
|
|
2679
2754
|
),
|
|
2680
|
-
/* @__PURE__ */
|
|
2755
|
+
/* @__PURE__ */ jsx60(
|
|
2681
2756
|
"path",
|
|
2682
2757
|
{
|
|
2683
2758
|
d: "M19 10V12C19 15.866 15.866 19 12 19M5 10V12C5 15.866 8.13401 19 12 19M12 19V22M8 22H16M12 15C10.3431 15 9 13.6569 9 12V5C9 3.34315 10.3431 2 12 2C13.6569 2 15 3.34315 15 5V12C15 13.6569 13.6569 15 12 15Z",
|
|
@@ -2694,12 +2769,12 @@ var MicrophoneIcon = forwardRef56(
|
|
|
2694
2769
|
);
|
|
2695
2770
|
|
|
2696
2771
|
// src/icons/microphoneOff.tsx
|
|
2697
|
-
import { forwardRef as
|
|
2698
|
-
import { jsx as
|
|
2699
|
-
var MicrophoneOffIcon =
|
|
2772
|
+
import { forwardRef as forwardRef59 } from "react";
|
|
2773
|
+
import { jsx as jsx61, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
2774
|
+
var MicrophoneOffIcon = forwardRef59(
|
|
2700
2775
|
function MicrophoneOffIcon2(_a, ref) {
|
|
2701
2776
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2702
|
-
return /* @__PURE__ */
|
|
2777
|
+
return /* @__PURE__ */ jsxs39(
|
|
2703
2778
|
"svg",
|
|
2704
2779
|
__spreadProps(__spreadValues({
|
|
2705
2780
|
ref,
|
|
@@ -2711,7 +2786,7 @@ var MicrophoneOffIcon = forwardRef57(
|
|
|
2711
2786
|
className
|
|
2712
2787
|
}, other), {
|
|
2713
2788
|
children: [
|
|
2714
|
-
duotone && /* @__PURE__ */
|
|
2789
|
+
duotone && /* @__PURE__ */ jsx61(
|
|
2715
2790
|
"path",
|
|
2716
2791
|
{
|
|
2717
2792
|
opacity: "0.12",
|
|
@@ -2719,7 +2794,7 @@ var MicrophoneOffIcon = forwardRef57(
|
|
|
2719
2794
|
fill: "currentColor"
|
|
2720
2795
|
}
|
|
2721
2796
|
),
|
|
2722
|
-
/* @__PURE__ */
|
|
2797
|
+
/* @__PURE__ */ jsx61(
|
|
2723
2798
|
"path",
|
|
2724
2799
|
{
|
|
2725
2800
|
d: "M15 9.4V5C15 3.34315 13.6569 2 12 2C10.8224 2 9.80325 2.67852 9.3122 3.66593M12 19V22M12 19C8.13401 19 5 15.866 5 12V10M12 19C15.866 19 19 15.866 19 12V10M8 22H16M2 2L22 22M12 15C10.3431 15 9 13.6569 9 12V9L14.1226 14.12C13.5796 14.6637 12.8291 15 12 15Z",
|
|
@@ -2736,12 +2811,12 @@ var MicrophoneOffIcon = forwardRef57(
|
|
|
2736
2811
|
);
|
|
2737
2812
|
|
|
2738
2813
|
// src/icons/monitor.tsx
|
|
2739
|
-
import { forwardRef as
|
|
2740
|
-
import { jsx as
|
|
2741
|
-
var MonitorIcon =
|
|
2814
|
+
import { forwardRef as forwardRef60 } from "react";
|
|
2815
|
+
import { jsx as jsx62, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
2816
|
+
var MonitorIcon = forwardRef60(
|
|
2742
2817
|
function MonitorIcon2(_a, ref) {
|
|
2743
2818
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2744
|
-
return /* @__PURE__ */
|
|
2819
|
+
return /* @__PURE__ */ jsxs40(
|
|
2745
2820
|
"svg",
|
|
2746
2821
|
__spreadProps(__spreadValues({
|
|
2747
2822
|
ref,
|
|
@@ -2753,7 +2828,7 @@ var MonitorIcon = forwardRef58(
|
|
|
2753
2828
|
className
|
|
2754
2829
|
}, other), {
|
|
2755
2830
|
children: [
|
|
2756
|
-
duotone && /* @__PURE__ */
|
|
2831
|
+
duotone && /* @__PURE__ */ jsx62(
|
|
2757
2832
|
"path",
|
|
2758
2833
|
{
|
|
2759
2834
|
opacity: "0.12",
|
|
@@ -2761,7 +2836,7 @@ var MonitorIcon = forwardRef58(
|
|
|
2761
2836
|
fill: "currentColor"
|
|
2762
2837
|
}
|
|
2763
2838
|
),
|
|
2764
|
-
/* @__PURE__ */
|
|
2839
|
+
/* @__PURE__ */ jsx62(
|
|
2765
2840
|
"path",
|
|
2766
2841
|
{
|
|
2767
2842
|
d: "M7.57181 21C8.90661 20.3598 10.41 20 12 20C13.59 20 15.0934 20.3598 16.4282 21M6.8 17H17.2C18.8802 17 19.7202 17 20.362 16.673C20.9265 16.3854 21.3854 15.9265 21.673 15.362C22 14.7202 22 13.8802 22 12.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V12.2C2 13.8802 2 14.7202 2.32698 15.362C2.6146 15.9265 3.07354 16.3854 3.63803 16.673C4.27976 17 5.11984 17 6.8 17Z",
|
|
@@ -2778,12 +2853,12 @@ var MonitorIcon = forwardRef58(
|
|
|
2778
2853
|
);
|
|
2779
2854
|
|
|
2780
2855
|
// src/icons/notificationBox.tsx
|
|
2781
|
-
import { forwardRef as
|
|
2782
|
-
import { jsx as
|
|
2783
|
-
var NotificationBoxIcon =
|
|
2856
|
+
import { forwardRef as forwardRef61 } from "react";
|
|
2857
|
+
import { jsx as jsx63, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
2858
|
+
var NotificationBoxIcon = forwardRef61(
|
|
2784
2859
|
function NotificationBoxIcon2(_a, ref) {
|
|
2785
2860
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2786
|
-
return /* @__PURE__ */
|
|
2861
|
+
return /* @__PURE__ */ jsxs41(
|
|
2787
2862
|
"svg",
|
|
2788
2863
|
__spreadProps(__spreadValues({
|
|
2789
2864
|
ref,
|
|
@@ -2795,7 +2870,7 @@ var NotificationBoxIcon = forwardRef59(
|
|
|
2795
2870
|
className
|
|
2796
2871
|
}, other), {
|
|
2797
2872
|
children: [
|
|
2798
|
-
duotone && /* @__PURE__ */
|
|
2873
|
+
duotone && /* @__PURE__ */ jsx63(
|
|
2799
2874
|
"path",
|
|
2800
2875
|
{
|
|
2801
2876
|
opacity: "0.12",
|
|
@@ -2803,7 +2878,7 @@ var NotificationBoxIcon = forwardRef59(
|
|
|
2803
2878
|
fill: "currentColor"
|
|
2804
2879
|
}
|
|
2805
2880
|
),
|
|
2806
|
-
/* @__PURE__ */
|
|
2881
|
+
/* @__PURE__ */ jsx63(
|
|
2807
2882
|
"path",
|
|
2808
2883
|
{
|
|
2809
2884
|
d: "M11 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V13M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z",
|
|
@@ -2820,12 +2895,12 @@ var NotificationBoxIcon = forwardRef59(
|
|
|
2820
2895
|
);
|
|
2821
2896
|
|
|
2822
2897
|
// src/icons/pauseCircle.tsx
|
|
2823
|
-
import { forwardRef as
|
|
2824
|
-
import { jsx as
|
|
2825
|
-
var PauseCircleIcon =
|
|
2898
|
+
import { forwardRef as forwardRef62 } from "react";
|
|
2899
|
+
import { jsx as jsx64, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
2900
|
+
var PauseCircleIcon = forwardRef62(
|
|
2826
2901
|
function PauseCircleIcon2(_a, ref) {
|
|
2827
2902
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2828
|
-
return /* @__PURE__ */
|
|
2903
|
+
return /* @__PURE__ */ jsxs42(
|
|
2829
2904
|
"svg",
|
|
2830
2905
|
__spreadProps(__spreadValues({
|
|
2831
2906
|
ref,
|
|
@@ -2837,7 +2912,7 @@ var PauseCircleIcon = forwardRef60(
|
|
|
2837
2912
|
className
|
|
2838
2913
|
}, other), {
|
|
2839
2914
|
children: [
|
|
2840
|
-
duotone && /* @__PURE__ */
|
|
2915
|
+
duotone && /* @__PURE__ */ jsx64(
|
|
2841
2916
|
"path",
|
|
2842
2917
|
{
|
|
2843
2918
|
opacity: "0.12",
|
|
@@ -2845,7 +2920,7 @@ var PauseCircleIcon = forwardRef60(
|
|
|
2845
2920
|
fill: "currentColor"
|
|
2846
2921
|
}
|
|
2847
2922
|
),
|
|
2848
|
-
/* @__PURE__ */
|
|
2923
|
+
/* @__PURE__ */ jsx64(
|
|
2849
2924
|
"path",
|
|
2850
2925
|
{
|
|
2851
2926
|
d: "M9.5 15V9M14.5 15V9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -2862,12 +2937,12 @@ var PauseCircleIcon = forwardRef60(
|
|
|
2862
2937
|
);
|
|
2863
2938
|
|
|
2864
2939
|
// src/icons/phone.tsx
|
|
2865
|
-
import { forwardRef as
|
|
2866
|
-
import { jsx as
|
|
2867
|
-
var PhoneIcon =
|
|
2940
|
+
import { forwardRef as forwardRef63 } from "react";
|
|
2941
|
+
import { jsx as jsx65, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
2942
|
+
var PhoneIcon = forwardRef63(
|
|
2868
2943
|
function PhoneIcon2(_a, ref) {
|
|
2869
2944
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2870
|
-
return /* @__PURE__ */
|
|
2945
|
+
return /* @__PURE__ */ jsxs43(
|
|
2871
2946
|
"svg",
|
|
2872
2947
|
__spreadProps(__spreadValues({
|
|
2873
2948
|
ref,
|
|
@@ -2879,7 +2954,7 @@ var PhoneIcon = forwardRef61(
|
|
|
2879
2954
|
className
|
|
2880
2955
|
}, other), {
|
|
2881
2956
|
children: [
|
|
2882
|
-
duotone && /* @__PURE__ */
|
|
2957
|
+
duotone && /* @__PURE__ */ jsx65(
|
|
2883
2958
|
"path",
|
|
2884
2959
|
{
|
|
2885
2960
|
opacity: "0.12",
|
|
@@ -2887,7 +2962,7 @@ var PhoneIcon = forwardRef61(
|
|
|
2887
2962
|
fill: "currentColor"
|
|
2888
2963
|
}
|
|
2889
2964
|
),
|
|
2890
|
-
/* @__PURE__ */
|
|
2965
|
+
/* @__PURE__ */ jsx65(
|
|
2891
2966
|
"path",
|
|
2892
2967
|
{
|
|
2893
2968
|
d: "M12 17.5H12.01M8.2 22H15.8C16.9201 22 17.4802 22 17.908 21.782C18.2843 21.5903 18.5903 21.2843 18.782 20.908C19 20.4802 19 19.9201 19 18.8V5.2C19 4.07989 19 3.51984 18.782 3.09202C18.5903 2.71569 18.2843 2.40973 17.908 2.21799C17.4802 2 16.9201 2 15.8 2H8.2C7.0799 2 6.51984 2 6.09202 2.21799C5.71569 2.40973 5.40973 2.71569 5.21799 3.09202C5 3.51984 5 4.0799 5 5.2V18.8C5 19.9201 5 20.4802 5.21799 20.908C5.40973 21.2843 5.71569 21.5903 6.09202 21.782C6.51984 22 7.07989 22 8.2 22ZM12.5 17.5C12.5 17.7761 12.2761 18 12 18C11.7239 18 11.5 17.7761 11.5 17.5C11.5 17.2239 11.7239 17 12 17C12.2761 17 12.5 17.2239 12.5 17.5Z",
|
|
@@ -2904,12 +2979,12 @@ var PhoneIcon = forwardRef61(
|
|
|
2904
2979
|
);
|
|
2905
2980
|
|
|
2906
2981
|
// src/icons/phoneCall.tsx
|
|
2907
|
-
import { forwardRef as
|
|
2908
|
-
import { jsx as
|
|
2909
|
-
var PhoneCallIcon =
|
|
2982
|
+
import { forwardRef as forwardRef64 } from "react";
|
|
2983
|
+
import { jsx as jsx66, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
2984
|
+
var PhoneCallIcon = forwardRef64(
|
|
2910
2985
|
function PhoneCallIcon2(_a, ref) {
|
|
2911
2986
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2912
|
-
return /* @__PURE__ */
|
|
2987
|
+
return /* @__PURE__ */ jsxs44(
|
|
2913
2988
|
"svg",
|
|
2914
2989
|
__spreadProps(__spreadValues({
|
|
2915
2990
|
ref,
|
|
@@ -2921,7 +2996,7 @@ var PhoneCallIcon = forwardRef62(
|
|
|
2921
2996
|
className
|
|
2922
2997
|
}, other), {
|
|
2923
2998
|
children: [
|
|
2924
|
-
duotone && /* @__PURE__ */
|
|
2999
|
+
duotone && /* @__PURE__ */ jsx66(
|
|
2925
3000
|
"path",
|
|
2926
3001
|
{
|
|
2927
3002
|
opacity: "0.12",
|
|
@@ -2929,7 +3004,7 @@ var PhoneCallIcon = forwardRef62(
|
|
|
2929
3004
|
fill: "currentColor"
|
|
2930
3005
|
}
|
|
2931
3006
|
),
|
|
2932
|
-
/* @__PURE__ */
|
|
3007
|
+
/* @__PURE__ */ jsx66(
|
|
2933
3008
|
"path",
|
|
2934
3009
|
{
|
|
2935
3010
|
d: "M14.05 6C15.0268 6.19057 15.9244 6.66826 16.6281 7.37194C17.3318 8.07561 17.8095 8.97326 18 9.95M14.05 2C16.0793 2.22544 17.9716 3.13417 19.4163 4.57701C20.8609 6.01984 21.772 7.91101 22 9.94M10.227 13.8631C9.02543 12.6615 8.07664 11.3028 7.38064 9.85323C7.32078 9.72854 7.29084 9.66619 7.26785 9.5873C7.18612 9.30695 7.24482 8.96269 7.41483 8.72526C7.46268 8.65845 7.51983 8.60129 7.63414 8.48698C7.98375 8.13737 8.15855 7.96257 8.27284 7.78679C8.70383 7.1239 8.70383 6.26932 8.27284 5.60643C8.15855 5.43065 7.98375 5.25585 7.63414 4.90624L7.43927 4.71137C6.90783 4.17993 6.64211 3.91421 6.35673 3.76987C5.78917 3.4828 5.1189 3.4828 4.55134 3.76987C4.26596 3.91421 4.00024 4.17993 3.4688 4.71137L3.31116 4.86901C2.78154 5.39863 2.51673 5.66344 2.31448 6.02348C2.09006 6.42298 1.9287 7.04347 1.93006 7.5017C1.93129 7.91464 2.01139 8.19687 2.1716 8.76131C3.03257 11.7947 4.65705 14.6571 7.04503 17.045C9.43301 19.433 12.2954 21.0575 15.3288 21.9185C15.8932 22.0787 16.1754 22.1588 16.5884 22.16C17.0466 22.1614 17.6671 22 18.0666 21.7756C18.4266 21.5733 18.6914 21.3085 19.2211 20.7789L19.3787 20.6213C19.9101 20.0898 20.1759 19.8241 20.3202 19.5387C20.6073 18.9712 20.6073 18.3009 20.3202 17.7333C20.1759 17.448 19.9101 17.1822 19.3787 16.6508L19.1838 16.4559C18.8342 16.1063 18.6594 15.9315 18.4836 15.8172C17.8208 15.3862 16.9662 15.3862 16.3033 15.8172C16.1275 15.9315 15.9527 16.1063 15.6031 16.4559C15.4888 16.5702 15.4316 16.6274 15.3648 16.6752C15.1274 16.8453 14.7831 16.904 14.5028 16.8222C14.4239 16.7992 14.3615 16.7693 14.2368 16.7094C12.7872 16.0134 11.4286 15.0646 10.227 13.8631Z",
|
|
@@ -2946,12 +3021,12 @@ var PhoneCallIcon = forwardRef62(
|
|
|
2946
3021
|
);
|
|
2947
3022
|
|
|
2948
3023
|
// src/icons/phoneIncoming.tsx
|
|
2949
|
-
import { forwardRef as
|
|
2950
|
-
import { jsx as
|
|
2951
|
-
var PhoneIncomingIcon =
|
|
3024
|
+
import { forwardRef as forwardRef65 } from "react";
|
|
3025
|
+
import { jsx as jsx67, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
3026
|
+
var PhoneIncomingIcon = forwardRef65(
|
|
2952
3027
|
function PhoneIncomingIcon2(_a, ref) {
|
|
2953
3028
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2954
|
-
return /* @__PURE__ */
|
|
3029
|
+
return /* @__PURE__ */ jsxs45(
|
|
2955
3030
|
"svg",
|
|
2956
3031
|
__spreadProps(__spreadValues({
|
|
2957
3032
|
ref,
|
|
@@ -2963,7 +3038,7 @@ var PhoneIncomingIcon = forwardRef63(
|
|
|
2963
3038
|
className
|
|
2964
3039
|
}, other), {
|
|
2965
3040
|
children: [
|
|
2966
|
-
duotone && /* @__PURE__ */
|
|
3041
|
+
duotone && /* @__PURE__ */ jsx67(
|
|
2967
3042
|
"path",
|
|
2968
3043
|
{
|
|
2969
3044
|
opacity: "0.12",
|
|
@@ -2975,7 +3050,7 @@ var PhoneIncomingIcon = forwardRef63(
|
|
|
2975
3050
|
strokeLinejoin: "round"
|
|
2976
3051
|
}
|
|
2977
3052
|
),
|
|
2978
|
-
/* @__PURE__ */
|
|
3053
|
+
/* @__PURE__ */ jsx67(
|
|
2979
3054
|
"path",
|
|
2980
3055
|
{
|
|
2981
3056
|
d: "M11.0004 2L8.66706 4.33333M8.66706 4.33333L11.0004 6.66667M8.66706 4.33333H14.0004M6.81841 9.24205C6.01736 8.44099 5.38483 7.53523 4.92084 6.56882C4.88092 6.48569 4.86097 6.44413 4.84564 6.39154C4.79115 6.20463 4.83029 5.97513 4.94363 5.81684C4.97552 5.7723 5.01363 5.7342 5.08984 5.65799C5.32291 5.42492 5.43944 5.30838 5.51563 5.1912C5.80296 4.74927 5.80296 4.17955 5.51563 3.73762C5.43944 3.62044 5.32291 3.5039 5.08984 3.27083L4.95992 3.14092C4.60563 2.78662 4.42848 2.60947 4.23823 2.51324C3.85985 2.32186 3.41301 2.32186 3.03464 2.51324C2.84438 2.60947 2.66723 2.78662 2.31294 3.14092L2.20785 3.24601C1.85477 3.59909 1.67823 3.77563 1.54339 4.01565C1.39378 4.28199 1.28621 4.69565 1.28712 5.00113C1.28793 5.27643 1.34134 5.46458 1.44814 5.84087C2.02212 7.86314 3.1051 9.77138 4.69709 11.3634C6.28908 12.9554 8.19732 14.0383 10.2196 14.6123C10.5959 14.7191 10.784 14.7725 11.0593 14.7733C11.3648 14.7743 11.7785 14.6667 12.0448 14.5171C12.2848 14.3822 12.4614 14.2057 12.8145 13.8526L12.9195 13.7475C13.2738 13.3932 13.451 13.2161 13.5472 13.0258C13.7386 12.6474 13.7386 12.2006 13.5472 11.8222C13.451 11.632 13.2738 11.4548 12.9195 11.1005L12.7896 10.9706C12.5566 10.7376 12.44 10.621 12.3228 10.5448C11.8809 10.2575 11.3112 10.2575 10.8693 10.5448C10.7521 10.621 10.6355 10.7376 10.4025 10.9706C10.3263 11.0468 10.2882 11.0849 10.2436 11.1168C10.0853 11.2302 9.85582 11.2693 9.66892 11.2148C9.61633 11.1995 9.57476 11.1795 9.49164 11.1396C8.52523 10.6756 7.61946 10.0431 6.81841 9.24205Z",
|
|
@@ -2992,12 +3067,12 @@ var PhoneIncomingIcon = forwardRef63(
|
|
|
2992
3067
|
);
|
|
2993
3068
|
|
|
2994
3069
|
// src/icons/phonePlus.tsx
|
|
2995
|
-
import { forwardRef as
|
|
2996
|
-
import { jsx as
|
|
2997
|
-
var PhonePlusIcon =
|
|
3070
|
+
import { forwardRef as forwardRef66 } from "react";
|
|
3071
|
+
import { jsx as jsx68, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3072
|
+
var PhonePlusIcon = forwardRef66(
|
|
2998
3073
|
function PhonePlusIcon2(_a, ref) {
|
|
2999
3074
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3000
|
-
return /* @__PURE__ */
|
|
3075
|
+
return /* @__PURE__ */ jsxs46(
|
|
3001
3076
|
"svg",
|
|
3002
3077
|
__spreadProps(__spreadValues({
|
|
3003
3078
|
ref,
|
|
@@ -3009,7 +3084,7 @@ var PhonePlusIcon = forwardRef64(
|
|
|
3009
3084
|
className
|
|
3010
3085
|
}, other), {
|
|
3011
3086
|
children: [
|
|
3012
|
-
duotone && /* @__PURE__ */
|
|
3087
|
+
duotone && /* @__PURE__ */ jsx68(
|
|
3013
3088
|
"path",
|
|
3014
3089
|
{
|
|
3015
3090
|
opacity: "0.12",
|
|
@@ -3021,7 +3096,7 @@ var PhonePlusIcon = forwardRef64(
|
|
|
3021
3096
|
strokeLinejoin: "round"
|
|
3022
3097
|
}
|
|
3023
3098
|
),
|
|
3024
|
-
/* @__PURE__ */
|
|
3099
|
+
/* @__PURE__ */ jsx68(
|
|
3025
3100
|
"path",
|
|
3026
3101
|
{
|
|
3027
3102
|
d: "M11.3332 7.33333V2M8.66657 4.66667H13.9999M6.81792 9.24205C6.01687 8.44099 5.38435 7.53523 4.92035 6.56882C4.88044 6.48569 4.86048 6.44413 4.84515 6.39154C4.79067 6.20463 4.8298 5.97513 4.94314 5.81684C4.97504 5.7723 5.01314 5.7342 5.08935 5.65799C5.32242 5.42492 5.43895 5.30838 5.51514 5.1912C5.80247 4.74927 5.80247 4.17955 5.51515 3.73762C5.43895 3.62044 5.32242 3.5039 5.08935 3.27083L4.95943 3.14092C4.60514 2.78662 4.42799 2.60947 4.23774 2.51324C3.85937 2.32186 3.41252 2.32186 3.03415 2.51324C2.84389 2.60947 2.66675 2.78662 2.31245 3.14092L2.20736 3.24601C1.85428 3.59909 1.67774 3.77563 1.54291 4.01565C1.39329 4.28199 1.28572 4.69565 1.28663 5.00113C1.28745 5.27643 1.34085 5.46458 1.44765 5.84087C2.02163 7.86314 3.10462 9.77138 4.6966 11.3634C6.28859 12.9554 8.19683 14.0383 10.2191 14.6123C10.5954 14.7191 10.7835 14.7725 11.0588 14.7733C11.3643 14.7743 11.778 14.6667 12.0443 14.5171C12.2843 14.3822 12.4609 14.2057 12.814 13.8526L12.9191 13.7475C13.2733 13.3932 13.4505 13.2161 13.5467 13.0258C13.7381 12.6474 13.7381 12.2006 13.5467 11.8222C13.4505 11.632 13.2733 11.4548 12.9191 11.1005L12.7891 10.9706C12.5561 10.7376 12.4395 10.621 12.3223 10.5448C11.8804 10.2575 11.3107 10.2575 10.8688 10.5448C10.7516 10.621 10.6351 10.7376 10.402 10.9706C10.3258 11.0468 10.2877 11.0849 10.2431 11.1168C10.0848 11.2302 9.85534 11.2693 9.66843 11.2148C9.61584 11.1995 9.57428 11.1795 9.49115 11.1396C8.52474 10.6756 7.61898 10.0431 6.81792 9.24205Z",
|
|
@@ -3038,12 +3113,12 @@ var PhonePlusIcon = forwardRef64(
|
|
|
3038
3113
|
);
|
|
3039
3114
|
|
|
3040
3115
|
// src/icons/phoneX.tsx
|
|
3041
|
-
import { forwardRef as
|
|
3042
|
-
import { jsx as
|
|
3043
|
-
var PhoneXIcon =
|
|
3116
|
+
import { forwardRef as forwardRef67 } from "react";
|
|
3117
|
+
import { jsx as jsx69, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
3118
|
+
var PhoneXIcon = forwardRef67(
|
|
3044
3119
|
function PhoneXIcon2(_a, ref) {
|
|
3045
3120
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3046
|
-
return /* @__PURE__ */
|
|
3121
|
+
return /* @__PURE__ */ jsxs47(
|
|
3047
3122
|
"svg",
|
|
3048
3123
|
__spreadProps(__spreadValues({
|
|
3049
3124
|
ref,
|
|
@@ -3055,7 +3130,7 @@ var PhoneXIcon = forwardRef65(
|
|
|
3055
3130
|
className
|
|
3056
3131
|
}, other), {
|
|
3057
3132
|
children: [
|
|
3058
|
-
duotone && /* @__PURE__ */
|
|
3133
|
+
duotone && /* @__PURE__ */ jsx69(
|
|
3059
3134
|
"path",
|
|
3060
3135
|
{
|
|
3061
3136
|
opacity: "0.12",
|
|
@@ -3063,7 +3138,7 @@ var PhoneXIcon = forwardRef65(
|
|
|
3063
3138
|
fill: "currentColor"
|
|
3064
3139
|
}
|
|
3065
3140
|
),
|
|
3066
|
-
/* @__PURE__ */
|
|
3141
|
+
/* @__PURE__ */ jsx69(
|
|
3067
3142
|
"path",
|
|
3068
3143
|
{
|
|
3069
3144
|
d: "M14.0004 2L10.0004 6M10.0004 2L14.0004 6M6.81841 9.24205C6.01736 8.44099 5.38483 7.53523 4.92084 6.56882C4.88092 6.48569 4.86097 6.44413 4.84564 6.39154C4.79115 6.20463 4.83029 5.97513 4.94363 5.81684C4.97552 5.7723 5.01363 5.7342 5.08984 5.65799C5.32291 5.42492 5.43944 5.30838 5.51563 5.1912C5.80296 4.74927 5.80296 4.17955 5.51563 3.73762C5.43944 3.62044 5.32291 3.5039 5.08984 3.27083L4.95992 3.14092C4.60563 2.78662 4.42848 2.60947 4.23823 2.51324C3.85985 2.32186 3.41301 2.32186 3.03464 2.51324C2.84438 2.60947 2.66723 2.78662 2.31294 3.14092L2.20785 3.24601C1.85477 3.59909 1.67823 3.77563 1.54339 4.01565C1.39378 4.28199 1.28621 4.69565 1.28712 5.00113C1.28793 5.27643 1.34134 5.46458 1.44814 5.84087C2.02212 7.86314 3.1051 9.77138 4.69709 11.3634C6.28908 12.9554 8.19732 14.0383 10.2196 14.6123C10.5959 14.7191 10.784 14.7725 11.0593 14.7733C11.3648 14.7743 11.7785 14.6667 12.0448 14.5171C12.2848 14.3822 12.4614 14.2057 12.8145 13.8526L12.9195 13.7475C13.2738 13.3932 13.451 13.2161 13.5472 13.0258C13.7386 12.6474 13.7386 12.2006 13.5472 11.8222C13.451 11.632 13.2738 11.4548 12.9195 11.1005L12.7896 10.9706C12.5566 10.7376 12.44 10.621 12.3228 10.5448C11.8809 10.2575 11.3112 10.2575 10.8693 10.5448C10.7521 10.621 10.6355 10.7376 10.4025 10.9706C10.3263 11.0468 10.2882 11.0849 10.2436 11.1168C10.0853 11.2302 9.85582 11.2693 9.66892 11.2148C9.61633 11.1995 9.57476 11.1795 9.49164 11.1396C8.52523 10.6756 7.61946 10.0431 6.81841 9.24205Z",
|
|
@@ -3080,12 +3155,12 @@ var PhoneXIcon = forwardRef65(
|
|
|
3080
3155
|
);
|
|
3081
3156
|
|
|
3082
3157
|
// src/icons/pieChart.tsx
|
|
3083
|
-
import { forwardRef as
|
|
3084
|
-
import { jsx as
|
|
3085
|
-
var PieChartIcon =
|
|
3158
|
+
import { forwardRef as forwardRef68 } from "react";
|
|
3159
|
+
import { jsx as jsx70, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
3160
|
+
var PieChartIcon = forwardRef68(
|
|
3086
3161
|
function PieChartIcon2(_a, ref) {
|
|
3087
3162
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3088
|
-
return /* @__PURE__ */
|
|
3163
|
+
return /* @__PURE__ */ jsxs48(
|
|
3089
3164
|
"svg",
|
|
3090
3165
|
__spreadProps(__spreadValues({
|
|
3091
3166
|
ref,
|
|
@@ -3097,7 +3172,7 @@ var PieChartIcon = forwardRef66(
|
|
|
3097
3172
|
className
|
|
3098
3173
|
}, other), {
|
|
3099
3174
|
children: [
|
|
3100
|
-
duotone && /* @__PURE__ */
|
|
3175
|
+
duotone && /* @__PURE__ */ jsx70(
|
|
3101
3176
|
"path",
|
|
3102
3177
|
{
|
|
3103
3178
|
opacity: "0.12",
|
|
@@ -3105,7 +3180,7 @@ var PieChartIcon = forwardRef66(
|
|
|
3105
3180
|
fill: "currentColor"
|
|
3106
3181
|
}
|
|
3107
3182
|
),
|
|
3108
|
-
/* @__PURE__ */
|
|
3183
|
+
/* @__PURE__ */ jsx70(
|
|
3109
3184
|
"path",
|
|
3110
3185
|
{
|
|
3111
3186
|
d: "M17.2 14C17.477 14 17.6155 14 17.7278 14.0615C17.8204 14.1122 17.9065 14.2075 17.9478 14.3047C17.9978 14.4225 17.9852 14.5479 17.96 14.7987C17.8296 16.0987 17.3822 17.3514 16.6518 18.4445C15.7727 19.7601 14.5233 20.7855 13.0615 21.391C11.5997 21.9965 9.99113 22.155 8.43928 21.8463C6.88743 21.5376 5.46197 20.7757 4.34315 19.6568C3.22433 18.538 2.4624 17.1126 2.15372 15.5607C1.84504 14.0089 2.00347 12.4003 2.60897 10.9385C3.21447 9.47671 4.23985 8.22728 5.55544 7.34823C6.64856 6.61783 7.90125 6.17039 9.20131 6.03995C9.45207 6.01479 9.57745 6.00221 9.69528 6.0522C9.79249 6.09344 9.88776 6.17964 9.9385 6.27224C10 6.38449 10 6.52299 10 6.79999V13.2C10 13.48 10 13.62 10.0545 13.727C10.1024 13.8211 10.1789 13.8976 10.273 13.9455C10.38 14 10.52 14 10.8 14H17.2Z",
|
|
@@ -3116,7 +3191,7 @@ var PieChartIcon = forwardRef66(
|
|
|
3116
3191
|
}
|
|
3117
3192
|
),
|
|
3118
3193
|
",",
|
|
3119
|
-
/* @__PURE__ */
|
|
3194
|
+
/* @__PURE__ */ jsx70(
|
|
3120
3195
|
"path",
|
|
3121
3196
|
{
|
|
3122
3197
|
d: "M14 2.79999C14 2.52298 14 2.38448 14.0615 2.27223C14.1122 2.17963 14.2075 2.09344 14.3047 2.0522C14.4225 2.0022 14.5479 2.01478 14.7987 2.03993C16.6271 2.22333 18.346 3.03229 19.6569 4.34313C20.9677 5.65398 21.7767 7.37289 21.9601 9.20129C21.9852 9.45206 21.9978 9.57744 21.9478 9.69527C21.9066 9.79248 21.8204 9.88774 21.7278 9.93848C21.6155 9.99998 21.477 9.99999 21.2 9.99999L14.8 9.99999C14.52 9.99999 14.38 9.99999 14.273 9.94549C14.1789 9.89755 14.1024 9.82106 14.0545 9.72698C14 9.62003 14 9.48001 14 9.19999V2.79999Z",
|
|
@@ -3133,11 +3208,11 @@ var PieChartIcon = forwardRef66(
|
|
|
3133
3208
|
);
|
|
3134
3209
|
|
|
3135
3210
|
// src/icons/play.tsx
|
|
3136
|
-
import { forwardRef as
|
|
3137
|
-
import { jsx as
|
|
3138
|
-
var PlayIcon =
|
|
3211
|
+
import { forwardRef as forwardRef69 } from "react";
|
|
3212
|
+
import { jsx as jsx71 } from "react/jsx-runtime";
|
|
3213
|
+
var PlayIcon = forwardRef69(function PlayIcon2(_a, ref) {
|
|
3139
3214
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3140
|
-
return /* @__PURE__ */
|
|
3215
|
+
return /* @__PURE__ */ jsx71(
|
|
3141
3216
|
"svg",
|
|
3142
3217
|
__spreadProps(__spreadValues({
|
|
3143
3218
|
ref,
|
|
@@ -3148,7 +3223,7 @@ var PlayIcon = forwardRef67(function PlayIcon2(_a, ref) {
|
|
|
3148
3223
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3149
3224
|
className
|
|
3150
3225
|
}, other), {
|
|
3151
|
-
children: /* @__PURE__ */
|
|
3226
|
+
children: /* @__PURE__ */ jsx71(
|
|
3152
3227
|
"path",
|
|
3153
3228
|
{
|
|
3154
3229
|
fillRule: "evenodd",
|
|
@@ -3162,12 +3237,12 @@ var PlayIcon = forwardRef67(function PlayIcon2(_a, ref) {
|
|
|
3162
3237
|
});
|
|
3163
3238
|
|
|
3164
3239
|
// src/icons/playCircle.tsx
|
|
3165
|
-
import { forwardRef as
|
|
3166
|
-
import { jsx as
|
|
3167
|
-
var PlayCircleIcon =
|
|
3240
|
+
import { forwardRef as forwardRef70 } from "react";
|
|
3241
|
+
import { jsx as jsx72, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
3242
|
+
var PlayCircleIcon = forwardRef70(
|
|
3168
3243
|
function PlayCircleIcon2(_a, ref) {
|
|
3169
3244
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3170
|
-
return /* @__PURE__ */
|
|
3245
|
+
return /* @__PURE__ */ jsxs49(
|
|
3171
3246
|
"svg",
|
|
3172
3247
|
__spreadProps(__spreadValues({
|
|
3173
3248
|
ref,
|
|
@@ -3179,7 +3254,7 @@ var PlayCircleIcon = forwardRef68(
|
|
|
3179
3254
|
className
|
|
3180
3255
|
}, other), {
|
|
3181
3256
|
children: [
|
|
3182
|
-
duotone && /* @__PURE__ */
|
|
3257
|
+
duotone && /* @__PURE__ */ jsx72(
|
|
3183
3258
|
"path",
|
|
3184
3259
|
{
|
|
3185
3260
|
opacity: "0.12",
|
|
@@ -3187,7 +3262,7 @@ var PlayCircleIcon = forwardRef68(
|
|
|
3187
3262
|
fill: "currentColor"
|
|
3188
3263
|
}
|
|
3189
3264
|
),
|
|
3190
|
-
/* @__PURE__ */
|
|
3265
|
+
/* @__PURE__ */ jsx72(
|
|
3191
3266
|
"path",
|
|
3192
3267
|
{
|
|
3193
3268
|
d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
|
|
@@ -3198,7 +3273,7 @@ var PlayCircleIcon = forwardRef68(
|
|
|
3198
3273
|
}
|
|
3199
3274
|
),
|
|
3200
3275
|
",",
|
|
3201
|
-
/* @__PURE__ */
|
|
3276
|
+
/* @__PURE__ */ jsx72(
|
|
3202
3277
|
"path",
|
|
3203
3278
|
{
|
|
3204
3279
|
d: "M9.5 8.96533C9.5 8.48805 9.5 8.24941 9.59974 8.11618C9.68666 8.00007 9.81971 7.92744 9.96438 7.9171C10.1304 7.90525 10.3311 8.03429 10.7326 8.29239L15.4532 11.3271C15.8016 11.551 15.9758 11.663 16.0359 11.8054C16.0885 11.9298 16.0885 12.0702 16.0359 12.1946C15.9758 12.337 15.8016 12.449 15.4532 12.6729L10.7326 15.7076C10.3311 15.9657 10.1304 16.0948 9.96438 16.0829C9.81971 16.0726 9.68666 15.9999 9.59974 15.8838C9.5 15.7506 9.5 15.512 9.5 15.0347V8.96533Z",
|
|
@@ -3215,11 +3290,11 @@ var PlayCircleIcon = forwardRef68(
|
|
|
3215
3290
|
);
|
|
3216
3291
|
|
|
3217
3292
|
// src/icons/plus.tsx
|
|
3218
|
-
import { forwardRef as
|
|
3219
|
-
import { jsx as
|
|
3220
|
-
var PlusIcon =
|
|
3293
|
+
import { forwardRef as forwardRef71 } from "react";
|
|
3294
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
3295
|
+
var PlusIcon = forwardRef71(function PlusIcon2(_a, ref) {
|
|
3221
3296
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3222
|
-
return /* @__PURE__ */
|
|
3297
|
+
return /* @__PURE__ */ jsx73(
|
|
3223
3298
|
"svg",
|
|
3224
3299
|
__spreadProps(__spreadValues({
|
|
3225
3300
|
ref,
|
|
@@ -3230,7 +3305,7 @@ var PlusIcon = forwardRef69(function PlusIcon2(_a, ref) {
|
|
|
3230
3305
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3231
3306
|
className
|
|
3232
3307
|
}, other), {
|
|
3233
|
-
children: /* @__PURE__ */
|
|
3308
|
+
children: /* @__PURE__ */ jsx73(
|
|
3234
3309
|
"path",
|
|
3235
3310
|
{
|
|
3236
3311
|
d: "M12 5V19M5 12H19",
|
|
@@ -3245,12 +3320,12 @@ var PlusIcon = forwardRef69(function PlusIcon2(_a, ref) {
|
|
|
3245
3320
|
});
|
|
3246
3321
|
|
|
3247
3322
|
// src/icons/plusCircle.tsx
|
|
3248
|
-
import { forwardRef as
|
|
3249
|
-
import { jsx as
|
|
3250
|
-
var PlusCircleIcon =
|
|
3323
|
+
import { forwardRef as forwardRef72 } from "react";
|
|
3324
|
+
import { jsx as jsx74, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
3325
|
+
var PlusCircleIcon = forwardRef72(
|
|
3251
3326
|
function PlusCircleIcon2(_a, ref) {
|
|
3252
3327
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3253
|
-
return /* @__PURE__ */
|
|
3328
|
+
return /* @__PURE__ */ jsxs50(
|
|
3254
3329
|
"svg",
|
|
3255
3330
|
__spreadProps(__spreadValues({
|
|
3256
3331
|
ref,
|
|
@@ -3262,7 +3337,7 @@ var PlusCircleIcon = forwardRef70(
|
|
|
3262
3337
|
className
|
|
3263
3338
|
}, other), {
|
|
3264
3339
|
children: [
|
|
3265
|
-
duotone && /* @__PURE__ */
|
|
3340
|
+
duotone && /* @__PURE__ */ jsx74(
|
|
3266
3341
|
"path",
|
|
3267
3342
|
{
|
|
3268
3343
|
opacity: "0.12",
|
|
@@ -3270,7 +3345,7 @@ var PlusCircleIcon = forwardRef70(
|
|
|
3270
3345
|
fill: "currentColor"
|
|
3271
3346
|
}
|
|
3272
3347
|
),
|
|
3273
|
-
/* @__PURE__ */
|
|
3348
|
+
/* @__PURE__ */ jsx74(
|
|
3274
3349
|
"path",
|
|
3275
3350
|
{
|
|
3276
3351
|
d: "M12 8V16M8 12H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -3287,12 +3362,12 @@ var PlusCircleIcon = forwardRef70(
|
|
|
3287
3362
|
);
|
|
3288
3363
|
|
|
3289
3364
|
// src/icons/puzzlePiece.tsx
|
|
3290
|
-
import { forwardRef as
|
|
3291
|
-
import { jsx as
|
|
3292
|
-
var PuzzlePieceIcon =
|
|
3365
|
+
import { forwardRef as forwardRef73 } from "react";
|
|
3366
|
+
import { jsx as jsx75, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
3367
|
+
var PuzzlePieceIcon = forwardRef73(
|
|
3293
3368
|
function PuzzlePieceIcon2(_a, ref) {
|
|
3294
3369
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3295
|
-
return /* @__PURE__ */
|
|
3370
|
+
return /* @__PURE__ */ jsxs51(
|
|
3296
3371
|
"svg",
|
|
3297
3372
|
__spreadProps(__spreadValues({
|
|
3298
3373
|
ref,
|
|
@@ -3304,7 +3379,7 @@ var PuzzlePieceIcon = forwardRef71(
|
|
|
3304
3379
|
className
|
|
3305
3380
|
}, other), {
|
|
3306
3381
|
children: [
|
|
3307
|
-
duotone && /* @__PURE__ */
|
|
3382
|
+
duotone && /* @__PURE__ */ jsx75(
|
|
3308
3383
|
"path",
|
|
3309
3384
|
{
|
|
3310
3385
|
opacity: "0.12",
|
|
@@ -3312,7 +3387,7 @@ var PuzzlePieceIcon = forwardRef71(
|
|
|
3312
3387
|
fill: "currentColor"
|
|
3313
3388
|
}
|
|
3314
3389
|
),
|
|
3315
|
-
/* @__PURE__ */
|
|
3390
|
+
/* @__PURE__ */ jsx75(
|
|
3316
3391
|
"path",
|
|
3317
3392
|
{
|
|
3318
3393
|
d: "M7.5 4.5C7.5 3.11929 8.61929 2 10 2C11.3807 2 12.5 3.11929 12.5 4.5V6H13.5C14.8978 6 15.5967 6 16.1481 6.22836C16.8831 6.53284 17.4672 7.11687 17.7716 7.85195C18 8.40326 18 9.10218 18 10.5H19.5C20.8807 10.5 22 11.6193 22 13C22 14.3807 20.8807 15.5 19.5 15.5H18V17.2C18 18.8802 18 19.7202 17.673 20.362C17.3854 20.9265 16.9265 21.3854 16.362 21.673C15.7202 22 14.8802 22 13.2 22H12.5V20.25C12.5 19.0074 11.4926 18 10.25 18C9.00736 18 8 19.0074 8 20.25V22H6.8C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V15.5H3.5C4.88071 15.5 6 14.3807 6 13C6 11.6193 4.88071 10.5 3.5 10.5H2C2 9.10218 2 8.40326 2.22836 7.85195C2.53284 7.11687 3.11687 6.53284 3.85195 6.22836C4.40326 6 5.10218 6 6.5 6H7.5V4.5Z",
|
|
@@ -3329,12 +3404,12 @@ var PuzzlePieceIcon = forwardRef71(
|
|
|
3329
3404
|
);
|
|
3330
3405
|
|
|
3331
3406
|
// src/icons/qrCode.tsx
|
|
3332
|
-
import { forwardRef as
|
|
3333
|
-
import { jsx as
|
|
3334
|
-
var QrCodeIcon =
|
|
3407
|
+
import { forwardRef as forwardRef74 } from "react";
|
|
3408
|
+
import { jsx as jsx76, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3409
|
+
var QrCodeIcon = forwardRef74(
|
|
3335
3410
|
function QrCodeIcon2(_a, ref) {
|
|
3336
3411
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3337
|
-
return /* @__PURE__ */
|
|
3412
|
+
return /* @__PURE__ */ jsxs52(
|
|
3338
3413
|
"svg",
|
|
3339
3414
|
__spreadProps(__spreadValues({
|
|
3340
3415
|
ref,
|
|
@@ -3346,7 +3421,7 @@ var QrCodeIcon = forwardRef72(
|
|
|
3346
3421
|
className
|
|
3347
3422
|
}, other), {
|
|
3348
3423
|
children: [
|
|
3349
|
-
duotone && /* @__PURE__ */
|
|
3424
|
+
duotone && /* @__PURE__ */ jsx76(
|
|
3350
3425
|
"path",
|
|
3351
3426
|
{
|
|
3352
3427
|
opacity: "0.4",
|
|
@@ -3357,7 +3432,7 @@ var QrCodeIcon = forwardRef72(
|
|
|
3357
3432
|
strokeLinejoin: "round"
|
|
3358
3433
|
}
|
|
3359
3434
|
),
|
|
3360
|
-
/* @__PURE__ */
|
|
3435
|
+
/* @__PURE__ */ jsx76(
|
|
3361
3436
|
"path",
|
|
3362
3437
|
{
|
|
3363
3438
|
d: "M7 12H12V17M17.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V17.6C21 17.0399 21 16.7599 20.891 16.546C20.7951 16.3578 20.6422 16.2049 20.454 16.109C20.2401 16 19.9601 16 19.4 16H17.6C17.0399 16 16.7599 16 16.546 16.109C16.3578 16.2049 16.2049 16.3578 16.109 16.546C16 16.7599 16 17.0399 16 17.6V19.4C16 19.9601 16 20.2401 16.109 20.454C16.2049 20.6422 16.3578 20.7951 16.546 20.891C16.7599 21 17.0399 21 17.6 21ZM17.6 8H19.4C19.9601 8 20.2401 8 20.454 7.89101C20.6422 7.79513 20.7951 7.64215 20.891 7.45399C21 7.24008 21 6.96005 21 6.4V4.6C21 4.03995 21 3.75992 20.891 3.54601C20.7951 3.35785 20.6422 3.20487 20.454 3.10899C20.2401 3 19.9601 3 19.4 3H17.6C17.0399 3 16.7599 3 16.546 3.10899C16.3578 3.20487 16.2049 3.35785 16.109 3.54601C16 3.75992 16 4.03995 16 4.6V6.4C16 6.96005 16 7.24008 16.109 7.45399C16.2049 7.64215 16.3578 7.79513 16.546 7.89101C16.7599 8 17.0399 8 17.6 8ZM4.6 8H6.4C6.96005 8 7.24008 8 7.45399 7.89101C7.64215 7.79513 7.79513 7.64215 7.89101 7.45399C8 7.24008 8 6.96005 8 6.4V4.6C8 4.03995 8 3.75992 7.89101 3.54601C7.79513 3.35785 7.64215 3.20487 7.45399 3.10899C7.24008 3 6.96005 3 6.4 3H4.6C4.03995 3 3.75992 3 3.54601 3.10899C3.35785 3.20487 3.20487 3.35785 3.10899 3.54601C3 3.75992 3 4.03995 3 4.6V6.4C3 6.96005 3 7.24008 3.10899 7.45399C3.20487 7.64215 3.35785 7.79513 3.54601 7.89101C3.75992 8 4.03995 8 4.6 8Z",
|
|
@@ -3374,12 +3449,12 @@ var QrCodeIcon = forwardRef72(
|
|
|
3374
3449
|
);
|
|
3375
3450
|
|
|
3376
3451
|
// src/icons/receiptCheck.tsx
|
|
3377
|
-
import { forwardRef as
|
|
3378
|
-
import { jsx as
|
|
3379
|
-
var ReceiptCheckIcon =
|
|
3452
|
+
import { forwardRef as forwardRef75 } from "react";
|
|
3453
|
+
import { jsx as jsx77, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3454
|
+
var ReceiptCheckIcon = forwardRef75(
|
|
3380
3455
|
function ReceiptCheckIcon2(_a, ref) {
|
|
3381
3456
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3382
|
-
return /* @__PURE__ */
|
|
3457
|
+
return /* @__PURE__ */ jsxs53(
|
|
3383
3458
|
"svg",
|
|
3384
3459
|
__spreadProps(__spreadValues({
|
|
3385
3460
|
ref,
|
|
@@ -3391,7 +3466,7 @@ var ReceiptCheckIcon = forwardRef73(
|
|
|
3391
3466
|
className
|
|
3392
3467
|
}, other), {
|
|
3393
3468
|
children: [
|
|
3394
|
-
duotone && /* @__PURE__ */
|
|
3469
|
+
duotone && /* @__PURE__ */ jsx77(
|
|
3395
3470
|
"path",
|
|
3396
3471
|
{
|
|
3397
3472
|
opacity: "0.12",
|
|
@@ -3399,7 +3474,7 @@ var ReceiptCheckIcon = forwardRef73(
|
|
|
3399
3474
|
fill: "currentColor"
|
|
3400
3475
|
}
|
|
3401
3476
|
),
|
|
3402
|
-
/* @__PURE__ */
|
|
3477
|
+
/* @__PURE__ */ jsx77(
|
|
3403
3478
|
"path",
|
|
3404
3479
|
{
|
|
3405
3480
|
d: "M9 10.5L11 12.5L15.5 8M20 21V7.8C20 6.11984 20 5.27976 19.673 4.63803C19.3854 4.07354 18.9265 3.6146 18.362 3.32698C17.7202 3 16.8802 3 15.2 3H8.8C7.11984 3 6.27976 3 5.63803 3.32698C5.07354 3.6146 4.6146 4.07354 4.32698 4.63803C4 5.27976 4 6.11984 4 7.8V21L6.75 19L9.25 21L12 19L14.75 21L17.25 19L20 21Z",
|
|
@@ -3416,12 +3491,12 @@ var ReceiptCheckIcon = forwardRef73(
|
|
|
3416
3491
|
);
|
|
3417
3492
|
|
|
3418
3493
|
// src/icons/recording.tsx
|
|
3419
|
-
import { forwardRef as
|
|
3420
|
-
import { jsx as
|
|
3421
|
-
var RecordingIcon =
|
|
3494
|
+
import { forwardRef as forwardRef76 } from "react";
|
|
3495
|
+
import { jsx as jsx78, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3496
|
+
var RecordingIcon = forwardRef76(
|
|
3422
3497
|
function RecordingIcon2(_a, ref) {
|
|
3423
3498
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3424
|
-
return /* @__PURE__ */
|
|
3499
|
+
return /* @__PURE__ */ jsxs54(
|
|
3425
3500
|
"svg",
|
|
3426
3501
|
__spreadProps(__spreadValues({
|
|
3427
3502
|
ref,
|
|
@@ -3433,7 +3508,7 @@ var RecordingIcon = forwardRef74(
|
|
|
3433
3508
|
className
|
|
3434
3509
|
}, other), {
|
|
3435
3510
|
children: [
|
|
3436
|
-
duotone && /* @__PURE__ */
|
|
3511
|
+
duotone && /* @__PURE__ */ jsx78(
|
|
3437
3512
|
"path",
|
|
3438
3513
|
{
|
|
3439
3514
|
opacity: "0.12",
|
|
@@ -3441,7 +3516,7 @@ var RecordingIcon = forwardRef74(
|
|
|
3441
3516
|
fill: "currentColor"
|
|
3442
3517
|
}
|
|
3443
3518
|
),
|
|
3444
|
-
/* @__PURE__ */
|
|
3519
|
+
/* @__PURE__ */ jsx78(
|
|
3445
3520
|
"path",
|
|
3446
3521
|
{
|
|
3447
3522
|
d: "M6 11V13M10 9V15M14 7V17M18 11V13M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -3458,12 +3533,12 @@ var RecordingIcon = forwardRef74(
|
|
|
3458
3533
|
);
|
|
3459
3534
|
|
|
3460
3535
|
// src/icons/refreshCcw.tsx
|
|
3461
|
-
import { forwardRef as
|
|
3462
|
-
import { jsx as
|
|
3463
|
-
var RefreshCcwIcon =
|
|
3536
|
+
import { forwardRef as forwardRef77 } from "react";
|
|
3537
|
+
import { jsx as jsx79 } from "react/jsx-runtime";
|
|
3538
|
+
var RefreshCcwIcon = forwardRef77(
|
|
3464
3539
|
function RefreshCcwIcon2(_a, ref) {
|
|
3465
3540
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3466
|
-
return /* @__PURE__ */
|
|
3541
|
+
return /* @__PURE__ */ jsx79(
|
|
3467
3542
|
"svg",
|
|
3468
3543
|
__spreadProps(__spreadValues({
|
|
3469
3544
|
ref,
|
|
@@ -3474,7 +3549,7 @@ var RefreshCcwIcon = forwardRef75(
|
|
|
3474
3549
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3475
3550
|
className
|
|
3476
3551
|
}, other), {
|
|
3477
|
-
children: /* @__PURE__ */
|
|
3552
|
+
children: /* @__PURE__ */ jsx79(
|
|
3478
3553
|
"path",
|
|
3479
3554
|
{
|
|
3480
3555
|
d: "M2 10C2 10 4.00498 7.26822 5.63384 5.63824C7.26269 4.00827 9.5136 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.89691 21 4.43511 18.2543 3.35177 14.5M2 10V4M2 10H8",
|
|
@@ -3490,12 +3565,12 @@ var RefreshCcwIcon = forwardRef75(
|
|
|
3490
3565
|
);
|
|
3491
3566
|
|
|
3492
3567
|
// src/icons/refreshCw.tsx
|
|
3493
|
-
import { forwardRef as
|
|
3494
|
-
import { jsx as
|
|
3495
|
-
var RefreshCwIcon =
|
|
3568
|
+
import { forwardRef as forwardRef78 } from "react";
|
|
3569
|
+
import { jsx as jsx80 } from "react/jsx-runtime";
|
|
3570
|
+
var RefreshCwIcon = forwardRef78(
|
|
3496
3571
|
function RefreshCwIcon2(_a, ref) {
|
|
3497
3572
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3498
|
-
return /* @__PURE__ */
|
|
3573
|
+
return /* @__PURE__ */ jsx80(
|
|
3499
3574
|
"svg",
|
|
3500
3575
|
__spreadProps(__spreadValues({
|
|
3501
3576
|
ref,
|
|
@@ -3506,7 +3581,7 @@ var RefreshCwIcon = forwardRef76(
|
|
|
3506
3581
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3507
3582
|
className
|
|
3508
3583
|
}, other), {
|
|
3509
|
-
children: /* @__PURE__ */
|
|
3584
|
+
children: /* @__PURE__ */ jsx80(
|
|
3510
3585
|
"path",
|
|
3511
3586
|
{
|
|
3512
3587
|
d: "M14 22C14 22 14.8492 21.8787 18.364 18.364C21.8787 14.8492 21.8787 9.15076 18.364 5.63604C17.1187 4.39077 15.5993 3.58669 14 3.22383M14 22H20M14 22L14 16M10 2.00019C10 2.00019 9.15076 2.12152 5.63604 5.63624C2.12132 9.15095 2.12132 14.8494 5.63604 18.3642C6.88131 19.6094 8.40072 20.4135 10 20.7764M10 2.00019L4 2M10 2.00019L10 8",
|
|
@@ -3522,12 +3597,12 @@ var RefreshCwIcon = forwardRef76(
|
|
|
3522
3597
|
);
|
|
3523
3598
|
|
|
3524
3599
|
// src/icons/rotateCcw.tsx
|
|
3525
|
-
import { forwardRef as
|
|
3526
|
-
import { jsx as
|
|
3527
|
-
var RotateCcwIcon =
|
|
3600
|
+
import { forwardRef as forwardRef79 } from "react";
|
|
3601
|
+
import { jsx as jsx81, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3602
|
+
var RotateCcwIcon = forwardRef79(
|
|
3528
3603
|
function RotateCcwIcon2(_a, ref) {
|
|
3529
3604
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3530
|
-
return /* @__PURE__ */
|
|
3605
|
+
return /* @__PURE__ */ jsxs55(
|
|
3531
3606
|
"svg",
|
|
3532
3607
|
__spreadProps(__spreadValues({
|
|
3533
3608
|
ref,
|
|
@@ -3539,14 +3614,14 @@ var RotateCcwIcon = forwardRef77(
|
|
|
3539
3614
|
className
|
|
3540
3615
|
}, other), {
|
|
3541
3616
|
children: [
|
|
3542
|
-
/* @__PURE__ */
|
|
3617
|
+
/* @__PURE__ */ jsx81(
|
|
3543
3618
|
"path",
|
|
3544
3619
|
{
|
|
3545
3620
|
d: "M21.7656 6.70048C22.2991 6.84342 22.6157 7.39176 22.4727 7.92522C22.3298 8.45869 21.7814 8.77527 21.248 8.63233L20.8424 8.52367C22.5414 12.8289 20.8789 17.8439 16.7501 20.2276C14.0146 21.807 10.8197 21.8703 8.14099 20.6819C7.63616 20.4579 7.40847 19.8671 7.63244 19.3623C7.8564 18.8575 8.44721 18.6298 8.95205 18.8537C11.0716 19.7941 13.5916 19.7418 15.7501 18.4956C18.9061 16.6735 20.2368 12.904 19.1008 9.5813L19.0086 9.92522C18.8657 10.4587 18.3173 10.7753 17.7839 10.6323C17.2504 10.4894 16.9338 9.94105 17.0768 9.40758L17.8088 6.67553C17.9517 6.14207 18.5001 5.82548 19.0336 5.96843L21.7656 6.70048Z",
|
|
3546
3621
|
fill: "currentColor"
|
|
3547
3622
|
}
|
|
3548
3623
|
),
|
|
3549
|
-
/* @__PURE__ */
|
|
3624
|
+
/* @__PURE__ */ jsx81(
|
|
3550
3625
|
"path",
|
|
3551
3626
|
{
|
|
3552
3627
|
d: "M15.8592 3.3189C16.364 3.54286 16.5917 4.13367 16.3677 4.63851C16.1438 5.14334 15.553 5.37103 15.0481 5.14706C12.9286 4.20674 10.4085 4.25902 8.25007 5.50522C5.09408 7.32732 3.76337 11.0968 4.89942 14.4195L4.99159 14.0756C5.13453 13.5421 5.68287 13.2255 6.21633 13.3685C6.7498 13.5114 7.06638 14.0597 6.92344 14.5932L6.19139 17.3252C6.04845 17.8587 5.50011 18.1753 4.96664 18.0324L2.23459 17.3003C1.70113 17.1574 1.38454 16.609 1.52749 16.0756C1.67043 15.5421 2.21876 15.2255 2.75223 15.3685L3.15772 15.4771C1.45877 11.1719 3.12129 6.15692 7.25007 3.77317C9.98557 2.19382 13.1804 2.13049 15.8592 3.3189Z",
|
|
@@ -3560,12 +3635,12 @@ var RotateCcwIcon = forwardRef77(
|
|
|
3560
3635
|
);
|
|
3561
3636
|
|
|
3562
3637
|
// src/icons/rocket.tsx
|
|
3563
|
-
import { forwardRef as
|
|
3564
|
-
import { jsx as
|
|
3565
|
-
var RocketIcon =
|
|
3638
|
+
import { forwardRef as forwardRef80 } from "react";
|
|
3639
|
+
import { jsx as jsx82, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3640
|
+
var RocketIcon = forwardRef80(
|
|
3566
3641
|
function RocketIcon2(_a, ref) {
|
|
3567
3642
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3568
|
-
return /* @__PURE__ */
|
|
3643
|
+
return /* @__PURE__ */ jsxs56(
|
|
3569
3644
|
"svg",
|
|
3570
3645
|
__spreadProps(__spreadValues({
|
|
3571
3646
|
ref,
|
|
@@ -3577,7 +3652,7 @@ var RocketIcon = forwardRef78(
|
|
|
3577
3652
|
className
|
|
3578
3653
|
}, other), {
|
|
3579
3654
|
children: [
|
|
3580
|
-
duotone && /* @__PURE__ */
|
|
3655
|
+
duotone && /* @__PURE__ */ jsx82(
|
|
3581
3656
|
"path",
|
|
3582
3657
|
{
|
|
3583
3658
|
opacity: "0.12",
|
|
@@ -3585,7 +3660,7 @@ var RocketIcon = forwardRef78(
|
|
|
3585
3660
|
fill: "currentColor"
|
|
3586
3661
|
}
|
|
3587
3662
|
),
|
|
3588
|
-
/* @__PURE__ */
|
|
3663
|
+
/* @__PURE__ */ jsx82(
|
|
3589
3664
|
"path",
|
|
3590
3665
|
{
|
|
3591
3666
|
d: "M12 15L9 12M12 15C13.3968 14.4687 14.7369 13.7987 16 13M12 15V20C12 20 15.03 19.45 16 18C17.08 16.38 16 13 16 13M9 12C9.53214 10.6194 10.2022 9.29607 11 8.05C12.1652 6.18699 13.7876 4.65305 15.713 3.5941C17.6384 2.53514 19.8027 1.98637 22 2C22 4.72 21.22 9.5 16 13M9 12H4C4 12 4.55 8.97 6 8C7.62 6.92 11 8 11 8M4.5 16.5C3 17.76 2.5 21.5 2.5 21.5C2.5 21.5 6.24 21 7.5 19.5C8.21 18.66 8.2 17.37 7.41 16.59C7.02131 16.219 6.50929 16.0046 5.97223 15.988C5.43516 15.9714 4.91088 16.1537 4.5 16.5Z",
|
|
@@ -3602,11 +3677,11 @@ var RocketIcon = forwardRef78(
|
|
|
3602
3677
|
);
|
|
3603
3678
|
|
|
3604
3679
|
// src/icons/save.tsx
|
|
3605
|
-
import { forwardRef as
|
|
3606
|
-
import { jsx as
|
|
3607
|
-
var SaveIcon =
|
|
3680
|
+
import { forwardRef as forwardRef81 } from "react";
|
|
3681
|
+
import { jsx as jsx83, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
3682
|
+
var SaveIcon = forwardRef81(function SaveIcon2(_a, ref) {
|
|
3608
3683
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3609
|
-
return /* @__PURE__ */
|
|
3684
|
+
return /* @__PURE__ */ jsxs57(
|
|
3610
3685
|
"svg",
|
|
3611
3686
|
__spreadProps(__spreadValues({
|
|
3612
3687
|
ref,
|
|
@@ -3618,15 +3693,15 @@ var SaveIcon = forwardRef79(function SaveIcon2(_a, ref) {
|
|
|
3618
3693
|
className
|
|
3619
3694
|
}, other), {
|
|
3620
3695
|
children: [
|
|
3621
|
-
duotone && /* @__PURE__ */
|
|
3622
|
-
/* @__PURE__ */
|
|
3696
|
+
duotone && /* @__PURE__ */ jsxs57("g", { opacity: "0.12", children: [
|
|
3697
|
+
/* @__PURE__ */ jsx83(
|
|
3623
3698
|
"path",
|
|
3624
3699
|
{
|
|
3625
3700
|
d: "M7 3H15.2929C15.7456 3 16.1799 3.17986 16.5 3.5C16.8201 3.82014 17 4.25435 17 4.70711V6.4C17 6.96005 17 7.24008 16.891 7.45399C16.7951 7.64215 16.6422 7.79513 16.454 7.89101C16.2401 8 15.9601 8 15.4 8H8.6C8.03995 8 7.75992 8 7.54601 7.89101C7.35785 7.79513 7.20487 7.64215 7.10899 7.45399C7 7.24008 7 6.96005 7 6.4V3Z",
|
|
3626
3701
|
fill: "currentColor"
|
|
3627
3702
|
}
|
|
3628
3703
|
),
|
|
3629
|
-
/* @__PURE__ */
|
|
3704
|
+
/* @__PURE__ */ jsx83(
|
|
3630
3705
|
"path",
|
|
3631
3706
|
{
|
|
3632
3707
|
d: "M7 14.6C7 14.0399 7 13.7599 7.10899 13.546C7.20487 13.3578 7.35785 13.2049 7.54601 13.109C7.75992 13 8.03995 13 8.6 13H15.4C15.9601 13 16.2401 13 16.454 13.109C16.6422 13.2049 16.7951 13.3578 16.891 13.546C17 13.7599 17 14.0399 17 14.6V21H7V14.6Z",
|
|
@@ -3634,7 +3709,7 @@ var SaveIcon = forwardRef79(function SaveIcon2(_a, ref) {
|
|
|
3634
3709
|
}
|
|
3635
3710
|
)
|
|
3636
3711
|
] }),
|
|
3637
|
-
/* @__PURE__ */
|
|
3712
|
+
/* @__PURE__ */ jsx83(
|
|
3638
3713
|
"path",
|
|
3639
3714
|
{
|
|
3640
3715
|
d: "M7 3V6.4C7 6.96005 7 7.24008 7.10899 7.45399C7.20487 7.64215 7.35785 7.79513 7.54601 7.89101C7.75992 8 8.03995 8 8.6 8H15.4C15.9601 8 16.2401 8 16.454 7.89101C16.6422 7.79513 16.7951 7.64215 16.891 7.45399C17 7.24008 17 6.96005 17 6.4V4M17 21V14.6C17 14.0399 17 13.7599 16.891 13.546C16.7951 13.3578 16.6422 13.2049 16.454 13.109C16.2401 13 15.9601 13 15.4 13H8.6C8.03995 13 7.75992 13 7.54601 13.109C7.35785 13.2049 7.20487 13.3578 7.10899 13.546C7 13.7599 7 14.0399 7 14.6V21M21 9.32548V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H14.6745C15.1637 3 15.4083 3 15.6385 3.05526C15.8425 3.10425 16.0376 3.18506 16.2166 3.29472C16.4184 3.4184 16.5914 3.59135 16.9373 3.93726L20.0627 7.06274C20.4086 7.40865 20.5816 7.5816 20.7053 7.78343C20.8149 7.96237 20.8957 8.15746 20.9447 8.36154C21 8.59171 21 8.8363 21 9.32548Z",
|
|
@@ -3650,12 +3725,12 @@ var SaveIcon = forwardRef79(function SaveIcon2(_a, ref) {
|
|
|
3650
3725
|
});
|
|
3651
3726
|
|
|
3652
3727
|
// src/icons/search.tsx
|
|
3653
|
-
import { forwardRef as
|
|
3654
|
-
import { jsx as
|
|
3655
|
-
var SearchMdIcon =
|
|
3728
|
+
import { forwardRef as forwardRef82 } from "react";
|
|
3729
|
+
import { jsx as jsx84, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
3730
|
+
var SearchMdIcon = forwardRef82(
|
|
3656
3731
|
function SearchMdIcon2(_a, ref) {
|
|
3657
3732
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3658
|
-
return /* @__PURE__ */
|
|
3733
|
+
return /* @__PURE__ */ jsxs58(
|
|
3659
3734
|
"svg",
|
|
3660
3735
|
__spreadProps(__spreadValues({
|
|
3661
3736
|
ref,
|
|
@@ -3667,7 +3742,7 @@ var SearchMdIcon = forwardRef80(
|
|
|
3667
3742
|
className
|
|
3668
3743
|
}, other), {
|
|
3669
3744
|
children: [
|
|
3670
|
-
duotone && /* @__PURE__ */
|
|
3745
|
+
duotone && /* @__PURE__ */ jsx84(
|
|
3671
3746
|
"path",
|
|
3672
3747
|
{
|
|
3673
3748
|
opacity: "0.12",
|
|
@@ -3675,7 +3750,7 @@ var SearchMdIcon = forwardRef80(
|
|
|
3675
3750
|
fill: "currentColor"
|
|
3676
3751
|
}
|
|
3677
3752
|
),
|
|
3678
|
-
/* @__PURE__ */
|
|
3753
|
+
/* @__PURE__ */ jsx84(
|
|
3679
3754
|
"path",
|
|
3680
3755
|
{
|
|
3681
3756
|
d: "M21 21L16.65 16.65M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z",
|
|
@@ -3692,11 +3767,11 @@ var SearchMdIcon = forwardRef80(
|
|
|
3692
3767
|
);
|
|
3693
3768
|
|
|
3694
3769
|
// src/icons/send.tsx
|
|
3695
|
-
import { forwardRef as
|
|
3696
|
-
import { jsx as
|
|
3697
|
-
var SendIcon =
|
|
3770
|
+
import { forwardRef as forwardRef83 } from "react";
|
|
3771
|
+
import { jsx as jsx85, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
3772
|
+
var SendIcon = forwardRef83(function SendIcon2(_a, ref) {
|
|
3698
3773
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3699
|
-
return /* @__PURE__ */
|
|
3774
|
+
return /* @__PURE__ */ jsxs59(
|
|
3700
3775
|
"svg",
|
|
3701
3776
|
__spreadProps(__spreadValues({
|
|
3702
3777
|
ref,
|
|
@@ -3708,7 +3783,7 @@ var SendIcon = forwardRef81(function SendIcon2(_a, ref) {
|
|
|
3708
3783
|
className
|
|
3709
3784
|
}, other), {
|
|
3710
3785
|
children: [
|
|
3711
|
-
duotone && /* @__PURE__ */
|
|
3786
|
+
duotone && /* @__PURE__ */ jsx85(
|
|
3712
3787
|
"path",
|
|
3713
3788
|
{
|
|
3714
3789
|
opacity: "0.12",
|
|
@@ -3716,7 +3791,7 @@ var SendIcon = forwardRef81(function SendIcon2(_a, ref) {
|
|
|
3716
3791
|
fill: "currentColor"
|
|
3717
3792
|
}
|
|
3718
3793
|
),
|
|
3719
|
-
/* @__PURE__ */
|
|
3794
|
+
/* @__PURE__ */ jsx85(
|
|
3720
3795
|
"path",
|
|
3721
3796
|
{
|
|
3722
3797
|
d: "M10.5 12H5M4.91534 12.2915L2.58042 19.2662C2.39699 19.8141 2.30527 20.0881 2.37109 20.2568C2.42825 20.4033 2.55102 20.5144 2.7025 20.5567C2.87693 20.6054 3.1404 20.4868 3.66733 20.2497L20.3788 12.7295C20.8931 12.4981 21.1503 12.3823 21.2298 12.2216C21.2988 12.0819 21.2988 11.918 21.2298 11.7784C21.1503 11.6176 20.8931 11.5019 20.3788 11.2704L3.66151 3.7477C3.13616 3.51129 2.87349 3.39309 2.69923 3.44158C2.54789 3.48369 2.42514 3.59448 2.36778 3.74072C2.30174 3.90911 2.39247 4.18249 2.57395 4.72924L4.91599 11.7855C4.94716 11.8794 4.96275 11.9264 4.9689 11.9744C4.97436 12.017 4.9743 12.0601 4.96873 12.1027C4.96246 12.1507 4.94675 12.1976 4.91534 12.2915Z",
|
|
@@ -3732,12 +3807,12 @@ var SendIcon = forwardRef81(function SendIcon2(_a, ref) {
|
|
|
3732
3807
|
});
|
|
3733
3808
|
|
|
3734
3809
|
// src/icons/settings.tsx
|
|
3735
|
-
import { forwardRef as
|
|
3736
|
-
import { jsx as
|
|
3737
|
-
var SettingsIcon =
|
|
3810
|
+
import { forwardRef as forwardRef84 } from "react";
|
|
3811
|
+
import { jsx as jsx86, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
3812
|
+
var SettingsIcon = forwardRef84(
|
|
3738
3813
|
function SettingsIcon2(_a, ref) {
|
|
3739
3814
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3740
|
-
return /* @__PURE__ */
|
|
3815
|
+
return /* @__PURE__ */ jsxs60(
|
|
3741
3816
|
"svg",
|
|
3742
3817
|
__spreadProps(__spreadValues({
|
|
3743
3818
|
ref,
|
|
@@ -3749,7 +3824,7 @@ var SettingsIcon = forwardRef82(
|
|
|
3749
3824
|
className
|
|
3750
3825
|
}, other), {
|
|
3751
3826
|
children: [
|
|
3752
|
-
duotone && /* @__PURE__ */
|
|
3827
|
+
duotone && /* @__PURE__ */ jsx86(
|
|
3753
3828
|
"path",
|
|
3754
3829
|
{
|
|
3755
3830
|
opacity: "0.12",
|
|
@@ -3759,7 +3834,7 @@ var SettingsIcon = forwardRef82(
|
|
|
3759
3834
|
fill: "currentColor"
|
|
3760
3835
|
}
|
|
3761
3836
|
),
|
|
3762
|
-
/* @__PURE__ */
|
|
3837
|
+
/* @__PURE__ */ jsx86(
|
|
3763
3838
|
"path",
|
|
3764
3839
|
{
|
|
3765
3840
|
d: "M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z",
|
|
@@ -3770,7 +3845,7 @@ var SettingsIcon = forwardRef82(
|
|
|
3770
3845
|
}
|
|
3771
3846
|
),
|
|
3772
3847
|
",",
|
|
3773
|
-
/* @__PURE__ */
|
|
3848
|
+
/* @__PURE__ */ jsx86(
|
|
3774
3849
|
"path",
|
|
3775
3850
|
{
|
|
3776
3851
|
d: "M18.7273 14.7273C18.6063 15.0015 18.5702 15.3056 18.6236 15.6005C18.6771 15.8954 18.8177 16.1676 19.0273 16.3818L19.0818 16.4364C19.2509 16.6052 19.385 16.8057 19.4765 17.0265C19.568 17.2472 19.6151 17.4838 19.6151 17.7227C19.6151 17.9617 19.568 18.1983 19.4765 18.419C19.385 18.6397 19.2509 18.8402 19.0818 19.0091C18.913 19.1781 18.7124 19.3122 18.4917 19.4037C18.271 19.4952 18.0344 19.5423 17.7955 19.5423C17.5565 19.5423 17.3199 19.4952 17.0992 19.4037C16.8785 19.3122 16.678 19.1781 16.5091 19.0091L16.4545 18.9545C16.2403 18.745 15.9682 18.6044 15.6733 18.5509C15.3784 18.4974 15.0742 18.5335 14.8 18.6545C14.5311 18.7698 14.3018 18.9611 14.1403 19.205C13.9788 19.4489 13.8921 19.7347 13.8909 20.0273V20.1818C13.8909 20.664 13.6994 21.1265 13.3584 21.4675C13.0174 21.8084 12.5549 22 12.0727 22C11.5905 22 11.1281 21.8084 10.7871 21.4675C10.4461 21.1265 10.2545 20.664 10.2545 20.1818V20.1C10.2475 19.7991 10.1501 19.5073 9.97501 19.2625C9.79991 19.0176 9.55521 18.8312 9.27273 18.7273C8.99853 18.6063 8.69437 18.5702 8.39947 18.6236C8.10456 18.6771 7.83244 18.8177 7.61818 19.0273L7.56364 19.0818C7.39478 19.2509 7.19425 19.385 6.97353 19.4765C6.7528 19.568 6.51621 19.6151 6.27727 19.6151C6.03834 19.6151 5.80174 19.568 5.58102 19.4765C5.36029 19.385 5.15977 19.2509 4.99091 19.0818C4.82186 18.913 4.68775 18.7124 4.59626 18.4917C4.50476 18.271 4.45766 18.0344 4.45766 17.7955C4.45766 17.5565 4.50476 17.3199 4.59626 17.0992C4.68775 16.8785 4.82186 16.678 4.99091 16.5091L5.04545 16.4545C5.25503 16.2403 5.39562 15.9682 5.4491 15.6733C5.50257 15.3784 5.46647 15.0742 5.34545 14.8C5.23022 14.5311 5.03887 14.3018 4.79497 14.1403C4.55107 13.9788 4.26526 13.8921 3.97273 13.8909H3.81818C3.33597 13.8909 2.87351 13.6994 2.53253 13.3584C2.19156 13.0174 2 12.5549 2 12.0727C2 11.5905 2.19156 11.1281 2.53253 10.7871C2.87351 10.4461 3.33597 10.2545 3.81818 10.2545H3.9C4.2009 10.2475 4.49273 10.1501 4.73754 9.97501C4.98236 9.79991 5.16883 9.55521 5.27273 9.27273C5.39374 8.99853 5.42984 8.69437 5.37637 8.39947C5.3229 8.10456 5.18231 7.83244 4.97273 7.61818L4.91818 7.56364C4.74913 7.39478 4.61503 7.19425 4.52353 6.97353C4.43203 6.7528 4.38493 6.51621 4.38493 6.27727C4.38493 6.03834 4.43203 5.80174 4.52353 5.58102C4.61503 5.36029 4.74913 5.15977 4.91818 4.99091C5.08704 4.82186 5.28757 4.68775 5.50829 4.59626C5.72901 4.50476 5.96561 4.45766 6.20455 4.45766C6.44348 4.45766 6.68008 4.50476 6.9008 4.59626C7.12152 4.68775 7.32205 4.82186 7.49091 4.99091L7.54545 5.04545C7.75971 5.25503 8.03183 5.39562 8.32674 5.4491C8.62164 5.50257 8.9258 5.46647 9.2 5.34545H9.27273C9.54161 5.23022 9.77093 5.03887 9.93245 4.79497C10.094 4.55107 10.1807 4.26526 10.1818 3.97273V3.81818C10.1818 3.33597 10.3734 2.87351 10.7144 2.53253C11.0553 2.19156 11.5178 2 12 2C12.4822 2 12.9447 2.19156 13.2856 2.53253C13.6266 2.87351 13.8182 3.33597 13.8182 3.81818V3.9C13.8193 4.19253 13.906 4.47834 14.0676 4.72224C14.2291 4.96614 14.4584 5.15749 14.7273 5.27273C15.0015 5.39374 15.3056 5.42984 15.6005 5.37637C15.8954 5.3229 16.1676 5.18231 16.3818 4.97273L16.4364 4.91818C16.6052 4.74913 16.8057 4.61503 17.0265 4.52353C17.2472 4.43203 17.4838 4.38493 17.7227 4.38493C17.9617 4.38493 18.1983 4.43203 18.419 4.52353C18.6397 4.61503 18.8402 4.74913 19.0091 4.91818C19.1781 5.08704 19.3122 5.28757 19.4037 5.50829C19.4952 5.72901 19.5423 5.96561 19.5423 6.20455C19.5423 6.44348 19.4952 6.68008 19.4037 6.9008C19.3122 7.12152 19.1781 7.32205 19.0091 7.49091L18.9545 7.54545C18.745 7.75971 18.6044 8.03183 18.5509 8.32674C18.4974 8.62164 18.5335 8.9258 18.6545 9.2V9.27273C18.7698 9.54161 18.9611 9.77093 19.205 9.93245C19.4489 10.094 19.7347 10.1807 20.0273 10.1818H20.1818C20.664 10.1818 21.1265 10.3734 21.4675 10.7144C21.8084 11.0553 22 11.5178 22 12C22 12.4822 21.8084 12.9447 21.4675 13.2856C21.1265 13.6266 20.664 13.8182 20.1818 13.8182H20.1C19.8075 13.8193 19.5217 13.906 19.2778 14.0676C19.0339 14.2291 18.8425 14.4584 18.7273 14.7273Z",
|
|
@@ -3787,12 +3862,12 @@ var SettingsIcon = forwardRef82(
|
|
|
3787
3862
|
);
|
|
3788
3863
|
|
|
3789
3864
|
// src/icons/share.tsx
|
|
3790
|
-
import { forwardRef as
|
|
3791
|
-
import { jsx as
|
|
3792
|
-
var ShareIcon =
|
|
3865
|
+
import { forwardRef as forwardRef85 } from "react";
|
|
3866
|
+
import { jsx as jsx87, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
3867
|
+
var ShareIcon = forwardRef85(
|
|
3793
3868
|
function ShareIcon2(_a, ref) {
|
|
3794
3869
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3795
|
-
return /* @__PURE__ */
|
|
3870
|
+
return /* @__PURE__ */ jsxs61(
|
|
3796
3871
|
"svg",
|
|
3797
3872
|
__spreadProps(__spreadValues({
|
|
3798
3873
|
ref,
|
|
@@ -3804,22 +3879,22 @@ var ShareIcon = forwardRef83(
|
|
|
3804
3879
|
className
|
|
3805
3880
|
}, other), {
|
|
3806
3881
|
children: [
|
|
3807
|
-
duotone && /* @__PURE__ */
|
|
3808
|
-
/* @__PURE__ */
|
|
3882
|
+
duotone && /* @__PURE__ */ jsxs61("g", { opacity: "0.12", children: [
|
|
3883
|
+
/* @__PURE__ */ jsx87(
|
|
3809
3884
|
"path",
|
|
3810
3885
|
{
|
|
3811
3886
|
d: "M18 8C19.6569 8 21 6.65685 21 5C21 3.34315 19.6569 2 18 2C16.3431 2 15 3.34315 15 5C15 6.65685 16.3431 8 18 8Z",
|
|
3812
3887
|
fill: "currentColor"
|
|
3813
3888
|
}
|
|
3814
3889
|
),
|
|
3815
|
-
/* @__PURE__ */
|
|
3890
|
+
/* @__PURE__ */ jsx87(
|
|
3816
3891
|
"path",
|
|
3817
3892
|
{
|
|
3818
3893
|
d: "M6 15C7.65685 15 9 13.6569 9 12C9 10.3431 7.65685 9 6 9C4.34315 9 3 10.3431 3 12C3 13.6569 4.34315 15 6 15Z",
|
|
3819
3894
|
fill: "currentColor"
|
|
3820
3895
|
}
|
|
3821
3896
|
),
|
|
3822
|
-
/* @__PURE__ */
|
|
3897
|
+
/* @__PURE__ */ jsx87(
|
|
3823
3898
|
"path",
|
|
3824
3899
|
{
|
|
3825
3900
|
d: "M18 22C19.6569 22 21 20.6569 21 19C21 17.3431 19.6569 16 18 16C16.3431 16 15 17.3431 15 19C15 20.6569 16.3431 22 18 22Z",
|
|
@@ -3827,7 +3902,7 @@ var ShareIcon = forwardRef83(
|
|
|
3827
3902
|
}
|
|
3828
3903
|
)
|
|
3829
3904
|
] }),
|
|
3830
|
-
/* @__PURE__ */
|
|
3905
|
+
/* @__PURE__ */ jsx87(
|
|
3831
3906
|
"path",
|
|
3832
3907
|
{
|
|
3833
3908
|
d: "M8.59 13.51L15.42 17.49M15.41 6.51L8.59 10.49M21 5C21 6.65685 19.6569 8 18 8C16.3431 8 15 6.65685 15 5C15 3.34315 16.3431 2 18 2C19.6569 2 21 3.34315 21 5ZM9 12C9 13.6569 7.65685 15 6 15C4.34315 15 3 13.6569 3 12C3 10.3431 4.34315 9 6 9C7.65685 9 9 10.3431 9 12ZM21 19C21 20.6569 19.6569 22 18 22C16.3431 22 15 20.6569 15 19C15 17.3431 16.3431 16 18 16C19.6569 16 21 17.3431 21 19Z",
|
|
@@ -3844,12 +3919,12 @@ var ShareIcon = forwardRef83(
|
|
|
3844
3919
|
);
|
|
3845
3920
|
|
|
3846
3921
|
// src/icons/shareArrow.tsx
|
|
3847
|
-
import { forwardRef as
|
|
3848
|
-
import { jsx as
|
|
3849
|
-
var ShareArrowIcon =
|
|
3922
|
+
import { forwardRef as forwardRef86 } from "react";
|
|
3923
|
+
import { jsx as jsx88, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
3924
|
+
var ShareArrowIcon = forwardRef86(
|
|
3850
3925
|
function ShareArrowIcon2(_a, ref) {
|
|
3851
3926
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3852
|
-
return /* @__PURE__ */
|
|
3927
|
+
return /* @__PURE__ */ jsxs62(
|
|
3853
3928
|
"svg",
|
|
3854
3929
|
__spreadProps(__spreadValues({
|
|
3855
3930
|
ref,
|
|
@@ -3861,7 +3936,7 @@ var ShareArrowIcon = forwardRef84(
|
|
|
3861
3936
|
className
|
|
3862
3937
|
}, other), {
|
|
3863
3938
|
children: [
|
|
3864
|
-
duotone && /* @__PURE__ */
|
|
3939
|
+
duotone && /* @__PURE__ */ jsx88(
|
|
3865
3940
|
"path",
|
|
3866
3941
|
{
|
|
3867
3942
|
opacity: "0.12",
|
|
@@ -3869,7 +3944,7 @@ var ShareArrowIcon = forwardRef84(
|
|
|
3869
3944
|
fill: "currentColor"
|
|
3870
3945
|
}
|
|
3871
3946
|
),
|
|
3872
|
-
/* @__PURE__ */
|
|
3947
|
+
/* @__PURE__ */ jsx88(
|
|
3873
3948
|
"path",
|
|
3874
3949
|
{
|
|
3875
3950
|
d: "M21 9.00001L21 3.00001M21 3.00001H15M21 3.00001L12 12M10 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V14",
|
|
@@ -3886,12 +3961,12 @@ var ShareArrowIcon = forwardRef84(
|
|
|
3886
3961
|
);
|
|
3887
3962
|
|
|
3888
3963
|
// src/icons/skipBack.tsx
|
|
3889
|
-
import { forwardRef as
|
|
3890
|
-
import { jsx as
|
|
3891
|
-
var SkipBackIcon =
|
|
3964
|
+
import { forwardRef as forwardRef87 } from "react";
|
|
3965
|
+
import { jsx as jsx89, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
3966
|
+
var SkipBackIcon = forwardRef87(
|
|
3892
3967
|
function SkipBackIcon2(_a, ref) {
|
|
3893
3968
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3894
|
-
return /* @__PURE__ */
|
|
3969
|
+
return /* @__PURE__ */ jsxs63(
|
|
3895
3970
|
"svg",
|
|
3896
3971
|
__spreadProps(__spreadValues({
|
|
3897
3972
|
ref,
|
|
@@ -3903,7 +3978,7 @@ var SkipBackIcon = forwardRef85(
|
|
|
3903
3978
|
className
|
|
3904
3979
|
}, other), {
|
|
3905
3980
|
children: [
|
|
3906
|
-
duotone && /* @__PURE__ */
|
|
3981
|
+
duotone && /* @__PURE__ */ jsx89(
|
|
3907
3982
|
"path",
|
|
3908
3983
|
{
|
|
3909
3984
|
opacity: "0.12",
|
|
@@ -3911,7 +3986,7 @@ var SkipBackIcon = forwardRef85(
|
|
|
3911
3986
|
fill: "currentColor"
|
|
3912
3987
|
}
|
|
3913
3988
|
),
|
|
3914
|
-
/* @__PURE__ */
|
|
3989
|
+
/* @__PURE__ */ jsx89(
|
|
3915
3990
|
"path",
|
|
3916
3991
|
{
|
|
3917
3992
|
d: "M5 19V5M16.4005 6.07961L10.5617 10.7506C10.0279 11.1777 9.76097 11.3912 9.66433 11.6492C9.5796 11.8754 9.5796 12.1246 9.66433 12.3508C9.76097 12.6088 10.0279 12.8223 10.5617 13.2494L16.4005 17.9204C17.2327 18.5861 17.6487 18.919 17.9989 18.9194C18.3035 18.9197 18.5916 18.7812 18.7815 18.5432C19 18.2695 19 17.7367 19 16.671V7.329C19 6.2633 19 5.73045 18.7815 5.45677C18.5916 5.21876 18.3035 5.0803 17.9989 5.08063C17.6487 5.081 17.2327 5.41387 16.4005 6.07961Z",
|
|
@@ -3928,12 +4003,12 @@ var SkipBackIcon = forwardRef85(
|
|
|
3928
4003
|
);
|
|
3929
4004
|
|
|
3930
4005
|
// src/icons/skipForward.tsx
|
|
3931
|
-
import { forwardRef as
|
|
3932
|
-
import { jsx as
|
|
3933
|
-
var SkipForwardIcon =
|
|
4006
|
+
import { forwardRef as forwardRef88 } from "react";
|
|
4007
|
+
import { jsx as jsx90, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
4008
|
+
var SkipForwardIcon = forwardRef88(
|
|
3934
4009
|
function SkipForwardIcon2(_a, ref) {
|
|
3935
4010
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3936
|
-
return /* @__PURE__ */
|
|
4011
|
+
return /* @__PURE__ */ jsxs64(
|
|
3937
4012
|
"svg",
|
|
3938
4013
|
__spreadProps(__spreadValues({
|
|
3939
4014
|
ref,
|
|
@@ -3945,7 +4020,7 @@ var SkipForwardIcon = forwardRef86(
|
|
|
3945
4020
|
className
|
|
3946
4021
|
}, other), {
|
|
3947
4022
|
children: [
|
|
3948
|
-
duotone && /* @__PURE__ */
|
|
4023
|
+
duotone && /* @__PURE__ */ jsx90(
|
|
3949
4024
|
"path",
|
|
3950
4025
|
{
|
|
3951
4026
|
opacity: "0.12",
|
|
@@ -3953,7 +4028,7 @@ var SkipForwardIcon = forwardRef86(
|
|
|
3953
4028
|
fill: "currentColor"
|
|
3954
4029
|
}
|
|
3955
4030
|
),
|
|
3956
|
-
/* @__PURE__ */
|
|
4031
|
+
/* @__PURE__ */ jsx90(
|
|
3957
4032
|
"path",
|
|
3958
4033
|
{
|
|
3959
4034
|
d: "M19 5V19M7.59951 17.9204L13.4383 13.2494C13.9721 12.8223 14.239 12.6088 14.3357 12.3508C14.4204 12.1246 14.4204 11.8754 14.3357 11.6492C14.239 11.3912 13.9721 11.1777 13.4383 10.7506L7.59951 6.07961C6.76734 5.41387 6.35125 5.081 6.00108 5.08063C5.69654 5.0803 5.40845 5.21876 5.21846 5.45677C5 5.73045 5 6.2633 5 7.329V16.671C5 17.7367 5 18.2695 5.21846 18.5432C5.40845 18.7812 5.69654 18.9197 6.00108 18.9194C6.35125 18.919 6.76734 18.5861 7.59951 17.9204Z",
|
|
@@ -3970,12 +4045,12 @@ var SkipForwardIcon = forwardRef86(
|
|
|
3970
4045
|
);
|
|
3971
4046
|
|
|
3972
4047
|
// src/icons/spinner.tsx
|
|
3973
|
-
import { forwardRef as
|
|
3974
|
-
import { jsx as
|
|
3975
|
-
var SpinnerIcon =
|
|
4048
|
+
import { forwardRef as forwardRef89 } from "react";
|
|
4049
|
+
import { jsx as jsx91, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
4050
|
+
var SpinnerIcon = forwardRef89(
|
|
3976
4051
|
function SpinnerIcon2(_a, ref) {
|
|
3977
4052
|
var _b = _a, { size = 24, className = "animate-spin text-gray-1000" } = _b, other = __objRest(_b, ["size", "className"]);
|
|
3978
|
-
return /* @__PURE__ */
|
|
4053
|
+
return /* @__PURE__ */ jsxs65(
|
|
3979
4054
|
"svg",
|
|
3980
4055
|
__spreadProps(__spreadValues({
|
|
3981
4056
|
ref,
|
|
@@ -3987,7 +4062,7 @@ var SpinnerIcon = forwardRef87(
|
|
|
3987
4062
|
className
|
|
3988
4063
|
}, other), {
|
|
3989
4064
|
children: [
|
|
3990
|
-
/* @__PURE__ */
|
|
4065
|
+
/* @__PURE__ */ jsx91(
|
|
3991
4066
|
"path",
|
|
3992
4067
|
{
|
|
3993
4068
|
opacity: "0.12",
|
|
@@ -3995,7 +4070,7 @@ var SpinnerIcon = forwardRef87(
|
|
|
3995
4070
|
fill: "currentColor"
|
|
3996
4071
|
}
|
|
3997
4072
|
),
|
|
3998
|
-
/* @__PURE__ */
|
|
4073
|
+
/* @__PURE__ */ jsx91(
|
|
3999
4074
|
"path",
|
|
4000
4075
|
{
|
|
4001
4076
|
d: "M22.916 12C23.7908 12 24.5108 12.7122 24.3956 13.5794C24.1641 15.323 23.5512 17.0011 22.5928 18.4912C21.3476 20.4272 19.5719 21.9643 17.4774 22.919C15.3829 23.8738 13.058 24.206 10.7799 23.8761C8.50179 23.5461 6.36667 22.5679 4.62912 21.0581C2.89158 19.5483 1.62494 17.5706 0.98025 15.3609C0.335563 13.1511 0.340035 10.8026 0.993131 8.5953C1.64623 6.38803 2.92039 4.41517 4.66367 2.91199C6.00545 1.75501 7.58156 0.913857 9.27571 0.441275C10.1184 0.206218 10.9241 0.819698 11.0462 1.68595C11.1683 2.55221 10.5575 3.33995 9.72694 3.61463C8.63201 3.97673 7.61359 4.55146 6.73246 5.31122C5.44941 6.41757 4.51162 7.86959 4.03094 9.49414C3.55027 11.1187 3.54697 12.8472 4.02146 14.4736C4.49595 16.1 5.4282 17.5555 6.70703 18.6668C7.98587 19.778 9.55732 20.4979 11.234 20.7408C12.9107 20.9836 14.6218 20.7391 16.1634 20.0364C17.7049 19.3337 19.0119 18.2024 19.9283 16.7775C20.5576 15.799 20.9846 14.7103 21.1903 13.5755C21.3464 12.7148 22.0412 12 22.916 12Z",
|
|
@@ -4009,12 +4084,12 @@ var SpinnerIcon = forwardRef87(
|
|
|
4009
4084
|
);
|
|
4010
4085
|
|
|
4011
4086
|
// src/icons/stars.tsx
|
|
4012
|
-
import { forwardRef as
|
|
4013
|
-
import { jsx as
|
|
4014
|
-
var StarsIcon =
|
|
4087
|
+
import { forwardRef as forwardRef90 } from "react";
|
|
4088
|
+
import { jsx as jsx92, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
4089
|
+
var StarsIcon = forwardRef90(
|
|
4015
4090
|
function StarsIcon2(_a, ref) {
|
|
4016
4091
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4017
|
-
return /* @__PURE__ */
|
|
4092
|
+
return /* @__PURE__ */ jsxs66(
|
|
4018
4093
|
"svg",
|
|
4019
4094
|
__spreadProps(__spreadValues({
|
|
4020
4095
|
ref,
|
|
@@ -4026,7 +4101,7 @@ var StarsIcon = forwardRef88(
|
|
|
4026
4101
|
className
|
|
4027
4102
|
}, other), {
|
|
4028
4103
|
children: [
|
|
4029
|
-
duotone && /* @__PURE__ */
|
|
4104
|
+
duotone && /* @__PURE__ */ jsx92(
|
|
4030
4105
|
"path",
|
|
4031
4106
|
{
|
|
4032
4107
|
opacity: "0.12",
|
|
@@ -4034,7 +4109,7 @@ var StarsIcon = forwardRef88(
|
|
|
4034
4109
|
fill: "currentColor"
|
|
4035
4110
|
}
|
|
4036
4111
|
),
|
|
4037
|
-
/* @__PURE__ */
|
|
4112
|
+
/* @__PURE__ */ jsx92(
|
|
4038
4113
|
"path",
|
|
4039
4114
|
{
|
|
4040
4115
|
d: "M4.5 22V17M4.5 7V2M2 4.5H7M2 19.5H7M13 3L11.2658 7.50886C10.9838 8.24209 10.8428 8.60871 10.6235 8.91709C10.4292 9.1904 10.1904 9.42919 9.91709 9.62353C9.60871 9.8428 9.24209 9.98381 8.50886 10.2658L4 12L8.50886 13.7342C9.24209 14.0162 9.60871 14.1572 9.91709 14.3765C10.1904 14.5708 10.4292 14.8096 10.6235 15.0829C10.8428 15.3913 10.9838 15.7579 11.2658 16.4911L13 21L14.7342 16.4911C15.0162 15.7579 15.1572 15.3913 15.3765 15.0829C15.5708 14.8096 15.8096 14.5708 16.0829 14.3765C16.3913 14.1572 16.7579 14.0162 17.4911 13.7342L22 12L17.4911 10.2658C16.7579 9.98381 16.3913 9.8428 16.0829 9.62353C15.8096 9.42919 15.5708 9.1904 15.3765 8.91709C15.1572 8.60871 15.0162 8.24209 14.7342 7.50886L13 3Z",
|
|
@@ -4051,12 +4126,12 @@ var StarsIcon = forwardRef88(
|
|
|
4051
4126
|
);
|
|
4052
4127
|
|
|
4053
4128
|
// src/icons/trash.tsx
|
|
4054
|
-
import { forwardRef as
|
|
4055
|
-
import { jsx as
|
|
4056
|
-
var TrashIcon =
|
|
4129
|
+
import { forwardRef as forwardRef91 } from "react";
|
|
4130
|
+
import { jsx as jsx93, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
4131
|
+
var TrashIcon = forwardRef91(
|
|
4057
4132
|
function TrashIcon2(_a, ref) {
|
|
4058
4133
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4059
|
-
return /* @__PURE__ */
|
|
4134
|
+
return /* @__PURE__ */ jsxs67(
|
|
4060
4135
|
"svg",
|
|
4061
4136
|
__spreadProps(__spreadValues({
|
|
4062
4137
|
ref,
|
|
@@ -4068,7 +4143,7 @@ var TrashIcon = forwardRef89(
|
|
|
4068
4143
|
className
|
|
4069
4144
|
}, other), {
|
|
4070
4145
|
children: [
|
|
4071
|
-
duotone && /* @__PURE__ */
|
|
4146
|
+
duotone && /* @__PURE__ */ jsx93(
|
|
4072
4147
|
"path",
|
|
4073
4148
|
{
|
|
4074
4149
|
opacity: "0.12",
|
|
@@ -4076,7 +4151,7 @@ var TrashIcon = forwardRef89(
|
|
|
4076
4151
|
fill: "currentColor"
|
|
4077
4152
|
}
|
|
4078
4153
|
),
|
|
4079
|
-
/* @__PURE__ */
|
|
4154
|
+
/* @__PURE__ */ jsx93(
|
|
4080
4155
|
"path",
|
|
4081
4156
|
{
|
|
4082
4157
|
d: "M9 3H15M3 6H21M19 6L18.2987 16.5193C18.1935 18.0975 18.1409 18.8867 17.8 19.485C17.4999 20.0118 17.0472 20.4353 16.5017 20.6997C15.882 21 15.0911 21 13.5093 21H10.4907C8.90891 21 8.11803 21 7.49834 20.6997C6.95276 20.4353 6.50009 20.0118 6.19998 19.485C5.85911 18.8867 5.8065 18.0975 5.70129 16.5193L5 6M10 10.5V15.5M14 10.5V15.5",
|
|
@@ -4093,12 +4168,12 @@ var TrashIcon = forwardRef89(
|
|
|
4093
4168
|
);
|
|
4094
4169
|
|
|
4095
4170
|
// src/icons/trendDown.tsx
|
|
4096
|
-
import { forwardRef as
|
|
4097
|
-
import { jsx as
|
|
4098
|
-
var TrendDownIcon =
|
|
4171
|
+
import { forwardRef as forwardRef92 } from "react";
|
|
4172
|
+
import { jsx as jsx94 } from "react/jsx-runtime";
|
|
4173
|
+
var TrendDownIcon = forwardRef92(
|
|
4099
4174
|
function TrendDownIcon2(_a, ref) {
|
|
4100
4175
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4101
|
-
return /* @__PURE__ */
|
|
4176
|
+
return /* @__PURE__ */ jsx94(
|
|
4102
4177
|
"svg",
|
|
4103
4178
|
__spreadProps(__spreadValues({
|
|
4104
4179
|
ref,
|
|
@@ -4109,7 +4184,7 @@ var TrendDownIcon = forwardRef90(
|
|
|
4109
4184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4110
4185
|
className
|
|
4111
4186
|
}, other), {
|
|
4112
|
-
children: /* @__PURE__ */
|
|
4187
|
+
children: /* @__PURE__ */ jsx94(
|
|
4113
4188
|
"path",
|
|
4114
4189
|
{
|
|
4115
4190
|
d: "M22 17L14.1314 9.13137C13.7354 8.73535 13.5373 8.53735 13.309 8.46316C13.1082 8.3979 12.8918 8.3979 12.691 8.46316C12.4627 8.53735 12.2646 8.73535 11.8686 9.13137L9.13137 11.8686C8.73535 12.2646 8.53735 12.4627 8.30902 12.5368C8.10817 12.6021 7.89183 12.6021 7.69098 12.5368C7.46265 12.4627 7.26465 12.2646 6.86863 11.8686L2 7M22 17H15M22 17V10",
|
|
@@ -4125,12 +4200,12 @@ var TrendDownIcon = forwardRef90(
|
|
|
4125
4200
|
);
|
|
4126
4201
|
|
|
4127
4202
|
// src/icons/trendUp.tsx
|
|
4128
|
-
import { forwardRef as
|
|
4129
|
-
import { jsx as
|
|
4130
|
-
var TrendUpIcon =
|
|
4203
|
+
import { forwardRef as forwardRef93 } from "react";
|
|
4204
|
+
import { jsx as jsx95 } from "react/jsx-runtime";
|
|
4205
|
+
var TrendUpIcon = forwardRef93(
|
|
4131
4206
|
function TrendUpIcon2(_a, ref) {
|
|
4132
4207
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4133
|
-
return /* @__PURE__ */
|
|
4208
|
+
return /* @__PURE__ */ jsx95(
|
|
4134
4209
|
"svg",
|
|
4135
4210
|
__spreadProps(__spreadValues({
|
|
4136
4211
|
ref,
|
|
@@ -4141,7 +4216,7 @@ var TrendUpIcon = forwardRef91(
|
|
|
4141
4216
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4142
4217
|
className
|
|
4143
4218
|
}, other), {
|
|
4144
|
-
children: /* @__PURE__ */
|
|
4219
|
+
children: /* @__PURE__ */ jsx95(
|
|
4145
4220
|
"path",
|
|
4146
4221
|
{
|
|
4147
4222
|
d: "M22 7L14.1314 14.8686C13.7354 15.2646 13.5373 15.4627 13.309 15.5368C13.1082 15.6021 12.8918 15.6021 12.691 15.5368C12.4627 15.4627 12.2646 15.2646 11.8686 14.8686L9.13137 12.1314C8.73535 11.7354 8.53735 11.5373 8.30902 11.4632C8.10817 11.3979 7.89183 11.3979 7.69098 11.4632C7.46265 11.5373 7.26465 11.7354 6.86863 12.1314L2 17M22 7H15M22 7V14",
|
|
@@ -4157,11 +4232,11 @@ var TrendUpIcon = forwardRef91(
|
|
|
4157
4232
|
);
|
|
4158
4233
|
|
|
4159
4234
|
// src/icons/user.tsx
|
|
4160
|
-
import { forwardRef as
|
|
4161
|
-
import { jsx as
|
|
4162
|
-
var UserIcon =
|
|
4235
|
+
import { forwardRef as forwardRef94 } from "react";
|
|
4236
|
+
import { jsx as jsx96, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
4237
|
+
var UserIcon = forwardRef94(function UserIcon2(_a, ref) {
|
|
4163
4238
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4164
|
-
return /* @__PURE__ */
|
|
4239
|
+
return /* @__PURE__ */ jsxs68(
|
|
4165
4240
|
"svg",
|
|
4166
4241
|
__spreadProps(__spreadValues({
|
|
4167
4242
|
ref,
|
|
@@ -4173,7 +4248,7 @@ var UserIcon = forwardRef92(function UserIcon2(_a, ref) {
|
|
|
4173
4248
|
className
|
|
4174
4249
|
}, other), {
|
|
4175
4250
|
children: [
|
|
4176
|
-
duotone && /* @__PURE__ */
|
|
4251
|
+
duotone && /* @__PURE__ */ jsx96(
|
|
4177
4252
|
"path",
|
|
4178
4253
|
{
|
|
4179
4254
|
opacity: "0.12",
|
|
@@ -4181,7 +4256,7 @@ var UserIcon = forwardRef92(function UserIcon2(_a, ref) {
|
|
|
4181
4256
|
fill: "currentColor"
|
|
4182
4257
|
}
|
|
4183
4258
|
),
|
|
4184
|
-
/* @__PURE__ */
|
|
4259
|
+
/* @__PURE__ */ jsx96(
|
|
4185
4260
|
"path",
|
|
4186
4261
|
{
|
|
4187
4262
|
d: "M20 21C20 19.6044 20 18.9067 19.8278 18.3389C19.44 17.0605 18.4395 16.06 17.1611 15.6722C16.5933 15.5 15.8956 15.5 14.5 15.5H9.5C8.10444 15.5 7.40665 15.5 6.83886 15.6722C5.56045 16.06 4.56004 17.0605 4.17224 18.3389C4 18.9067 4 19.6044 4 21M16.5 7.5C16.5 9.98528 14.4853 12 12 12C9.51472 12 7.5 9.98528 7.5 7.5C7.5 5.01472 9.51472 3 12 3C14.4853 3 16.5 5.01472 16.5 7.5Z",
|
|
@@ -4197,12 +4272,12 @@ var UserIcon = forwardRef92(function UserIcon2(_a, ref) {
|
|
|
4197
4272
|
});
|
|
4198
4273
|
|
|
4199
4274
|
// src/icons/userPlus.tsx
|
|
4200
|
-
import { forwardRef as
|
|
4201
|
-
import { jsx as
|
|
4202
|
-
var UserPlusIcon =
|
|
4275
|
+
import { forwardRef as forwardRef95 } from "react";
|
|
4276
|
+
import { jsx as jsx97, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4277
|
+
var UserPlusIcon = forwardRef95(
|
|
4203
4278
|
function UserPlusIcon2(_a, ref) {
|
|
4204
4279
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4205
|
-
return /* @__PURE__ */
|
|
4280
|
+
return /* @__PURE__ */ jsxs69(
|
|
4206
4281
|
"svg",
|
|
4207
4282
|
__spreadProps(__spreadValues({
|
|
4208
4283
|
ref,
|
|
@@ -4214,7 +4289,7 @@ var UserPlusIcon = forwardRef93(
|
|
|
4214
4289
|
className
|
|
4215
4290
|
}, other), {
|
|
4216
4291
|
children: [
|
|
4217
|
-
duotone && /* @__PURE__ */
|
|
4292
|
+
duotone && /* @__PURE__ */ jsx97(
|
|
4218
4293
|
"path",
|
|
4219
4294
|
{
|
|
4220
4295
|
opacity: "0.12",
|
|
@@ -4222,7 +4297,7 @@ var UserPlusIcon = forwardRef93(
|
|
|
4222
4297
|
fill: "currentColor"
|
|
4223
4298
|
}
|
|
4224
4299
|
),
|
|
4225
|
-
/* @__PURE__ */
|
|
4300
|
+
/* @__PURE__ */ jsx97(
|
|
4226
4301
|
"path",
|
|
4227
4302
|
{
|
|
4228
4303
|
d: "M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M19 21V15M16 18H22M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z",
|
|
@@ -4239,12 +4314,12 @@ var UserPlusIcon = forwardRef93(
|
|
|
4239
4314
|
);
|
|
4240
4315
|
|
|
4241
4316
|
// src/icons/userX.tsx
|
|
4242
|
-
import { forwardRef as
|
|
4243
|
-
import { jsx as
|
|
4244
|
-
var UserXIcon =
|
|
4317
|
+
import { forwardRef as forwardRef96 } from "react";
|
|
4318
|
+
import { jsx as jsx98, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
4319
|
+
var UserXIcon = forwardRef96(
|
|
4245
4320
|
function UserXIcon2(_a, ref) {
|
|
4246
4321
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4247
|
-
return /* @__PURE__ */
|
|
4322
|
+
return /* @__PURE__ */ jsxs70(
|
|
4248
4323
|
"svg",
|
|
4249
4324
|
__spreadProps(__spreadValues({
|
|
4250
4325
|
ref,
|
|
@@ -4256,7 +4331,7 @@ var UserXIcon = forwardRef94(
|
|
|
4256
4331
|
className
|
|
4257
4332
|
}, other), {
|
|
4258
4333
|
children: [
|
|
4259
|
-
duotone && /* @__PURE__ */
|
|
4334
|
+
duotone && /* @__PURE__ */ jsx98(
|
|
4260
4335
|
"path",
|
|
4261
4336
|
{
|
|
4262
4337
|
opacity: "0.12",
|
|
@@ -4264,7 +4339,7 @@ var UserXIcon = forwardRef94(
|
|
|
4264
4339
|
fill: "currentColor"
|
|
4265
4340
|
}
|
|
4266
4341
|
),
|
|
4267
|
-
/* @__PURE__ */
|
|
4342
|
+
/* @__PURE__ */ jsx98(
|
|
4268
4343
|
"path",
|
|
4269
4344
|
{
|
|
4270
4345
|
d: "M16.5 16L21.5 21M21.5 16L16.5 21M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z",
|
|
@@ -4281,12 +4356,12 @@ var UserXIcon = forwardRef94(
|
|
|
4281
4356
|
);
|
|
4282
4357
|
|
|
4283
4358
|
// src/icons/users.tsx
|
|
4284
|
-
import { forwardRef as
|
|
4285
|
-
import { jsx as
|
|
4286
|
-
var UsersIcon =
|
|
4359
|
+
import { forwardRef as forwardRef97 } from "react";
|
|
4360
|
+
import { jsx as jsx99, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
4361
|
+
var UsersIcon = forwardRef97(
|
|
4287
4362
|
function UsersIcon2(_a, ref) {
|
|
4288
4363
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4289
|
-
return /* @__PURE__ */
|
|
4364
|
+
return /* @__PURE__ */ jsxs71(
|
|
4290
4365
|
"svg",
|
|
4291
4366
|
__spreadProps(__spreadValues({
|
|
4292
4367
|
ref,
|
|
@@ -4298,7 +4373,7 @@ var UsersIcon = forwardRef95(
|
|
|
4298
4373
|
className
|
|
4299
4374
|
}, other), {
|
|
4300
4375
|
children: [
|
|
4301
|
-
duotone && /* @__PURE__ */
|
|
4376
|
+
duotone && /* @__PURE__ */ jsx99(
|
|
4302
4377
|
"path",
|
|
4303
4378
|
{
|
|
4304
4379
|
opacity: "0.12",
|
|
@@ -4306,7 +4381,7 @@ var UsersIcon = forwardRef95(
|
|
|
4306
4381
|
fill: "currentColor"
|
|
4307
4382
|
}
|
|
4308
4383
|
),
|
|
4309
|
-
/* @__PURE__ */
|
|
4384
|
+
/* @__PURE__ */ jsx99(
|
|
4310
4385
|
"path",
|
|
4311
4386
|
{
|
|
4312
4387
|
d: "M22 21V19C22 17.1362 20.7252 15.5701 19 15.126M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M17 21C17 19.1362 17 18.2044 16.6955 17.4693C16.2895 16.4892 15.5108 15.7105 14.5307 15.3045C13.7956 15 12.8638 15 11 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
|
|
@@ -4323,12 +4398,12 @@ var UsersIcon = forwardRef95(
|
|
|
4323
4398
|
);
|
|
4324
4399
|
|
|
4325
4400
|
// src/icons/usersPlus.tsx
|
|
4326
|
-
import { forwardRef as
|
|
4327
|
-
import { jsx as
|
|
4328
|
-
var UsersPlusIcon =
|
|
4401
|
+
import { forwardRef as forwardRef98 } from "react";
|
|
4402
|
+
import { jsx as jsx100, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
4403
|
+
var UsersPlusIcon = forwardRef98(
|
|
4329
4404
|
function UsersPlusIcon2(_a, ref) {
|
|
4330
4405
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4331
|
-
return /* @__PURE__ */
|
|
4406
|
+
return /* @__PURE__ */ jsxs72(
|
|
4332
4407
|
"svg",
|
|
4333
4408
|
__spreadProps(__spreadValues({
|
|
4334
4409
|
ref,
|
|
@@ -4340,7 +4415,7 @@ var UsersPlusIcon = forwardRef96(
|
|
|
4340
4415
|
className
|
|
4341
4416
|
}, other), {
|
|
4342
4417
|
children: [
|
|
4343
|
-
duotone && /* @__PURE__ */
|
|
4418
|
+
duotone && /* @__PURE__ */ jsx100(
|
|
4344
4419
|
"path",
|
|
4345
4420
|
{
|
|
4346
4421
|
opacity: "0.12",
|
|
@@ -4348,7 +4423,7 @@ var UsersPlusIcon = forwardRef96(
|
|
|
4348
4423
|
fill: "currentColor"
|
|
4349
4424
|
}
|
|
4350
4425
|
),
|
|
4351
|
-
/* @__PURE__ */
|
|
4426
|
+
/* @__PURE__ */ jsx100(
|
|
4352
4427
|
"path",
|
|
4353
4428
|
{
|
|
4354
4429
|
d: "M19 21V15M16 18H22M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
|
|
@@ -4365,12 +4440,12 @@ var UsersPlusIcon = forwardRef96(
|
|
|
4365
4440
|
);
|
|
4366
4441
|
|
|
4367
4442
|
// src/icons/usersX.tsx
|
|
4368
|
-
import { forwardRef as
|
|
4369
|
-
import { jsx as
|
|
4370
|
-
var UsersXIcon =
|
|
4443
|
+
import { forwardRef as forwardRef99 } from "react";
|
|
4444
|
+
import { jsx as jsx101, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
4445
|
+
var UsersXIcon = forwardRef99(
|
|
4371
4446
|
function UsersXIcon2(_a, ref) {
|
|
4372
4447
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4373
|
-
return /* @__PURE__ */
|
|
4448
|
+
return /* @__PURE__ */ jsxs73(
|
|
4374
4449
|
"svg",
|
|
4375
4450
|
__spreadProps(__spreadValues({
|
|
4376
4451
|
ref,
|
|
@@ -4382,7 +4457,7 @@ var UsersXIcon = forwardRef97(
|
|
|
4382
4457
|
className
|
|
4383
4458
|
}, other), {
|
|
4384
4459
|
children: [
|
|
4385
|
-
duotone && /* @__PURE__ */
|
|
4460
|
+
duotone && /* @__PURE__ */ jsx101(
|
|
4386
4461
|
"path",
|
|
4387
4462
|
{
|
|
4388
4463
|
opacity: "0.12",
|
|
@@ -4390,7 +4465,7 @@ var UsersXIcon = forwardRef97(
|
|
|
4390
4465
|
fill: "currentColor"
|
|
4391
4466
|
}
|
|
4392
4467
|
),
|
|
4393
|
-
/* @__PURE__ */
|
|
4468
|
+
/* @__PURE__ */ jsx101(
|
|
4394
4469
|
"path",
|
|
4395
4470
|
{
|
|
4396
4471
|
d: "M16.5 16L21.5 21M21.5 16L16.5 21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
|
|
@@ -4407,12 +4482,12 @@ var UsersXIcon = forwardRef97(
|
|
|
4407
4482
|
);
|
|
4408
4483
|
|
|
4409
4484
|
// src/icons/videoRecorder.tsx
|
|
4410
|
-
import { forwardRef as
|
|
4411
|
-
import { jsx as
|
|
4412
|
-
var VideoRecorderIcon =
|
|
4485
|
+
import { forwardRef as forwardRef100 } from "react";
|
|
4486
|
+
import { jsx as jsx102, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
4487
|
+
var VideoRecorderIcon = forwardRef100(
|
|
4413
4488
|
function VideoRecorderIcon2(_a, ref) {
|
|
4414
4489
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4415
|
-
return /* @__PURE__ */
|
|
4490
|
+
return /* @__PURE__ */ jsxs74(
|
|
4416
4491
|
"svg",
|
|
4417
4492
|
__spreadProps(__spreadValues({
|
|
4418
4493
|
ref,
|
|
@@ -4424,7 +4499,7 @@ var VideoRecorderIcon = forwardRef98(
|
|
|
4424
4499
|
className
|
|
4425
4500
|
}, other), {
|
|
4426
4501
|
children: [
|
|
4427
|
-
duotone && /* @__PURE__ */
|
|
4502
|
+
duotone && /* @__PURE__ */ jsx102(
|
|
4428
4503
|
"path",
|
|
4429
4504
|
{
|
|
4430
4505
|
opacity: "0.12",
|
|
@@ -4436,7 +4511,7 @@ var VideoRecorderIcon = forwardRef98(
|
|
|
4436
4511
|
strokeLinejoin: "round"
|
|
4437
4512
|
}
|
|
4438
4513
|
),
|
|
4439
|
-
/* @__PURE__ */
|
|
4514
|
+
/* @__PURE__ */ jsx102(
|
|
4440
4515
|
"path",
|
|
4441
4516
|
{
|
|
4442
4517
|
d: "M22 8.93137C22 8.32555 22 8.02265 21.8802 7.88238C21.7763 7.76068 21.6203 7.69609 21.4608 7.70865C21.2769 7.72312 21.0627 7.93731 20.6343 8.36569L17 12L20.6343 15.6343C21.0627 16.0627 21.2769 16.2769 21.4608 16.2914C21.6203 16.3039 21.7763 16.2393 21.8802 16.1176C22 15.9774 22 15.6744 22 15.0686V8.93137Z",
|
|
@@ -4447,7 +4522,7 @@ var VideoRecorderIcon = forwardRef98(
|
|
|
4447
4522
|
}
|
|
4448
4523
|
),
|
|
4449
4524
|
",",
|
|
4450
|
-
/* @__PURE__ */
|
|
4525
|
+
/* @__PURE__ */ jsx102(
|
|
4451
4526
|
"path",
|
|
4452
4527
|
{
|
|
4453
4528
|
d: "M2 9.8C2 8.11984 2 7.27976 2.32698 6.63803C2.6146 6.07354 3.07354 5.6146 3.63803 5.32698C4.27976 5 5.11984 5 6.8 5H12.2C13.8802 5 14.7202 5 15.362 5.32698C15.9265 5.6146 16.3854 6.07354 16.673 6.63803C17 7.27976 17 8.11984 17 9.8V14.2C17 15.8802 17 16.7202 16.673 17.362C16.3854 17.9265 15.9265 18.3854 15.362 18.673C14.7202 19 13.8802 19 12.2 19H6.8C5.11984 19 4.27976 19 3.63803 18.673C3.07354 18.3854 2.6146 17.9265 2.32698 17.362C2 16.7202 2 15.8802 2 14.2V9.8Z",
|
|
@@ -4464,12 +4539,12 @@ var VideoRecorderIcon = forwardRef98(
|
|
|
4464
4539
|
);
|
|
4465
4540
|
|
|
4466
4541
|
// src/icons/videoRecorderOff.tsx
|
|
4467
|
-
import { forwardRef as
|
|
4468
|
-
import { jsx as
|
|
4469
|
-
var VideoRecorderOffIcon =
|
|
4542
|
+
import { forwardRef as forwardRef101 } from "react";
|
|
4543
|
+
import { jsx as jsx103, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
4544
|
+
var VideoRecorderOffIcon = forwardRef101(
|
|
4470
4545
|
function VideoRecorderOffIcon2(_a, ref) {
|
|
4471
4546
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4472
|
-
return /* @__PURE__ */
|
|
4547
|
+
return /* @__PURE__ */ jsxs75(
|
|
4473
4548
|
"svg",
|
|
4474
4549
|
__spreadProps(__spreadValues({
|
|
4475
4550
|
ref,
|
|
@@ -4481,7 +4556,7 @@ var VideoRecorderOffIcon = forwardRef99(
|
|
|
4481
4556
|
className
|
|
4482
4557
|
}, other), {
|
|
4483
4558
|
children: [
|
|
4484
|
-
duotone && /* @__PURE__ */
|
|
4559
|
+
duotone && /* @__PURE__ */ jsx103(
|
|
4485
4560
|
"path",
|
|
4486
4561
|
{
|
|
4487
4562
|
opacity: "0.12",
|
|
@@ -4493,7 +4568,7 @@ var VideoRecorderOffIcon = forwardRef99(
|
|
|
4493
4568
|
strokeLinejoin: "round"
|
|
4494
4569
|
}
|
|
4495
4570
|
),
|
|
4496
|
-
/* @__PURE__ */
|
|
4571
|
+
/* @__PURE__ */ jsx103(
|
|
4497
4572
|
"path",
|
|
4498
4573
|
{
|
|
4499
4574
|
d: "M5 5C3.34315 5 2 6.34315 2 8V16C2 17.6569 3.34315 19 5 19H14C15.3527 19 16.4962 18.1048 16.8705 16.8745M17 12L20.6343 8.36569C21.0627 7.93731 21.2769 7.72312 21.4608 7.70865C21.6203 7.69609 21.7763 7.76068 21.8802 7.88238C22 8.02265 22 8.32556 22 8.93137V15.0686C22 15.6744 22 15.9774 21.8802 16.1176C21.7763 16.2393 21.6203 16.3039 21.4608 16.2914C21.2769 16.2769 21.0627 16.0627 20.6343 15.6343L17 12ZM17 12V9.8C17 8.11984 17 7.27976 16.673 6.63803C16.3854 6.07354 15.9265 5.6146 15.362 5.32698C14.7202 5 13.8802 5 12.2 5H9.5M2 2L22 22",
|
|
@@ -4510,12 +4585,12 @@ var VideoRecorderOffIcon = forwardRef99(
|
|
|
4510
4585
|
);
|
|
4511
4586
|
|
|
4512
4587
|
// src/icons/volumeMax.tsx
|
|
4513
|
-
import { forwardRef as
|
|
4514
|
-
import { jsx as
|
|
4515
|
-
var VolumeMaxIcon =
|
|
4588
|
+
import { forwardRef as forwardRef102 } from "react";
|
|
4589
|
+
import { jsx as jsx104, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
4590
|
+
var VolumeMaxIcon = forwardRef102(
|
|
4516
4591
|
function VolumeMaxIcon2(_a, ref) {
|
|
4517
4592
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4518
|
-
return /* @__PURE__ */
|
|
4593
|
+
return /* @__PURE__ */ jsxs76(
|
|
4519
4594
|
"svg",
|
|
4520
4595
|
__spreadProps(__spreadValues({
|
|
4521
4596
|
ref,
|
|
@@ -4527,7 +4602,7 @@ var VolumeMaxIcon = forwardRef100(
|
|
|
4527
4602
|
className
|
|
4528
4603
|
}, other), {
|
|
4529
4604
|
children: [
|
|
4530
|
-
duotone && /* @__PURE__ */
|
|
4605
|
+
duotone && /* @__PURE__ */ jsx104(
|
|
4531
4606
|
"path",
|
|
4532
4607
|
{
|
|
4533
4608
|
opacity: "0.12",
|
|
@@ -4535,7 +4610,7 @@ var VolumeMaxIcon = forwardRef100(
|
|
|
4535
4610
|
fill: "currentColor"
|
|
4536
4611
|
}
|
|
4537
4612
|
),
|
|
4538
|
-
/* @__PURE__ */
|
|
4613
|
+
/* @__PURE__ */ jsx104(
|
|
4539
4614
|
"path",
|
|
4540
4615
|
{
|
|
4541
4616
|
d: "M19.7479 4.99999C21.1652 6.97023 22 9.38762 22 12C22 14.6124 21.1652 17.0298 19.7479 19M15.7453 7.99999C16.5362 9.13382 17 10.5127 17 12C17 13.4872 16.5362 14.8662 15.7453 16M9.63432 4.36567L6.46863 7.53136C6.29568 7.70431 6.2092 7.79079 6.10828 7.85263C6.01881 7.90746 5.92127 7.94786 5.81923 7.97236C5.70414 7.99999 5.58185 7.99999 5.33726 7.99999H3.6C3.03995 7.99999 2.75992 7.99999 2.54601 8.10898C2.35785 8.20485 2.20487 8.35784 2.10899 8.546C2 8.75991 2 9.03994 2 9.59999V14.4C2 14.96 2 15.2401 2.10899 15.454C2.20487 15.6421 2.35785 15.7951 2.54601 15.891C2.75992 16 3.03995 16 3.6 16H5.33726C5.58185 16 5.70414 16 5.81923 16.0276C5.92127 16.0521 6.01881 16.0925 6.10828 16.1473C6.2092 16.2092 6.29568 16.2957 6.46863 16.4686L9.63431 19.6343C10.0627 20.0627 10.2769 20.2769 10.4608 20.2913C10.6203 20.3039 10.7763 20.2393 10.8802 20.1176C11 19.9773 11 19.6744 11 19.0686V4.93136C11 4.32554 11 4.02264 10.8802 3.88237C10.7763 3.76067 10.6203 3.69608 10.4608 3.70864C10.2769 3.72311 10.0627 3.9373 9.63432 4.36567Z",
|
|
@@ -4552,12 +4627,12 @@ var VolumeMaxIcon = forwardRef100(
|
|
|
4552
4627
|
);
|
|
4553
4628
|
|
|
4554
4629
|
// src/icons/volumeX.tsx
|
|
4555
|
-
import { forwardRef as
|
|
4556
|
-
import { jsx as
|
|
4557
|
-
var VolumeXIcon =
|
|
4630
|
+
import { forwardRef as forwardRef103 } from "react";
|
|
4631
|
+
import { jsx as jsx105, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
4632
|
+
var VolumeXIcon = forwardRef103(
|
|
4558
4633
|
function VolumeXIcon2(_a, ref) {
|
|
4559
4634
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4560
|
-
return /* @__PURE__ */
|
|
4635
|
+
return /* @__PURE__ */ jsxs77(
|
|
4561
4636
|
"svg",
|
|
4562
4637
|
__spreadProps(__spreadValues({
|
|
4563
4638
|
ref,
|
|
@@ -4569,7 +4644,7 @@ var VolumeXIcon = forwardRef101(
|
|
|
4569
4644
|
className
|
|
4570
4645
|
}, other), {
|
|
4571
4646
|
children: [
|
|
4572
|
-
duotone && /* @__PURE__ */
|
|
4647
|
+
duotone && /* @__PURE__ */ jsx105(
|
|
4573
4648
|
"path",
|
|
4574
4649
|
{
|
|
4575
4650
|
opacity: "0.12",
|
|
@@ -4577,7 +4652,7 @@ var VolumeXIcon = forwardRef101(
|
|
|
4577
4652
|
fill: "currentColor"
|
|
4578
4653
|
}
|
|
4579
4654
|
),
|
|
4580
|
-
/* @__PURE__ */
|
|
4655
|
+
/* @__PURE__ */ jsx105(
|
|
4581
4656
|
"path",
|
|
4582
4657
|
{
|
|
4583
4658
|
d: "M22 8.99999L16 15M16 8.99999L22 15M9.63432 4.36567L6.46863 7.53136C6.29568 7.70431 6.2092 7.79079 6.10828 7.85263C6.01881 7.90746 5.92127 7.94786 5.81923 7.97236C5.70414 7.99999 5.58185 7.99999 5.33726 7.99999H3.6C3.03995 7.99999 2.75992 7.99999 2.54601 8.10898C2.35785 8.20485 2.20487 8.35784 2.10899 8.546C2 8.75991 2 9.03994 2 9.59999V14.4C2 14.96 2 15.2401 2.10899 15.454C2.20487 15.6421 2.35785 15.7951 2.54601 15.891C2.75992 16 3.03995 16 3.6 16H5.33726C5.58185 16 5.70414 16 5.81923 16.0276C5.92127 16.0521 6.01881 16.0925 6.10828 16.1473C6.2092 16.2092 6.29568 16.2957 6.46863 16.4686L9.63431 19.6343C10.0627 20.0627 10.2769 20.2769 10.4608 20.2913C10.6203 20.3039 10.7763 20.2393 10.8802 20.1176C11 19.9773 11 19.6744 11 19.0686V4.93136C11 4.32554 11 4.02264 10.8802 3.88237C10.7763 3.76067 10.6203 3.69608 10.4608 3.70864C10.2769 3.72311 10.0627 3.9373 9.63432 4.36567Z",
|
|
@@ -4594,12 +4669,12 @@ var VolumeXIcon = forwardRef101(
|
|
|
4594
4669
|
);
|
|
4595
4670
|
|
|
4596
4671
|
// src/icons/xCircle.tsx
|
|
4597
|
-
import { forwardRef as
|
|
4598
|
-
import { jsx as
|
|
4599
|
-
var XCircleIcon =
|
|
4672
|
+
import { forwardRef as forwardRef104 } from "react";
|
|
4673
|
+
import { jsx as jsx106, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
4674
|
+
var XCircleIcon = forwardRef104(
|
|
4600
4675
|
function XCircleIcon2(_a, ref) {
|
|
4601
4676
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4602
|
-
return /* @__PURE__ */
|
|
4677
|
+
return /* @__PURE__ */ jsxs78(
|
|
4603
4678
|
"svg",
|
|
4604
4679
|
__spreadProps(__spreadValues({
|
|
4605
4680
|
ref,
|
|
@@ -4611,7 +4686,7 @@ var XCircleIcon = forwardRef102(
|
|
|
4611
4686
|
className
|
|
4612
4687
|
}, other), {
|
|
4613
4688
|
children: [
|
|
4614
|
-
duotone && /* @__PURE__ */
|
|
4689
|
+
duotone && /* @__PURE__ */ jsx106(
|
|
4615
4690
|
"path",
|
|
4616
4691
|
{
|
|
4617
4692
|
opacity: "0.12",
|
|
@@ -4619,7 +4694,7 @@ var XCircleIcon = forwardRef102(
|
|
|
4619
4694
|
fill: "currentColor"
|
|
4620
4695
|
}
|
|
4621
4696
|
),
|
|
4622
|
-
/* @__PURE__ */
|
|
4697
|
+
/* @__PURE__ */ jsx106(
|
|
4623
4698
|
"path",
|
|
4624
4699
|
{
|
|
4625
4700
|
d: "M15 9L9 15M9 9L15 15M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -4636,12 +4711,12 @@ var XCircleIcon = forwardRef102(
|
|
|
4636
4711
|
);
|
|
4637
4712
|
|
|
4638
4713
|
// src/icons/xClose.tsx
|
|
4639
|
-
import { forwardRef as
|
|
4640
|
-
import { jsx as
|
|
4641
|
-
var XCloseIcon =
|
|
4714
|
+
import { forwardRef as forwardRef105 } from "react";
|
|
4715
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
4716
|
+
var XCloseIcon = forwardRef105(
|
|
4642
4717
|
function XCloseIcon2(_a, ref) {
|
|
4643
4718
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4644
|
-
return /* @__PURE__ */
|
|
4719
|
+
return /* @__PURE__ */ jsx107(
|
|
4645
4720
|
"svg",
|
|
4646
4721
|
__spreadProps(__spreadValues({
|
|
4647
4722
|
ref,
|
|
@@ -4652,7 +4727,7 @@ var XCloseIcon = forwardRef103(
|
|
|
4652
4727
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4653
4728
|
className
|
|
4654
4729
|
}, other), {
|
|
4655
|
-
children: /* @__PURE__ */
|
|
4730
|
+
children: /* @__PURE__ */ jsx107(
|
|
4656
4731
|
"path",
|
|
4657
4732
|
{
|
|
4658
4733
|
d: "M18 6L6 18M6 6L18 18",
|
|
@@ -4668,7 +4743,7 @@ var XCloseIcon = forwardRef103(
|
|
|
4668
4743
|
);
|
|
4669
4744
|
|
|
4670
4745
|
// src/components/Calendar/Calendar.tsx
|
|
4671
|
-
import { jsx as
|
|
4746
|
+
import { jsx as jsx108 } from "react/jsx-runtime";
|
|
4672
4747
|
function Calendar(_a) {
|
|
4673
4748
|
var _b = _a, {
|
|
4674
4749
|
className,
|
|
@@ -4679,7 +4754,7 @@ function Calendar(_a) {
|
|
|
4679
4754
|
"classNames",
|
|
4680
4755
|
"showOutsideDays"
|
|
4681
4756
|
]);
|
|
4682
|
-
return /* @__PURE__ */
|
|
4757
|
+
return /* @__PURE__ */ jsx108(
|
|
4683
4758
|
DayPicker,
|
|
4684
4759
|
__spreadValues({
|
|
4685
4760
|
showOutsideDays,
|
|
@@ -4709,8 +4784,8 @@ function Calendar(_a) {
|
|
|
4709
4784
|
day_hidden: "invisible"
|
|
4710
4785
|
}, classNames),
|
|
4711
4786
|
components: {
|
|
4712
|
-
IconLeft: () => /* @__PURE__ */
|
|
4713
|
-
IconRight: () => /* @__PURE__ */
|
|
4787
|
+
IconLeft: () => /* @__PURE__ */ jsx108(ChevronLeftIcon, { className: "w-3 h-3" }),
|
|
4788
|
+
IconRight: () => /* @__PURE__ */ jsx108(ChevronRightIcon, { className: "w-3 h-3" })
|
|
4714
4789
|
}
|
|
4715
4790
|
}, props)
|
|
4716
4791
|
);
|
|
@@ -4720,10 +4795,10 @@ Calendar.displayName = "Calendar";
|
|
|
4720
4795
|
// src/components/Checkbox/Checkbox.tsx
|
|
4721
4796
|
import * as React5 from "react";
|
|
4722
4797
|
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
|
|
4723
|
-
import { jsx as
|
|
4798
|
+
import { jsx as jsx109 } from "react/jsx-runtime";
|
|
4724
4799
|
var Checkbox = React5.forwardRef((_a, ref) => {
|
|
4725
4800
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4726
|
-
return /* @__PURE__ */
|
|
4801
|
+
return /* @__PURE__ */ jsx109(
|
|
4727
4802
|
CheckboxPrimitive.Root,
|
|
4728
4803
|
__spreadProps(__spreadValues({
|
|
4729
4804
|
className: cn(
|
|
@@ -4732,7 +4807,7 @@ var Checkbox = React5.forwardRef((_a, ref) => {
|
|
|
4732
4807
|
)
|
|
4733
4808
|
}, props), {
|
|
4734
4809
|
ref,
|
|
4735
|
-
children: /* @__PURE__ */
|
|
4810
|
+
children: /* @__PURE__ */ jsx109(CheckboxPrimitive.Indicator, { children: /* @__PURE__ */ jsx109(CheckIcon, { size: 10, className: "text-white" }) })
|
|
4736
4811
|
})
|
|
4737
4812
|
);
|
|
4738
4813
|
});
|
|
@@ -4742,10 +4817,10 @@ Checkbox.displayName = CheckboxPrimitive.Root.displayName;
|
|
|
4742
4817
|
import * as React6 from "react";
|
|
4743
4818
|
import { useState } from "react";
|
|
4744
4819
|
import { Command as CommandPrimitive } from "cmdk";
|
|
4745
|
-
import { jsx as
|
|
4820
|
+
import { jsx as jsx110, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
4746
4821
|
var Command = React6.forwardRef((_a, ref) => {
|
|
4747
4822
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4748
|
-
return /* @__PURE__ */
|
|
4823
|
+
return /* @__PURE__ */ jsx110(
|
|
4749
4824
|
CommandPrimitive,
|
|
4750
4825
|
__spreadValues({
|
|
4751
4826
|
ref,
|
|
@@ -4764,14 +4839,14 @@ var CommandInput = React6.forwardRef((_a, ref) => {
|
|
|
4764
4839
|
setVal("");
|
|
4765
4840
|
onValueChange && onValueChange("");
|
|
4766
4841
|
};
|
|
4767
|
-
return /* @__PURE__ */
|
|
4842
|
+
return /* @__PURE__ */ jsxs79(
|
|
4768
4843
|
"div",
|
|
4769
4844
|
{
|
|
4770
4845
|
className: "flex items-center gap-2 px-3 border-b border-gray-200",
|
|
4771
4846
|
"cmdk-input-wrapper": "",
|
|
4772
4847
|
children: [
|
|
4773
|
-
/* @__PURE__ */
|
|
4774
|
-
/* @__PURE__ */
|
|
4848
|
+
/* @__PURE__ */ jsx110(SearchMdIcon, { size: 16, className: "text-gray-900 shrink-0" }),
|
|
4849
|
+
/* @__PURE__ */ jsx110(
|
|
4775
4850
|
CommandPrimitive.Input,
|
|
4776
4851
|
__spreadValues({
|
|
4777
4852
|
ref,
|
|
@@ -4786,7 +4861,7 @@ var CommandInput = React6.forwardRef((_a, ref) => {
|
|
|
4786
4861
|
}
|
|
4787
4862
|
}, props)
|
|
4788
4863
|
),
|
|
4789
|
-
value !== "" && /* @__PURE__ */
|
|
4864
|
+
value !== "" && /* @__PURE__ */ jsx110(Button, { variant: "ghostGray", size: "xs", icon: true, className: "-mr-2", children: /* @__PURE__ */ jsx110(
|
|
4790
4865
|
XCloseIcon,
|
|
4791
4866
|
{
|
|
4792
4867
|
size: "16",
|
|
@@ -4803,7 +4878,7 @@ var CommandInput = React6.forwardRef((_a, ref) => {
|
|
|
4803
4878
|
CommandInput.displayName = CommandPrimitive.Input.displayName;
|
|
4804
4879
|
var CommandList = React6.forwardRef((_a, ref) => {
|
|
4805
4880
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4806
|
-
return /* @__PURE__ */
|
|
4881
|
+
return /* @__PURE__ */ jsx110(
|
|
4807
4882
|
CommandPrimitive.List,
|
|
4808
4883
|
__spreadValues({
|
|
4809
4884
|
ref,
|
|
@@ -4817,18 +4892,18 @@ var CommandList = React6.forwardRef((_a, ref) => {
|
|
|
4817
4892
|
CommandList.displayName = CommandPrimitive.List.displayName;
|
|
4818
4893
|
var CommandEmpty = React6.forwardRef((_a, ref) => {
|
|
4819
4894
|
var _b = _a, { children, title, description } = _b, props = __objRest(_b, ["children", "title", "description"]);
|
|
4820
|
-
return /* @__PURE__ */
|
|
4895
|
+
return /* @__PURE__ */ jsxs79(
|
|
4821
4896
|
CommandPrimitive.Empty,
|
|
4822
4897
|
__spreadProps(__spreadValues({
|
|
4823
4898
|
ref,
|
|
4824
4899
|
className: "flex flex-col gap-4 p-4 text-center"
|
|
4825
4900
|
}, props), {
|
|
4826
4901
|
children: [
|
|
4827
|
-
(title || description) && /* @__PURE__ */
|
|
4828
|
-
title && /* @__PURE__ */
|
|
4829
|
-
description && /* @__PURE__ */
|
|
4902
|
+
(title || description) && /* @__PURE__ */ jsxs79("div", { className: "flex flex-col gap-1", children: [
|
|
4903
|
+
title && /* @__PURE__ */ jsx110("span", { className: "text-sm font-medium text-gray-1000", children: title }),
|
|
4904
|
+
description && /* @__PURE__ */ jsx110("span", { className: "text-sm font-normal text-gray-700", children: description })
|
|
4830
4905
|
] }),
|
|
4831
|
-
children && /* @__PURE__ */
|
|
4906
|
+
children && /* @__PURE__ */ jsx110("div", { children })
|
|
4832
4907
|
]
|
|
4833
4908
|
})
|
|
4834
4909
|
);
|
|
@@ -4836,12 +4911,12 @@ var CommandEmpty = React6.forwardRef((_a, ref) => {
|
|
|
4836
4911
|
CommandEmpty.displayName = CommandPrimitive.Empty.displayName;
|
|
4837
4912
|
var CommandLoading = React6.forwardRef((_a, ref) => {
|
|
4838
4913
|
var _b = _a, { children } = _b, props = __objRest(_b, ["children"]);
|
|
4839
|
-
return /* @__PURE__ */
|
|
4914
|
+
return /* @__PURE__ */ jsx110(CommandPrimitive.Loading, __spreadProps(__spreadValues({ ref }, props), { children: /* @__PURE__ */ jsx110("div", { className: "flex justify-center p-4 text-center", children: /* @__PURE__ */ jsx110(SpinnerIcon, { className: "text-blue-700 animate-spin" }) }) }));
|
|
4840
4915
|
});
|
|
4841
4916
|
CommandLoading.displayName = CommandPrimitive.Loading.displayName;
|
|
4842
4917
|
var CommandGroup = React6.forwardRef((_a, ref) => {
|
|
4843
4918
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4844
|
-
return /* @__PURE__ */
|
|
4919
|
+
return /* @__PURE__ */ jsx110(
|
|
4845
4920
|
CommandPrimitive.Group,
|
|
4846
4921
|
__spreadValues({
|
|
4847
4922
|
ref,
|
|
@@ -4855,7 +4930,7 @@ var CommandGroup = React6.forwardRef((_a, ref) => {
|
|
|
4855
4930
|
CommandGroup.displayName = CommandPrimitive.Group.displayName;
|
|
4856
4931
|
var CommandSeparator = React6.forwardRef((_a, ref) => {
|
|
4857
4932
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4858
|
-
return /* @__PURE__ */
|
|
4933
|
+
return /* @__PURE__ */ jsx110(
|
|
4859
4934
|
CommandPrimitive.Separator,
|
|
4860
4935
|
__spreadValues({
|
|
4861
4936
|
ref,
|
|
@@ -4867,7 +4942,7 @@ CommandSeparator.displayName = CommandPrimitive.Separator.displayName;
|
|
|
4867
4942
|
var CommandItem = React6.forwardRef(
|
|
4868
4943
|
(_a, ref) => {
|
|
4869
4944
|
var _b = _a, { icon, checkbox, className, checked, children, description } = _b, props = __objRest(_b, ["icon", "checkbox", "className", "checked", "children", "description"]);
|
|
4870
|
-
return /* @__PURE__ */
|
|
4945
|
+
return /* @__PURE__ */ jsxs79(
|
|
4871
4946
|
CommandPrimitive.Item,
|
|
4872
4947
|
__spreadProps(__spreadValues({
|
|
4873
4948
|
ref,
|
|
@@ -4877,15 +4952,15 @@ var CommandItem = React6.forwardRef(
|
|
|
4877
4952
|
)
|
|
4878
4953
|
}, props), {
|
|
4879
4954
|
children: [
|
|
4880
|
-
/* @__PURE__ */
|
|
4881
|
-
checkbox && /* @__PURE__ */
|
|
4955
|
+
/* @__PURE__ */ jsxs79("div", { className: "flex items-center gap-2", children: [
|
|
4956
|
+
checkbox && /* @__PURE__ */ jsx110(Checkbox, { checked }),
|
|
4882
4957
|
icon && React6.cloneElement(icon, {
|
|
4883
4958
|
size: 16,
|
|
4884
4959
|
className: cn("flex-shrink-0", icon.props.className)
|
|
4885
4960
|
}),
|
|
4886
4961
|
children
|
|
4887
4962
|
] }),
|
|
4888
|
-
description && /* @__PURE__ */
|
|
4963
|
+
description && /* @__PURE__ */ jsx110("div", { className: "text-xs text-gray-700", children: description })
|
|
4889
4964
|
]
|
|
4890
4965
|
})
|
|
4891
4966
|
);
|
|
@@ -4896,7 +4971,7 @@ CommandItem.displayName = CommandPrimitive.Item.displayName;
|
|
|
4896
4971
|
// src/components/Dialog/Dialog.tsx
|
|
4897
4972
|
import * as React7 from "react";
|
|
4898
4973
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
4899
|
-
import { jsx as
|
|
4974
|
+
import { jsx as jsx111, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
4900
4975
|
var Dialog = DialogPrimitive.Root;
|
|
4901
4976
|
var DialogTrigger = DialogPrimitive.Trigger;
|
|
4902
4977
|
var DialogPortal = (_a) => {
|
|
@@ -4905,12 +4980,12 @@ var DialogPortal = (_a) => {
|
|
|
4905
4980
|
} = _b, props = __objRest(_b, [
|
|
4906
4981
|
"className"
|
|
4907
4982
|
]);
|
|
4908
|
-
return /* @__PURE__ */
|
|
4983
|
+
return /* @__PURE__ */ jsx111(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
|
|
4909
4984
|
};
|
|
4910
4985
|
DialogPortal.displayName = DialogPrimitive.Portal.displayName;
|
|
4911
4986
|
var DialogOverlay = React7.forwardRef((_a, ref) => {
|
|
4912
4987
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4913
|
-
return /* @__PURE__ */
|
|
4988
|
+
return /* @__PURE__ */ jsx111(
|
|
4914
4989
|
DialogPrimitive.Overlay,
|
|
4915
4990
|
__spreadValues({
|
|
4916
4991
|
ref,
|
|
@@ -4924,9 +4999,9 @@ var DialogOverlay = React7.forwardRef((_a, ref) => {
|
|
|
4924
4999
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
4925
5000
|
var DialogContent = React7.forwardRef((_a, ref) => {
|
|
4926
5001
|
var _b = _a, { className, children, bottomSheet = false } = _b, props = __objRest(_b, ["className", "children", "bottomSheet"]);
|
|
4927
|
-
return /* @__PURE__ */
|
|
4928
|
-
/* @__PURE__ */
|
|
4929
|
-
/* @__PURE__ */
|
|
5002
|
+
return /* @__PURE__ */ jsxs80(DialogPortal, { children: [
|
|
5003
|
+
/* @__PURE__ */ jsx111(DialogOverlay, {}),
|
|
5004
|
+
/* @__PURE__ */ jsxs80(
|
|
4930
5005
|
DialogPrimitive.Content,
|
|
4931
5006
|
__spreadProps(__spreadValues({
|
|
4932
5007
|
ref,
|
|
@@ -4943,7 +5018,7 @@ var DialogContent = React7.forwardRef((_a, ref) => {
|
|
|
4943
5018
|
}, props), {
|
|
4944
5019
|
children: [
|
|
4945
5020
|
children,
|
|
4946
|
-
/* @__PURE__ */
|
|
5021
|
+
/* @__PURE__ */ jsxs80(
|
|
4947
5022
|
DialogPrimitive.Close,
|
|
4948
5023
|
{
|
|
4949
5024
|
className: cn(
|
|
@@ -4952,8 +5027,8 @@ var DialogContent = React7.forwardRef((_a, ref) => {
|
|
|
4952
5027
|
"absolute right-6 top-6"
|
|
4953
5028
|
),
|
|
4954
5029
|
children: [
|
|
4955
|
-
/* @__PURE__ */
|
|
4956
|
-
/* @__PURE__ */
|
|
5030
|
+
/* @__PURE__ */ jsx111(XCloseIcon, { className: "w-3 h-3" }),
|
|
5031
|
+
/* @__PURE__ */ jsx111("span", { className: "sr-only", children: "Close" })
|
|
4957
5032
|
]
|
|
4958
5033
|
}
|
|
4959
5034
|
)
|
|
@@ -4969,7 +5044,7 @@ var DialogHeader = (_a) => {
|
|
|
4969
5044
|
} = _b, props = __objRest(_b, [
|
|
4970
5045
|
"className"
|
|
4971
5046
|
]);
|
|
4972
|
-
return /* @__PURE__ */
|
|
5047
|
+
return /* @__PURE__ */ jsx111(
|
|
4973
5048
|
"div",
|
|
4974
5049
|
__spreadValues({
|
|
4975
5050
|
className: cn(
|
|
@@ -4986,7 +5061,7 @@ var DialogFooter = (_a) => {
|
|
|
4986
5061
|
} = _b, props = __objRest(_b, [
|
|
4987
5062
|
"className"
|
|
4988
5063
|
]);
|
|
4989
|
-
return /* @__PURE__ */
|
|
5064
|
+
return /* @__PURE__ */ jsx111(
|
|
4990
5065
|
"div",
|
|
4991
5066
|
__spreadValues({
|
|
4992
5067
|
className: cn(
|
|
@@ -4999,7 +5074,7 @@ var DialogFooter = (_a) => {
|
|
|
4999
5074
|
DialogFooter.displayName = "DialogFooter";
|
|
5000
5075
|
var DialogTitle = React7.forwardRef((_a, ref) => {
|
|
5001
5076
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5002
|
-
return /* @__PURE__ */
|
|
5077
|
+
return /* @__PURE__ */ jsx111(
|
|
5003
5078
|
DialogPrimitive.Title,
|
|
5004
5079
|
__spreadValues({
|
|
5005
5080
|
ref,
|
|
@@ -5010,7 +5085,7 @@ var DialogTitle = React7.forwardRef((_a, ref) => {
|
|
|
5010
5085
|
DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
5011
5086
|
var DialogDescription = React7.forwardRef((_a, ref) => {
|
|
5012
5087
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5013
|
-
return /* @__PURE__ */
|
|
5088
|
+
return /* @__PURE__ */ jsx111(
|
|
5014
5089
|
DialogPrimitive.Description,
|
|
5015
5090
|
__spreadValues({
|
|
5016
5091
|
ref,
|
|
@@ -5023,7 +5098,7 @@ DialogDescription.displayName = DialogPrimitive.Description.displayName;
|
|
|
5023
5098
|
// src/components/DropdownMenu/DropdownMenu.tsx
|
|
5024
5099
|
import React8 from "react";
|
|
5025
5100
|
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
5026
|
-
import { jsx as
|
|
5101
|
+
import { jsx as jsx112, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
5027
5102
|
var DropdownMenu = DropdownMenuPrimitive.Root;
|
|
5028
5103
|
var DropdownMenuItemBase = ({
|
|
5029
5104
|
icon,
|
|
@@ -5035,7 +5110,7 @@ var DropdownMenuItemBase = ({
|
|
|
5035
5110
|
description,
|
|
5036
5111
|
hasSubNav
|
|
5037
5112
|
}) => {
|
|
5038
|
-
return /* @__PURE__ */
|
|
5113
|
+
return /* @__PURE__ */ jsxs81(
|
|
5039
5114
|
"div",
|
|
5040
5115
|
{
|
|
5041
5116
|
className: cn(
|
|
@@ -5044,8 +5119,8 @@ var DropdownMenuItemBase = ({
|
|
|
5044
5119
|
className
|
|
5045
5120
|
),
|
|
5046
5121
|
children: [
|
|
5047
|
-
/* @__PURE__ */
|
|
5048
|
-
checkbox && /* @__PURE__ */
|
|
5122
|
+
/* @__PURE__ */ jsxs81("div", { className: "flex items-center gap-2", children: [
|
|
5123
|
+
checkbox && /* @__PURE__ */ jsx112(Checkbox, { checked }),
|
|
5049
5124
|
icon && React8.cloneElement(icon, {
|
|
5050
5125
|
size: 16,
|
|
5051
5126
|
className: cn(
|
|
@@ -5054,10 +5129,10 @@ var DropdownMenuItemBase = ({
|
|
|
5054
5129
|
icon.props.className
|
|
5055
5130
|
)
|
|
5056
5131
|
}),
|
|
5057
|
-
/* @__PURE__ */
|
|
5058
|
-
hasSubNav && /* @__PURE__ */
|
|
5132
|
+
/* @__PURE__ */ jsx112("span", { className: "flex gap-2 grow", children }),
|
|
5133
|
+
hasSubNav && /* @__PURE__ */ jsx112("div", { className: "inline-flex items-center justify-end", children: /* @__PURE__ */ jsx112(ChevronRightIcon, { size: 16, className: "text-gray-1000" }) })
|
|
5059
5134
|
] }),
|
|
5060
|
-
description && /* @__PURE__ */
|
|
5135
|
+
description && /* @__PURE__ */ jsx112("div", { className: "text-xs text-gray-700", children: description })
|
|
5061
5136
|
]
|
|
5062
5137
|
}
|
|
5063
5138
|
);
|
|
@@ -5072,14 +5147,14 @@ var DropdownMenuCheckboxItem = React8.forwardRef(
|
|
|
5072
5147
|
checked,
|
|
5073
5148
|
className
|
|
5074
5149
|
};
|
|
5075
|
-
return /* @__PURE__ */
|
|
5150
|
+
return /* @__PURE__ */ jsx112(
|
|
5076
5151
|
DropdownMenuPrimitive.CheckboxItem,
|
|
5077
5152
|
__spreadProps(__spreadValues({
|
|
5078
5153
|
checked
|
|
5079
5154
|
}, props), {
|
|
5080
5155
|
ref: forwardedRef,
|
|
5081
5156
|
className: "outline-none select-none group",
|
|
5082
|
-
children: /* @__PURE__ */
|
|
5157
|
+
children: /* @__PURE__ */ jsx112(DropdownMenuItemBase, __spreadProps(__spreadValues({ checkbox: true }, extraProps), { children }))
|
|
5083
5158
|
})
|
|
5084
5159
|
);
|
|
5085
5160
|
}
|
|
@@ -5100,7 +5175,7 @@ var DropdownMenuContent = React8.forwardRef(
|
|
|
5100
5175
|
"sideOffset",
|
|
5101
5176
|
"align"
|
|
5102
5177
|
]);
|
|
5103
|
-
return /* @__PURE__ */
|
|
5178
|
+
return /* @__PURE__ */ jsx112(
|
|
5104
5179
|
DropdownMenuPrimitive.Content,
|
|
5105
5180
|
__spreadProps(__spreadValues({
|
|
5106
5181
|
className: cn(
|
|
@@ -5128,12 +5203,12 @@ var DropdownMenuItem = React8.forwardRef(
|
|
|
5128
5203
|
icon,
|
|
5129
5204
|
className
|
|
5130
5205
|
};
|
|
5131
|
-
return /* @__PURE__ */
|
|
5206
|
+
return /* @__PURE__ */ jsx112(
|
|
5132
5207
|
DropdownMenuPrimitive.Item,
|
|
5133
5208
|
__spreadProps(__spreadValues({}, props), {
|
|
5134
5209
|
ref: forwardedRef,
|
|
5135
5210
|
className: "outline-none select-none group",
|
|
5136
|
-
children: /* @__PURE__ */
|
|
5211
|
+
children: /* @__PURE__ */ jsx112(DropdownMenuItemBase, __spreadProps(__spreadValues({}, extraProps), { children }))
|
|
5137
5212
|
})
|
|
5138
5213
|
);
|
|
5139
5214
|
}
|
|
@@ -5141,7 +5216,7 @@ var DropdownMenuItem = React8.forwardRef(
|
|
|
5141
5216
|
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
|
|
5142
5217
|
var DropdownMenuLabel = React8.forwardRef((_a, forwardedRef) => {
|
|
5143
5218
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5144
|
-
return /* @__PURE__ */
|
|
5219
|
+
return /* @__PURE__ */ jsx112(
|
|
5145
5220
|
DropdownMenuPrimitive.Label,
|
|
5146
5221
|
__spreadProps(__spreadValues({
|
|
5147
5222
|
className: cn(
|
|
@@ -5165,12 +5240,12 @@ var DropdownMenuRadioItem = React8.forwardRef(
|
|
|
5165
5240
|
icon,
|
|
5166
5241
|
className
|
|
5167
5242
|
};
|
|
5168
|
-
return /* @__PURE__ */
|
|
5243
|
+
return /* @__PURE__ */ jsx112(
|
|
5169
5244
|
DropdownMenuPrimitive.RadioItem,
|
|
5170
5245
|
__spreadProps(__spreadValues({}, props), {
|
|
5171
5246
|
ref: forwardedRef,
|
|
5172
5247
|
className: "outline-none select-none group",
|
|
5173
|
-
children: /* @__PURE__ */
|
|
5248
|
+
children: /* @__PURE__ */ jsx112(DropdownMenuItemBase, __spreadProps(__spreadValues({}, extraProps), { children }))
|
|
5174
5249
|
})
|
|
5175
5250
|
);
|
|
5176
5251
|
}
|
|
@@ -5178,7 +5253,7 @@ var DropdownMenuRadioItem = React8.forwardRef(
|
|
|
5178
5253
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
|
|
5179
5254
|
var DropdownMenuSeparator = React8.forwardRef((_a, forwardedRef) => {
|
|
5180
5255
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5181
|
-
return /* @__PURE__ */
|
|
5256
|
+
return /* @__PURE__ */ jsx112(
|
|
5182
5257
|
DropdownMenuPrimitive.Separator,
|
|
5183
5258
|
__spreadProps(__spreadValues({
|
|
5184
5259
|
className: cn("my-1 border-b border-gray-200", className)
|
|
@@ -5191,7 +5266,7 @@ DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName;
|
|
|
5191
5266
|
var DropdownMenuSub = DropdownMenuPrimitive.Sub;
|
|
5192
5267
|
var DropdownMenuSubContent = React8.forwardRef((_a, forwardedRef) => {
|
|
5193
5268
|
var _b = _a, { children, className, sideOffset = 8 } = _b, props = __objRest(_b, ["children", "className", "sideOffset"]);
|
|
5194
|
-
return /* @__PURE__ */
|
|
5269
|
+
return /* @__PURE__ */ jsx112(
|
|
5195
5270
|
DropdownMenuPrimitive.SubContent,
|
|
5196
5271
|
__spreadProps(__spreadValues({
|
|
5197
5272
|
className: cn(
|
|
@@ -5215,12 +5290,12 @@ var DropdownMenuSubTrigger = React8.forwardRef(
|
|
|
5215
5290
|
icon,
|
|
5216
5291
|
className
|
|
5217
5292
|
};
|
|
5218
|
-
return /* @__PURE__ */
|
|
5293
|
+
return /* @__PURE__ */ jsx112(
|
|
5219
5294
|
DropdownMenuPrimitive.SubTrigger,
|
|
5220
5295
|
__spreadProps(__spreadValues({}, props), {
|
|
5221
5296
|
ref: forwardedRef,
|
|
5222
5297
|
className: "outline-none select-none group",
|
|
5223
|
-
children: /* @__PURE__ */
|
|
5298
|
+
children: /* @__PURE__ */ jsx112(DropdownMenuItemBase, __spreadProps(__spreadValues({ hasSubNav: true }, extraProps), { children }))
|
|
5224
5299
|
})
|
|
5225
5300
|
);
|
|
5226
5301
|
}
|
|
@@ -5230,15 +5305,15 @@ var DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
|
|
|
5230
5305
|
|
|
5231
5306
|
// src/components/FilterButton/FilterButton.tsx
|
|
5232
5307
|
import React9 from "react";
|
|
5233
|
-
import { Fragment, jsx as
|
|
5308
|
+
import { Fragment, jsx as jsx113, jsxs as jsxs82 } from "react/jsx-runtime";
|
|
5234
5309
|
var FilterButton = React9.forwardRef(
|
|
5235
5310
|
(_a, ref) => {
|
|
5236
5311
|
var _b = _a, { selectedCount, children, size = "sm", variant = "outline" } = _b, props = __objRest(_b, ["selectedCount", "children", "size", "variant"]);
|
|
5237
|
-
return /* @__PURE__ */
|
|
5312
|
+
return /* @__PURE__ */ jsxs82(Button, __spreadProps(__spreadValues({ ref, variant, size }, props), { children: [
|
|
5238
5313
|
children,
|
|
5239
|
-
selectedCount !== void 0 && selectedCount > 0 && /* @__PURE__ */
|
|
5240
|
-
/* @__PURE__ */
|
|
5241
|
-
/* @__PURE__ */
|
|
5314
|
+
selectedCount !== void 0 && selectedCount > 0 && /* @__PURE__ */ jsxs82(Fragment, { children: [
|
|
5315
|
+
/* @__PURE__ */ jsx113("span", { className: "h-4 border-l border-gray-200" }),
|
|
5316
|
+
/* @__PURE__ */ jsx113(Badge, { variant: "fill", color: "blue", children: selectedCount })
|
|
5242
5317
|
] })
|
|
5243
5318
|
] }));
|
|
5244
5319
|
}
|
|
@@ -5257,10 +5332,10 @@ import {
|
|
|
5257
5332
|
// src/components/Label/Label.tsx
|
|
5258
5333
|
import * as React10 from "react";
|
|
5259
5334
|
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
5260
|
-
import { jsx as
|
|
5335
|
+
import { jsx as jsx114 } from "react/jsx-runtime";
|
|
5261
5336
|
var Label2 = React10.forwardRef((_a, ref) => {
|
|
5262
5337
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5263
|
-
return /* @__PURE__ */
|
|
5338
|
+
return /* @__PURE__ */ jsx114(
|
|
5264
5339
|
LabelPrimitive.Root,
|
|
5265
5340
|
__spreadValues({
|
|
5266
5341
|
ref,
|
|
@@ -5274,18 +5349,18 @@ var Label2 = React10.forwardRef((_a, ref) => {
|
|
|
5274
5349
|
Label2.displayName = LabelPrimitive.Root.displayName;
|
|
5275
5350
|
|
|
5276
5351
|
// src/components/Form/Form.tsx
|
|
5277
|
-
import { jsx as
|
|
5352
|
+
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
5278
5353
|
var Form = FormProvider;
|
|
5279
5354
|
var FormFieldContext = React11.createContext(
|
|
5280
5355
|
{}
|
|
5281
5356
|
);
|
|
5282
5357
|
var FormField = (_a) => {
|
|
5283
5358
|
var props = __objRest(_a, []);
|
|
5284
|
-
return /* @__PURE__ */
|
|
5359
|
+
return /* @__PURE__ */ jsx115(
|
|
5285
5360
|
FormFieldContext.Provider,
|
|
5286
5361
|
{
|
|
5287
5362
|
value: { name: props.name, isDisabled: props.disabled },
|
|
5288
|
-
children: /* @__PURE__ */
|
|
5363
|
+
children: /* @__PURE__ */ jsx115(Controller, __spreadValues({}, props))
|
|
5289
5364
|
}
|
|
5290
5365
|
);
|
|
5291
5366
|
};
|
|
@@ -5313,7 +5388,7 @@ var FormItemContext = React11.createContext(
|
|
|
5313
5388
|
var FormItem = React11.forwardRef((_a, ref) => {
|
|
5314
5389
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5315
5390
|
const id = React11.useId();
|
|
5316
|
-
return /* @__PURE__ */
|
|
5391
|
+
return /* @__PURE__ */ jsx115(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ jsx115(
|
|
5317
5392
|
"div",
|
|
5318
5393
|
__spreadValues({
|
|
5319
5394
|
ref,
|
|
@@ -5325,7 +5400,7 @@ FormItem.displayName = "FormItem";
|
|
|
5325
5400
|
var FormLabel = React11.forwardRef((_a, ref) => {
|
|
5326
5401
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5327
5402
|
const { isDisabled, formItemId } = useFormField();
|
|
5328
|
-
return /* @__PURE__ */
|
|
5403
|
+
return /* @__PURE__ */ jsx115(
|
|
5329
5404
|
Label2,
|
|
5330
5405
|
__spreadValues({
|
|
5331
5406
|
ref,
|
|
@@ -5338,7 +5413,7 @@ FormLabel.displayName = "FormLabel";
|
|
|
5338
5413
|
var FormControl = React11.forwardRef((_a, ref) => {
|
|
5339
5414
|
var props = __objRest(_a, []);
|
|
5340
5415
|
const { error, isDisabled, formItemId, formDescriptionId, formMessageId } = useFormField();
|
|
5341
|
-
return /* @__PURE__ */
|
|
5416
|
+
return /* @__PURE__ */ jsx115(
|
|
5342
5417
|
Slot2,
|
|
5343
5418
|
__spreadValues({
|
|
5344
5419
|
ref,
|
|
@@ -5354,7 +5429,7 @@ FormControl.displayName = "FormControl";
|
|
|
5354
5429
|
var FormDescription = React11.forwardRef((_a, ref) => {
|
|
5355
5430
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5356
5431
|
const { formDescriptionId, isDisabled } = useFormField();
|
|
5357
|
-
return /* @__PURE__ */
|
|
5432
|
+
return /* @__PURE__ */ jsx115(
|
|
5358
5433
|
"p",
|
|
5359
5434
|
__spreadValues({
|
|
5360
5435
|
ref,
|
|
@@ -5373,7 +5448,7 @@ var FormMessage = React11.forwardRef((_a, ref) => {
|
|
|
5373
5448
|
const { error, isDisabled, formMessageId } = useFormField();
|
|
5374
5449
|
const body = error ? String(error == null ? void 0 : error.message) : children;
|
|
5375
5450
|
const textColorClassName = error ? "text-red-700" : "text-gray-700";
|
|
5376
|
-
return /* @__PURE__ */
|
|
5451
|
+
return /* @__PURE__ */ jsx115(
|
|
5377
5452
|
"p",
|
|
5378
5453
|
__spreadProps(__spreadValues({
|
|
5379
5454
|
ref,
|
|
@@ -5394,7 +5469,7 @@ FormMessage.displayName = "FormMessage";
|
|
|
5394
5469
|
// src/components/Input/Input.tsx
|
|
5395
5470
|
import * as React12 from "react";
|
|
5396
5471
|
import { Slot as Slot3 } from "@radix-ui/react-slot";
|
|
5397
|
-
import { jsx as
|
|
5472
|
+
import { jsx as jsx116, jsxs as jsxs83 } from "react/jsx-runtime";
|
|
5398
5473
|
var Input = React12.forwardRef(
|
|
5399
5474
|
(_a, ref) => {
|
|
5400
5475
|
var _b = _a, {
|
|
@@ -5413,8 +5488,8 @@ var Input = React12.forwardRef(
|
|
|
5413
5488
|
"suffixEnchancer"
|
|
5414
5489
|
]);
|
|
5415
5490
|
const isDisabled = !!props["data-is-disabled"] || disabled;
|
|
5416
|
-
return /* @__PURE__ */
|
|
5417
|
-
/* @__PURE__ */
|
|
5491
|
+
return /* @__PURE__ */ jsxs83("div", { className: "flex gap-2", children: [
|
|
5492
|
+
/* @__PURE__ */ jsxs83(
|
|
5418
5493
|
"div",
|
|
5419
5494
|
{
|
|
5420
5495
|
className: cn(
|
|
@@ -5426,7 +5501,7 @@ var Input = React12.forwardRef(
|
|
|
5426
5501
|
className
|
|
5427
5502
|
),
|
|
5428
5503
|
children: [
|
|
5429
|
-
prefixEnchancer && /* @__PURE__ */
|
|
5504
|
+
prefixEnchancer && /* @__PURE__ */ jsx116(
|
|
5430
5505
|
Slot3,
|
|
5431
5506
|
{
|
|
5432
5507
|
className: cn(
|
|
@@ -5436,7 +5511,7 @@ var Input = React12.forwardRef(
|
|
|
5436
5511
|
children: prefixEnchancer
|
|
5437
5512
|
}
|
|
5438
5513
|
),
|
|
5439
|
-
/* @__PURE__ */
|
|
5514
|
+
/* @__PURE__ */ jsx116(
|
|
5440
5515
|
"input",
|
|
5441
5516
|
__spreadProps(__spreadValues({}, props), {
|
|
5442
5517
|
disabled: isDisabled,
|
|
@@ -5445,7 +5520,7 @@ var Input = React12.forwardRef(
|
|
|
5445
5520
|
ref
|
|
5446
5521
|
})
|
|
5447
5522
|
),
|
|
5448
|
-
suffixEnchancer && /* @__PURE__ */
|
|
5523
|
+
suffixEnchancer && /* @__PURE__ */ jsx116(
|
|
5449
5524
|
Slot3,
|
|
5450
5525
|
{
|
|
5451
5526
|
className: cn(
|
|
@@ -5469,7 +5544,7 @@ var Input = React12.forwardRef(
|
|
|
5469
5544
|
Input.displayName = "Input";
|
|
5470
5545
|
|
|
5471
5546
|
// src/components/Pagination/Pagination.tsx
|
|
5472
|
-
import { jsx as
|
|
5547
|
+
import { jsx as jsx117, jsxs as jsxs84 } from "react/jsx-runtime";
|
|
5473
5548
|
var PaginationPageChoice = /* @__PURE__ */ ((PaginationPageChoice2) => {
|
|
5474
5549
|
PaginationPageChoice2["FIRST"] = "FIRST";
|
|
5475
5550
|
PaginationPageChoice2["PREVIOUS"] = "PREVIOUS";
|
|
@@ -5485,12 +5560,12 @@ var Pagination = ({
|
|
|
5485
5560
|
onPageChange,
|
|
5486
5561
|
className
|
|
5487
5562
|
}) => {
|
|
5488
|
-
return /* @__PURE__ */
|
|
5489
|
-
totalRowsCaption && /* @__PURE__ */
|
|
5490
|
-
/* @__PURE__ */
|
|
5491
|
-
currentPageCation && /* @__PURE__ */
|
|
5492
|
-
/* @__PURE__ */
|
|
5493
|
-
/* @__PURE__ */
|
|
5563
|
+
return /* @__PURE__ */ jsxs84("div", { className: cn("flex items-center justify-between px-2", className), children: [
|
|
5564
|
+
totalRowsCaption && /* @__PURE__ */ jsx117("div", { className: "flex-1 text-sm text-gray-700", children: totalRowsCaption }),
|
|
5565
|
+
/* @__PURE__ */ jsxs84("div", { className: "flex items-center gap-4", children: [
|
|
5566
|
+
currentPageCation && /* @__PURE__ */ jsx117("div", { className: "flex items-center justify-center text-sm font-medium text-gray-1000", children: currentPageCation }),
|
|
5567
|
+
/* @__PURE__ */ jsxs84("div", { className: "flex items-center gap-2", children: [
|
|
5568
|
+
/* @__PURE__ */ jsx117(
|
|
5494
5569
|
Button,
|
|
5495
5570
|
{
|
|
5496
5571
|
variant: "outline",
|
|
@@ -5498,10 +5573,10 @@ var Pagination = ({
|
|
|
5498
5573
|
size: "sm",
|
|
5499
5574
|
onClick: () => onPageChange("FIRST" /* FIRST */),
|
|
5500
5575
|
disabled: !previousPageAvailable,
|
|
5501
|
-
children: /* @__PURE__ */
|
|
5576
|
+
children: /* @__PURE__ */ jsx117(ChevronLeftDoubleIcon, { size: "16" })
|
|
5502
5577
|
}
|
|
5503
5578
|
),
|
|
5504
|
-
/* @__PURE__ */
|
|
5579
|
+
/* @__PURE__ */ jsx117(
|
|
5505
5580
|
Button,
|
|
5506
5581
|
{
|
|
5507
5582
|
variant: "outline",
|
|
@@ -5509,10 +5584,10 @@ var Pagination = ({
|
|
|
5509
5584
|
size: "sm",
|
|
5510
5585
|
onClick: () => onPageChange("PREVIOUS" /* PREVIOUS */),
|
|
5511
5586
|
disabled: !previousPageAvailable,
|
|
5512
|
-
children: /* @__PURE__ */
|
|
5587
|
+
children: /* @__PURE__ */ jsx117(ChevronLeftIcon, { size: "16" })
|
|
5513
5588
|
}
|
|
5514
5589
|
),
|
|
5515
|
-
/* @__PURE__ */
|
|
5590
|
+
/* @__PURE__ */ jsx117(
|
|
5516
5591
|
Button,
|
|
5517
5592
|
{
|
|
5518
5593
|
variant: "outline",
|
|
@@ -5520,10 +5595,10 @@ var Pagination = ({
|
|
|
5520
5595
|
size: "sm",
|
|
5521
5596
|
onClick: () => onPageChange("NEXT" /* NEXT */),
|
|
5522
5597
|
disabled: !nextPageAvailable,
|
|
5523
|
-
children: /* @__PURE__ */
|
|
5598
|
+
children: /* @__PURE__ */ jsx117(ChevronRightIcon, { size: "16" })
|
|
5524
5599
|
}
|
|
5525
5600
|
),
|
|
5526
|
-
/* @__PURE__ */
|
|
5601
|
+
/* @__PURE__ */ jsx117(
|
|
5527
5602
|
Button,
|
|
5528
5603
|
{
|
|
5529
5604
|
variant: "outline",
|
|
@@ -5531,7 +5606,7 @@ var Pagination = ({
|
|
|
5531
5606
|
size: "sm",
|
|
5532
5607
|
onClick: () => onPageChange("LAST" /* LAST */),
|
|
5533
5608
|
disabled: !nextPageAvailable,
|
|
5534
|
-
children: /* @__PURE__ */
|
|
5609
|
+
children: /* @__PURE__ */ jsx117(ChevronRightDoubleIcon, { size: "16" })
|
|
5535
5610
|
}
|
|
5536
5611
|
)
|
|
5537
5612
|
] })
|
|
@@ -5542,12 +5617,12 @@ var Pagination = ({
|
|
|
5542
5617
|
// src/components/Popover/Popover.tsx
|
|
5543
5618
|
import * as React13 from "react";
|
|
5544
5619
|
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
5545
|
-
import { jsx as
|
|
5620
|
+
import { jsx as jsx118 } from "react/jsx-runtime";
|
|
5546
5621
|
var Popover = PopoverPrimitive.Root;
|
|
5547
5622
|
var PopoverTrigger = PopoverPrimitive.Trigger;
|
|
5548
5623
|
var PopoverContent = React13.forwardRef((_a, ref) => {
|
|
5549
5624
|
var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
|
|
5550
|
-
return /* @__PURE__ */
|
|
5625
|
+
return /* @__PURE__ */ jsx118(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx118(
|
|
5551
5626
|
PopoverPrimitive.Content,
|
|
5552
5627
|
__spreadValues({
|
|
5553
5628
|
ref,
|
|
@@ -5565,14 +5640,14 @@ PopoverContent.displayName = PopoverPrimitive.Content.displayName;
|
|
|
5565
5640
|
// src/components/Select/Select.tsx
|
|
5566
5641
|
import * as React14 from "react";
|
|
5567
5642
|
import * as SelectPrimitive from "@radix-ui/react-select";
|
|
5568
|
-
import { jsx as
|
|
5643
|
+
import { jsx as jsx119, jsxs as jsxs85 } from "react/jsx-runtime";
|
|
5569
5644
|
var Select = SelectPrimitive.Root;
|
|
5570
5645
|
var SelectGroup = SelectPrimitive.Group;
|
|
5571
5646
|
var SelectValue = SelectPrimitive.Value;
|
|
5572
5647
|
var SelectTrigger = React14.forwardRef((_a, ref) => {
|
|
5573
5648
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
5574
5649
|
const isDisabled = props["data-is-disabled"];
|
|
5575
|
-
return /* @__PURE__ */
|
|
5650
|
+
return /* @__PURE__ */ jsxs85(
|
|
5576
5651
|
SelectPrimitive.Trigger,
|
|
5577
5652
|
__spreadProps(__spreadValues({
|
|
5578
5653
|
ref,
|
|
@@ -5589,7 +5664,7 @@ var SelectTrigger = React14.forwardRef((_a, ref) => {
|
|
|
5589
5664
|
}, props), {
|
|
5590
5665
|
children: [
|
|
5591
5666
|
children,
|
|
5592
|
-
/* @__PURE__ */
|
|
5667
|
+
/* @__PURE__ */ jsx119(SelectPrimitive.Icon, { asChild: true, children: /* @__PURE__ */ jsx119(ChevronSelectorVerticalIcon, { size: "16", className: "w-4 h-4 opacity-50" }) })
|
|
5593
5668
|
]
|
|
5594
5669
|
})
|
|
5595
5670
|
);
|
|
@@ -5597,7 +5672,7 @@ var SelectTrigger = React14.forwardRef((_a, ref) => {
|
|
|
5597
5672
|
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
|
|
5598
5673
|
var SelectContent = React14.forwardRef((_a, ref) => {
|
|
5599
5674
|
var _b = _a, { className, children, position = "popper" } = _b, props = __objRest(_b, ["className", "children", "position"]);
|
|
5600
|
-
return /* @__PURE__ */
|
|
5675
|
+
return /* @__PURE__ */ jsx119(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsx119(
|
|
5601
5676
|
SelectPrimitive.Content,
|
|
5602
5677
|
__spreadProps(__spreadValues({
|
|
5603
5678
|
ref,
|
|
@@ -5608,7 +5683,7 @@ var SelectContent = React14.forwardRef((_a, ref) => {
|
|
|
5608
5683
|
),
|
|
5609
5684
|
position
|
|
5610
5685
|
}, props), {
|
|
5611
|
-
children: /* @__PURE__ */
|
|
5686
|
+
children: /* @__PURE__ */ jsx119(
|
|
5612
5687
|
SelectPrimitive.Viewport,
|
|
5613
5688
|
{
|
|
5614
5689
|
className: cn(
|
|
@@ -5624,7 +5699,7 @@ var SelectContent = React14.forwardRef((_a, ref) => {
|
|
|
5624
5699
|
SelectContent.displayName = SelectPrimitive.Content.displayName;
|
|
5625
5700
|
var SelectLabel = React14.forwardRef((_a, ref) => {
|
|
5626
5701
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5627
|
-
return /* @__PURE__ */
|
|
5702
|
+
return /* @__PURE__ */ jsx119(
|
|
5628
5703
|
SelectPrimitive.Label,
|
|
5629
5704
|
__spreadValues({
|
|
5630
5705
|
ref,
|
|
@@ -5635,7 +5710,7 @@ var SelectLabel = React14.forwardRef((_a, ref) => {
|
|
|
5635
5710
|
SelectLabel.displayName = SelectPrimitive.Label.displayName;
|
|
5636
5711
|
var SelectItem = React14.forwardRef((_a, ref) => {
|
|
5637
5712
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
5638
|
-
return /* @__PURE__ */
|
|
5713
|
+
return /* @__PURE__ */ jsx119(
|
|
5639
5714
|
SelectPrimitive.Item,
|
|
5640
5715
|
__spreadProps(__spreadValues({
|
|
5641
5716
|
ref,
|
|
@@ -5644,14 +5719,14 @@ var SelectItem = React14.forwardRef((_a, ref) => {
|
|
|
5644
5719
|
className
|
|
5645
5720
|
)
|
|
5646
5721
|
}, props), {
|
|
5647
|
-
children: /* @__PURE__ */
|
|
5722
|
+
children: /* @__PURE__ */ jsx119(SelectPrimitive.ItemText, { children })
|
|
5648
5723
|
})
|
|
5649
5724
|
);
|
|
5650
5725
|
});
|
|
5651
5726
|
SelectItem.displayName = SelectPrimitive.Item.displayName;
|
|
5652
5727
|
var SelectSeparator = React14.forwardRef((_a, ref) => {
|
|
5653
5728
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5654
|
-
return /* @__PURE__ */
|
|
5729
|
+
return /* @__PURE__ */ jsx119(
|
|
5655
5730
|
SelectPrimitive.Separator,
|
|
5656
5731
|
__spreadValues({
|
|
5657
5732
|
ref,
|
|
@@ -5664,10 +5739,10 @@ SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
|
|
|
5664
5739
|
// src/components/Switch/Switch.tsx
|
|
5665
5740
|
import * as React15 from "react";
|
|
5666
5741
|
import * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
5667
|
-
import { jsx as
|
|
5742
|
+
import { jsx as jsx120 } from "react/jsx-runtime";
|
|
5668
5743
|
var Switch = React15.forwardRef((_a, ref) => {
|
|
5669
5744
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5670
|
-
return /* @__PURE__ */
|
|
5745
|
+
return /* @__PURE__ */ jsx120(
|
|
5671
5746
|
SwitchPrimitive.Root,
|
|
5672
5747
|
__spreadProps(__spreadValues({
|
|
5673
5748
|
className: cn(
|
|
@@ -5676,7 +5751,7 @@ var Switch = React15.forwardRef((_a, ref) => {
|
|
|
5676
5751
|
)
|
|
5677
5752
|
}, props), {
|
|
5678
5753
|
ref,
|
|
5679
|
-
children: /* @__PURE__ */
|
|
5754
|
+
children: /* @__PURE__ */ jsx120(SwitchPrimitive.Thumb, { className: "inline-block w-4 h-4 bg-gray-600 rounded-full translate-x-0.5 data-[state=checked]:translate-x-5 data-[state=checked]:bg-white transition-transform ease-linear will-change-transform" })
|
|
5680
5755
|
})
|
|
5681
5756
|
);
|
|
5682
5757
|
});
|
|
@@ -5684,10 +5759,10 @@ Switch.displayName = SwitchPrimitive.Root.displayName;
|
|
|
5684
5759
|
|
|
5685
5760
|
// src/components/Table/Table.tsx
|
|
5686
5761
|
import * as React16 from "react";
|
|
5687
|
-
import { jsx as
|
|
5762
|
+
import { jsx as jsx121, jsxs as jsxs86 } from "react/jsx-runtime";
|
|
5688
5763
|
var Table = React16.forwardRef((_a, ref) => {
|
|
5689
5764
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5690
|
-
return /* @__PURE__ */
|
|
5765
|
+
return /* @__PURE__ */ jsx121("div", { className: "w-full overflow-auto border rounded-lg", children: /* @__PURE__ */ jsx121(
|
|
5691
5766
|
"table",
|
|
5692
5767
|
__spreadValues({
|
|
5693
5768
|
ref,
|
|
@@ -5698,7 +5773,7 @@ var Table = React16.forwardRef((_a, ref) => {
|
|
|
5698
5773
|
Table.displayName = "Table";
|
|
5699
5774
|
var TableHeader = React16.forwardRef((_a, ref) => {
|
|
5700
5775
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5701
|
-
return /* @__PURE__ */
|
|
5776
|
+
return /* @__PURE__ */ jsx121(
|
|
5702
5777
|
"thead",
|
|
5703
5778
|
__spreadValues({
|
|
5704
5779
|
ref,
|
|
@@ -5709,7 +5784,7 @@ var TableHeader = React16.forwardRef((_a, ref) => {
|
|
|
5709
5784
|
TableHeader.displayName = "TableHeader";
|
|
5710
5785
|
var TableBody = React16.forwardRef((_a, ref) => {
|
|
5711
5786
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5712
|
-
return /* @__PURE__ */
|
|
5787
|
+
return /* @__PURE__ */ jsx121(
|
|
5713
5788
|
"tbody",
|
|
5714
5789
|
__spreadValues({
|
|
5715
5790
|
ref,
|
|
@@ -5723,7 +5798,7 @@ var TableBody = React16.forwardRef((_a, ref) => {
|
|
|
5723
5798
|
TableBody.displayName = "TableBody";
|
|
5724
5799
|
var TableRow = React16.forwardRef((_a, ref) => {
|
|
5725
5800
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5726
|
-
return /* @__PURE__ */
|
|
5801
|
+
return /* @__PURE__ */ jsx121(
|
|
5727
5802
|
"tr",
|
|
5728
5803
|
__spreadValues({
|
|
5729
5804
|
ref,
|
|
@@ -5737,7 +5812,7 @@ var TableRow = React16.forwardRef((_a, ref) => {
|
|
|
5737
5812
|
TableRow.displayName = "TableRow";
|
|
5738
5813
|
var TableHead = React16.forwardRef((_a, ref) => {
|
|
5739
5814
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5740
|
-
return /* @__PURE__ */
|
|
5815
|
+
return /* @__PURE__ */ jsx121(
|
|
5741
5816
|
"th",
|
|
5742
5817
|
__spreadValues({
|
|
5743
5818
|
ref,
|
|
@@ -5751,7 +5826,7 @@ var TableHead = React16.forwardRef((_a, ref) => {
|
|
|
5751
5826
|
TableHead.displayName = "TableHead";
|
|
5752
5827
|
var TableCell = React16.forwardRef((_a, ref) => {
|
|
5753
5828
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5754
|
-
return /* @__PURE__ */
|
|
5829
|
+
return /* @__PURE__ */ jsx121(
|
|
5755
5830
|
"td",
|
|
5756
5831
|
__spreadValues({
|
|
5757
5832
|
ref,
|
|
@@ -5765,16 +5840,16 @@ var TableCell = React16.forwardRef((_a, ref) => {
|
|
|
5765
5840
|
TableCell.displayName = "TableCell";
|
|
5766
5841
|
var TableEmpty = React16.forwardRef((_a, ref) => {
|
|
5767
5842
|
var _b = _a, { className, title, description, children } = _b, props = __objRest(_b, ["className", "title", "description", "children"]);
|
|
5768
|
-
return /* @__PURE__ */
|
|
5843
|
+
return /* @__PURE__ */ jsxs86(
|
|
5769
5844
|
"div",
|
|
5770
5845
|
__spreadProps(__spreadValues({
|
|
5771
5846
|
ref,
|
|
5772
5847
|
className: cn("flex flex-col gap-6 items-center py-12", className)
|
|
5773
5848
|
}, props), {
|
|
5774
5849
|
children: [
|
|
5775
|
-
title && /* @__PURE__ */
|
|
5776
|
-
description && /* @__PURE__ */
|
|
5777
|
-
/* @__PURE__ */
|
|
5850
|
+
title && /* @__PURE__ */ jsx121("span", { className: "text-lg font-semibold text-gray-1000", children: title }),
|
|
5851
|
+
description && /* @__PURE__ */ jsx121("span", { className: "text-sm font-normal text-gray-900", children: description }),
|
|
5852
|
+
/* @__PURE__ */ jsx121("div", { children })
|
|
5778
5853
|
]
|
|
5779
5854
|
})
|
|
5780
5855
|
);
|
|
@@ -5784,11 +5859,11 @@ TableEmpty.displayName = "TableEmpty";
|
|
|
5784
5859
|
// src/components/Tabs/Tabs.tsx
|
|
5785
5860
|
import * as React17 from "react";
|
|
5786
5861
|
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
5787
|
-
import { jsx as
|
|
5862
|
+
import { jsx as jsx122 } from "react/jsx-runtime";
|
|
5788
5863
|
var Tabs = TabsPrimitive.Root;
|
|
5789
5864
|
var TabsList = React17.forwardRef((_a, ref) => {
|
|
5790
5865
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5791
|
-
return /* @__PURE__ */
|
|
5866
|
+
return /* @__PURE__ */ jsx122(
|
|
5792
5867
|
TabsPrimitive.List,
|
|
5793
5868
|
__spreadValues({
|
|
5794
5869
|
ref,
|
|
@@ -5802,7 +5877,7 @@ var TabsList = React17.forwardRef((_a, ref) => {
|
|
|
5802
5877
|
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
5803
5878
|
var TabsTrigger = React17.forwardRef((_a, ref) => {
|
|
5804
5879
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5805
|
-
return /* @__PURE__ */
|
|
5880
|
+
return /* @__PURE__ */ jsx122(
|
|
5806
5881
|
TabsPrimitive.Trigger,
|
|
5807
5882
|
__spreadValues({
|
|
5808
5883
|
ref,
|
|
@@ -5819,7 +5894,7 @@ var TabsTrigger = React17.forwardRef((_a, ref) => {
|
|
|
5819
5894
|
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
5820
5895
|
var TabsContent = React17.forwardRef((_a, ref) => {
|
|
5821
5896
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5822
|
-
return /* @__PURE__ */
|
|
5897
|
+
return /* @__PURE__ */ jsx122(
|
|
5823
5898
|
TabsPrimitive.Content,
|
|
5824
5899
|
__spreadValues({
|
|
5825
5900
|
ref,
|
|
@@ -5834,12 +5909,12 @@ TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
|
5834
5909
|
|
|
5835
5910
|
// src/components/Textarea/Textarea.tsx
|
|
5836
5911
|
import * as React18 from "react";
|
|
5837
|
-
import { jsx as
|
|
5912
|
+
import { jsx as jsx123 } from "react/jsx-runtime";
|
|
5838
5913
|
var Textarea = React18.forwardRef(
|
|
5839
5914
|
(_a, ref) => {
|
|
5840
5915
|
var _b = _a, { className, disabled } = _b, props = __objRest(_b, ["className", "disabled"]);
|
|
5841
5916
|
const isDisabled = !!props["data-is-disabled"] || disabled;
|
|
5842
|
-
return /* @__PURE__ */
|
|
5917
|
+
return /* @__PURE__ */ jsx123("div", { className: "flex gap-2", children: /* @__PURE__ */ jsx123(
|
|
5843
5918
|
"div",
|
|
5844
5919
|
{
|
|
5845
5920
|
className: cn(
|
|
@@ -5850,7 +5925,7 @@ var Textarea = React18.forwardRef(
|
|
|
5850
5925
|
},
|
|
5851
5926
|
className
|
|
5852
5927
|
),
|
|
5853
|
-
children: /* @__PURE__ */
|
|
5928
|
+
children: /* @__PURE__ */ jsx123(
|
|
5854
5929
|
"textarea",
|
|
5855
5930
|
__spreadProps(__spreadValues({}, props), {
|
|
5856
5931
|
disabled: isDisabled,
|
|
@@ -5864,23 +5939,308 @@ var Textarea = React18.forwardRef(
|
|
|
5864
5939
|
);
|
|
5865
5940
|
Textarea.displayName = "Textarea";
|
|
5866
5941
|
|
|
5867
|
-
// src/components/
|
|
5942
|
+
// src/components/Toaster/Toast.tsx
|
|
5868
5943
|
import * as React19 from "react";
|
|
5944
|
+
import * as ToastPrimitives from "@radix-ui/react-toast";
|
|
5945
|
+
import { cva as cva4 } from "class-variance-authority";
|
|
5946
|
+
import { jsx as jsx124 } from "react/jsx-runtime";
|
|
5947
|
+
var ToastProvider = ToastPrimitives.Provider;
|
|
5948
|
+
var ToastViewport = React19.forwardRef((_a, ref) => {
|
|
5949
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5950
|
+
return /* @__PURE__ */ jsx124(
|
|
5951
|
+
ToastPrimitives.Viewport,
|
|
5952
|
+
__spreadValues({
|
|
5953
|
+
ref,
|
|
5954
|
+
className: cn(
|
|
5955
|
+
"fixed top-8 left-1/2 -translate-x-1/2 z-[100] flex max-h-screen flex-col-reverse sm:flex-col md:max-w-[420px]",
|
|
5956
|
+
className
|
|
5957
|
+
)
|
|
5958
|
+
}, props)
|
|
5959
|
+
);
|
|
5960
|
+
});
|
|
5961
|
+
ToastViewport.displayName = ToastPrimitives.Viewport.displayName;
|
|
5962
|
+
var toastVariants = cva4(
|
|
5963
|
+
"group pointer-events-auto relative flex w-full shadow-sm items-center justify-between gap-4 overflow-hidden rounded-md border px-4 py-2 transition-all data-[swipe=cancel]:translate-x-0 data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)] data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] data-[swipe=move]:transition-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[swipe=end]:animate-out data-[state=closed]:fade-out-80 data-[state=closed]:fade-out data-[state=open]:slide-in-from-top-full data-[state=open]:sm:slide-in-from-bottom-full",
|
|
5964
|
+
{
|
|
5965
|
+
variants: {
|
|
5966
|
+
variant: {
|
|
5967
|
+
default: "bg-gray-1000 text-white",
|
|
5968
|
+
destructive: "bg-red-700 group text-white"
|
|
5969
|
+
}
|
|
5970
|
+
},
|
|
5971
|
+
defaultVariants: {
|
|
5972
|
+
variant: "default"
|
|
5973
|
+
}
|
|
5974
|
+
}
|
|
5975
|
+
);
|
|
5976
|
+
var Toast = React19.forwardRef((_a, ref) => {
|
|
5977
|
+
var _b = _a, { className, variant } = _b, props = __objRest(_b, ["className", "variant"]);
|
|
5978
|
+
return /* @__PURE__ */ jsx124(
|
|
5979
|
+
ToastPrimitives.Root,
|
|
5980
|
+
__spreadValues({
|
|
5981
|
+
ref,
|
|
5982
|
+
className: cn(toastVariants({ variant }), className)
|
|
5983
|
+
}, props)
|
|
5984
|
+
);
|
|
5985
|
+
});
|
|
5986
|
+
Toast.displayName = ToastPrimitives.Root.displayName;
|
|
5987
|
+
var ToastAction = React19.forwardRef((_a, ref) => {
|
|
5988
|
+
var _b = _a, { className, altText } = _b, props = __objRest(_b, ["className", "altText"]);
|
|
5989
|
+
return /* @__PURE__ */ jsx124(ToastPrimitives.Action, { altText, ref, asChild: true, children: /* @__PURE__ */ jsx124(Button, __spreadValues({ size: "xs" }, props)) });
|
|
5990
|
+
});
|
|
5991
|
+
ToastAction.displayName = ToastPrimitives.Action.displayName;
|
|
5992
|
+
var ToastClose = React19.forwardRef((_a, ref) => {
|
|
5993
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5994
|
+
return /* @__PURE__ */ jsx124(
|
|
5995
|
+
ToastPrimitives.Close,
|
|
5996
|
+
__spreadProps(__spreadValues({
|
|
5997
|
+
ref,
|
|
5998
|
+
className: cn("focus:outline-none focus:ring-1", className),
|
|
5999
|
+
"toast-close": ""
|
|
6000
|
+
}, props), {
|
|
6001
|
+
children: /* @__PURE__ */ jsx124(XCloseIcon, { className: "text-white", size: 16 })
|
|
6002
|
+
})
|
|
6003
|
+
);
|
|
6004
|
+
});
|
|
6005
|
+
ToastClose.displayName = ToastPrimitives.Close.displayName;
|
|
6006
|
+
var ToastTitle = React19.forwardRef((_a, ref) => {
|
|
6007
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6008
|
+
return /* @__PURE__ */ jsx124(
|
|
6009
|
+
ToastPrimitives.Title,
|
|
6010
|
+
__spreadValues({
|
|
6011
|
+
ref,
|
|
6012
|
+
className: cn("text-sm font-medium", className)
|
|
6013
|
+
}, props)
|
|
6014
|
+
);
|
|
6015
|
+
});
|
|
6016
|
+
ToastTitle.displayName = ToastPrimitives.Title.displayName;
|
|
6017
|
+
var ToastDescription = React19.forwardRef((_a, ref) => {
|
|
6018
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6019
|
+
return /* @__PURE__ */ jsx124(
|
|
6020
|
+
ToastPrimitives.Description,
|
|
6021
|
+
__spreadValues({
|
|
6022
|
+
ref,
|
|
6023
|
+
className: cn("text-xs text-white pb-2", className)
|
|
6024
|
+
}, props)
|
|
6025
|
+
);
|
|
6026
|
+
});
|
|
6027
|
+
ToastDescription.displayName = ToastPrimitives.Description.displayName;
|
|
6028
|
+
|
|
6029
|
+
// src/components/Toaster/Toaster.tsx
|
|
6030
|
+
import React21 from "react";
|
|
6031
|
+
|
|
6032
|
+
// src/components/Toaster/useToast.tsx
|
|
6033
|
+
import * as React20 from "react";
|
|
6034
|
+
var TOAST_LIMIT = 3;
|
|
6035
|
+
var TOAST_REMOVE_DELAY = 1e6;
|
|
6036
|
+
var count = 0;
|
|
6037
|
+
function genId() {
|
|
6038
|
+
count = (count + 1) % Number.MAX_VALUE;
|
|
6039
|
+
return count.toString();
|
|
6040
|
+
}
|
|
6041
|
+
var toastTimeouts = /* @__PURE__ */ new Map();
|
|
6042
|
+
var addToRemoveQueue = (toastId) => {
|
|
6043
|
+
if (toastTimeouts.has(toastId)) {
|
|
6044
|
+
return;
|
|
6045
|
+
}
|
|
6046
|
+
const timeout = setTimeout(() => {
|
|
6047
|
+
toastTimeouts.delete(toastId);
|
|
6048
|
+
dispatch({
|
|
6049
|
+
type: "REMOVE_TOAST",
|
|
6050
|
+
toastId
|
|
6051
|
+
});
|
|
6052
|
+
}, TOAST_REMOVE_DELAY);
|
|
6053
|
+
toastTimeouts.set(toastId, timeout);
|
|
6054
|
+
};
|
|
6055
|
+
var reducer = (state, action) => {
|
|
6056
|
+
switch (action.type) {
|
|
6057
|
+
case "ADD_TOAST": {
|
|
6058
|
+
const currentParent = state.toasts.filter(
|
|
6059
|
+
(it) => it.parentId === action.toast.parentId
|
|
6060
|
+
);
|
|
6061
|
+
const otherToasts = state.toasts.filter(
|
|
6062
|
+
(it) => it.parentId !== action.toast.parentId
|
|
6063
|
+
);
|
|
6064
|
+
const updatedToasts = [action.toast, ...currentParent].slice(
|
|
6065
|
+
0,
|
|
6066
|
+
TOAST_LIMIT
|
|
6067
|
+
);
|
|
6068
|
+
return __spreadProps(__spreadValues({}, state), {
|
|
6069
|
+
toasts: [...updatedToasts, ...otherToasts]
|
|
6070
|
+
});
|
|
6071
|
+
}
|
|
6072
|
+
case "UPDATE_TOAST":
|
|
6073
|
+
return __spreadProps(__spreadValues({}, state), {
|
|
6074
|
+
toasts: state.toasts.map(
|
|
6075
|
+
(t) => t.id === action.toast.id ? __spreadValues(__spreadValues({}, t), action.toast) : t
|
|
6076
|
+
)
|
|
6077
|
+
});
|
|
6078
|
+
case "DISMISS_TOAST": {
|
|
6079
|
+
const { toastId } = action;
|
|
6080
|
+
if (toastId) {
|
|
6081
|
+
addToRemoveQueue(toastId);
|
|
6082
|
+
} else {
|
|
6083
|
+
state.toasts.forEach((toast2) => {
|
|
6084
|
+
addToRemoveQueue(toast2.id);
|
|
6085
|
+
});
|
|
6086
|
+
}
|
|
6087
|
+
return __spreadProps(__spreadValues({}, state), {
|
|
6088
|
+
toasts: state.toasts.map(
|
|
6089
|
+
(t) => t.id === toastId || toastId === void 0 ? __spreadProps(__spreadValues({}, t), {
|
|
6090
|
+
open: false
|
|
6091
|
+
}) : t
|
|
6092
|
+
)
|
|
6093
|
+
});
|
|
6094
|
+
}
|
|
6095
|
+
case "REMOVE_TOAST":
|
|
6096
|
+
if (action.toastId === void 0) {
|
|
6097
|
+
return __spreadProps(__spreadValues({}, state), {
|
|
6098
|
+
toasts: []
|
|
6099
|
+
});
|
|
6100
|
+
}
|
|
6101
|
+
return __spreadProps(__spreadValues({}, state), {
|
|
6102
|
+
toasts: state.toasts.filter((t) => t.id !== action.toastId)
|
|
6103
|
+
});
|
|
6104
|
+
}
|
|
6105
|
+
};
|
|
6106
|
+
var listeners = [];
|
|
6107
|
+
var memoryState = { toasts: [] };
|
|
6108
|
+
function dispatch(action) {
|
|
6109
|
+
memoryState = reducer(memoryState, action);
|
|
6110
|
+
listeners.forEach((listener) => {
|
|
6111
|
+
listener(memoryState);
|
|
6112
|
+
});
|
|
6113
|
+
}
|
|
6114
|
+
var toast = (parentId) => (_a) => {
|
|
6115
|
+
var props = __objRest(_a, []);
|
|
6116
|
+
const id = genId();
|
|
6117
|
+
const update = (props2) => dispatch({
|
|
6118
|
+
type: "UPDATE_TOAST",
|
|
6119
|
+
toast: __spreadProps(__spreadValues({}, props2), { id, parentId })
|
|
6120
|
+
});
|
|
6121
|
+
const dismiss = () => dispatch({ type: "DISMISS_TOAST", toastId: id });
|
|
6122
|
+
dispatch({
|
|
6123
|
+
type: "ADD_TOAST",
|
|
6124
|
+
toast: __spreadProps(__spreadValues({}, props), {
|
|
6125
|
+
id,
|
|
6126
|
+
open: true,
|
|
6127
|
+
onOpenChange: (open) => {
|
|
6128
|
+
if (!open)
|
|
6129
|
+
dismiss();
|
|
6130
|
+
},
|
|
6131
|
+
parentId
|
|
6132
|
+
})
|
|
6133
|
+
});
|
|
6134
|
+
return {
|
|
6135
|
+
id,
|
|
6136
|
+
dismiss,
|
|
6137
|
+
update,
|
|
6138
|
+
parentId
|
|
6139
|
+
};
|
|
6140
|
+
};
|
|
6141
|
+
function useToast({ toasterId = "default" } = {}) {
|
|
6142
|
+
const [state, setState] = React20.useState(memoryState);
|
|
6143
|
+
React20.useEffect(() => {
|
|
6144
|
+
listeners.push(setState);
|
|
6145
|
+
return () => {
|
|
6146
|
+
const index = listeners.indexOf(setState);
|
|
6147
|
+
if (index > -1) {
|
|
6148
|
+
listeners.splice(index, 1);
|
|
6149
|
+
}
|
|
6150
|
+
};
|
|
6151
|
+
}, [state]);
|
|
6152
|
+
return __spreadProps(__spreadValues({}, state), {
|
|
6153
|
+
toast: toast(toasterId),
|
|
6154
|
+
dismiss: (toastId) => dispatch({ type: "DISMISS_TOAST", toastId })
|
|
6155
|
+
});
|
|
6156
|
+
}
|
|
6157
|
+
|
|
6158
|
+
// src/components/Toaster/Toaster.tsx
|
|
6159
|
+
import { jsx as jsx125, jsxs as jsxs87 } from "react/jsx-runtime";
|
|
6160
|
+
var ToastContent = ({
|
|
6161
|
+
title,
|
|
6162
|
+
description,
|
|
6163
|
+
icon,
|
|
6164
|
+
actions,
|
|
6165
|
+
hideClose
|
|
6166
|
+
}) => {
|
|
6167
|
+
return /* @__PURE__ */ jsxs87("div", { className: "flex flex-col gap-2", children: [
|
|
6168
|
+
/* @__PURE__ */ jsxs87("div", { className: "flex items-center gap-4", children: [
|
|
6169
|
+
/* @__PURE__ */ jsxs87("div", { className: "flex items-center flex-grow gap-2", children: [
|
|
6170
|
+
icon && React21.cloneElement(icon, {
|
|
6171
|
+
size: 16,
|
|
6172
|
+
className: cn("shrink-0", icon.props.className)
|
|
6173
|
+
}),
|
|
6174
|
+
title && /* @__PURE__ */ jsx125(ToastTitle, { children: title })
|
|
6175
|
+
] }),
|
|
6176
|
+
actions,
|
|
6177
|
+
!hideClose && /* @__PURE__ */ jsx125(ToastClose, {})
|
|
6178
|
+
] }),
|
|
6179
|
+
description && /* @__PURE__ */ jsx125(ToastDescription, { children: description })
|
|
6180
|
+
] });
|
|
6181
|
+
};
|
|
6182
|
+
function Toaster(_a) {
|
|
6183
|
+
var _b = _a, {
|
|
6184
|
+
className,
|
|
6185
|
+
toasterId = "default"
|
|
6186
|
+
} = _b, props = __objRest(_b, [
|
|
6187
|
+
"className",
|
|
6188
|
+
"toasterId"
|
|
6189
|
+
]);
|
|
6190
|
+
const { toasts } = useToast({ toasterId });
|
|
6191
|
+
return /* @__PURE__ */ jsxs87(ToastProvider, __spreadProps(__spreadValues({}, props), { children: [
|
|
6192
|
+
toasts.filter((t) => t.parentId === toasterId).map(
|
|
6193
|
+
(_a2) => {
|
|
6194
|
+
var _b2 = _a2, {
|
|
6195
|
+
id,
|
|
6196
|
+
parentId,
|
|
6197
|
+
title,
|
|
6198
|
+
description,
|
|
6199
|
+
actions,
|
|
6200
|
+
icon,
|
|
6201
|
+
hideClose
|
|
6202
|
+
} = _b2, props2 = __objRest(_b2, [
|
|
6203
|
+
"id",
|
|
6204
|
+
"parentId",
|
|
6205
|
+
"title",
|
|
6206
|
+
"description",
|
|
6207
|
+
"actions",
|
|
6208
|
+
"icon",
|
|
6209
|
+
"hideClose"
|
|
6210
|
+
]);
|
|
6211
|
+
return /* @__PURE__ */ jsx125(Toast, __spreadProps(__spreadValues({}, props2), { children: /* @__PURE__ */ jsx125(
|
|
6212
|
+
ToastContent,
|
|
6213
|
+
{
|
|
6214
|
+
title,
|
|
6215
|
+
description,
|
|
6216
|
+
actions,
|
|
6217
|
+
icon,
|
|
6218
|
+
hideClose
|
|
6219
|
+
}
|
|
6220
|
+
) }), id);
|
|
6221
|
+
}
|
|
6222
|
+
),
|
|
6223
|
+
/* @__PURE__ */ jsx125(ToastViewport, { className })
|
|
6224
|
+
] }));
|
|
6225
|
+
}
|
|
6226
|
+
|
|
6227
|
+
// src/components/Tooltip/Tooltip.tsx
|
|
6228
|
+
import * as React22 from "react";
|
|
5869
6229
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
5870
|
-
import { jsx as
|
|
6230
|
+
import { jsx as jsx126 } from "react/jsx-runtime";
|
|
5871
6231
|
var TooltipProvider = (_a) => {
|
|
5872
6232
|
var _b = _a, {
|
|
5873
6233
|
delayDuration = 0
|
|
5874
6234
|
} = _b, props = __objRest(_b, [
|
|
5875
6235
|
"delayDuration"
|
|
5876
6236
|
]);
|
|
5877
|
-
return /* @__PURE__ */
|
|
6237
|
+
return /* @__PURE__ */ jsx126(TooltipPrimitive.Provider, __spreadValues({ delayDuration }, props));
|
|
5878
6238
|
};
|
|
5879
6239
|
var Tooltip = TooltipPrimitive.Root;
|
|
5880
6240
|
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
5881
|
-
var TooltipContent =
|
|
6241
|
+
var TooltipContent = React22.forwardRef((_a, ref) => {
|
|
5882
6242
|
var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
|
|
5883
|
-
return /* @__PURE__ */
|
|
6243
|
+
return /* @__PURE__ */ jsx126(
|
|
5884
6244
|
TooltipPrimitive.Content,
|
|
5885
6245
|
__spreadValues({
|
|
5886
6246
|
ref,
|
|
@@ -5973,6 +6333,8 @@ export {
|
|
|
5973
6333
|
DropdownMenuTrigger,
|
|
5974
6334
|
EditIcon,
|
|
5975
6335
|
ExpandIcon,
|
|
6336
|
+
EyeIcon,
|
|
6337
|
+
EyeOffIcon,
|
|
5976
6338
|
FileQuestionIcon,
|
|
5977
6339
|
FilterButton,
|
|
5978
6340
|
FilterLinesIcon,
|
|
@@ -6062,6 +6424,14 @@ export {
|
|
|
6062
6424
|
TabsList,
|
|
6063
6425
|
TabsTrigger,
|
|
6064
6426
|
Textarea,
|
|
6427
|
+
Toast,
|
|
6428
|
+
ToastAction,
|
|
6429
|
+
ToastClose,
|
|
6430
|
+
ToastDescription,
|
|
6431
|
+
ToastProvider,
|
|
6432
|
+
ToastTitle,
|
|
6433
|
+
ToastViewport,
|
|
6434
|
+
Toaster,
|
|
6065
6435
|
Tooltip,
|
|
6066
6436
|
TooltipContent,
|
|
6067
6437
|
TooltipProvider,
|
|
@@ -6084,5 +6454,7 @@ export {
|
|
|
6084
6454
|
buttonSizes,
|
|
6085
6455
|
buttonVariants,
|
|
6086
6456
|
iconButtonSizes,
|
|
6087
|
-
|
|
6457
|
+
toast,
|
|
6458
|
+
useFormField,
|
|
6459
|
+
useToast
|
|
6088
6460
|
};
|