huspy-icons 0.3.13 → 0.3.15
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/fonts/HuspyIcons.css +43 -40
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +37 -36
- package/dist/fonts/HuspyIcons.ts +39 -36
- package/dist/fonts/HuspyIcons.ttf +0 -0
- package/dist/fonts/HuspyIcons.woff +0 -0
- package/dist/fonts/HuspyIcons.woff2 +0 -0
- package/dist/native/index.d.ts +1 -1
- package/dist/native/index.js +37 -36
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +4 -2
- package/dist/react/index.d.ts +4 -2
- package/dist/react/index.js +575 -524
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +496 -445
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +38 -37
- package/src/react/Copy.tsx +32 -0
- package/src/react/Icon.tsx +4 -1
- package/src/react/index.ts +1 -0
- package/src/react/index.tsx +1 -0
package/dist/react/index.mjs
CHANGED
|
@@ -1857,12 +1857,59 @@ var init_Collections = __esm({
|
|
|
1857
1857
|
}
|
|
1858
1858
|
});
|
|
1859
1859
|
|
|
1860
|
+
// src/react/Copy.tsx
|
|
1861
|
+
var Copy_exports = {};
|
|
1862
|
+
__export(Copy_exports, {
|
|
1863
|
+
default: () => Copy_default
|
|
1864
|
+
});
|
|
1865
|
+
import * as React37 from "react";
|
|
1866
|
+
var SvgCopy, Copy_default;
|
|
1867
|
+
var init_Copy = __esm({
|
|
1868
|
+
"src/react/Copy.tsx"() {
|
|
1869
|
+
"use strict";
|
|
1870
|
+
init_types();
|
|
1871
|
+
SvgCopy = ({ size = 16, ...props }) => {
|
|
1872
|
+
const sizeValue = resolveSize(size);
|
|
1873
|
+
return /* @__PURE__ */ React37.createElement(
|
|
1874
|
+
"svg",
|
|
1875
|
+
{
|
|
1876
|
+
width: sizeValue,
|
|
1877
|
+
height: sizeValue,
|
|
1878
|
+
viewBox: "0 0 24 24",
|
|
1879
|
+
fill: "none",
|
|
1880
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1881
|
+
...props
|
|
1882
|
+
},
|
|
1883
|
+
/* @__PURE__ */ React37.createElement(
|
|
1884
|
+
"path",
|
|
1885
|
+
{
|
|
1886
|
+
fillRule: "evenodd",
|
|
1887
|
+
clipRule: "evenodd",
|
|
1888
|
+
d: "M10 9C9.44772 9 9 9.44772 9 10V20C9 20.5523 9.44772 21 10 21H20C20.5523 21 21 20.5523 21 20V10C21 9.44772 20.5523 9 20 9H10ZM7 10C7 8.34315 8.34315 7 10 7H20C21.6569 7 23 8.34315 23 10V20C23 21.6569 21.6569 23 20 23H10C8.34315 23 7 21.6569 7 20V10Z",
|
|
1889
|
+
fill: "currentColor"
|
|
1890
|
+
}
|
|
1891
|
+
),
|
|
1892
|
+
/* @__PURE__ */ React37.createElement(
|
|
1893
|
+
"path",
|
|
1894
|
+
{
|
|
1895
|
+
fillRule: "evenodd",
|
|
1896
|
+
clipRule: "evenodd",
|
|
1897
|
+
d: "M4 3C3.45228 3 3 3.45228 3 4V14C3 14.5477 3.45228 15 4 15C4.55228 15 5 15.4477 5 16C5 16.5523 4.55228 17 4 17C2.34772 17 1 15.6523 1 14V4C1 2.34772 2.34772 1 4 1H14C15.6523 1 17 2.34772 17 4C17 4.55228 16.5523 5 16 5C15.4477 5 15 4.55228 15 4C15 3.45228 14.5477 3 14 3H4Z",
|
|
1898
|
+
fill: "currentColor"
|
|
1899
|
+
}
|
|
1900
|
+
)
|
|
1901
|
+
);
|
|
1902
|
+
};
|
|
1903
|
+
Copy_default = SvgCopy;
|
|
1904
|
+
}
|
|
1905
|
+
});
|
|
1906
|
+
|
|
1860
1907
|
// src/react/DoorOpen.tsx
|
|
1861
1908
|
var DoorOpen_exports = {};
|
|
1862
1909
|
__export(DoorOpen_exports, {
|
|
1863
1910
|
default: () => DoorOpen_default
|
|
1864
1911
|
});
|
|
1865
|
-
import * as
|
|
1912
|
+
import * as React38 from "react";
|
|
1866
1913
|
var SvgDoorOpen, DoorOpen_default;
|
|
1867
1914
|
var init_DoorOpen = __esm({
|
|
1868
1915
|
"src/react/DoorOpen.tsx"() {
|
|
@@ -1870,7 +1917,7 @@ var init_DoorOpen = __esm({
|
|
|
1870
1917
|
init_types();
|
|
1871
1918
|
SvgDoorOpen = ({ size = 16, ...props }) => {
|
|
1872
1919
|
const sizeValue = resolveSize(size);
|
|
1873
|
-
return /* @__PURE__ */
|
|
1920
|
+
return /* @__PURE__ */ React38.createElement(
|
|
1874
1921
|
"svg",
|
|
1875
1922
|
{
|
|
1876
1923
|
width: sizeValue,
|
|
@@ -1880,7 +1927,7 @@ var init_DoorOpen = __esm({
|
|
|
1880
1927
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1881
1928
|
...props
|
|
1882
1929
|
},
|
|
1883
|
-
/* @__PURE__ */
|
|
1930
|
+
/* @__PURE__ */ React38.createElement(
|
|
1884
1931
|
"path",
|
|
1885
1932
|
{
|
|
1886
1933
|
fillRule: "evenodd",
|
|
@@ -1889,7 +1936,7 @@ var init_DoorOpen = __esm({
|
|
|
1889
1936
|
fill: "currentColor"
|
|
1890
1937
|
}
|
|
1891
1938
|
),
|
|
1892
|
-
/* @__PURE__ */
|
|
1939
|
+
/* @__PURE__ */ React38.createElement(
|
|
1893
1940
|
"path",
|
|
1894
1941
|
{
|
|
1895
1942
|
fillRule: "evenodd",
|
|
@@ -1898,7 +1945,7 @@ var init_DoorOpen = __esm({
|
|
|
1898
1945
|
fill: "currentColor"
|
|
1899
1946
|
}
|
|
1900
1947
|
),
|
|
1901
|
-
/* @__PURE__ */
|
|
1948
|
+
/* @__PURE__ */ React38.createElement(
|
|
1902
1949
|
"path",
|
|
1903
1950
|
{
|
|
1904
1951
|
fillRule: "evenodd",
|
|
@@ -1907,7 +1954,7 @@ var init_DoorOpen = __esm({
|
|
|
1907
1954
|
fill: "currentColor"
|
|
1908
1955
|
}
|
|
1909
1956
|
),
|
|
1910
|
-
/* @__PURE__ */
|
|
1957
|
+
/* @__PURE__ */ React38.createElement(
|
|
1911
1958
|
"path",
|
|
1912
1959
|
{
|
|
1913
1960
|
fillRule: "evenodd",
|
|
@@ -1916,7 +1963,7 @@ var init_DoorOpen = __esm({
|
|
|
1916
1963
|
fill: "currentColor"
|
|
1917
1964
|
}
|
|
1918
1965
|
),
|
|
1919
|
-
/* @__PURE__ */
|
|
1966
|
+
/* @__PURE__ */ React38.createElement(
|
|
1920
1967
|
"path",
|
|
1921
1968
|
{
|
|
1922
1969
|
fillRule: "evenodd",
|
|
@@ -1936,7 +1983,7 @@ var Duplex_exports = {};
|
|
|
1936
1983
|
__export(Duplex_exports, {
|
|
1937
1984
|
default: () => Duplex_default
|
|
1938
1985
|
});
|
|
1939
|
-
import * as
|
|
1986
|
+
import * as React39 from "react";
|
|
1940
1987
|
var SvgDuplex, Duplex_default;
|
|
1941
1988
|
var init_Duplex = __esm({
|
|
1942
1989
|
"src/react/Duplex.tsx"() {
|
|
@@ -1944,7 +1991,7 @@ var init_Duplex = __esm({
|
|
|
1944
1991
|
init_types();
|
|
1945
1992
|
SvgDuplex = ({ size = 16, ...props }) => {
|
|
1946
1993
|
const sizeValue = resolveSize(size);
|
|
1947
|
-
return /* @__PURE__ */
|
|
1994
|
+
return /* @__PURE__ */ React39.createElement(
|
|
1948
1995
|
"svg",
|
|
1949
1996
|
{
|
|
1950
1997
|
width: sizeValue,
|
|
@@ -1954,7 +2001,7 @@ var init_Duplex = __esm({
|
|
|
1954
2001
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1955
2002
|
...props
|
|
1956
2003
|
},
|
|
1957
|
-
/* @__PURE__ */
|
|
2004
|
+
/* @__PURE__ */ React39.createElement(
|
|
1958
2005
|
"path",
|
|
1959
2006
|
{
|
|
1960
2007
|
fillRule: "evenodd",
|
|
@@ -1963,7 +2010,7 @@ var init_Duplex = __esm({
|
|
|
1963
2010
|
fill: "currentColor"
|
|
1964
2011
|
}
|
|
1965
2012
|
),
|
|
1966
|
-
/* @__PURE__ */
|
|
2013
|
+
/* @__PURE__ */ React39.createElement(
|
|
1967
2014
|
"path",
|
|
1968
2015
|
{
|
|
1969
2016
|
fillRule: "evenodd",
|
|
@@ -1972,7 +2019,7 @@ var init_Duplex = __esm({
|
|
|
1972
2019
|
fill: "currentColor"
|
|
1973
2020
|
}
|
|
1974
2021
|
),
|
|
1975
|
-
/* @__PURE__ */
|
|
2022
|
+
/* @__PURE__ */ React39.createElement(
|
|
1976
2023
|
"path",
|
|
1977
2024
|
{
|
|
1978
2025
|
fillRule: "evenodd",
|
|
@@ -1981,7 +2028,7 @@ var init_Duplex = __esm({
|
|
|
1981
2028
|
fill: "currentColor"
|
|
1982
2029
|
}
|
|
1983
2030
|
),
|
|
1984
|
-
/* @__PURE__ */
|
|
2031
|
+
/* @__PURE__ */ React39.createElement(
|
|
1985
2032
|
"path",
|
|
1986
2033
|
{
|
|
1987
2034
|
fillRule: "evenodd",
|
|
@@ -1990,7 +2037,7 @@ var init_Duplex = __esm({
|
|
|
1990
2037
|
fill: "currentColor"
|
|
1991
2038
|
}
|
|
1992
2039
|
),
|
|
1993
|
-
/* @__PURE__ */
|
|
2040
|
+
/* @__PURE__ */ React39.createElement(
|
|
1994
2041
|
"path",
|
|
1995
2042
|
{
|
|
1996
2043
|
fillRule: "evenodd",
|
|
@@ -1999,7 +2046,7 @@ var init_Duplex = __esm({
|
|
|
1999
2046
|
fill: "currentColor"
|
|
2000
2047
|
}
|
|
2001
2048
|
),
|
|
2002
|
-
/* @__PURE__ */
|
|
2049
|
+
/* @__PURE__ */ React39.createElement(
|
|
2003
2050
|
"path",
|
|
2004
2051
|
{
|
|
2005
2052
|
fillRule: "evenodd",
|
|
@@ -2019,7 +2066,7 @@ var Edit_exports = {};
|
|
|
2019
2066
|
__export(Edit_exports, {
|
|
2020
2067
|
default: () => Edit_default
|
|
2021
2068
|
});
|
|
2022
|
-
import * as
|
|
2069
|
+
import * as React40 from "react";
|
|
2023
2070
|
var SvgEdit, Edit_default;
|
|
2024
2071
|
var init_Edit = __esm({
|
|
2025
2072
|
"src/react/Edit.tsx"() {
|
|
@@ -2027,7 +2074,7 @@ var init_Edit = __esm({
|
|
|
2027
2074
|
init_types();
|
|
2028
2075
|
SvgEdit = ({ size = 16, ...props }) => {
|
|
2029
2076
|
const sizeValue = resolveSize(size);
|
|
2030
|
-
return /* @__PURE__ */
|
|
2077
|
+
return /* @__PURE__ */ React40.createElement(
|
|
2031
2078
|
"svg",
|
|
2032
2079
|
{
|
|
2033
2080
|
width: sizeValue,
|
|
@@ -2037,7 +2084,7 @@ var init_Edit = __esm({
|
|
|
2037
2084
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2038
2085
|
...props
|
|
2039
2086
|
},
|
|
2040
|
-
/* @__PURE__ */
|
|
2087
|
+
/* @__PURE__ */ React40.createElement(
|
|
2041
2088
|
"path",
|
|
2042
2089
|
{
|
|
2043
2090
|
fillRule: "evenodd",
|
|
@@ -2046,7 +2093,7 @@ var init_Edit = __esm({
|
|
|
2046
2093
|
fill: "currentColor"
|
|
2047
2094
|
}
|
|
2048
2095
|
),
|
|
2049
|
-
/* @__PURE__ */
|
|
2096
|
+
/* @__PURE__ */ React40.createElement(
|
|
2050
2097
|
"path",
|
|
2051
2098
|
{
|
|
2052
2099
|
fillRule: "evenodd",
|
|
@@ -2066,7 +2113,7 @@ var Electric_exports = {};
|
|
|
2066
2113
|
__export(Electric_exports, {
|
|
2067
2114
|
default: () => Electric_default
|
|
2068
2115
|
});
|
|
2069
|
-
import * as
|
|
2116
|
+
import * as React41 from "react";
|
|
2070
2117
|
var SvgElectric, Electric_default;
|
|
2071
2118
|
var init_Electric = __esm({
|
|
2072
2119
|
"src/react/Electric.tsx"() {
|
|
@@ -2074,7 +2121,7 @@ var init_Electric = __esm({
|
|
|
2074
2121
|
init_types();
|
|
2075
2122
|
SvgElectric = ({ size = 16, ...props }) => {
|
|
2076
2123
|
const sizeValue = resolveSize(size);
|
|
2077
|
-
return /* @__PURE__ */
|
|
2124
|
+
return /* @__PURE__ */ React41.createElement(
|
|
2078
2125
|
"svg",
|
|
2079
2126
|
{
|
|
2080
2127
|
width: sizeValue,
|
|
@@ -2084,7 +2131,7 @@ var init_Electric = __esm({
|
|
|
2084
2131
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2085
2132
|
...props
|
|
2086
2133
|
},
|
|
2087
|
-
/* @__PURE__ */
|
|
2134
|
+
/* @__PURE__ */ React41.createElement(
|
|
2088
2135
|
"path",
|
|
2089
2136
|
{
|
|
2090
2137
|
fillRule: "evenodd",
|
|
@@ -2093,7 +2140,7 @@ var init_Electric = __esm({
|
|
|
2093
2140
|
fill: "currentColor"
|
|
2094
2141
|
}
|
|
2095
2142
|
),
|
|
2096
|
-
/* @__PURE__ */
|
|
2143
|
+
/* @__PURE__ */ React41.createElement(
|
|
2097
2144
|
"path",
|
|
2098
2145
|
{
|
|
2099
2146
|
fillRule: "evenodd",
|
|
@@ -2102,7 +2149,7 @@ var init_Electric = __esm({
|
|
|
2102
2149
|
fill: "currentColor"
|
|
2103
2150
|
}
|
|
2104
2151
|
),
|
|
2105
|
-
/* @__PURE__ */
|
|
2152
|
+
/* @__PURE__ */ React41.createElement(
|
|
2106
2153
|
"path",
|
|
2107
2154
|
{
|
|
2108
2155
|
fillRule: "evenodd",
|
|
@@ -2111,7 +2158,7 @@ var init_Electric = __esm({
|
|
|
2111
2158
|
fill: "currentColor"
|
|
2112
2159
|
}
|
|
2113
2160
|
),
|
|
2114
|
-
/* @__PURE__ */
|
|
2161
|
+
/* @__PURE__ */ React41.createElement(
|
|
2115
2162
|
"path",
|
|
2116
2163
|
{
|
|
2117
2164
|
fillRule: "evenodd",
|
|
@@ -2120,7 +2167,7 @@ var init_Electric = __esm({
|
|
|
2120
2167
|
fill: "currentColor"
|
|
2121
2168
|
}
|
|
2122
2169
|
),
|
|
2123
|
-
/* @__PURE__ */
|
|
2170
|
+
/* @__PURE__ */ React41.createElement(
|
|
2124
2171
|
"path",
|
|
2125
2172
|
{
|
|
2126
2173
|
fillRule: "evenodd",
|
|
@@ -2129,7 +2176,7 @@ var init_Electric = __esm({
|
|
|
2129
2176
|
fill: "currentColor"
|
|
2130
2177
|
}
|
|
2131
2178
|
),
|
|
2132
|
-
/* @__PURE__ */
|
|
2179
|
+
/* @__PURE__ */ React41.createElement(
|
|
2133
2180
|
"path",
|
|
2134
2181
|
{
|
|
2135
2182
|
fillRule: "evenodd",
|
|
@@ -2149,7 +2196,7 @@ var ExploreFilled_exports = {};
|
|
|
2149
2196
|
__export(ExploreFilled_exports, {
|
|
2150
2197
|
default: () => ExploreFilled_default
|
|
2151
2198
|
});
|
|
2152
|
-
import * as
|
|
2199
|
+
import * as React42 from "react";
|
|
2153
2200
|
var SvgExploreFilled, ExploreFilled_default;
|
|
2154
2201
|
var init_ExploreFilled = __esm({
|
|
2155
2202
|
"src/react/ExploreFilled.tsx"() {
|
|
@@ -2157,7 +2204,7 @@ var init_ExploreFilled = __esm({
|
|
|
2157
2204
|
init_types();
|
|
2158
2205
|
SvgExploreFilled = ({ size = 16, ...props }) => {
|
|
2159
2206
|
const sizeValue = resolveSize(size);
|
|
2160
|
-
return /* @__PURE__ */
|
|
2207
|
+
return /* @__PURE__ */ React42.createElement(
|
|
2161
2208
|
"svg",
|
|
2162
2209
|
{
|
|
2163
2210
|
width: sizeValue,
|
|
@@ -2167,7 +2214,7 @@ var init_ExploreFilled = __esm({
|
|
|
2167
2214
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2168
2215
|
...props
|
|
2169
2216
|
},
|
|
2170
|
-
/* @__PURE__ */
|
|
2217
|
+
/* @__PURE__ */ React42.createElement(
|
|
2171
2218
|
"path",
|
|
2172
2219
|
{
|
|
2173
2220
|
fillRule: "evenodd",
|
|
@@ -2176,7 +2223,7 @@ var init_ExploreFilled = __esm({
|
|
|
2176
2223
|
fill: "currentColor"
|
|
2177
2224
|
}
|
|
2178
2225
|
),
|
|
2179
|
-
/* @__PURE__ */
|
|
2226
|
+
/* @__PURE__ */ React42.createElement(
|
|
2180
2227
|
"path",
|
|
2181
2228
|
{
|
|
2182
2229
|
fillRule: "evenodd",
|
|
@@ -2185,7 +2232,7 @@ var init_ExploreFilled = __esm({
|
|
|
2185
2232
|
fill: "currentColor"
|
|
2186
2233
|
}
|
|
2187
2234
|
),
|
|
2188
|
-
/* @__PURE__ */
|
|
2235
|
+
/* @__PURE__ */ React42.createElement(
|
|
2189
2236
|
"path",
|
|
2190
2237
|
{
|
|
2191
2238
|
d: "M16.1046 11.1024C16.1046 13.9203 13.8202 16.2047 11.0022 16.2047C8.1843 16.2047 5.8999 13.9203 5.8999 11.1024C5.8999 8.28445 8.1843 6.00005 11.0022 6.00005C13.8202 6.00005 16.1046 8.28445 16.1046 11.1024Z",
|
|
@@ -2203,7 +2250,7 @@ var ExploreLinear_exports = {};
|
|
|
2203
2250
|
__export(ExploreLinear_exports, {
|
|
2204
2251
|
default: () => ExploreLinear_default
|
|
2205
2252
|
});
|
|
2206
|
-
import * as
|
|
2253
|
+
import * as React43 from "react";
|
|
2207
2254
|
var SvgExploreLinear, ExploreLinear_default;
|
|
2208
2255
|
var init_ExploreLinear = __esm({
|
|
2209
2256
|
"src/react/ExploreLinear.tsx"() {
|
|
@@ -2211,7 +2258,7 @@ var init_ExploreLinear = __esm({
|
|
|
2211
2258
|
init_types();
|
|
2212
2259
|
SvgExploreLinear = ({ size = 16, ...props }) => {
|
|
2213
2260
|
const sizeValue = resolveSize(size);
|
|
2214
|
-
return /* @__PURE__ */
|
|
2261
|
+
return /* @__PURE__ */ React43.createElement(
|
|
2215
2262
|
"svg",
|
|
2216
2263
|
{
|
|
2217
2264
|
width: sizeValue,
|
|
@@ -2221,7 +2268,7 @@ var init_ExploreLinear = __esm({
|
|
|
2221
2268
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2222
2269
|
...props
|
|
2223
2270
|
},
|
|
2224
|
-
/* @__PURE__ */
|
|
2271
|
+
/* @__PURE__ */ React43.createElement(
|
|
2225
2272
|
"path",
|
|
2226
2273
|
{
|
|
2227
2274
|
fillRule: "evenodd",
|
|
@@ -2230,7 +2277,7 @@ var init_ExploreLinear = __esm({
|
|
|
2230
2277
|
fill: "currentColor"
|
|
2231
2278
|
}
|
|
2232
2279
|
),
|
|
2233
|
-
/* @__PURE__ */
|
|
2280
|
+
/* @__PURE__ */ React43.createElement(
|
|
2234
2281
|
"path",
|
|
2235
2282
|
{
|
|
2236
2283
|
fillRule: "evenodd",
|
|
@@ -2250,7 +2297,7 @@ var EyeHidden_exports = {};
|
|
|
2250
2297
|
__export(EyeHidden_exports, {
|
|
2251
2298
|
default: () => EyeHidden_default
|
|
2252
2299
|
});
|
|
2253
|
-
import * as
|
|
2300
|
+
import * as React44 from "react";
|
|
2254
2301
|
var SvgEyeHidden, EyeHidden_default;
|
|
2255
2302
|
var init_EyeHidden = __esm({
|
|
2256
2303
|
"src/react/EyeHidden.tsx"() {
|
|
@@ -2258,7 +2305,7 @@ var init_EyeHidden = __esm({
|
|
|
2258
2305
|
init_types();
|
|
2259
2306
|
SvgEyeHidden = ({ size = 16, ...props }) => {
|
|
2260
2307
|
const sizeValue = resolveSize(size);
|
|
2261
|
-
return /* @__PURE__ */
|
|
2308
|
+
return /* @__PURE__ */ React44.createElement(
|
|
2262
2309
|
"svg",
|
|
2263
2310
|
{
|
|
2264
2311
|
width: sizeValue,
|
|
@@ -2268,7 +2315,7 @@ var init_EyeHidden = __esm({
|
|
|
2268
2315
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2269
2316
|
...props
|
|
2270
2317
|
},
|
|
2271
|
-
/* @__PURE__ */
|
|
2318
|
+
/* @__PURE__ */ React44.createElement(
|
|
2272
2319
|
"path",
|
|
2273
2320
|
{
|
|
2274
2321
|
fillRule: "evenodd",
|
|
@@ -2277,7 +2324,7 @@ var init_EyeHidden = __esm({
|
|
|
2277
2324
|
fill: "currentColor"
|
|
2278
2325
|
}
|
|
2279
2326
|
),
|
|
2280
|
-
/* @__PURE__ */
|
|
2327
|
+
/* @__PURE__ */ React44.createElement(
|
|
2281
2328
|
"path",
|
|
2282
2329
|
{
|
|
2283
2330
|
fillRule: "evenodd",
|
|
@@ -2286,7 +2333,7 @@ var init_EyeHidden = __esm({
|
|
|
2286
2333
|
fill: "currentColor"
|
|
2287
2334
|
}
|
|
2288
2335
|
),
|
|
2289
|
-
/* @__PURE__ */
|
|
2336
|
+
/* @__PURE__ */ React44.createElement(
|
|
2290
2337
|
"path",
|
|
2291
2338
|
{
|
|
2292
2339
|
fillRule: "evenodd",
|
|
@@ -2306,7 +2353,7 @@ var EyeVisible_exports = {};
|
|
|
2306
2353
|
__export(EyeVisible_exports, {
|
|
2307
2354
|
default: () => EyeVisible_default
|
|
2308
2355
|
});
|
|
2309
|
-
import * as
|
|
2356
|
+
import * as React45 from "react";
|
|
2310
2357
|
var SvgEyeVisible, EyeVisible_default;
|
|
2311
2358
|
var init_EyeVisible = __esm({
|
|
2312
2359
|
"src/react/EyeVisible.tsx"() {
|
|
@@ -2314,7 +2361,7 @@ var init_EyeVisible = __esm({
|
|
|
2314
2361
|
init_types();
|
|
2315
2362
|
SvgEyeVisible = ({ size = 16, ...props }) => {
|
|
2316
2363
|
const sizeValue = resolveSize(size);
|
|
2317
|
-
return /* @__PURE__ */
|
|
2364
|
+
return /* @__PURE__ */ React45.createElement(
|
|
2318
2365
|
"svg",
|
|
2319
2366
|
{
|
|
2320
2367
|
width: sizeValue,
|
|
@@ -2324,7 +2371,7 @@ var init_EyeVisible = __esm({
|
|
|
2324
2371
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2325
2372
|
...props
|
|
2326
2373
|
},
|
|
2327
|
-
/* @__PURE__ */
|
|
2374
|
+
/* @__PURE__ */ React45.createElement(
|
|
2328
2375
|
"path",
|
|
2329
2376
|
{
|
|
2330
2377
|
fillRule: "evenodd",
|
|
@@ -2333,7 +2380,7 @@ var init_EyeVisible = __esm({
|
|
|
2333
2380
|
fill: "currentColor"
|
|
2334
2381
|
}
|
|
2335
2382
|
),
|
|
2336
|
-
/* @__PURE__ */
|
|
2383
|
+
/* @__PURE__ */ React45.createElement(
|
|
2337
2384
|
"path",
|
|
2338
2385
|
{
|
|
2339
2386
|
fillRule: "evenodd",
|
|
@@ -2353,7 +2400,7 @@ var FaceAndroid_exports = {};
|
|
|
2353
2400
|
__export(FaceAndroid_exports, {
|
|
2354
2401
|
default: () => FaceAndroid_default
|
|
2355
2402
|
});
|
|
2356
|
-
import * as
|
|
2403
|
+
import * as React46 from "react";
|
|
2357
2404
|
var SvgFaceAndroid, FaceAndroid_default;
|
|
2358
2405
|
var init_FaceAndroid = __esm({
|
|
2359
2406
|
"src/react/FaceAndroid.tsx"() {
|
|
@@ -2361,7 +2408,7 @@ var init_FaceAndroid = __esm({
|
|
|
2361
2408
|
init_types();
|
|
2362
2409
|
SvgFaceAndroid = ({ size = 16, ...props }) => {
|
|
2363
2410
|
const sizeValue = resolveSize(size);
|
|
2364
|
-
return /* @__PURE__ */
|
|
2411
|
+
return /* @__PURE__ */ React46.createElement(
|
|
2365
2412
|
"svg",
|
|
2366
2413
|
{
|
|
2367
2414
|
width: sizeValue,
|
|
@@ -2371,7 +2418,7 @@ var init_FaceAndroid = __esm({
|
|
|
2371
2418
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2372
2419
|
...props
|
|
2373
2420
|
},
|
|
2374
|
-
/* @__PURE__ */
|
|
2421
|
+
/* @__PURE__ */ React46.createElement(
|
|
2375
2422
|
"path",
|
|
2376
2423
|
{
|
|
2377
2424
|
fillRule: "evenodd",
|
|
@@ -2380,7 +2427,7 @@ var init_FaceAndroid = __esm({
|
|
|
2380
2427
|
fill: "currentColor"
|
|
2381
2428
|
}
|
|
2382
2429
|
),
|
|
2383
|
-
/* @__PURE__ */
|
|
2430
|
+
/* @__PURE__ */ React46.createElement(
|
|
2384
2431
|
"path",
|
|
2385
2432
|
{
|
|
2386
2433
|
fillRule: "evenodd",
|
|
@@ -2389,7 +2436,7 @@ var init_FaceAndroid = __esm({
|
|
|
2389
2436
|
fill: "currentColor"
|
|
2390
2437
|
}
|
|
2391
2438
|
),
|
|
2392
|
-
/* @__PURE__ */
|
|
2439
|
+
/* @__PURE__ */ React46.createElement(
|
|
2393
2440
|
"path",
|
|
2394
2441
|
{
|
|
2395
2442
|
fillRule: "evenodd",
|
|
@@ -2398,14 +2445,14 @@ var init_FaceAndroid = __esm({
|
|
|
2398
2445
|
fill: "currentColor"
|
|
2399
2446
|
}
|
|
2400
2447
|
),
|
|
2401
|
-
/* @__PURE__ */
|
|
2448
|
+
/* @__PURE__ */ React46.createElement(
|
|
2402
2449
|
"path",
|
|
2403
2450
|
{
|
|
2404
2451
|
d: "M18.265 9.02a0.902 0.902 0 1 1 -1.804 0 0.902 0.902 0 0 1 1.804 0",
|
|
2405
2452
|
fill: "currentColor"
|
|
2406
2453
|
}
|
|
2407
2454
|
),
|
|
2408
|
-
/* @__PURE__ */
|
|
2455
|
+
/* @__PURE__ */ React46.createElement(
|
|
2409
2456
|
"path",
|
|
2410
2457
|
{
|
|
2411
2458
|
d: "M7.441 9.02a0.902 0.902 0 1 1 -1.804 0 0.902 0.902 0 0 1 1.804 0",
|
|
@@ -2423,7 +2470,7 @@ var FaceIosBold_exports = {};
|
|
|
2423
2470
|
__export(FaceIosBold_exports, {
|
|
2424
2471
|
default: () => FaceIosBold_default
|
|
2425
2472
|
});
|
|
2426
|
-
import * as
|
|
2473
|
+
import * as React47 from "react";
|
|
2427
2474
|
var SvgFaceIosBold, FaceIosBold_default;
|
|
2428
2475
|
var init_FaceIosBold = __esm({
|
|
2429
2476
|
"src/react/FaceIosBold.tsx"() {
|
|
@@ -2431,7 +2478,7 @@ var init_FaceIosBold = __esm({
|
|
|
2431
2478
|
init_types();
|
|
2432
2479
|
SvgFaceIosBold = ({ size = 16, ...props }) => {
|
|
2433
2480
|
const sizeValue = resolveSize(size);
|
|
2434
|
-
return /* @__PURE__ */
|
|
2481
|
+
return /* @__PURE__ */ React47.createElement(
|
|
2435
2482
|
"svg",
|
|
2436
2483
|
{
|
|
2437
2484
|
width: sizeValue,
|
|
@@ -2441,56 +2488,56 @@ var init_FaceIosBold = __esm({
|
|
|
2441
2488
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2442
2489
|
...props
|
|
2443
2490
|
},
|
|
2444
|
-
/* @__PURE__ */
|
|
2491
|
+
/* @__PURE__ */ React47.createElement(
|
|
2445
2492
|
"path",
|
|
2446
2493
|
{
|
|
2447
2494
|
d: "M13.9145 15.5719C14.3166 15.2798 14.8797 15.3692 15.1719 15.7713C15.464 16.1734 15.3745 16.7365 14.9725 17.0287C14.2541 17.5507 13.1722 18.1007 11.7994 18.1007C10.4266 18.1006 9.34461 17.5507 8.62624 17.0287C8.22423 16.7365 8.13483 16.1734 8.42684 15.7713C8.719 15.3693 9.28216 15.2799 9.68423 15.5719C10.2042 15.9498 10.9224 16.3003 11.7994 16.3003C12.6764 16.3003 13.3945 15.9498 13.9145 15.5719Z",
|
|
2448
2495
|
fill: "currentColor"
|
|
2449
2496
|
}
|
|
2450
2497
|
),
|
|
2451
|
-
/* @__PURE__ */
|
|
2498
|
+
/* @__PURE__ */ React47.createElement(
|
|
2452
2499
|
"path",
|
|
2453
2500
|
{
|
|
2454
2501
|
d: "M15.3999 10.9008V9.10037C15.3999 8.60331 15.8026 8.20059 16.2997 8.20059C16.7967 8.20059 17.1994 8.60331 17.1994 9.10037V10.9008C17.1992 11.3976 16.7966 11.8005 16.2997 11.8005C15.8027 11.8005 15.4001 11.3976 15.3999 10.9008Z",
|
|
2455
2502
|
fill: "currentColor"
|
|
2456
2503
|
}
|
|
2457
2504
|
),
|
|
2458
|
-
/* @__PURE__ */
|
|
2505
|
+
/* @__PURE__ */ React47.createElement(
|
|
2459
2506
|
"path",
|
|
2460
2507
|
{
|
|
2461
2508
|
d: "M6.39986 10.9008V9.10037C6.39986 8.60331 6.80258 8.20059 7.29964 8.20059C7.7967 8.20059 8.19942 8.60331 8.19942 9.10037V10.9008C8.19922 11.3976 7.79657 11.8005 7.29964 11.8005C6.80271 11.8005 6.40007 11.3976 6.39986 10.9008Z",
|
|
2462
2509
|
fill: "currentColor"
|
|
2463
2510
|
}
|
|
2464
2511
|
),
|
|
2465
|
-
/* @__PURE__ */
|
|
2512
|
+
/* @__PURE__ */ React47.createElement(
|
|
2466
2513
|
"path",
|
|
2467
2514
|
{
|
|
2468
2515
|
d: "M10.8999 9.10037C10.8999 8.60339 11.3027 8.20071 11.7997 8.20059C12.2967 8.20059 12.7003 8.60331 12.7003 9.10037V12.7003C12.7003 13.6942 11.8937 14.5007 10.8999 14.5007C10.4028 14.5007 10.0001 14.0972 10.0001 13.6001C10.0002 13.1032 10.4029 12.7003 10.8999 12.7003V9.10037Z",
|
|
2469
2516
|
fill: "currentColor"
|
|
2470
2517
|
}
|
|
2471
2518
|
),
|
|
2472
|
-
/* @__PURE__ */
|
|
2519
|
+
/* @__PURE__ */ React47.createElement(
|
|
2473
2520
|
"path",
|
|
2474
2521
|
{
|
|
2475
2522
|
d: "M20.7999 6.39952V3.70017C20.7999 3.20278 20.3975 2.79965 19.9001 2.79956H17.1999C16.7029 2.79956 16.3001 2.39684 16.3001 1.89978C16.3001 1.40272 16.7029 1 17.1999 1H19.9001C21.3916 1.00009 22.6003 2.20867 22.6003 3.70017V6.39952C22.6003 6.89657 22.1967 7.30012 21.6997 7.30012C21.2027 7.29997 20.7999 6.89648 20.7999 6.39952Z",
|
|
2476
2523
|
fill: "currentColor"
|
|
2477
2524
|
}
|
|
2478
2525
|
),
|
|
2479
|
-
/* @__PURE__ */
|
|
2526
|
+
/* @__PURE__ */ React47.createElement(
|
|
2480
2527
|
"path",
|
|
2481
2528
|
{
|
|
2482
2529
|
d: "M1.00014 6.39979V3.70044C1.00014 2.20889 2.20875 1.00027 3.70031 1.00027H6.39965C6.89671 1.00027 7.30026 1.403 7.30026 1.90006C7.30026 2.39711 6.89671 2.79984 6.39965 2.79984H3.70031C3.20286 2.79984 2.7997 3.203 2.7997 3.70044V6.39979C2.7997 6.89685 2.39698 7.3004 1.89992 7.3004C1.40286 7.3004 1.00014 6.89685 1.00014 6.39979Z",
|
|
2483
2530
|
fill: "currentColor"
|
|
2484
2531
|
}
|
|
2485
2532
|
),
|
|
2486
|
-
/* @__PURE__ */
|
|
2533
|
+
/* @__PURE__ */ React47.createElement(
|
|
2487
2534
|
"path",
|
|
2488
2535
|
{
|
|
2489
2536
|
d: "M20.7999 19.9001V17.1999C20.7999 16.703 21.2027 16.3003 21.6997 16.3001C22.1967 16.3001 22.6003 16.7029 22.6003 17.1999V19.9001C22.6002 21.3915 21.3915 22.6002 19.9001 22.6003H17.1999C16.7029 22.6003 16.3001 22.1967 16.3001 21.6997C16.3003 21.2027 16.703 20.7999 17.1999 20.7999H19.9001C20.3974 20.7998 20.7998 20.3974 20.7999 19.9001Z",
|
|
2490
2537
|
fill: "currentColor"
|
|
2491
2538
|
}
|
|
2492
2539
|
),
|
|
2493
|
-
/* @__PURE__ */
|
|
2540
|
+
/* @__PURE__ */ React47.createElement(
|
|
2494
2541
|
"path",
|
|
2495
2542
|
{
|
|
2496
2543
|
d: "M1 19.9001V17.1999C1 16.7029 1.40272 16.3001 1.89978 16.3001C2.39684 16.3001 2.79956 16.7029 2.79956 17.1999V19.9001C2.79965 20.3975 3.20278 20.7999 3.70017 20.7999H6.39952C6.89648 20.7999 7.29997 21.2027 7.30012 21.6997C7.30012 22.1967 6.89657 22.6003 6.39952 22.6003H3.70017C2.20867 22.6003 1.00009 21.3916 1 19.9001Z",
|
|
@@ -2508,7 +2555,7 @@ var FaceIosLight_exports = {};
|
|
|
2508
2555
|
__export(FaceIosLight_exports, {
|
|
2509
2556
|
default: () => FaceIosLight_default
|
|
2510
2557
|
});
|
|
2511
|
-
import * as
|
|
2558
|
+
import * as React48 from "react";
|
|
2512
2559
|
var SvgFaceIosLight, FaceIosLight_default;
|
|
2513
2560
|
var init_FaceIosLight = __esm({
|
|
2514
2561
|
"src/react/FaceIosLight.tsx"() {
|
|
@@ -2516,7 +2563,7 @@ var init_FaceIosLight = __esm({
|
|
|
2516
2563
|
init_types();
|
|
2517
2564
|
SvgFaceIosLight = ({ size = 16, ...props }) => {
|
|
2518
2565
|
const sizeValue = resolveSize(size);
|
|
2519
|
-
return /* @__PURE__ */
|
|
2566
|
+
return /* @__PURE__ */ React48.createElement(
|
|
2520
2567
|
"svg",
|
|
2521
2568
|
{
|
|
2522
2569
|
width: sizeValue,
|
|
@@ -2526,7 +2573,7 @@ var init_FaceIosLight = __esm({
|
|
|
2526
2573
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2527
2574
|
...props
|
|
2528
2575
|
},
|
|
2529
|
-
/* @__PURE__ */
|
|
2576
|
+
/* @__PURE__ */ React48.createElement(
|
|
2530
2577
|
"path",
|
|
2531
2578
|
{
|
|
2532
2579
|
d: "M0.609 16.805a0.609 0.609 0 0 1 0.609 0.609v2.695c0 1.473 1.199 2.672 2.672 2.672H6.586a0.609 0.609 0 1 1 0 1.219H3.891C1.745 24 0 22.255 0 20.109V17.414a0.609 0.609 0 0 1 0.609 -0.609m22.781 0A0.609 0.609 0 0 1 24 17.414v2.695c0 2.145 -1.745 3.891 -3.891 3.891H17.414a0.609 0.609 0 1 1 0 -1.219h2.695c1.473 0 2.672 -1.199 2.672 -2.672V17.414a0.609 0.609 0 0 1 0.609 -0.609m-8.044 0.004a0.633 0.633 0 0 1 0.859 0.93A6.18 6.18 0 0 1 12 19.383c-1.564 0 -3.057 -0.584 -4.205 -1.645a0.633 0.633 0 0 1 0.859 -0.93A4.92 4.92 0 0 0 12 18.117a4.92 4.92 0 0 0 3.346 -1.309M12.633 8.414a0.633 0.633 0 0 1 0.633 0.633v4.5c0 0.892 -0.725 1.617 -1.617 1.617h-0.516a0.633 0.633 0 1 1 0 -1.266h0.516A0.352 0.352 0 0 0 12 13.547v-4.5a0.633 0.633 0 0 1 0.633 -0.633m-5.52 0a0.598 0.598 0 0 1 0.598 0.598v1.805a0.598 0.598 0 1 1 -1.195 0v-1.805a0.598 0.598 0 0 1 0.598 -0.598m9.914 0a0.598 0.598 0 0 1 0.598 0.598v1.805a0.598 0.598 0 1 1 -1.195 0v-1.805a0.598 0.598 0 0 1 0.598 -0.598M6.586 0a0.609 0.609 0 0 1 0 1.219H3.891c-1.473 0 -2.672 1.199 -2.672 2.672V6.586a0.609 0.609 0 0 1 -1.219 0V3.891C0 1.745 1.745 0 3.891 0zm13.523 0C22.255 0 24 1.745 24 3.891V6.586a0.609 0.609 0 1 1 -1.219 0V3.891c0 -1.473 -1.199 -2.672 -2.672 -2.672H17.414a0.609 0.609 0 0 1 0 -1.219z",
|
|
@@ -2544,7 +2591,7 @@ var FileCheck_exports = {};
|
|
|
2544
2591
|
__export(FileCheck_exports, {
|
|
2545
2592
|
default: () => FileCheck_default
|
|
2546
2593
|
});
|
|
2547
|
-
import * as
|
|
2594
|
+
import * as React49 from "react";
|
|
2548
2595
|
var SvgFileCheck, FileCheck_default;
|
|
2549
2596
|
var init_FileCheck = __esm({
|
|
2550
2597
|
"src/react/FileCheck.tsx"() {
|
|
@@ -2552,7 +2599,7 @@ var init_FileCheck = __esm({
|
|
|
2552
2599
|
init_types();
|
|
2553
2600
|
SvgFileCheck = ({ size = 16, ...props }) => {
|
|
2554
2601
|
const sizeValue = resolveSize(size);
|
|
2555
|
-
return /* @__PURE__ */
|
|
2602
|
+
return /* @__PURE__ */ React49.createElement(
|
|
2556
2603
|
"svg",
|
|
2557
2604
|
{
|
|
2558
2605
|
width: sizeValue,
|
|
@@ -2562,7 +2609,7 @@ var init_FileCheck = __esm({
|
|
|
2562
2609
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2563
2610
|
...props
|
|
2564
2611
|
},
|
|
2565
|
-
/* @__PURE__ */
|
|
2612
|
+
/* @__PURE__ */ React49.createElement(
|
|
2566
2613
|
"path",
|
|
2567
2614
|
{
|
|
2568
2615
|
fillRule: "evenodd",
|
|
@@ -2571,7 +2618,7 @@ var init_FileCheck = __esm({
|
|
|
2571
2618
|
fill: "currentColor"
|
|
2572
2619
|
}
|
|
2573
2620
|
),
|
|
2574
|
-
/* @__PURE__ */
|
|
2621
|
+
/* @__PURE__ */ React49.createElement(
|
|
2575
2622
|
"path",
|
|
2576
2623
|
{
|
|
2577
2624
|
fillRule: "evenodd",
|
|
@@ -2580,7 +2627,7 @@ var init_FileCheck = __esm({
|
|
|
2580
2627
|
fill: "currentColor"
|
|
2581
2628
|
}
|
|
2582
2629
|
),
|
|
2583
|
-
/* @__PURE__ */
|
|
2630
|
+
/* @__PURE__ */ React49.createElement(
|
|
2584
2631
|
"path",
|
|
2585
2632
|
{
|
|
2586
2633
|
fillRule: "evenodd",
|
|
@@ -2600,7 +2647,7 @@ var FileInput_exports = {};
|
|
|
2600
2647
|
__export(FileInput_exports, {
|
|
2601
2648
|
default: () => FileInput_default
|
|
2602
2649
|
});
|
|
2603
|
-
import * as
|
|
2650
|
+
import * as React50 from "react";
|
|
2604
2651
|
var SvgFileInput, FileInput_default;
|
|
2605
2652
|
var init_FileInput = __esm({
|
|
2606
2653
|
"src/react/FileInput.tsx"() {
|
|
@@ -2608,7 +2655,7 @@ var init_FileInput = __esm({
|
|
|
2608
2655
|
init_types();
|
|
2609
2656
|
SvgFileInput = ({ size = 16, ...props }) => {
|
|
2610
2657
|
const sizeValue = resolveSize(size);
|
|
2611
|
-
return /* @__PURE__ */
|
|
2658
|
+
return /* @__PURE__ */ React50.createElement(
|
|
2612
2659
|
"svg",
|
|
2613
2660
|
{
|
|
2614
2661
|
width: sizeValue,
|
|
@@ -2618,7 +2665,7 @@ var init_FileInput = __esm({
|
|
|
2618
2665
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2619
2666
|
...props
|
|
2620
2667
|
},
|
|
2621
|
-
/* @__PURE__ */
|
|
2668
|
+
/* @__PURE__ */ React50.createElement(
|
|
2622
2669
|
"path",
|
|
2623
2670
|
{
|
|
2624
2671
|
fillRule: "evenodd",
|
|
@@ -2627,7 +2674,7 @@ var init_FileInput = __esm({
|
|
|
2627
2674
|
fill: "currentColor"
|
|
2628
2675
|
}
|
|
2629
2676
|
),
|
|
2630
|
-
/* @__PURE__ */
|
|
2677
|
+
/* @__PURE__ */ React50.createElement(
|
|
2631
2678
|
"path",
|
|
2632
2679
|
{
|
|
2633
2680
|
fillRule: "evenodd",
|
|
@@ -2636,7 +2683,7 @@ var init_FileInput = __esm({
|
|
|
2636
2683
|
fill: "currentColor"
|
|
2637
2684
|
}
|
|
2638
2685
|
),
|
|
2639
|
-
/* @__PURE__ */
|
|
2686
|
+
/* @__PURE__ */ React50.createElement(
|
|
2640
2687
|
"path",
|
|
2641
2688
|
{
|
|
2642
2689
|
fillRule: "evenodd",
|
|
@@ -2645,7 +2692,7 @@ var init_FileInput = __esm({
|
|
|
2645
2692
|
fill: "currentColor"
|
|
2646
2693
|
}
|
|
2647
2694
|
),
|
|
2648
|
-
/* @__PURE__ */
|
|
2695
|
+
/* @__PURE__ */ React50.createElement(
|
|
2649
2696
|
"path",
|
|
2650
2697
|
{
|
|
2651
2698
|
fillRule: "evenodd",
|
|
@@ -2665,7 +2712,7 @@ var FileKey_exports = {};
|
|
|
2665
2712
|
__export(FileKey_exports, {
|
|
2666
2713
|
default: () => FileKey_default
|
|
2667
2714
|
});
|
|
2668
|
-
import * as
|
|
2715
|
+
import * as React51 from "react";
|
|
2669
2716
|
var SvgFileKey, FileKey_default;
|
|
2670
2717
|
var init_FileKey = __esm({
|
|
2671
2718
|
"src/react/FileKey.tsx"() {
|
|
@@ -2673,7 +2720,7 @@ var init_FileKey = __esm({
|
|
|
2673
2720
|
init_types();
|
|
2674
2721
|
SvgFileKey = ({ size = 16, ...props }) => {
|
|
2675
2722
|
const sizeValue = resolveSize(size);
|
|
2676
|
-
return /* @__PURE__ */
|
|
2723
|
+
return /* @__PURE__ */ React51.createElement(
|
|
2677
2724
|
"svg",
|
|
2678
2725
|
{
|
|
2679
2726
|
width: sizeValue,
|
|
@@ -2683,7 +2730,7 @@ var init_FileKey = __esm({
|
|
|
2683
2730
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2684
2731
|
...props
|
|
2685
2732
|
},
|
|
2686
|
-
/* @__PURE__ */
|
|
2733
|
+
/* @__PURE__ */ React51.createElement(
|
|
2687
2734
|
"path",
|
|
2688
2735
|
{
|
|
2689
2736
|
fillRule: "evenodd",
|
|
@@ -2692,7 +2739,7 @@ var init_FileKey = __esm({
|
|
|
2692
2739
|
fill: "currentColor"
|
|
2693
2740
|
}
|
|
2694
2741
|
),
|
|
2695
|
-
/* @__PURE__ */
|
|
2742
|
+
/* @__PURE__ */ React51.createElement(
|
|
2696
2743
|
"path",
|
|
2697
2744
|
{
|
|
2698
2745
|
fillRule: "evenodd",
|
|
@@ -2701,7 +2748,7 @@ var init_FileKey = __esm({
|
|
|
2701
2748
|
fill: "currentColor"
|
|
2702
2749
|
}
|
|
2703
2750
|
),
|
|
2704
|
-
/* @__PURE__ */
|
|
2751
|
+
/* @__PURE__ */ React51.createElement(
|
|
2705
2752
|
"path",
|
|
2706
2753
|
{
|
|
2707
2754
|
fillRule: "evenodd",
|
|
@@ -2710,7 +2757,7 @@ var init_FileKey = __esm({
|
|
|
2710
2757
|
fill: "currentColor"
|
|
2711
2758
|
}
|
|
2712
2759
|
),
|
|
2713
|
-
/* @__PURE__ */
|
|
2760
|
+
/* @__PURE__ */ React51.createElement(
|
|
2714
2761
|
"path",
|
|
2715
2762
|
{
|
|
2716
2763
|
fillRule: "evenodd",
|
|
@@ -2730,7 +2777,7 @@ var FileLock_exports = {};
|
|
|
2730
2777
|
__export(FileLock_exports, {
|
|
2731
2778
|
default: () => FileLock_default
|
|
2732
2779
|
});
|
|
2733
|
-
import * as
|
|
2780
|
+
import * as React52 from "react";
|
|
2734
2781
|
var SvgFileLock, FileLock_default;
|
|
2735
2782
|
var init_FileLock = __esm({
|
|
2736
2783
|
"src/react/FileLock.tsx"() {
|
|
@@ -2738,7 +2785,7 @@ var init_FileLock = __esm({
|
|
|
2738
2785
|
init_types();
|
|
2739
2786
|
SvgFileLock = ({ size = 16, ...props }) => {
|
|
2740
2787
|
const sizeValue = resolveSize(size);
|
|
2741
|
-
return /* @__PURE__ */
|
|
2788
|
+
return /* @__PURE__ */ React52.createElement(
|
|
2742
2789
|
"svg",
|
|
2743
2790
|
{
|
|
2744
2791
|
width: sizeValue,
|
|
@@ -2748,7 +2795,7 @@ var init_FileLock = __esm({
|
|
|
2748
2795
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2749
2796
|
...props
|
|
2750
2797
|
},
|
|
2751
|
-
/* @__PURE__ */
|
|
2798
|
+
/* @__PURE__ */ React52.createElement(
|
|
2752
2799
|
"path",
|
|
2753
2800
|
{
|
|
2754
2801
|
fillRule: "evenodd",
|
|
@@ -2757,7 +2804,7 @@ var init_FileLock = __esm({
|
|
|
2757
2804
|
fill: "currentColor"
|
|
2758
2805
|
}
|
|
2759
2806
|
),
|
|
2760
|
-
/* @__PURE__ */
|
|
2807
|
+
/* @__PURE__ */ React52.createElement(
|
|
2761
2808
|
"path",
|
|
2762
2809
|
{
|
|
2763
2810
|
fillRule: "evenodd",
|
|
@@ -2766,7 +2813,7 @@ var init_FileLock = __esm({
|
|
|
2766
2813
|
fill: "currentColor"
|
|
2767
2814
|
}
|
|
2768
2815
|
),
|
|
2769
|
-
/* @__PURE__ */
|
|
2816
|
+
/* @__PURE__ */ React52.createElement(
|
|
2770
2817
|
"path",
|
|
2771
2818
|
{
|
|
2772
2819
|
fillRule: "evenodd",
|
|
@@ -2786,7 +2833,7 @@ var FileSignature_exports = {};
|
|
|
2786
2833
|
__export(FileSignature_exports, {
|
|
2787
2834
|
default: () => FileSignature_default
|
|
2788
2835
|
});
|
|
2789
|
-
import * as
|
|
2836
|
+
import * as React53 from "react";
|
|
2790
2837
|
var SvgFileSignature, FileSignature_default;
|
|
2791
2838
|
var init_FileSignature = __esm({
|
|
2792
2839
|
"src/react/FileSignature.tsx"() {
|
|
@@ -2794,7 +2841,7 @@ var init_FileSignature = __esm({
|
|
|
2794
2841
|
init_types();
|
|
2795
2842
|
SvgFileSignature = ({ size = 16, ...props }) => {
|
|
2796
2843
|
const sizeValue = resolveSize(size);
|
|
2797
|
-
return /* @__PURE__ */
|
|
2844
|
+
return /* @__PURE__ */ React53.createElement(
|
|
2798
2845
|
"svg",
|
|
2799
2846
|
{
|
|
2800
2847
|
width: sizeValue,
|
|
@@ -2804,7 +2851,7 @@ var init_FileSignature = __esm({
|
|
|
2804
2851
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2805
2852
|
...props
|
|
2806
2853
|
},
|
|
2807
|
-
/* @__PURE__ */
|
|
2854
|
+
/* @__PURE__ */ React53.createElement(
|
|
2808
2855
|
"path",
|
|
2809
2856
|
{
|
|
2810
2857
|
fillRule: "evenodd",
|
|
@@ -2813,7 +2860,7 @@ var init_FileSignature = __esm({
|
|
|
2813
2860
|
fill: "currentColor"
|
|
2814
2861
|
}
|
|
2815
2862
|
),
|
|
2816
|
-
/* @__PURE__ */
|
|
2863
|
+
/* @__PURE__ */ React53.createElement(
|
|
2817
2864
|
"path",
|
|
2818
2865
|
{
|
|
2819
2866
|
fillRule: "evenodd",
|
|
@@ -2822,7 +2869,7 @@ var init_FileSignature = __esm({
|
|
|
2822
2869
|
fill: "currentColor"
|
|
2823
2870
|
}
|
|
2824
2871
|
),
|
|
2825
|
-
/* @__PURE__ */
|
|
2872
|
+
/* @__PURE__ */ React53.createElement(
|
|
2826
2873
|
"path",
|
|
2827
2874
|
{
|
|
2828
2875
|
fillRule: "evenodd",
|
|
@@ -2842,7 +2889,7 @@ var FileSpreadsheet_exports = {};
|
|
|
2842
2889
|
__export(FileSpreadsheet_exports, {
|
|
2843
2890
|
default: () => FileSpreadsheet_default
|
|
2844
2891
|
});
|
|
2845
|
-
import * as
|
|
2892
|
+
import * as React54 from "react";
|
|
2846
2893
|
var SvgFileSpreadsheet, FileSpreadsheet_default;
|
|
2847
2894
|
var init_FileSpreadsheet = __esm({
|
|
2848
2895
|
"src/react/FileSpreadsheet.tsx"() {
|
|
@@ -2850,7 +2897,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2850
2897
|
init_types();
|
|
2851
2898
|
SvgFileSpreadsheet = ({ size = 16, ...props }) => {
|
|
2852
2899
|
const sizeValue = resolveSize(size);
|
|
2853
|
-
return /* @__PURE__ */
|
|
2900
|
+
return /* @__PURE__ */ React54.createElement(
|
|
2854
2901
|
"svg",
|
|
2855
2902
|
{
|
|
2856
2903
|
width: sizeValue,
|
|
@@ -2860,7 +2907,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2860
2907
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2861
2908
|
...props
|
|
2862
2909
|
},
|
|
2863
|
-
/* @__PURE__ */
|
|
2910
|
+
/* @__PURE__ */ React54.createElement(
|
|
2864
2911
|
"path",
|
|
2865
2912
|
{
|
|
2866
2913
|
fillRule: "evenodd",
|
|
@@ -2869,7 +2916,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2869
2916
|
fill: "currentColor"
|
|
2870
2917
|
}
|
|
2871
2918
|
),
|
|
2872
|
-
/* @__PURE__ */
|
|
2919
|
+
/* @__PURE__ */ React54.createElement(
|
|
2873
2920
|
"path",
|
|
2874
2921
|
{
|
|
2875
2922
|
fillRule: "evenodd",
|
|
@@ -2878,7 +2925,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2878
2925
|
fill: "currentColor"
|
|
2879
2926
|
}
|
|
2880
2927
|
),
|
|
2881
|
-
/* @__PURE__ */
|
|
2928
|
+
/* @__PURE__ */ React54.createElement(
|
|
2882
2929
|
"path",
|
|
2883
2930
|
{
|
|
2884
2931
|
fillRule: "evenodd",
|
|
@@ -2887,7 +2934,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2887
2934
|
fill: "currentColor"
|
|
2888
2935
|
}
|
|
2889
2936
|
),
|
|
2890
|
-
/* @__PURE__ */
|
|
2937
|
+
/* @__PURE__ */ React54.createElement(
|
|
2891
2938
|
"path",
|
|
2892
2939
|
{
|
|
2893
2940
|
fillRule: "evenodd",
|
|
@@ -2896,7 +2943,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2896
2943
|
fill: "currentColor"
|
|
2897
2944
|
}
|
|
2898
2945
|
),
|
|
2899
|
-
/* @__PURE__ */
|
|
2946
|
+
/* @__PURE__ */ React54.createElement(
|
|
2900
2947
|
"path",
|
|
2901
2948
|
{
|
|
2902
2949
|
fillRule: "evenodd",
|
|
@@ -2905,7 +2952,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2905
2952
|
fill: "currentColor"
|
|
2906
2953
|
}
|
|
2907
2954
|
),
|
|
2908
|
-
/* @__PURE__ */
|
|
2955
|
+
/* @__PURE__ */ React54.createElement(
|
|
2909
2956
|
"path",
|
|
2910
2957
|
{
|
|
2911
2958
|
fillRule: "evenodd",
|
|
@@ -2925,7 +2972,7 @@ var FileText_exports = {};
|
|
|
2925
2972
|
__export(FileText_exports, {
|
|
2926
2973
|
default: () => FileText_default
|
|
2927
2974
|
});
|
|
2928
|
-
import * as
|
|
2975
|
+
import * as React55 from "react";
|
|
2929
2976
|
var SvgFileText, FileText_default;
|
|
2930
2977
|
var init_FileText = __esm({
|
|
2931
2978
|
"src/react/FileText.tsx"() {
|
|
@@ -2933,7 +2980,7 @@ var init_FileText = __esm({
|
|
|
2933
2980
|
init_types();
|
|
2934
2981
|
SvgFileText = ({ size = 16, ...props }) => {
|
|
2935
2982
|
const sizeValue = resolveSize(size);
|
|
2936
|
-
return /* @__PURE__ */
|
|
2983
|
+
return /* @__PURE__ */ React55.createElement(
|
|
2937
2984
|
"svg",
|
|
2938
2985
|
{
|
|
2939
2986
|
width: sizeValue,
|
|
@@ -2943,7 +2990,7 @@ var init_FileText = __esm({
|
|
|
2943
2990
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2944
2991
|
...props
|
|
2945
2992
|
},
|
|
2946
|
-
/* @__PURE__ */
|
|
2993
|
+
/* @__PURE__ */ React55.createElement(
|
|
2947
2994
|
"path",
|
|
2948
2995
|
{
|
|
2949
2996
|
fillRule: "evenodd",
|
|
@@ -2952,7 +2999,7 @@ var init_FileText = __esm({
|
|
|
2952
2999
|
fill: "currentColor"
|
|
2953
3000
|
}
|
|
2954
3001
|
),
|
|
2955
|
-
/* @__PURE__ */
|
|
3002
|
+
/* @__PURE__ */ React55.createElement(
|
|
2956
3003
|
"path",
|
|
2957
3004
|
{
|
|
2958
3005
|
fillRule: "evenodd",
|
|
@@ -2961,7 +3008,7 @@ var init_FileText = __esm({
|
|
|
2961
3008
|
fill: "currentColor"
|
|
2962
3009
|
}
|
|
2963
3010
|
),
|
|
2964
|
-
/* @__PURE__ */
|
|
3011
|
+
/* @__PURE__ */ React55.createElement(
|
|
2965
3012
|
"path",
|
|
2966
3013
|
{
|
|
2967
3014
|
fillRule: "evenodd",
|
|
@@ -2970,7 +3017,7 @@ var init_FileText = __esm({
|
|
|
2970
3017
|
fill: "currentColor"
|
|
2971
3018
|
}
|
|
2972
3019
|
),
|
|
2973
|
-
/* @__PURE__ */
|
|
3020
|
+
/* @__PURE__ */ React55.createElement(
|
|
2974
3021
|
"path",
|
|
2975
3022
|
{
|
|
2976
3023
|
fillRule: "evenodd",
|
|
@@ -2979,7 +3026,7 @@ var init_FileText = __esm({
|
|
|
2979
3026
|
fill: "currentColor"
|
|
2980
3027
|
}
|
|
2981
3028
|
),
|
|
2982
|
-
/* @__PURE__ */
|
|
3029
|
+
/* @__PURE__ */ React55.createElement(
|
|
2983
3030
|
"path",
|
|
2984
3031
|
{
|
|
2985
3032
|
fillRule: "evenodd",
|
|
@@ -2999,7 +3046,7 @@ var Filter_exports = {};
|
|
|
2999
3046
|
__export(Filter_exports, {
|
|
3000
3047
|
default: () => Filter_default
|
|
3001
3048
|
});
|
|
3002
|
-
import * as
|
|
3049
|
+
import * as React56 from "react";
|
|
3003
3050
|
var SvgFilter, Filter_default;
|
|
3004
3051
|
var init_Filter = __esm({
|
|
3005
3052
|
"src/react/Filter.tsx"() {
|
|
@@ -3007,7 +3054,7 @@ var init_Filter = __esm({
|
|
|
3007
3054
|
init_types();
|
|
3008
3055
|
SvgFilter = ({ size = 16, ...props }) => {
|
|
3009
3056
|
const sizeValue = resolveSize(size);
|
|
3010
|
-
return /* @__PURE__ */
|
|
3057
|
+
return /* @__PURE__ */ React56.createElement(
|
|
3011
3058
|
"svg",
|
|
3012
3059
|
{
|
|
3013
3060
|
width: sizeValue,
|
|
@@ -3017,7 +3064,7 @@ var init_Filter = __esm({
|
|
|
3017
3064
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3018
3065
|
...props
|
|
3019
3066
|
},
|
|
3020
|
-
/* @__PURE__ */
|
|
3067
|
+
/* @__PURE__ */ React56.createElement(
|
|
3021
3068
|
"path",
|
|
3022
3069
|
{
|
|
3023
3070
|
fillRule: "evenodd",
|
|
@@ -3026,7 +3073,7 @@ var init_Filter = __esm({
|
|
|
3026
3073
|
fill: "currentColor"
|
|
3027
3074
|
}
|
|
3028
3075
|
),
|
|
3029
|
-
/* @__PURE__ */
|
|
3076
|
+
/* @__PURE__ */ React56.createElement(
|
|
3030
3077
|
"path",
|
|
3031
3078
|
{
|
|
3032
3079
|
fillRule: "evenodd",
|
|
@@ -3035,7 +3082,7 @@ var init_Filter = __esm({
|
|
|
3035
3082
|
fill: "currentColor"
|
|
3036
3083
|
}
|
|
3037
3084
|
),
|
|
3038
|
-
/* @__PURE__ */
|
|
3085
|
+
/* @__PURE__ */ React56.createElement(
|
|
3039
3086
|
"path",
|
|
3040
3087
|
{
|
|
3041
3088
|
fillRule: "evenodd",
|
|
@@ -3044,7 +3091,7 @@ var init_Filter = __esm({
|
|
|
3044
3091
|
fill: "currentColor"
|
|
3045
3092
|
}
|
|
3046
3093
|
),
|
|
3047
|
-
/* @__PURE__ */
|
|
3094
|
+
/* @__PURE__ */ React56.createElement(
|
|
3048
3095
|
"path",
|
|
3049
3096
|
{
|
|
3050
3097
|
fillRule: "evenodd",
|
|
@@ -3064,7 +3111,7 @@ var Furnished_exports = {};
|
|
|
3064
3111
|
__export(Furnished_exports, {
|
|
3065
3112
|
default: () => Furnished_default
|
|
3066
3113
|
});
|
|
3067
|
-
import * as
|
|
3114
|
+
import * as React57 from "react";
|
|
3068
3115
|
var SvgFurnished, Furnished_default;
|
|
3069
3116
|
var init_Furnished = __esm({
|
|
3070
3117
|
"src/react/Furnished.tsx"() {
|
|
@@ -3072,7 +3119,7 @@ var init_Furnished = __esm({
|
|
|
3072
3119
|
init_types();
|
|
3073
3120
|
SvgFurnished = ({ size = 16, ...props }) => {
|
|
3074
3121
|
const sizeValue = resolveSize(size);
|
|
3075
|
-
return /* @__PURE__ */
|
|
3122
|
+
return /* @__PURE__ */ React57.createElement(
|
|
3076
3123
|
"svg",
|
|
3077
3124
|
{
|
|
3078
3125
|
width: sizeValue,
|
|
@@ -3082,14 +3129,14 @@ var init_Furnished = __esm({
|
|
|
3082
3129
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3083
3130
|
...props
|
|
3084
3131
|
},
|
|
3085
|
-
/* @__PURE__ */
|
|
3132
|
+
/* @__PURE__ */ React57.createElement("g", { clipPath: "url(#clip0_7021_19294)" }, /* @__PURE__ */ React57.createElement(
|
|
3086
3133
|
"path",
|
|
3087
3134
|
{
|
|
3088
3135
|
d: "M19.4502 10.875C19.4502 10.265 19.6927 9.68036 20.124 9.24902C20.3458 9.02727 20.6081 8.8558 20.8936 8.74121C20.7638 7.9953 20.4088 7.30136 19.8662 6.75879C19.1723 6.0649 18.2313 5.6748 17.25 5.6748H12.7998V12.3252H19.4502V10.875ZM4.5498 12.3252H11.2002V5.6748H6.75C5.7687 5.6748 4.82767 6.0649 4.13379 6.75879C3.59118 7.3014 3.2352 7.99524 3.10547 8.74121C3.3913 8.8558 3.65401 9.02705 3.87598 9.24902C4.30731 9.68036 4.5498 10.265 4.5498 10.875V12.3252ZM21.0498 12.375C21.0498 12.7861 20.8864 13.18 20.5957 13.4707C20.305 13.7614 19.9111 13.9248 19.5 13.9248H4.5C4.08891 13.9248 3.69498 13.7614 3.4043 13.4707C3.11362 13.18 2.9502 12.7861 2.9502 12.375V10.875C2.9502 10.6893 2.87639 10.5112 2.74512 10.3799C2.61384 10.2486 2.43565 10.1748 2.25 10.1748C2.06435 10.1748 1.88616 10.2486 1.75488 10.3799C1.62361 10.5112 1.5498 10.6893 1.5498 10.875V13.875C1.5498 14.4585 1.78176 15.0181 2.19434 15.4307C2.60692 15.8432 3.16652 16.0752 3.75 16.0752H20.25C20.8335 16.0752 21.3931 15.8432 21.8057 15.4307C22.2182 15.0181 22.4502 14.4585 22.4502 13.875V10.875C22.4502 10.6893 22.3764 10.5112 22.2451 10.3799C22.1138 10.2486 21.9357 10.1748 21.75 10.1748C21.5643 10.1748 21.3862 10.2486 21.2549 10.3799C21.1236 10.5112 21.0498 10.6893 21.0498 10.875V12.375ZM24.0498 13.875C24.0498 14.8828 23.6492 15.8489 22.9365 16.5615C22.4155 17.0825 21.7591 17.4361 21.0498 17.5889V18.5C21.0498 18.9418 20.6918 19.2998 20.25 19.2998C19.8082 19.2998 19.4502 18.9418 19.4502 18.5V17.6748H4.5498V18.5C4.5498 18.9418 4.19183 19.2998 3.75 19.2998C3.30817 19.2998 2.9502 18.9418 2.9502 18.5V17.5889C2.24088 17.4361 1.58446 17.0825 1.06348 16.5615C0.350838 15.8489 -0.0498047 14.8828 -0.0498047 13.875V10.875C-0.0498047 10.265 0.19269 9.68036 0.624023 9.24902C0.871246 9.0018 1.1692 8.81808 1.49316 8.70508C1.64078 7.54654 2.16726 6.46164 3.00195 5.62695C3.9959 4.63301 5.34435 4.0752 6.75 4.0752H17.25C18.6556 4.0752 20.0041 4.63301 20.998 5.62695C21.8327 6.46161 22.3582 7.54658 22.5059 8.70508C22.8302 8.81805 23.1285 9.00158 23.376 9.24902C23.8073 9.68036 24.0498 10.265 24.0498 10.875V13.875Z",
|
|
3089
3136
|
fill: "currentColor"
|
|
3090
3137
|
}
|
|
3091
3138
|
)),
|
|
3092
|
-
/* @__PURE__ */
|
|
3139
|
+
/* @__PURE__ */ React57.createElement("defs", null, /* @__PURE__ */ React57.createElement("clipPath", { id: "clip0_7021_19294" }, /* @__PURE__ */ React57.createElement("rect", { width: 24, height: 24, fill: "currentColor" })))
|
|
3093
3140
|
);
|
|
3094
3141
|
};
|
|
3095
3142
|
Furnished_default = SvgFurnished;
|
|
@@ -3101,7 +3148,7 @@ var Garden_exports = {};
|
|
|
3101
3148
|
__export(Garden_exports, {
|
|
3102
3149
|
default: () => Garden_default
|
|
3103
3150
|
});
|
|
3104
|
-
import * as
|
|
3151
|
+
import * as React58 from "react";
|
|
3105
3152
|
var SvgGarden, Garden_default;
|
|
3106
3153
|
var init_Garden = __esm({
|
|
3107
3154
|
"src/react/Garden.tsx"() {
|
|
@@ -3109,7 +3156,7 @@ var init_Garden = __esm({
|
|
|
3109
3156
|
init_types();
|
|
3110
3157
|
SvgGarden = ({ size = 16, ...props }) => {
|
|
3111
3158
|
const sizeValue = resolveSize(size);
|
|
3112
|
-
return /* @__PURE__ */
|
|
3159
|
+
return /* @__PURE__ */ React58.createElement(
|
|
3113
3160
|
"svg",
|
|
3114
3161
|
{
|
|
3115
3162
|
width: sizeValue,
|
|
@@ -3119,7 +3166,7 @@ var init_Garden = __esm({
|
|
|
3119
3166
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3120
3167
|
...props
|
|
3121
3168
|
},
|
|
3122
|
-
/* @__PURE__ */
|
|
3169
|
+
/* @__PURE__ */ React58.createElement(
|
|
3123
3170
|
"path",
|
|
3124
3171
|
{
|
|
3125
3172
|
fillRule: "evenodd",
|
|
@@ -3128,7 +3175,7 @@ var init_Garden = __esm({
|
|
|
3128
3175
|
fill: "currentColor"
|
|
3129
3176
|
}
|
|
3130
3177
|
),
|
|
3131
|
-
/* @__PURE__ */
|
|
3178
|
+
/* @__PURE__ */ React58.createElement(
|
|
3132
3179
|
"path",
|
|
3133
3180
|
{
|
|
3134
3181
|
fillRule: "evenodd",
|
|
@@ -3137,7 +3184,7 @@ var init_Garden = __esm({
|
|
|
3137
3184
|
fill: "currentColor"
|
|
3138
3185
|
}
|
|
3139
3186
|
),
|
|
3140
|
-
/* @__PURE__ */
|
|
3187
|
+
/* @__PURE__ */ React58.createElement(
|
|
3141
3188
|
"path",
|
|
3142
3189
|
{
|
|
3143
3190
|
fillRule: "evenodd",
|
|
@@ -3146,7 +3193,7 @@ var init_Garden = __esm({
|
|
|
3146
3193
|
fill: "currentColor"
|
|
3147
3194
|
}
|
|
3148
3195
|
),
|
|
3149
|
-
/* @__PURE__ */
|
|
3196
|
+
/* @__PURE__ */ React58.createElement(
|
|
3150
3197
|
"path",
|
|
3151
3198
|
{
|
|
3152
3199
|
fillRule: "evenodd",
|
|
@@ -3166,7 +3213,7 @@ var GasHeating_exports = {};
|
|
|
3166
3213
|
__export(GasHeating_exports, {
|
|
3167
3214
|
default: () => GasHeating_default
|
|
3168
3215
|
});
|
|
3169
|
-
import * as
|
|
3216
|
+
import * as React59 from "react";
|
|
3170
3217
|
var SvgGasHeating, GasHeating_default;
|
|
3171
3218
|
var init_GasHeating = __esm({
|
|
3172
3219
|
"src/react/GasHeating.tsx"() {
|
|
@@ -3174,7 +3221,7 @@ var init_GasHeating = __esm({
|
|
|
3174
3221
|
init_types();
|
|
3175
3222
|
SvgGasHeating = ({ size = 16, ...props }) => {
|
|
3176
3223
|
const sizeValue = resolveSize(size);
|
|
3177
|
-
return /* @__PURE__ */
|
|
3224
|
+
return /* @__PURE__ */ React59.createElement(
|
|
3178
3225
|
"svg",
|
|
3179
3226
|
{
|
|
3180
3227
|
width: sizeValue,
|
|
@@ -3184,7 +3231,7 @@ var init_GasHeating = __esm({
|
|
|
3184
3231
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3185
3232
|
...props
|
|
3186
3233
|
},
|
|
3187
|
-
/* @__PURE__ */
|
|
3234
|
+
/* @__PURE__ */ React59.createElement(
|
|
3188
3235
|
"path",
|
|
3189
3236
|
{
|
|
3190
3237
|
fillRule: "evenodd",
|
|
@@ -3193,7 +3240,7 @@ var init_GasHeating = __esm({
|
|
|
3193
3240
|
fill: "currentColor"
|
|
3194
3241
|
}
|
|
3195
3242
|
),
|
|
3196
|
-
/* @__PURE__ */
|
|
3243
|
+
/* @__PURE__ */ React59.createElement(
|
|
3197
3244
|
"path",
|
|
3198
3245
|
{
|
|
3199
3246
|
fillRule: "evenodd",
|
|
@@ -3202,7 +3249,7 @@ var init_GasHeating = __esm({
|
|
|
3202
3249
|
fill: "currentColor"
|
|
3203
3250
|
}
|
|
3204
3251
|
),
|
|
3205
|
-
/* @__PURE__ */
|
|
3252
|
+
/* @__PURE__ */ React59.createElement(
|
|
3206
3253
|
"path",
|
|
3207
3254
|
{
|
|
3208
3255
|
fillRule: "evenodd",
|
|
@@ -3211,7 +3258,7 @@ var init_GasHeating = __esm({
|
|
|
3211
3258
|
fill: "currentColor"
|
|
3212
3259
|
}
|
|
3213
3260
|
),
|
|
3214
|
-
/* @__PURE__ */
|
|
3261
|
+
/* @__PURE__ */ React59.createElement(
|
|
3215
3262
|
"path",
|
|
3216
3263
|
{
|
|
3217
3264
|
fillRule: "evenodd",
|
|
@@ -3220,7 +3267,7 @@ var init_GasHeating = __esm({
|
|
|
3220
3267
|
fill: "currentColor"
|
|
3221
3268
|
}
|
|
3222
3269
|
),
|
|
3223
|
-
/* @__PURE__ */
|
|
3270
|
+
/* @__PURE__ */ React59.createElement(
|
|
3224
3271
|
"path",
|
|
3225
3272
|
{
|
|
3226
3273
|
fillRule: "evenodd",
|
|
@@ -3229,7 +3276,7 @@ var init_GasHeating = __esm({
|
|
|
3229
3276
|
fill: "currentColor"
|
|
3230
3277
|
}
|
|
3231
3278
|
),
|
|
3232
|
-
/* @__PURE__ */
|
|
3279
|
+
/* @__PURE__ */ React59.createElement(
|
|
3233
3280
|
"path",
|
|
3234
3281
|
{
|
|
3235
3282
|
fillRule: "evenodd",
|
|
@@ -3238,7 +3285,7 @@ var init_GasHeating = __esm({
|
|
|
3238
3285
|
fill: "currentColor"
|
|
3239
3286
|
}
|
|
3240
3287
|
),
|
|
3241
|
-
/* @__PURE__ */
|
|
3288
|
+
/* @__PURE__ */ React59.createElement(
|
|
3242
3289
|
"path",
|
|
3243
3290
|
{
|
|
3244
3291
|
fillRule: "evenodd",
|
|
@@ -3258,7 +3305,7 @@ var Heating_exports = {};
|
|
|
3258
3305
|
__export(Heating_exports, {
|
|
3259
3306
|
default: () => Heating_default
|
|
3260
3307
|
});
|
|
3261
|
-
import * as
|
|
3308
|
+
import * as React60 from "react";
|
|
3262
3309
|
var SvgHeating, Heating_default;
|
|
3263
3310
|
var init_Heating = __esm({
|
|
3264
3311
|
"src/react/Heating.tsx"() {
|
|
@@ -3266,7 +3313,7 @@ var init_Heating = __esm({
|
|
|
3266
3313
|
init_types();
|
|
3267
3314
|
SvgHeating = ({ size = 16, ...props }) => {
|
|
3268
3315
|
const sizeValue = resolveSize(size);
|
|
3269
|
-
return /* @__PURE__ */
|
|
3316
|
+
return /* @__PURE__ */ React60.createElement(
|
|
3270
3317
|
"svg",
|
|
3271
3318
|
{
|
|
3272
3319
|
width: sizeValue,
|
|
@@ -3276,7 +3323,7 @@ var init_Heating = __esm({
|
|
|
3276
3323
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3277
3324
|
...props
|
|
3278
3325
|
},
|
|
3279
|
-
/* @__PURE__ */
|
|
3326
|
+
/* @__PURE__ */ React60.createElement(
|
|
3280
3327
|
"path",
|
|
3281
3328
|
{
|
|
3282
3329
|
fillRule: "evenodd",
|
|
@@ -3285,7 +3332,7 @@ var init_Heating = __esm({
|
|
|
3285
3332
|
fill: "currentColor"
|
|
3286
3333
|
}
|
|
3287
3334
|
),
|
|
3288
|
-
/* @__PURE__ */
|
|
3335
|
+
/* @__PURE__ */ React60.createElement(
|
|
3289
3336
|
"path",
|
|
3290
3337
|
{
|
|
3291
3338
|
fillRule: "evenodd",
|
|
@@ -3294,7 +3341,7 @@ var init_Heating = __esm({
|
|
|
3294
3341
|
fill: "currentColor"
|
|
3295
3342
|
}
|
|
3296
3343
|
),
|
|
3297
|
-
/* @__PURE__ */
|
|
3344
|
+
/* @__PURE__ */ React60.createElement(
|
|
3298
3345
|
"path",
|
|
3299
3346
|
{
|
|
3300
3347
|
fillRule: "evenodd",
|
|
@@ -3303,7 +3350,7 @@ var init_Heating = __esm({
|
|
|
3303
3350
|
fill: "currentColor"
|
|
3304
3351
|
}
|
|
3305
3352
|
),
|
|
3306
|
-
/* @__PURE__ */
|
|
3353
|
+
/* @__PURE__ */ React60.createElement(
|
|
3307
3354
|
"path",
|
|
3308
3355
|
{
|
|
3309
3356
|
fillRule: "evenodd",
|
|
@@ -3312,7 +3359,7 @@ var init_Heating = __esm({
|
|
|
3312
3359
|
fill: "currentColor"
|
|
3313
3360
|
}
|
|
3314
3361
|
),
|
|
3315
|
-
/* @__PURE__ */
|
|
3362
|
+
/* @__PURE__ */ React60.createElement(
|
|
3316
3363
|
"path",
|
|
3317
3364
|
{
|
|
3318
3365
|
fillRule: "evenodd",
|
|
@@ -3321,7 +3368,7 @@ var init_Heating = __esm({
|
|
|
3321
3368
|
fill: "currentColor"
|
|
3322
3369
|
}
|
|
3323
3370
|
),
|
|
3324
|
-
/* @__PURE__ */
|
|
3371
|
+
/* @__PURE__ */ React60.createElement(
|
|
3325
3372
|
"path",
|
|
3326
3373
|
{
|
|
3327
3374
|
fillRule: "evenodd",
|
|
@@ -3341,7 +3388,7 @@ var HelpCircle_exports = {};
|
|
|
3341
3388
|
__export(HelpCircle_exports, {
|
|
3342
3389
|
default: () => HelpCircle_default
|
|
3343
3390
|
});
|
|
3344
|
-
import * as
|
|
3391
|
+
import * as React61 from "react";
|
|
3345
3392
|
var SvgHelpCircle, HelpCircle_default;
|
|
3346
3393
|
var init_HelpCircle = __esm({
|
|
3347
3394
|
"src/react/HelpCircle.tsx"() {
|
|
@@ -3349,7 +3396,7 @@ var init_HelpCircle = __esm({
|
|
|
3349
3396
|
init_types();
|
|
3350
3397
|
SvgHelpCircle = ({ size = 16, ...props }) => {
|
|
3351
3398
|
const sizeValue = resolveSize(size);
|
|
3352
|
-
return /* @__PURE__ */
|
|
3399
|
+
return /* @__PURE__ */ React61.createElement(
|
|
3353
3400
|
"svg",
|
|
3354
3401
|
{
|
|
3355
3402
|
width: sizeValue,
|
|
@@ -3359,7 +3406,7 @@ var init_HelpCircle = __esm({
|
|
|
3359
3406
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3360
3407
|
...props
|
|
3361
3408
|
},
|
|
3362
|
-
/* @__PURE__ */
|
|
3409
|
+
/* @__PURE__ */ React61.createElement(
|
|
3363
3410
|
"path",
|
|
3364
3411
|
{
|
|
3365
3412
|
fillRule: "evenodd",
|
|
@@ -3368,7 +3415,7 @@ var init_HelpCircle = __esm({
|
|
|
3368
3415
|
fill: "currentColor"
|
|
3369
3416
|
}
|
|
3370
3417
|
),
|
|
3371
|
-
/* @__PURE__ */
|
|
3418
|
+
/* @__PURE__ */ React61.createElement(
|
|
3372
3419
|
"path",
|
|
3373
3420
|
{
|
|
3374
3421
|
fillRule: "evenodd",
|
|
@@ -3377,7 +3424,7 @@ var init_HelpCircle = __esm({
|
|
|
3377
3424
|
fill: "currentColor"
|
|
3378
3425
|
}
|
|
3379
3426
|
),
|
|
3380
|
-
/* @__PURE__ */
|
|
3427
|
+
/* @__PURE__ */ React61.createElement(
|
|
3381
3428
|
"path",
|
|
3382
3429
|
{
|
|
3383
3430
|
fillRule: "evenodd",
|
|
@@ -3397,7 +3444,7 @@ var History_exports = {};
|
|
|
3397
3444
|
__export(History_exports, {
|
|
3398
3445
|
default: () => History_default
|
|
3399
3446
|
});
|
|
3400
|
-
import * as
|
|
3447
|
+
import * as React62 from "react";
|
|
3401
3448
|
var SvgHistory, History_default;
|
|
3402
3449
|
var init_History = __esm({
|
|
3403
3450
|
"src/react/History.tsx"() {
|
|
@@ -3405,7 +3452,7 @@ var init_History = __esm({
|
|
|
3405
3452
|
init_types();
|
|
3406
3453
|
SvgHistory = ({ size = 16, ...props }) => {
|
|
3407
3454
|
const sizeValue = resolveSize(size);
|
|
3408
|
-
return /* @__PURE__ */
|
|
3455
|
+
return /* @__PURE__ */ React62.createElement(
|
|
3409
3456
|
"svg",
|
|
3410
3457
|
{
|
|
3411
3458
|
width: sizeValue,
|
|
@@ -3415,7 +3462,7 @@ var init_History = __esm({
|
|
|
3415
3462
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3416
3463
|
...props
|
|
3417
3464
|
},
|
|
3418
|
-
/* @__PURE__ */
|
|
3465
|
+
/* @__PURE__ */ React62.createElement(
|
|
3419
3466
|
"path",
|
|
3420
3467
|
{
|
|
3421
3468
|
fillRule: "evenodd",
|
|
@@ -3424,7 +3471,7 @@ var init_History = __esm({
|
|
|
3424
3471
|
fill: "currentColor"
|
|
3425
3472
|
}
|
|
3426
3473
|
),
|
|
3427
|
-
/* @__PURE__ */
|
|
3474
|
+
/* @__PURE__ */ React62.createElement(
|
|
3428
3475
|
"path",
|
|
3429
3476
|
{
|
|
3430
3477
|
fillRule: "evenodd",
|
|
@@ -3433,7 +3480,7 @@ var init_History = __esm({
|
|
|
3433
3480
|
fill: "currentColor"
|
|
3434
3481
|
}
|
|
3435
3482
|
),
|
|
3436
|
-
/* @__PURE__ */
|
|
3483
|
+
/* @__PURE__ */ React62.createElement(
|
|
3437
3484
|
"path",
|
|
3438
3485
|
{
|
|
3439
3486
|
fillRule: "evenodd",
|
|
@@ -3453,7 +3500,7 @@ var HomeFilled_exports = {};
|
|
|
3453
3500
|
__export(HomeFilled_exports, {
|
|
3454
3501
|
default: () => HomeFilled_default
|
|
3455
3502
|
});
|
|
3456
|
-
import * as
|
|
3503
|
+
import * as React63 from "react";
|
|
3457
3504
|
var SvgHomeFilled, HomeFilled_default;
|
|
3458
3505
|
var init_HomeFilled = __esm({
|
|
3459
3506
|
"src/react/HomeFilled.tsx"() {
|
|
@@ -3461,7 +3508,7 @@ var init_HomeFilled = __esm({
|
|
|
3461
3508
|
init_types();
|
|
3462
3509
|
SvgHomeFilled = ({ size = 16, ...props }) => {
|
|
3463
3510
|
const sizeValue = resolveSize(size);
|
|
3464
|
-
return /* @__PURE__ */
|
|
3511
|
+
return /* @__PURE__ */ React63.createElement(
|
|
3465
3512
|
"svg",
|
|
3466
3513
|
{
|
|
3467
3514
|
width: sizeValue,
|
|
@@ -3471,7 +3518,7 @@ var init_HomeFilled = __esm({
|
|
|
3471
3518
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3472
3519
|
...props
|
|
3473
3520
|
},
|
|
3474
|
-
/* @__PURE__ */
|
|
3521
|
+
/* @__PURE__ */ React63.createElement(
|
|
3475
3522
|
"path",
|
|
3476
3523
|
{
|
|
3477
3524
|
d: "M9.78125 3.47949C11.1248 2.58376 12.8752 2.58376 14.2188 3.47949L19.2188 6.8125C20.3315 7.5543 20.9999 8.80333 21 10.1406V18C21 20.2091 19.2091 22 17 22H7C4.79086 22 3 20.2091 3 18V10.1406C3.00011 8.80333 3.66855 7.5543 4.78125 6.8125L9.78125 3.47949ZM11 11.5928C9.89548 11.5928 9.00008 12.4883 9 13.5928V18.9629C9 19.5152 9.44772 19.9629 10 19.9629H14C14.5523 19.9629 15 19.5152 15 18.9629V13.5928C14.9999 12.4883 14.1045 11.5928 13 11.5928H11Z",
|
|
@@ -3489,7 +3536,7 @@ var HomeLinear_exports = {};
|
|
|
3489
3536
|
__export(HomeLinear_exports, {
|
|
3490
3537
|
default: () => HomeLinear_default
|
|
3491
3538
|
});
|
|
3492
|
-
import * as
|
|
3539
|
+
import * as React64 from "react";
|
|
3493
3540
|
var SvgHomeLinear, HomeLinear_default;
|
|
3494
3541
|
var init_HomeLinear = __esm({
|
|
3495
3542
|
"src/react/HomeLinear.tsx"() {
|
|
@@ -3497,7 +3544,7 @@ var init_HomeLinear = __esm({
|
|
|
3497
3544
|
init_types();
|
|
3498
3545
|
SvgHomeLinear = ({ size = 16, ...props }) => {
|
|
3499
3546
|
const sizeValue = resolveSize(size);
|
|
3500
|
-
return /* @__PURE__ */
|
|
3547
|
+
return /* @__PURE__ */ React64.createElement(
|
|
3501
3548
|
"svg",
|
|
3502
3549
|
{
|
|
3503
3550
|
width: sizeValue,
|
|
@@ -3507,7 +3554,7 @@ var init_HomeLinear = __esm({
|
|
|
3507
3554
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3508
3555
|
...props
|
|
3509
3556
|
},
|
|
3510
|
-
/* @__PURE__ */
|
|
3557
|
+
/* @__PURE__ */ React64.createElement(
|
|
3511
3558
|
"path",
|
|
3512
3559
|
{
|
|
3513
3560
|
fillRule: "evenodd",
|
|
@@ -3527,7 +3574,7 @@ var IconSlot_exports = {};
|
|
|
3527
3574
|
__export(IconSlot_exports, {
|
|
3528
3575
|
default: () => IconSlot_default
|
|
3529
3576
|
});
|
|
3530
|
-
import * as
|
|
3577
|
+
import * as React65 from "react";
|
|
3531
3578
|
var SvgIconSlot, IconSlot_default;
|
|
3532
3579
|
var init_IconSlot = __esm({
|
|
3533
3580
|
"src/react/IconSlot.tsx"() {
|
|
@@ -3535,7 +3582,7 @@ var init_IconSlot = __esm({
|
|
|
3535
3582
|
init_types();
|
|
3536
3583
|
SvgIconSlot = ({ size = 16, ...props }) => {
|
|
3537
3584
|
const sizeValue = resolveSize(size);
|
|
3538
|
-
return /* @__PURE__ */
|
|
3585
|
+
return /* @__PURE__ */ React65.createElement(
|
|
3539
3586
|
"svg",
|
|
3540
3587
|
{
|
|
3541
3588
|
width: sizeValue,
|
|
@@ -3545,7 +3592,7 @@ var init_IconSlot = __esm({
|
|
|
3545
3592
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3546
3593
|
...props
|
|
3547
3594
|
},
|
|
3548
|
-
/* @__PURE__ */
|
|
3595
|
+
/* @__PURE__ */ React65.createElement(
|
|
3549
3596
|
"path",
|
|
3550
3597
|
{
|
|
3551
3598
|
d: "M21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12ZM23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12Z",
|
|
@@ -3563,7 +3610,7 @@ var Image_exports = {};
|
|
|
3563
3610
|
__export(Image_exports, {
|
|
3564
3611
|
default: () => Image_default
|
|
3565
3612
|
});
|
|
3566
|
-
import * as
|
|
3613
|
+
import * as React66 from "react";
|
|
3567
3614
|
var SvgImage, Image_default;
|
|
3568
3615
|
var init_Image = __esm({
|
|
3569
3616
|
"src/react/Image.tsx"() {
|
|
@@ -3571,7 +3618,7 @@ var init_Image = __esm({
|
|
|
3571
3618
|
init_types();
|
|
3572
3619
|
SvgImage = ({ size = 16, ...props }) => {
|
|
3573
3620
|
const sizeValue = resolveSize(size);
|
|
3574
|
-
return /* @__PURE__ */
|
|
3621
|
+
return /* @__PURE__ */ React66.createElement(
|
|
3575
3622
|
"svg",
|
|
3576
3623
|
{
|
|
3577
3624
|
width: sizeValue,
|
|
@@ -3581,7 +3628,7 @@ var init_Image = __esm({
|
|
|
3581
3628
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3582
3629
|
...props
|
|
3583
3630
|
},
|
|
3584
|
-
/* @__PURE__ */
|
|
3631
|
+
/* @__PURE__ */ React66.createElement(
|
|
3585
3632
|
"path",
|
|
3586
3633
|
{
|
|
3587
3634
|
fillRule: "evenodd",
|
|
@@ -3590,7 +3637,7 @@ var init_Image = __esm({
|
|
|
3590
3637
|
fill: "currentColor"
|
|
3591
3638
|
}
|
|
3592
3639
|
),
|
|
3593
|
-
/* @__PURE__ */
|
|
3640
|
+
/* @__PURE__ */ React66.createElement(
|
|
3594
3641
|
"path",
|
|
3595
3642
|
{
|
|
3596
3643
|
fillRule: "evenodd",
|
|
@@ -3599,7 +3646,7 @@ var init_Image = __esm({
|
|
|
3599
3646
|
fill: "currentColor"
|
|
3600
3647
|
}
|
|
3601
3648
|
),
|
|
3602
|
-
/* @__PURE__ */
|
|
3649
|
+
/* @__PURE__ */ React66.createElement(
|
|
3603
3650
|
"path",
|
|
3604
3651
|
{
|
|
3605
3652
|
fillRule: "evenodd",
|
|
@@ -3619,7 +3666,7 @@ var ImageOff_exports = {};
|
|
|
3619
3666
|
__export(ImageOff_exports, {
|
|
3620
3667
|
default: () => ImageOff_default
|
|
3621
3668
|
});
|
|
3622
|
-
import * as
|
|
3669
|
+
import * as React67 from "react";
|
|
3623
3670
|
var SvgImageOff, ImageOff_default;
|
|
3624
3671
|
var init_ImageOff = __esm({
|
|
3625
3672
|
"src/react/ImageOff.tsx"() {
|
|
@@ -3627,7 +3674,7 @@ var init_ImageOff = __esm({
|
|
|
3627
3674
|
init_types();
|
|
3628
3675
|
SvgImageOff = ({ size = 16, ...props }) => {
|
|
3629
3676
|
const sizeValue = resolveSize(size);
|
|
3630
|
-
return /* @__PURE__ */
|
|
3677
|
+
return /* @__PURE__ */ React67.createElement(
|
|
3631
3678
|
"svg",
|
|
3632
3679
|
{
|
|
3633
3680
|
width: sizeValue,
|
|
@@ -3637,7 +3684,7 @@ var init_ImageOff = __esm({
|
|
|
3637
3684
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3638
3685
|
...props
|
|
3639
3686
|
},
|
|
3640
|
-
/* @__PURE__ */
|
|
3687
|
+
/* @__PURE__ */ React67.createElement(
|
|
3641
3688
|
"path",
|
|
3642
3689
|
{
|
|
3643
3690
|
fillRule: "evenodd",
|
|
@@ -3646,7 +3693,7 @@ var init_ImageOff = __esm({
|
|
|
3646
3693
|
fill: "currentColor"
|
|
3647
3694
|
}
|
|
3648
3695
|
),
|
|
3649
|
-
/* @__PURE__ */
|
|
3696
|
+
/* @__PURE__ */ React67.createElement(
|
|
3650
3697
|
"path",
|
|
3651
3698
|
{
|
|
3652
3699
|
fillRule: "evenodd",
|
|
@@ -3655,7 +3702,7 @@ var init_ImageOff = __esm({
|
|
|
3655
3702
|
fill: "currentColor"
|
|
3656
3703
|
}
|
|
3657
3704
|
),
|
|
3658
|
-
/* @__PURE__ */
|
|
3705
|
+
/* @__PURE__ */ React67.createElement(
|
|
3659
3706
|
"path",
|
|
3660
3707
|
{
|
|
3661
3708
|
fillRule: "evenodd",
|
|
@@ -3664,7 +3711,7 @@ var init_ImageOff = __esm({
|
|
|
3664
3711
|
fill: "currentColor"
|
|
3665
3712
|
}
|
|
3666
3713
|
),
|
|
3667
|
-
/* @__PURE__ */
|
|
3714
|
+
/* @__PURE__ */ React67.createElement(
|
|
3668
3715
|
"path",
|
|
3669
3716
|
{
|
|
3670
3717
|
fillRule: "evenodd",
|
|
@@ -3673,7 +3720,7 @@ var init_ImageOff = __esm({
|
|
|
3673
3720
|
fill: "currentColor"
|
|
3674
3721
|
}
|
|
3675
3722
|
),
|
|
3676
|
-
/* @__PURE__ */
|
|
3723
|
+
/* @__PURE__ */ React67.createElement(
|
|
3677
3724
|
"path",
|
|
3678
3725
|
{
|
|
3679
3726
|
fillRule: "evenodd",
|
|
@@ -3682,7 +3729,7 @@ var init_ImageOff = __esm({
|
|
|
3682
3729
|
fill: "currentColor"
|
|
3683
3730
|
}
|
|
3684
3731
|
),
|
|
3685
|
-
/* @__PURE__ */
|
|
3732
|
+
/* @__PURE__ */ React67.createElement(
|
|
3686
3733
|
"path",
|
|
3687
3734
|
{
|
|
3688
3735
|
fillRule: "evenodd",
|
|
@@ -3702,7 +3749,7 @@ var Info_exports = {};
|
|
|
3702
3749
|
__export(Info_exports, {
|
|
3703
3750
|
default: () => Info_default
|
|
3704
3751
|
});
|
|
3705
|
-
import * as
|
|
3752
|
+
import * as React68 from "react";
|
|
3706
3753
|
var SvgInfo, Info_default;
|
|
3707
3754
|
var init_Info = __esm({
|
|
3708
3755
|
"src/react/Info.tsx"() {
|
|
@@ -3710,7 +3757,7 @@ var init_Info = __esm({
|
|
|
3710
3757
|
init_types();
|
|
3711
3758
|
SvgInfo = ({ size = 16, ...props }) => {
|
|
3712
3759
|
const sizeValue = resolveSize(size);
|
|
3713
|
-
return /* @__PURE__ */
|
|
3760
|
+
return /* @__PURE__ */ React68.createElement(
|
|
3714
3761
|
"svg",
|
|
3715
3762
|
{
|
|
3716
3763
|
width: sizeValue,
|
|
@@ -3720,7 +3767,7 @@ var init_Info = __esm({
|
|
|
3720
3767
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3721
3768
|
...props
|
|
3722
3769
|
},
|
|
3723
|
-
/* @__PURE__ */
|
|
3770
|
+
/* @__PURE__ */ React68.createElement(
|
|
3724
3771
|
"path",
|
|
3725
3772
|
{
|
|
3726
3773
|
fillRule: "evenodd",
|
|
@@ -3729,7 +3776,7 @@ var init_Info = __esm({
|
|
|
3729
3776
|
fill: "currentColor"
|
|
3730
3777
|
}
|
|
3731
3778
|
),
|
|
3732
|
-
/* @__PURE__ */
|
|
3779
|
+
/* @__PURE__ */ React68.createElement(
|
|
3733
3780
|
"path",
|
|
3734
3781
|
{
|
|
3735
3782
|
fillRule: "evenodd",
|
|
@@ -3738,7 +3785,7 @@ var init_Info = __esm({
|
|
|
3738
3785
|
fill: "currentColor"
|
|
3739
3786
|
}
|
|
3740
3787
|
),
|
|
3741
|
-
/* @__PURE__ */
|
|
3788
|
+
/* @__PURE__ */ React68.createElement(
|
|
3742
3789
|
"path",
|
|
3743
3790
|
{
|
|
3744
3791
|
fillRule: "evenodd",
|
|
@@ -3758,7 +3805,7 @@ var Keys01_exports = {};
|
|
|
3758
3805
|
__export(Keys01_exports, {
|
|
3759
3806
|
default: () => Keys01_default
|
|
3760
3807
|
});
|
|
3761
|
-
import * as
|
|
3808
|
+
import * as React69 from "react";
|
|
3762
3809
|
var SvgKeys01, Keys01_default;
|
|
3763
3810
|
var init_Keys01 = __esm({
|
|
3764
3811
|
"src/react/Keys01.tsx"() {
|
|
@@ -3766,7 +3813,7 @@ var init_Keys01 = __esm({
|
|
|
3766
3813
|
init_types();
|
|
3767
3814
|
SvgKeys01 = ({ size = 16, ...props }) => {
|
|
3768
3815
|
const sizeValue = resolveSize(size);
|
|
3769
|
-
return /* @__PURE__ */
|
|
3816
|
+
return /* @__PURE__ */ React69.createElement(
|
|
3770
3817
|
"svg",
|
|
3771
3818
|
{
|
|
3772
3819
|
width: sizeValue,
|
|
@@ -3776,7 +3823,7 @@ var init_Keys01 = __esm({
|
|
|
3776
3823
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3777
3824
|
...props
|
|
3778
3825
|
},
|
|
3779
|
-
/* @__PURE__ */
|
|
3826
|
+
/* @__PURE__ */ React69.createElement(
|
|
3780
3827
|
"path",
|
|
3781
3828
|
{
|
|
3782
3829
|
fillRule: "evenodd",
|
|
@@ -3785,7 +3832,7 @@ var init_Keys01 = __esm({
|
|
|
3785
3832
|
fill: "currentColor"
|
|
3786
3833
|
}
|
|
3787
3834
|
),
|
|
3788
|
-
/* @__PURE__ */
|
|
3835
|
+
/* @__PURE__ */ React69.createElement(
|
|
3789
3836
|
"path",
|
|
3790
3837
|
{
|
|
3791
3838
|
fillRule: "evenodd",
|
|
@@ -3794,7 +3841,7 @@ var init_Keys01 = __esm({
|
|
|
3794
3841
|
fill: "currentColor"
|
|
3795
3842
|
}
|
|
3796
3843
|
),
|
|
3797
|
-
/* @__PURE__ */
|
|
3844
|
+
/* @__PURE__ */ React69.createElement(
|
|
3798
3845
|
"path",
|
|
3799
3846
|
{
|
|
3800
3847
|
fillRule: "evenodd",
|
|
@@ -3814,7 +3861,7 @@ var LeadsFilled_exports = {};
|
|
|
3814
3861
|
__export(LeadsFilled_exports, {
|
|
3815
3862
|
default: () => LeadsFilled_default
|
|
3816
3863
|
});
|
|
3817
|
-
import * as
|
|
3864
|
+
import * as React70 from "react";
|
|
3818
3865
|
var SvgLeadsFilled, LeadsFilled_default;
|
|
3819
3866
|
var init_LeadsFilled = __esm({
|
|
3820
3867
|
"src/react/LeadsFilled.tsx"() {
|
|
@@ -3822,7 +3869,7 @@ var init_LeadsFilled = __esm({
|
|
|
3822
3869
|
init_types();
|
|
3823
3870
|
SvgLeadsFilled = ({ size = 16, ...props }) => {
|
|
3824
3871
|
const sizeValue = resolveSize(size);
|
|
3825
|
-
return /* @__PURE__ */
|
|
3872
|
+
return /* @__PURE__ */ React70.createElement(
|
|
3826
3873
|
"svg",
|
|
3827
3874
|
{
|
|
3828
3875
|
width: sizeValue,
|
|
@@ -3832,7 +3879,7 @@ var init_LeadsFilled = __esm({
|
|
|
3832
3879
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3833
3880
|
...props
|
|
3834
3881
|
},
|
|
3835
|
-
/* @__PURE__ */
|
|
3882
|
+
/* @__PURE__ */ React70.createElement(
|
|
3836
3883
|
"path",
|
|
3837
3884
|
{
|
|
3838
3885
|
fillRule: "evenodd",
|
|
@@ -3841,7 +3888,7 @@ var init_LeadsFilled = __esm({
|
|
|
3841
3888
|
fill: "currentColor"
|
|
3842
3889
|
}
|
|
3843
3890
|
),
|
|
3844
|
-
/* @__PURE__ */
|
|
3891
|
+
/* @__PURE__ */ React70.createElement(
|
|
3845
3892
|
"path",
|
|
3846
3893
|
{
|
|
3847
3894
|
fillRule: "evenodd",
|
|
@@ -3850,7 +3897,7 @@ var init_LeadsFilled = __esm({
|
|
|
3850
3897
|
fill: "currentColor"
|
|
3851
3898
|
}
|
|
3852
3899
|
),
|
|
3853
|
-
/* @__PURE__ */
|
|
3900
|
+
/* @__PURE__ */ React70.createElement(
|
|
3854
3901
|
"path",
|
|
3855
3902
|
{
|
|
3856
3903
|
fillRule: "evenodd",
|
|
@@ -3859,7 +3906,7 @@ var init_LeadsFilled = __esm({
|
|
|
3859
3906
|
fill: "currentColor"
|
|
3860
3907
|
}
|
|
3861
3908
|
),
|
|
3862
|
-
/* @__PURE__ */
|
|
3909
|
+
/* @__PURE__ */ React70.createElement(
|
|
3863
3910
|
"path",
|
|
3864
3911
|
{
|
|
3865
3912
|
fillRule: "evenodd",
|
|
@@ -3879,7 +3926,7 @@ var LeadsLinear_exports = {};
|
|
|
3879
3926
|
__export(LeadsLinear_exports, {
|
|
3880
3927
|
default: () => LeadsLinear_default
|
|
3881
3928
|
});
|
|
3882
|
-
import * as
|
|
3929
|
+
import * as React71 from "react";
|
|
3883
3930
|
var SvgLeadsLinear, LeadsLinear_default;
|
|
3884
3931
|
var init_LeadsLinear = __esm({
|
|
3885
3932
|
"src/react/LeadsLinear.tsx"() {
|
|
@@ -3887,7 +3934,7 @@ var init_LeadsLinear = __esm({
|
|
|
3887
3934
|
init_types();
|
|
3888
3935
|
SvgLeadsLinear = ({ size = 16, ...props }) => {
|
|
3889
3936
|
const sizeValue = resolveSize(size);
|
|
3890
|
-
return /* @__PURE__ */
|
|
3937
|
+
return /* @__PURE__ */ React71.createElement(
|
|
3891
3938
|
"svg",
|
|
3892
3939
|
{
|
|
3893
3940
|
width: sizeValue,
|
|
@@ -3897,7 +3944,7 @@ var init_LeadsLinear = __esm({
|
|
|
3897
3944
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3898
3945
|
...props
|
|
3899
3946
|
},
|
|
3900
|
-
/* @__PURE__ */
|
|
3947
|
+
/* @__PURE__ */ React71.createElement(
|
|
3901
3948
|
"path",
|
|
3902
3949
|
{
|
|
3903
3950
|
fillRule: "evenodd",
|
|
@@ -3906,7 +3953,7 @@ var init_LeadsLinear = __esm({
|
|
|
3906
3953
|
fill: "currentColor"
|
|
3907
3954
|
}
|
|
3908
3955
|
),
|
|
3909
|
-
/* @__PURE__ */
|
|
3956
|
+
/* @__PURE__ */ React71.createElement(
|
|
3910
3957
|
"path",
|
|
3911
3958
|
{
|
|
3912
3959
|
fillRule: "evenodd",
|
|
@@ -3915,7 +3962,7 @@ var init_LeadsLinear = __esm({
|
|
|
3915
3962
|
fill: "currentColor"
|
|
3916
3963
|
}
|
|
3917
3964
|
),
|
|
3918
|
-
/* @__PURE__ */
|
|
3965
|
+
/* @__PURE__ */ React71.createElement(
|
|
3919
3966
|
"path",
|
|
3920
3967
|
{
|
|
3921
3968
|
fillRule: "evenodd",
|
|
@@ -3924,7 +3971,7 @@ var init_LeadsLinear = __esm({
|
|
|
3924
3971
|
fill: "currentColor"
|
|
3925
3972
|
}
|
|
3926
3973
|
),
|
|
3927
|
-
/* @__PURE__ */
|
|
3974
|
+
/* @__PURE__ */ React71.createElement(
|
|
3928
3975
|
"path",
|
|
3929
3976
|
{
|
|
3930
3977
|
fillRule: "evenodd",
|
|
@@ -3944,7 +3991,7 @@ var Lift_exports = {};
|
|
|
3944
3991
|
__export(Lift_exports, {
|
|
3945
3992
|
default: () => Lift_default
|
|
3946
3993
|
});
|
|
3947
|
-
import * as
|
|
3994
|
+
import * as React72 from "react";
|
|
3948
3995
|
var SvgLift, Lift_default;
|
|
3949
3996
|
var init_Lift = __esm({
|
|
3950
3997
|
"src/react/Lift.tsx"() {
|
|
@@ -3952,7 +3999,7 @@ var init_Lift = __esm({
|
|
|
3952
3999
|
init_types();
|
|
3953
4000
|
SvgLift = ({ size = 16, ...props }) => {
|
|
3954
4001
|
const sizeValue = resolveSize(size);
|
|
3955
|
-
return /* @__PURE__ */
|
|
4002
|
+
return /* @__PURE__ */ React72.createElement(
|
|
3956
4003
|
"svg",
|
|
3957
4004
|
{
|
|
3958
4005
|
width: sizeValue,
|
|
@@ -3962,7 +4009,7 @@ var init_Lift = __esm({
|
|
|
3962
4009
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3963
4010
|
...props
|
|
3964
4011
|
},
|
|
3965
|
-
/* @__PURE__ */
|
|
4012
|
+
/* @__PURE__ */ React72.createElement(
|
|
3966
4013
|
"path",
|
|
3967
4014
|
{
|
|
3968
4015
|
d: "M12.9004 21.0791H15.3779V12.4785H12.9004V21.0791ZM8.62207 21.0791H11.0996V12.4785H8.62207V21.0791ZM16.4277 5.78809C16.8206 5.48406 17.3861 5.55643 17.6904 5.94922C17.9944 6.34213 17.9221 6.90761 17.5293 7.21191L15.5508 8.74512C15.2264 8.99642 14.7727 8.99635 14.4482 8.74512L12.4688 7.21191C12.0759 6.90759 12.0045 6.34214 12.3086 5.94922C12.6129 5.55639 13.1784 5.48395 13.5713 5.78809L14.999 6.89453L16.4277 5.78809ZM8.42773 5.78809C8.75207 5.53682 9.20583 5.53704 9.53027 5.78809L11.5098 7.32227C11.9025 7.62672 11.9743 8.19209 11.6699 8.58496C11.3655 8.97759 10.8 9.0494 10.4072 8.74512L8.97852 7.63867L7.55176 8.74512C7.15896 9.04943 6.59356 8.97754 6.28906 8.58496C5.98467 8.19206 6.05636 7.6267 6.44922 7.32227L8.42773 5.78809ZM17.1777 21.0791H19.9961V4.47949C19.9961 4.14823 19.7277 3.88006 19.3965 3.87988H4.60449C4.27312 3.87988 4.00488 4.14812 4.00488 4.47949V21.0791H6.82227V12.2119C6.82231 11.3309 7.55547 10.6788 8.38184 10.6787H15.6182C16.4445 10.6788 17.1777 11.3309 17.1777 12.2119V21.0791ZM21.7959 21.0996C21.7959 22.0824 20.9994 22.8798 20.0166 22.8799H3.98438C3.00151 22.8799 2.2041 22.0825 2.2041 21.0996V4.47949C2.2041 3.15401 3.27901 2.0791 4.60449 2.0791H19.3965C20.7218 2.07928 21.7959 3.15412 21.7959 4.47949V21.0996Z",
|
|
@@ -3980,7 +4027,7 @@ var Lock_exports = {};
|
|
|
3980
4027
|
__export(Lock_exports, {
|
|
3981
4028
|
default: () => Lock_default
|
|
3982
4029
|
});
|
|
3983
|
-
import * as
|
|
4030
|
+
import * as React73 from "react";
|
|
3984
4031
|
var SvgLock, Lock_default;
|
|
3985
4032
|
var init_Lock = __esm({
|
|
3986
4033
|
"src/react/Lock.tsx"() {
|
|
@@ -3988,7 +4035,7 @@ var init_Lock = __esm({
|
|
|
3988
4035
|
init_types();
|
|
3989
4036
|
SvgLock = ({ size = 16, ...props }) => {
|
|
3990
4037
|
const sizeValue = resolveSize(size);
|
|
3991
|
-
return /* @__PURE__ */
|
|
4038
|
+
return /* @__PURE__ */ React73.createElement(
|
|
3992
4039
|
"svg",
|
|
3993
4040
|
{
|
|
3994
4041
|
width: sizeValue,
|
|
@@ -3998,7 +4045,7 @@ var init_Lock = __esm({
|
|
|
3998
4045
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3999
4046
|
...props
|
|
4000
4047
|
},
|
|
4001
|
-
/* @__PURE__ */
|
|
4048
|
+
/* @__PURE__ */ React73.createElement(
|
|
4002
4049
|
"path",
|
|
4003
4050
|
{
|
|
4004
4051
|
fillRule: "evenodd",
|
|
@@ -4007,7 +4054,7 @@ var init_Lock = __esm({
|
|
|
4007
4054
|
fill: "currentColor"
|
|
4008
4055
|
}
|
|
4009
4056
|
),
|
|
4010
|
-
/* @__PURE__ */
|
|
4057
|
+
/* @__PURE__ */ React73.createElement(
|
|
4011
4058
|
"path",
|
|
4012
4059
|
{
|
|
4013
4060
|
fillRule: "evenodd",
|
|
@@ -4027,7 +4074,7 @@ var Loft_exports = {};
|
|
|
4027
4074
|
__export(Loft_exports, {
|
|
4028
4075
|
default: () => Loft_default
|
|
4029
4076
|
});
|
|
4030
|
-
import * as
|
|
4077
|
+
import * as React74 from "react";
|
|
4031
4078
|
var SvgLoft, Loft_default;
|
|
4032
4079
|
var init_Loft = __esm({
|
|
4033
4080
|
"src/react/Loft.tsx"() {
|
|
@@ -4035,7 +4082,7 @@ var init_Loft = __esm({
|
|
|
4035
4082
|
init_types();
|
|
4036
4083
|
SvgLoft = ({ size = 16, ...props }) => {
|
|
4037
4084
|
const sizeValue = resolveSize(size);
|
|
4038
|
-
return /* @__PURE__ */
|
|
4085
|
+
return /* @__PURE__ */ React74.createElement(
|
|
4039
4086
|
"svg",
|
|
4040
4087
|
{
|
|
4041
4088
|
width: sizeValue,
|
|
@@ -4045,7 +4092,7 @@ var init_Loft = __esm({
|
|
|
4045
4092
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4046
4093
|
...props
|
|
4047
4094
|
},
|
|
4048
|
-
/* @__PURE__ */
|
|
4095
|
+
/* @__PURE__ */ React74.createElement(
|
|
4049
4096
|
"path",
|
|
4050
4097
|
{
|
|
4051
4098
|
fillRule: "evenodd",
|
|
@@ -4054,7 +4101,7 @@ var init_Loft = __esm({
|
|
|
4054
4101
|
fill: "currentColor"
|
|
4055
4102
|
}
|
|
4056
4103
|
),
|
|
4057
|
-
/* @__PURE__ */
|
|
4104
|
+
/* @__PURE__ */ React74.createElement(
|
|
4058
4105
|
"path",
|
|
4059
4106
|
{
|
|
4060
4107
|
fillRule: "evenodd",
|
|
@@ -4063,7 +4110,7 @@ var init_Loft = __esm({
|
|
|
4063
4110
|
fill: "currentColor"
|
|
4064
4111
|
}
|
|
4065
4112
|
),
|
|
4066
|
-
/* @__PURE__ */
|
|
4113
|
+
/* @__PURE__ */ React74.createElement(
|
|
4067
4114
|
"path",
|
|
4068
4115
|
{
|
|
4069
4116
|
fillRule: "evenodd",
|
|
@@ -4072,7 +4119,7 @@ var init_Loft = __esm({
|
|
|
4072
4119
|
fill: "currentColor"
|
|
4073
4120
|
}
|
|
4074
4121
|
),
|
|
4075
|
-
/* @__PURE__ */
|
|
4122
|
+
/* @__PURE__ */ React74.createElement(
|
|
4076
4123
|
"path",
|
|
4077
4124
|
{
|
|
4078
4125
|
fillRule: "evenodd",
|
|
@@ -4081,7 +4128,7 @@ var init_Loft = __esm({
|
|
|
4081
4128
|
fill: "currentColor"
|
|
4082
4129
|
}
|
|
4083
4130
|
),
|
|
4084
|
-
/* @__PURE__ */
|
|
4131
|
+
/* @__PURE__ */ React74.createElement(
|
|
4085
4132
|
"path",
|
|
4086
4133
|
{
|
|
4087
4134
|
fillRule: "evenodd",
|
|
@@ -4090,7 +4137,7 @@ var init_Loft = __esm({
|
|
|
4090
4137
|
fill: "currentColor"
|
|
4091
4138
|
}
|
|
4092
4139
|
),
|
|
4093
|
-
/* @__PURE__ */
|
|
4140
|
+
/* @__PURE__ */ React74.createElement(
|
|
4094
4141
|
"path",
|
|
4095
4142
|
{
|
|
4096
4143
|
fillRule: "evenodd",
|
|
@@ -4099,7 +4146,7 @@ var init_Loft = __esm({
|
|
|
4099
4146
|
fill: "currentColor"
|
|
4100
4147
|
}
|
|
4101
4148
|
),
|
|
4102
|
-
/* @__PURE__ */
|
|
4149
|
+
/* @__PURE__ */ React74.createElement(
|
|
4103
4150
|
"path",
|
|
4104
4151
|
{
|
|
4105
4152
|
fillRule: "evenodd",
|
|
@@ -4108,7 +4155,7 @@ var init_Loft = __esm({
|
|
|
4108
4155
|
fill: "currentColor"
|
|
4109
4156
|
}
|
|
4110
4157
|
),
|
|
4111
|
-
/* @__PURE__ */
|
|
4158
|
+
/* @__PURE__ */ React74.createElement(
|
|
4112
4159
|
"path",
|
|
4113
4160
|
{
|
|
4114
4161
|
fillRule: "evenodd",
|
|
@@ -4128,7 +4175,7 @@ var Logout_exports = {};
|
|
|
4128
4175
|
__export(Logout_exports, {
|
|
4129
4176
|
default: () => Logout_default
|
|
4130
4177
|
});
|
|
4131
|
-
import * as
|
|
4178
|
+
import * as React75 from "react";
|
|
4132
4179
|
var SvgLogout, Logout_default;
|
|
4133
4180
|
var init_Logout = __esm({
|
|
4134
4181
|
"src/react/Logout.tsx"() {
|
|
@@ -4136,7 +4183,7 @@ var init_Logout = __esm({
|
|
|
4136
4183
|
init_types();
|
|
4137
4184
|
SvgLogout = ({ size = 16, ...props }) => {
|
|
4138
4185
|
const sizeValue = resolveSize(size);
|
|
4139
|
-
return /* @__PURE__ */
|
|
4186
|
+
return /* @__PURE__ */ React75.createElement(
|
|
4140
4187
|
"svg",
|
|
4141
4188
|
{
|
|
4142
4189
|
width: sizeValue,
|
|
@@ -4146,7 +4193,7 @@ var init_Logout = __esm({
|
|
|
4146
4193
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4147
4194
|
...props
|
|
4148
4195
|
},
|
|
4149
|
-
/* @__PURE__ */
|
|
4196
|
+
/* @__PURE__ */ React75.createElement(
|
|
4150
4197
|
"path",
|
|
4151
4198
|
{
|
|
4152
4199
|
fillRule: "evenodd",
|
|
@@ -4155,7 +4202,7 @@ var init_Logout = __esm({
|
|
|
4155
4202
|
fill: "currentColor"
|
|
4156
4203
|
}
|
|
4157
4204
|
),
|
|
4158
|
-
/* @__PURE__ */
|
|
4205
|
+
/* @__PURE__ */ React75.createElement(
|
|
4159
4206
|
"path",
|
|
4160
4207
|
{
|
|
4161
4208
|
fillRule: "evenodd",
|
|
@@ -4164,7 +4211,7 @@ var init_Logout = __esm({
|
|
|
4164
4211
|
fill: "currentColor"
|
|
4165
4212
|
}
|
|
4166
4213
|
),
|
|
4167
|
-
/* @__PURE__ */
|
|
4214
|
+
/* @__PURE__ */ React75.createElement(
|
|
4168
4215
|
"path",
|
|
4169
4216
|
{
|
|
4170
4217
|
fillRule: "evenodd",
|
|
@@ -4184,7 +4231,7 @@ var MagicWand_exports = {};
|
|
|
4184
4231
|
__export(MagicWand_exports, {
|
|
4185
4232
|
default: () => MagicWand_default
|
|
4186
4233
|
});
|
|
4187
|
-
import * as
|
|
4234
|
+
import * as React76 from "react";
|
|
4188
4235
|
var SvgMagicWand, MagicWand_default;
|
|
4189
4236
|
var init_MagicWand = __esm({
|
|
4190
4237
|
"src/react/MagicWand.tsx"() {
|
|
@@ -4192,7 +4239,7 @@ var init_MagicWand = __esm({
|
|
|
4192
4239
|
init_types();
|
|
4193
4240
|
SvgMagicWand = ({ size = 16, ...props }) => {
|
|
4194
4241
|
const sizeValue = resolveSize(size);
|
|
4195
|
-
return /* @__PURE__ */
|
|
4242
|
+
return /* @__PURE__ */ React76.createElement(
|
|
4196
4243
|
"svg",
|
|
4197
4244
|
{
|
|
4198
4245
|
width: sizeValue,
|
|
@@ -4202,7 +4249,7 @@ var init_MagicWand = __esm({
|
|
|
4202
4249
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4203
4250
|
...props
|
|
4204
4251
|
},
|
|
4205
|
-
/* @__PURE__ */
|
|
4252
|
+
/* @__PURE__ */ React76.createElement(
|
|
4206
4253
|
"path",
|
|
4207
4254
|
{
|
|
4208
4255
|
fillRule: "evenodd",
|
|
@@ -4211,7 +4258,7 @@ var init_MagicWand = __esm({
|
|
|
4211
4258
|
fill: "currentColor"
|
|
4212
4259
|
}
|
|
4213
4260
|
),
|
|
4214
|
-
/* @__PURE__ */
|
|
4261
|
+
/* @__PURE__ */ React76.createElement(
|
|
4215
4262
|
"path",
|
|
4216
4263
|
{
|
|
4217
4264
|
fillRule: "evenodd",
|
|
@@ -4220,7 +4267,7 @@ var init_MagicWand = __esm({
|
|
|
4220
4267
|
fill: "currentColor"
|
|
4221
4268
|
}
|
|
4222
4269
|
),
|
|
4223
|
-
/* @__PURE__ */
|
|
4270
|
+
/* @__PURE__ */ React76.createElement(
|
|
4224
4271
|
"path",
|
|
4225
4272
|
{
|
|
4226
4273
|
fillRule: "evenodd",
|
|
@@ -4229,7 +4276,7 @@ var init_MagicWand = __esm({
|
|
|
4229
4276
|
fill: "currentColor"
|
|
4230
4277
|
}
|
|
4231
4278
|
),
|
|
4232
|
-
/* @__PURE__ */
|
|
4279
|
+
/* @__PURE__ */ React76.createElement(
|
|
4233
4280
|
"path",
|
|
4234
4281
|
{
|
|
4235
4282
|
fillRule: "evenodd",
|
|
@@ -4238,7 +4285,7 @@ var init_MagicWand = __esm({
|
|
|
4238
4285
|
fill: "currentColor"
|
|
4239
4286
|
}
|
|
4240
4287
|
),
|
|
4241
|
-
/* @__PURE__ */
|
|
4288
|
+
/* @__PURE__ */ React76.createElement(
|
|
4242
4289
|
"path",
|
|
4243
4290
|
{
|
|
4244
4291
|
fillRule: "evenodd",
|
|
@@ -4247,7 +4294,7 @@ var init_MagicWand = __esm({
|
|
|
4247
4294
|
fill: "currentColor"
|
|
4248
4295
|
}
|
|
4249
4296
|
),
|
|
4250
|
-
/* @__PURE__ */
|
|
4297
|
+
/* @__PURE__ */ React76.createElement(
|
|
4251
4298
|
"path",
|
|
4252
4299
|
{
|
|
4253
4300
|
fillRule: "evenodd",
|
|
@@ -4256,7 +4303,7 @@ var init_MagicWand = __esm({
|
|
|
4256
4303
|
fill: "currentColor"
|
|
4257
4304
|
}
|
|
4258
4305
|
),
|
|
4259
|
-
/* @__PURE__ */
|
|
4306
|
+
/* @__PURE__ */ React76.createElement(
|
|
4260
4307
|
"path",
|
|
4261
4308
|
{
|
|
4262
4309
|
fillRule: "evenodd",
|
|
@@ -4265,7 +4312,7 @@ var init_MagicWand = __esm({
|
|
|
4265
4312
|
fill: "currentColor"
|
|
4266
4313
|
}
|
|
4267
4314
|
),
|
|
4268
|
-
/* @__PURE__ */
|
|
4315
|
+
/* @__PURE__ */ React76.createElement(
|
|
4269
4316
|
"path",
|
|
4270
4317
|
{
|
|
4271
4318
|
fillRule: "evenodd",
|
|
@@ -4285,7 +4332,7 @@ var Mail_exports = {};
|
|
|
4285
4332
|
__export(Mail_exports, {
|
|
4286
4333
|
default: () => Mail_default
|
|
4287
4334
|
});
|
|
4288
|
-
import * as
|
|
4335
|
+
import * as React77 from "react";
|
|
4289
4336
|
var SvgMail, Mail_default;
|
|
4290
4337
|
var init_Mail = __esm({
|
|
4291
4338
|
"src/react/Mail.tsx"() {
|
|
@@ -4293,7 +4340,7 @@ var init_Mail = __esm({
|
|
|
4293
4340
|
init_types();
|
|
4294
4341
|
SvgMail = ({ size = 16, ...props }) => {
|
|
4295
4342
|
const sizeValue = resolveSize(size);
|
|
4296
|
-
return /* @__PURE__ */
|
|
4343
|
+
return /* @__PURE__ */ React77.createElement(
|
|
4297
4344
|
"svg",
|
|
4298
4345
|
{
|
|
4299
4346
|
width: sizeValue,
|
|
@@ -4303,7 +4350,7 @@ var init_Mail = __esm({
|
|
|
4303
4350
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4304
4351
|
...props
|
|
4305
4352
|
},
|
|
4306
|
-
/* @__PURE__ */
|
|
4353
|
+
/* @__PURE__ */ React77.createElement(
|
|
4307
4354
|
"path",
|
|
4308
4355
|
{
|
|
4309
4356
|
fillRule: "evenodd",
|
|
@@ -4312,7 +4359,7 @@ var init_Mail = __esm({
|
|
|
4312
4359
|
fill: "currentColor"
|
|
4313
4360
|
}
|
|
4314
4361
|
),
|
|
4315
|
-
/* @__PURE__ */
|
|
4362
|
+
/* @__PURE__ */ React77.createElement(
|
|
4316
4363
|
"path",
|
|
4317
4364
|
{
|
|
4318
4365
|
fillRule: "evenodd",
|
|
@@ -4332,7 +4379,7 @@ var MapPin_exports = {};
|
|
|
4332
4379
|
__export(MapPin_exports, {
|
|
4333
4380
|
default: () => MapPin_default
|
|
4334
4381
|
});
|
|
4335
|
-
import * as
|
|
4382
|
+
import * as React78 from "react";
|
|
4336
4383
|
var SvgMapPin, MapPin_default;
|
|
4337
4384
|
var init_MapPin = __esm({
|
|
4338
4385
|
"src/react/MapPin.tsx"() {
|
|
@@ -4340,7 +4387,7 @@ var init_MapPin = __esm({
|
|
|
4340
4387
|
init_types();
|
|
4341
4388
|
SvgMapPin = ({ size = 16, ...props }) => {
|
|
4342
4389
|
const sizeValue = resolveSize(size);
|
|
4343
|
-
return /* @__PURE__ */
|
|
4390
|
+
return /* @__PURE__ */ React78.createElement(
|
|
4344
4391
|
"svg",
|
|
4345
4392
|
{
|
|
4346
4393
|
width: sizeValue,
|
|
@@ -4350,7 +4397,7 @@ var init_MapPin = __esm({
|
|
|
4350
4397
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4351
4398
|
...props
|
|
4352
4399
|
},
|
|
4353
|
-
/* @__PURE__ */
|
|
4400
|
+
/* @__PURE__ */ React78.createElement(
|
|
4354
4401
|
"path",
|
|
4355
4402
|
{
|
|
4356
4403
|
fillRule: "evenodd",
|
|
@@ -4359,7 +4406,7 @@ var init_MapPin = __esm({
|
|
|
4359
4406
|
fill: "currentColor"
|
|
4360
4407
|
}
|
|
4361
4408
|
),
|
|
4362
|
-
/* @__PURE__ */
|
|
4409
|
+
/* @__PURE__ */ React78.createElement(
|
|
4363
4410
|
"path",
|
|
4364
4411
|
{
|
|
4365
4412
|
fillRule: "evenodd",
|
|
@@ -4379,7 +4426,7 @@ var MoreHorizontal_exports = {};
|
|
|
4379
4426
|
__export(MoreHorizontal_exports, {
|
|
4380
4427
|
default: () => MoreHorizontal_default
|
|
4381
4428
|
});
|
|
4382
|
-
import * as
|
|
4429
|
+
import * as React79 from "react";
|
|
4383
4430
|
var SvgMoreHorizontal, MoreHorizontal_default;
|
|
4384
4431
|
var init_MoreHorizontal = __esm({
|
|
4385
4432
|
"src/react/MoreHorizontal.tsx"() {
|
|
@@ -4387,7 +4434,7 @@ var init_MoreHorizontal = __esm({
|
|
|
4387
4434
|
init_types();
|
|
4388
4435
|
SvgMoreHorizontal = ({ size = 16, ...props }) => {
|
|
4389
4436
|
const sizeValue = resolveSize(size);
|
|
4390
|
-
return /* @__PURE__ */
|
|
4437
|
+
return /* @__PURE__ */ React79.createElement(
|
|
4391
4438
|
"svg",
|
|
4392
4439
|
{
|
|
4393
4440
|
width: sizeValue,
|
|
@@ -4397,7 +4444,7 @@ var init_MoreHorizontal = __esm({
|
|
|
4397
4444
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4398
4445
|
...props
|
|
4399
4446
|
},
|
|
4400
|
-
/* @__PURE__ */
|
|
4447
|
+
/* @__PURE__ */ React79.createElement(
|
|
4401
4448
|
"path",
|
|
4402
4449
|
{
|
|
4403
4450
|
fillRule: "evenodd",
|
|
@@ -4406,7 +4453,7 @@ var init_MoreHorizontal = __esm({
|
|
|
4406
4453
|
fill: "currentColor"
|
|
4407
4454
|
}
|
|
4408
4455
|
),
|
|
4409
|
-
/* @__PURE__ */
|
|
4456
|
+
/* @__PURE__ */ React79.createElement(
|
|
4410
4457
|
"path",
|
|
4411
4458
|
{
|
|
4412
4459
|
fillRule: "evenodd",
|
|
@@ -4415,7 +4462,7 @@ var init_MoreHorizontal = __esm({
|
|
|
4415
4462
|
fill: "currentColor"
|
|
4416
4463
|
}
|
|
4417
4464
|
),
|
|
4418
|
-
/* @__PURE__ */
|
|
4465
|
+
/* @__PURE__ */ React79.createElement(
|
|
4419
4466
|
"path",
|
|
4420
4467
|
{
|
|
4421
4468
|
fillRule: "evenodd",
|
|
@@ -4435,7 +4482,7 @@ var Mortgage_exports = {};
|
|
|
4435
4482
|
__export(Mortgage_exports, {
|
|
4436
4483
|
default: () => Mortgage_default
|
|
4437
4484
|
});
|
|
4438
|
-
import * as
|
|
4485
|
+
import * as React80 from "react";
|
|
4439
4486
|
var SvgMortgage, Mortgage_default;
|
|
4440
4487
|
var init_Mortgage = __esm({
|
|
4441
4488
|
"src/react/Mortgage.tsx"() {
|
|
@@ -4443,7 +4490,7 @@ var init_Mortgage = __esm({
|
|
|
4443
4490
|
init_types();
|
|
4444
4491
|
SvgMortgage = ({ size = 16, ...props }) => {
|
|
4445
4492
|
const sizeValue = resolveSize(size);
|
|
4446
|
-
return /* @__PURE__ */
|
|
4493
|
+
return /* @__PURE__ */ React80.createElement(
|
|
4447
4494
|
"svg",
|
|
4448
4495
|
{
|
|
4449
4496
|
width: sizeValue,
|
|
@@ -4453,7 +4500,7 @@ var init_Mortgage = __esm({
|
|
|
4453
4500
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4454
4501
|
...props
|
|
4455
4502
|
},
|
|
4456
|
-
/* @__PURE__ */
|
|
4503
|
+
/* @__PURE__ */ React80.createElement(
|
|
4457
4504
|
"path",
|
|
4458
4505
|
{
|
|
4459
4506
|
fillRule: "evenodd",
|
|
@@ -4462,7 +4509,7 @@ var init_Mortgage = __esm({
|
|
|
4462
4509
|
fill: "currentColor"
|
|
4463
4510
|
}
|
|
4464
4511
|
),
|
|
4465
|
-
/* @__PURE__ */
|
|
4512
|
+
/* @__PURE__ */ React80.createElement(
|
|
4466
4513
|
"path",
|
|
4467
4514
|
{
|
|
4468
4515
|
fillRule: "evenodd",
|
|
@@ -4471,7 +4518,7 @@ var init_Mortgage = __esm({
|
|
|
4471
4518
|
fill: "currentColor"
|
|
4472
4519
|
}
|
|
4473
4520
|
),
|
|
4474
|
-
/* @__PURE__ */
|
|
4521
|
+
/* @__PURE__ */ React80.createElement(
|
|
4475
4522
|
"path",
|
|
4476
4523
|
{
|
|
4477
4524
|
fillRule: "evenodd",
|
|
@@ -4480,7 +4527,7 @@ var init_Mortgage = __esm({
|
|
|
4480
4527
|
fill: "currentColor"
|
|
4481
4528
|
}
|
|
4482
4529
|
),
|
|
4483
|
-
/* @__PURE__ */
|
|
4530
|
+
/* @__PURE__ */ React80.createElement(
|
|
4484
4531
|
"path",
|
|
4485
4532
|
{
|
|
4486
4533
|
fillRule: "evenodd",
|
|
@@ -4489,7 +4536,7 @@ var init_Mortgage = __esm({
|
|
|
4489
4536
|
fill: "currentColor"
|
|
4490
4537
|
}
|
|
4491
4538
|
),
|
|
4492
|
-
/* @__PURE__ */
|
|
4539
|
+
/* @__PURE__ */ React80.createElement(
|
|
4493
4540
|
"path",
|
|
4494
4541
|
{
|
|
4495
4542
|
fillRule: "evenodd",
|
|
@@ -4498,7 +4545,7 @@ var init_Mortgage = __esm({
|
|
|
4498
4545
|
fill: "currentColor"
|
|
4499
4546
|
}
|
|
4500
4547
|
),
|
|
4501
|
-
/* @__PURE__ */
|
|
4548
|
+
/* @__PURE__ */ React80.createElement(
|
|
4502
4549
|
"path",
|
|
4503
4550
|
{
|
|
4504
4551
|
fillRule: "evenodd",
|
|
@@ -4507,7 +4554,7 @@ var init_Mortgage = __esm({
|
|
|
4507
4554
|
fill: "currentColor"
|
|
4508
4555
|
}
|
|
4509
4556
|
),
|
|
4510
|
-
/* @__PURE__ */
|
|
4557
|
+
/* @__PURE__ */ React80.createElement(
|
|
4511
4558
|
"path",
|
|
4512
4559
|
{
|
|
4513
4560
|
fillRule: "evenodd",
|
|
@@ -4527,7 +4574,7 @@ var Note_exports = {};
|
|
|
4527
4574
|
__export(Note_exports, {
|
|
4528
4575
|
default: () => Note_default
|
|
4529
4576
|
});
|
|
4530
|
-
import * as
|
|
4577
|
+
import * as React81 from "react";
|
|
4531
4578
|
var SvgNote, Note_default;
|
|
4532
4579
|
var init_Note = __esm({
|
|
4533
4580
|
"src/react/Note.tsx"() {
|
|
@@ -4535,7 +4582,7 @@ var init_Note = __esm({
|
|
|
4535
4582
|
init_types();
|
|
4536
4583
|
SvgNote = ({ size = 16, ...props }) => {
|
|
4537
4584
|
const sizeValue = resolveSize(size);
|
|
4538
|
-
return /* @__PURE__ */
|
|
4585
|
+
return /* @__PURE__ */ React81.createElement(
|
|
4539
4586
|
"svg",
|
|
4540
4587
|
{
|
|
4541
4588
|
width: sizeValue,
|
|
@@ -4545,7 +4592,7 @@ var init_Note = __esm({
|
|
|
4545
4592
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4546
4593
|
...props
|
|
4547
4594
|
},
|
|
4548
|
-
/* @__PURE__ */
|
|
4595
|
+
/* @__PURE__ */ React81.createElement(
|
|
4549
4596
|
"path",
|
|
4550
4597
|
{
|
|
4551
4598
|
d: "M2.09961 19V5C2.09961 4.23087 2.40536 3.49307 2.94922 2.94922C3.49307 2.40536 4.23087 2.09961 5 2.09961H16L16.0889 2.10449C16.2949 2.12493 16.489 2.21558 16.6367 2.36328L21.6367 7.36328C21.8055 7.53206 21.9004 7.76131 21.9004 8V19C21.9004 19.7691 21.5946 20.5069 21.0508 21.0508C20.5069 21.5946 19.7691 21.9004 19 21.9004H5C4.23087 21.9004 3.49307 21.5946 2.94922 21.0508C2.40536 20.5069 2.09961 19.7691 2.09961 19ZM15.9004 7C15.9004 7.29174 16.0164 7.57105 16.2227 7.77734C16.4289 7.98363 16.7083 8.09961 17 8.09961H19.8262L15.9004 4.17383V7ZM3.90039 19C3.90039 19.2917 4.01637 19.5711 4.22266 19.7773C4.42895 19.9836 4.70826 20.0996 5 20.0996H19C19.2917 20.0996 19.5711 19.9836 19.7773 19.7773C19.9836 19.5711 20.0996 19.2917 20.0996 19V9.90039H17C16.2309 9.90039 15.4931 9.59464 14.9492 9.05078C14.4054 8.50693 14.0996 7.76913 14.0996 7V3.90039H5C4.70826 3.90039 4.42895 4.01637 4.22266 4.22266C4.01637 4.42895 3.90039 4.70826 3.90039 5V19Z",
|
|
@@ -4563,7 +4610,7 @@ var Notes_exports = {};
|
|
|
4563
4610
|
__export(Notes_exports, {
|
|
4564
4611
|
default: () => Notes_default
|
|
4565
4612
|
});
|
|
4566
|
-
import * as
|
|
4613
|
+
import * as React82 from "react";
|
|
4567
4614
|
var SvgNotes, Notes_default;
|
|
4568
4615
|
var init_Notes = __esm({
|
|
4569
4616
|
"src/react/Notes.tsx"() {
|
|
@@ -4571,7 +4618,7 @@ var init_Notes = __esm({
|
|
|
4571
4618
|
init_types();
|
|
4572
4619
|
SvgNotes = ({ size = 16, ...props }) => {
|
|
4573
4620
|
const sizeValue = resolveSize(size);
|
|
4574
|
-
return /* @__PURE__ */
|
|
4621
|
+
return /* @__PURE__ */ React82.createElement(
|
|
4575
4622
|
"svg",
|
|
4576
4623
|
{
|
|
4577
4624
|
width: sizeValue,
|
|
@@ -4581,21 +4628,21 @@ var init_Notes = __esm({
|
|
|
4581
4628
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4582
4629
|
...props
|
|
4583
4630
|
},
|
|
4584
|
-
/* @__PURE__ */
|
|
4631
|
+
/* @__PURE__ */ React82.createElement(
|
|
4585
4632
|
"path",
|
|
4586
4633
|
{
|
|
4587
4634
|
d: "M12.7695 10.749C13.2819 10.749 13.6981 11.1644 13.6982 11.6768C13.698 12.1891 13.2819 12.6045 12.7695 12.6045H7.30273C6.79037 12.6045 6.37423 12.1891 6.37402 11.6768C6.37416 11.1644 6.79033 10.749 7.30273 10.749H12.7695Z",
|
|
4588
4635
|
fill: "currentColor"
|
|
4589
4636
|
}
|
|
4590
4637
|
),
|
|
4591
|
-
/* @__PURE__ */
|
|
4638
|
+
/* @__PURE__ */ React82.createElement(
|
|
4592
4639
|
"path",
|
|
4593
4640
|
{
|
|
4594
4641
|
d: "M15.5039 6.37402C16.0162 6.37422 16.4316 6.79037 16.4316 7.30273C16.4315 7.81499 16.0161 8.23027 15.5039 8.23047H7.30273C6.79033 8.23047 6.37416 7.81511 6.37402 7.30273C6.37402 6.79025 6.79025 6.37402 7.30273 6.37402H15.5039Z",
|
|
4595
4642
|
fill: "currentColor"
|
|
4596
4643
|
}
|
|
4597
4644
|
),
|
|
4598
|
-
/* @__PURE__ */
|
|
4645
|
+
/* @__PURE__ */ React82.createElement(
|
|
4599
4646
|
"path",
|
|
4600
4647
|
{
|
|
4601
4648
|
fillRule: "evenodd",
|
|
@@ -4615,7 +4662,7 @@ var Outside_exports = {};
|
|
|
4615
4662
|
__export(Outside_exports, {
|
|
4616
4663
|
default: () => Outside_default
|
|
4617
4664
|
});
|
|
4618
|
-
import * as
|
|
4665
|
+
import * as React83 from "react";
|
|
4619
4666
|
var SvgOutside, Outside_default;
|
|
4620
4667
|
var init_Outside = __esm({
|
|
4621
4668
|
"src/react/Outside.tsx"() {
|
|
@@ -4623,7 +4670,7 @@ var init_Outside = __esm({
|
|
|
4623
4670
|
init_types();
|
|
4624
4671
|
SvgOutside = ({ size = 16, ...props }) => {
|
|
4625
4672
|
const sizeValue = resolveSize(size);
|
|
4626
|
-
return /* @__PURE__ */
|
|
4673
|
+
return /* @__PURE__ */ React83.createElement(
|
|
4627
4674
|
"svg",
|
|
4628
4675
|
{
|
|
4629
4676
|
width: sizeValue,
|
|
@@ -4633,7 +4680,7 @@ var init_Outside = __esm({
|
|
|
4633
4680
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4634
4681
|
...props
|
|
4635
4682
|
},
|
|
4636
|
-
/* @__PURE__ */
|
|
4683
|
+
/* @__PURE__ */ React83.createElement(
|
|
4637
4684
|
"path",
|
|
4638
4685
|
{
|
|
4639
4686
|
fillRule: "evenodd",
|
|
@@ -4642,7 +4689,7 @@ var init_Outside = __esm({
|
|
|
4642
4689
|
fill: "currentColor"
|
|
4643
4690
|
}
|
|
4644
4691
|
),
|
|
4645
|
-
/* @__PURE__ */
|
|
4692
|
+
/* @__PURE__ */ React83.createElement(
|
|
4646
4693
|
"path",
|
|
4647
4694
|
{
|
|
4648
4695
|
fillRule: "evenodd",
|
|
@@ -4651,7 +4698,7 @@ var init_Outside = __esm({
|
|
|
4651
4698
|
fill: "currentColor"
|
|
4652
4699
|
}
|
|
4653
4700
|
),
|
|
4654
|
-
/* @__PURE__ */
|
|
4701
|
+
/* @__PURE__ */ React83.createElement(
|
|
4655
4702
|
"path",
|
|
4656
4703
|
{
|
|
4657
4704
|
fillRule: "evenodd",
|
|
@@ -4660,7 +4707,7 @@ var init_Outside = __esm({
|
|
|
4660
4707
|
fill: "currentColor"
|
|
4661
4708
|
}
|
|
4662
4709
|
),
|
|
4663
|
-
/* @__PURE__ */
|
|
4710
|
+
/* @__PURE__ */ React83.createElement(
|
|
4664
4711
|
"path",
|
|
4665
4712
|
{
|
|
4666
4713
|
fillRule: "evenodd",
|
|
@@ -4669,7 +4716,7 @@ var init_Outside = __esm({
|
|
|
4669
4716
|
fill: "currentColor"
|
|
4670
4717
|
}
|
|
4671
4718
|
),
|
|
4672
|
-
/* @__PURE__ */
|
|
4719
|
+
/* @__PURE__ */ React83.createElement(
|
|
4673
4720
|
"path",
|
|
4674
4721
|
{
|
|
4675
4722
|
fillRule: "evenodd",
|
|
@@ -4678,7 +4725,7 @@ var init_Outside = __esm({
|
|
|
4678
4725
|
fill: "currentColor"
|
|
4679
4726
|
}
|
|
4680
4727
|
),
|
|
4681
|
-
/* @__PURE__ */
|
|
4728
|
+
/* @__PURE__ */ React83.createElement(
|
|
4682
4729
|
"path",
|
|
4683
4730
|
{
|
|
4684
4731
|
fillRule: "evenodd",
|
|
@@ -4687,7 +4734,7 @@ var init_Outside = __esm({
|
|
|
4687
4734
|
fill: "currentColor"
|
|
4688
4735
|
}
|
|
4689
4736
|
),
|
|
4690
|
-
/* @__PURE__ */
|
|
4737
|
+
/* @__PURE__ */ React83.createElement(
|
|
4691
4738
|
"path",
|
|
4692
4739
|
{
|
|
4693
4740
|
fillRule: "evenodd",
|
|
@@ -4696,7 +4743,7 @@ var init_Outside = __esm({
|
|
|
4696
4743
|
fill: "currentColor"
|
|
4697
4744
|
}
|
|
4698
4745
|
),
|
|
4699
|
-
/* @__PURE__ */
|
|
4746
|
+
/* @__PURE__ */ React83.createElement(
|
|
4700
4747
|
"path",
|
|
4701
4748
|
{
|
|
4702
4749
|
fillRule: "evenodd",
|
|
@@ -4716,7 +4763,7 @@ var Parking_exports = {};
|
|
|
4716
4763
|
__export(Parking_exports, {
|
|
4717
4764
|
default: () => Parking_default
|
|
4718
4765
|
});
|
|
4719
|
-
import * as
|
|
4766
|
+
import * as React84 from "react";
|
|
4720
4767
|
var SvgParking, Parking_default;
|
|
4721
4768
|
var init_Parking = __esm({
|
|
4722
4769
|
"src/react/Parking.tsx"() {
|
|
@@ -4724,7 +4771,7 @@ var init_Parking = __esm({
|
|
|
4724
4771
|
init_types();
|
|
4725
4772
|
SvgParking = ({ size = 16, ...props }) => {
|
|
4726
4773
|
const sizeValue = resolveSize(size);
|
|
4727
|
-
return /* @__PURE__ */
|
|
4774
|
+
return /* @__PURE__ */ React84.createElement(
|
|
4728
4775
|
"svg",
|
|
4729
4776
|
{
|
|
4730
4777
|
width: sizeValue,
|
|
@@ -4734,7 +4781,7 @@ var init_Parking = __esm({
|
|
|
4734
4781
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4735
4782
|
...props
|
|
4736
4783
|
},
|
|
4737
|
-
/* @__PURE__ */
|
|
4784
|
+
/* @__PURE__ */ React84.createElement(
|
|
4738
4785
|
"path",
|
|
4739
4786
|
{
|
|
4740
4787
|
fillRule: "evenodd",
|
|
@@ -4743,7 +4790,7 @@ var init_Parking = __esm({
|
|
|
4743
4790
|
fill: "currentColor"
|
|
4744
4791
|
}
|
|
4745
4792
|
),
|
|
4746
|
-
/* @__PURE__ */
|
|
4793
|
+
/* @__PURE__ */ React84.createElement(
|
|
4747
4794
|
"path",
|
|
4748
4795
|
{
|
|
4749
4796
|
fillRule: "evenodd",
|
|
@@ -4752,7 +4799,7 @@ var init_Parking = __esm({
|
|
|
4752
4799
|
fill: "currentColor"
|
|
4753
4800
|
}
|
|
4754
4801
|
),
|
|
4755
|
-
/* @__PURE__ */
|
|
4802
|
+
/* @__PURE__ */ React84.createElement(
|
|
4756
4803
|
"path",
|
|
4757
4804
|
{
|
|
4758
4805
|
fillRule: "evenodd",
|
|
@@ -4761,7 +4808,7 @@ var init_Parking = __esm({
|
|
|
4761
4808
|
fill: "currentColor"
|
|
4762
4809
|
}
|
|
4763
4810
|
),
|
|
4764
|
-
/* @__PURE__ */
|
|
4811
|
+
/* @__PURE__ */ React84.createElement(
|
|
4765
4812
|
"path",
|
|
4766
4813
|
{
|
|
4767
4814
|
fillRule: "evenodd",
|
|
@@ -4770,7 +4817,7 @@ var init_Parking = __esm({
|
|
|
4770
4817
|
fill: "currentColor"
|
|
4771
4818
|
}
|
|
4772
4819
|
),
|
|
4773
|
-
/* @__PURE__ */
|
|
4820
|
+
/* @__PURE__ */ React84.createElement(
|
|
4774
4821
|
"path",
|
|
4775
4822
|
{
|
|
4776
4823
|
fillRule: "evenodd",
|
|
@@ -4790,7 +4837,7 @@ var Patio_exports = {};
|
|
|
4790
4837
|
__export(Patio_exports, {
|
|
4791
4838
|
default: () => Patio_default
|
|
4792
4839
|
});
|
|
4793
|
-
import * as
|
|
4840
|
+
import * as React85 from "react";
|
|
4794
4841
|
var SvgPatio, Patio_default;
|
|
4795
4842
|
var init_Patio = __esm({
|
|
4796
4843
|
"src/react/Patio.tsx"() {
|
|
@@ -4798,7 +4845,7 @@ var init_Patio = __esm({
|
|
|
4798
4845
|
init_types();
|
|
4799
4846
|
SvgPatio = ({ size = 16, ...props }) => {
|
|
4800
4847
|
const sizeValue = resolveSize(size);
|
|
4801
|
-
return /* @__PURE__ */
|
|
4848
|
+
return /* @__PURE__ */ React85.createElement(
|
|
4802
4849
|
"svg",
|
|
4803
4850
|
{
|
|
4804
4851
|
width: sizeValue,
|
|
@@ -4808,7 +4855,7 @@ var init_Patio = __esm({
|
|
|
4808
4855
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4809
4856
|
...props
|
|
4810
4857
|
},
|
|
4811
|
-
/* @__PURE__ */
|
|
4858
|
+
/* @__PURE__ */ React85.createElement(
|
|
4812
4859
|
"path",
|
|
4813
4860
|
{
|
|
4814
4861
|
fillRule: "evenodd",
|
|
@@ -4817,7 +4864,7 @@ var init_Patio = __esm({
|
|
|
4817
4864
|
fill: "currentColor"
|
|
4818
4865
|
}
|
|
4819
4866
|
),
|
|
4820
|
-
/* @__PURE__ */
|
|
4867
|
+
/* @__PURE__ */ React85.createElement(
|
|
4821
4868
|
"path",
|
|
4822
4869
|
{
|
|
4823
4870
|
fillRule: "evenodd",
|
|
@@ -4826,7 +4873,7 @@ var init_Patio = __esm({
|
|
|
4826
4873
|
fill: "currentColor"
|
|
4827
4874
|
}
|
|
4828
4875
|
),
|
|
4829
|
-
/* @__PURE__ */
|
|
4876
|
+
/* @__PURE__ */ React85.createElement(
|
|
4830
4877
|
"path",
|
|
4831
4878
|
{
|
|
4832
4879
|
fillRule: "evenodd",
|
|
@@ -4835,7 +4882,7 @@ var init_Patio = __esm({
|
|
|
4835
4882
|
fill: "currentColor"
|
|
4836
4883
|
}
|
|
4837
4884
|
),
|
|
4838
|
-
/* @__PURE__ */
|
|
4885
|
+
/* @__PURE__ */ React85.createElement(
|
|
4839
4886
|
"path",
|
|
4840
4887
|
{
|
|
4841
4888
|
fillRule: "evenodd",
|
|
@@ -4844,7 +4891,7 @@ var init_Patio = __esm({
|
|
|
4844
4891
|
fill: "currentColor"
|
|
4845
4892
|
}
|
|
4846
4893
|
),
|
|
4847
|
-
/* @__PURE__ */
|
|
4894
|
+
/* @__PURE__ */ React85.createElement(
|
|
4848
4895
|
"path",
|
|
4849
4896
|
{
|
|
4850
4897
|
fillRule: "evenodd",
|
|
@@ -4853,7 +4900,7 @@ var init_Patio = __esm({
|
|
|
4853
4900
|
fill: "currentColor"
|
|
4854
4901
|
}
|
|
4855
4902
|
),
|
|
4856
|
-
/* @__PURE__ */
|
|
4903
|
+
/* @__PURE__ */ React85.createElement(
|
|
4857
4904
|
"path",
|
|
4858
4905
|
{
|
|
4859
4906
|
fillRule: "evenodd",
|
|
@@ -4862,7 +4909,7 @@ var init_Patio = __esm({
|
|
|
4862
4909
|
fill: "currentColor"
|
|
4863
4910
|
}
|
|
4864
4911
|
),
|
|
4865
|
-
/* @__PURE__ */
|
|
4912
|
+
/* @__PURE__ */ React85.createElement(
|
|
4866
4913
|
"path",
|
|
4867
4914
|
{
|
|
4868
4915
|
fillRule: "evenodd",
|
|
@@ -4871,7 +4918,7 @@ var init_Patio = __esm({
|
|
|
4871
4918
|
fill: "currentColor"
|
|
4872
4919
|
}
|
|
4873
4920
|
),
|
|
4874
|
-
/* @__PURE__ */
|
|
4921
|
+
/* @__PURE__ */ React85.createElement(
|
|
4875
4922
|
"path",
|
|
4876
4923
|
{
|
|
4877
4924
|
fillRule: "evenodd",
|
|
@@ -4880,7 +4927,7 @@ var init_Patio = __esm({
|
|
|
4880
4927
|
fill: "currentColor"
|
|
4881
4928
|
}
|
|
4882
4929
|
),
|
|
4883
|
-
/* @__PURE__ */
|
|
4930
|
+
/* @__PURE__ */ React85.createElement(
|
|
4884
4931
|
"path",
|
|
4885
4932
|
{
|
|
4886
4933
|
fillRule: "evenodd",
|
|
@@ -4900,7 +4947,7 @@ var Payments_exports = {};
|
|
|
4900
4947
|
__export(Payments_exports, {
|
|
4901
4948
|
default: () => Payments_default
|
|
4902
4949
|
});
|
|
4903
|
-
import * as
|
|
4950
|
+
import * as React86 from "react";
|
|
4904
4951
|
var SvgPayments, Payments_default;
|
|
4905
4952
|
var init_Payments = __esm({
|
|
4906
4953
|
"src/react/Payments.tsx"() {
|
|
@@ -4908,7 +4955,7 @@ var init_Payments = __esm({
|
|
|
4908
4955
|
init_types();
|
|
4909
4956
|
SvgPayments = ({ size = 16, ...props }) => {
|
|
4910
4957
|
const sizeValue = resolveSize(size);
|
|
4911
|
-
return /* @__PURE__ */
|
|
4958
|
+
return /* @__PURE__ */ React86.createElement(
|
|
4912
4959
|
"svg",
|
|
4913
4960
|
{
|
|
4914
4961
|
width: sizeValue,
|
|
@@ -4918,7 +4965,7 @@ var init_Payments = __esm({
|
|
|
4918
4965
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4919
4966
|
...props
|
|
4920
4967
|
},
|
|
4921
|
-
/* @__PURE__ */
|
|
4968
|
+
/* @__PURE__ */ React86.createElement(
|
|
4922
4969
|
"path",
|
|
4923
4970
|
{
|
|
4924
4971
|
d: "M14 13C13.1667 13 12.4583 12.7083 11.875 12.125C11.2917 11.5417 11 10.8333 11 10C11 9.16667 11.2917 8.45833 11.875 7.875C12.4583 7.29167 13.1667 7 14 7C14.8333 7 15.5417 7.29167 16.125 7.875C16.7083 8.45833 17 9.16667 17 10C17 10.8333 16.7083 11.5417 16.125 12.125C15.5417 12.7083 14.8333 13 14 13ZM7 16C6.45 16 5.97917 15.8042 5.5875 15.4125C5.19583 15.0208 5 14.55 5 14V6C5 5.45 5.19583 4.97917 5.5875 4.5875C5.97917 4.19583 6.45 4 7 4H21C21.55 4 22.0208 4.19583 22.4125 4.5875C22.8042 4.97917 23 5.45 23 6V14C23 14.55 22.8042 15.0208 22.4125 15.4125C22.0208 15.8042 21.55 16 21 16H7ZM9 14H19C19 13.45 19.1958 12.9792 19.5875 12.5875C19.9792 12.1958 20.45 12 21 12V8C20.45 8 19.9792 7.80417 19.5875 7.4125C19.1958 7.02083 19 6.55 19 6H9C9 6.55 8.80417 7.02083 8.4125 7.4125C8.02083 7.80417 7.55 8 7 8V12C7.55 12 8.02083 12.1958 8.4125 12.5875C8.80417 12.9792 9 13.45 9 14ZM20 20H3C2.45 20 1.97917 19.8042 1.5875 19.4125C1.19583 19.0208 1 18.55 1 18V7H3V18H20V20Z",
|
|
@@ -4936,7 +4983,7 @@ var PencilLine_exports = {};
|
|
|
4936
4983
|
__export(PencilLine_exports, {
|
|
4937
4984
|
default: () => PencilLine_default
|
|
4938
4985
|
});
|
|
4939
|
-
import * as
|
|
4986
|
+
import * as React87 from "react";
|
|
4940
4987
|
var SvgPencilLine, PencilLine_default;
|
|
4941
4988
|
var init_PencilLine = __esm({
|
|
4942
4989
|
"src/react/PencilLine.tsx"() {
|
|
@@ -4944,7 +4991,7 @@ var init_PencilLine = __esm({
|
|
|
4944
4991
|
init_types();
|
|
4945
4992
|
SvgPencilLine = ({ size = 16, ...props }) => {
|
|
4946
4993
|
const sizeValue = resolveSize(size);
|
|
4947
|
-
return /* @__PURE__ */
|
|
4994
|
+
return /* @__PURE__ */ React87.createElement(
|
|
4948
4995
|
"svg",
|
|
4949
4996
|
{
|
|
4950
4997
|
width: sizeValue,
|
|
@@ -4954,7 +5001,7 @@ var init_PencilLine = __esm({
|
|
|
4954
5001
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4955
5002
|
...props
|
|
4956
5003
|
},
|
|
4957
|
-
/* @__PURE__ */
|
|
5004
|
+
/* @__PURE__ */ React87.createElement(
|
|
4958
5005
|
"path",
|
|
4959
5006
|
{
|
|
4960
5007
|
fillRule: "evenodd",
|
|
@@ -4963,7 +5010,7 @@ var init_PencilLine = __esm({
|
|
|
4963
5010
|
fill: "currentColor"
|
|
4964
5011
|
}
|
|
4965
5012
|
),
|
|
4966
|
-
/* @__PURE__ */
|
|
5013
|
+
/* @__PURE__ */ React87.createElement(
|
|
4967
5014
|
"path",
|
|
4968
5015
|
{
|
|
4969
5016
|
fillRule: "evenodd",
|
|
@@ -4972,7 +5019,7 @@ var init_PencilLine = __esm({
|
|
|
4972
5019
|
fill: "currentColor"
|
|
4973
5020
|
}
|
|
4974
5021
|
),
|
|
4975
|
-
/* @__PURE__ */
|
|
5022
|
+
/* @__PURE__ */ React87.createElement(
|
|
4976
5023
|
"path",
|
|
4977
5024
|
{
|
|
4978
5025
|
fillRule: "evenodd",
|
|
@@ -4992,7 +5039,7 @@ var PentHouse_exports = {};
|
|
|
4992
5039
|
__export(PentHouse_exports, {
|
|
4993
5040
|
default: () => PentHouse_default
|
|
4994
5041
|
});
|
|
4995
|
-
import * as
|
|
5042
|
+
import * as React88 from "react";
|
|
4996
5043
|
var SvgPentHouse, PentHouse_default;
|
|
4997
5044
|
var init_PentHouse = __esm({
|
|
4998
5045
|
"src/react/PentHouse.tsx"() {
|
|
@@ -5000,7 +5047,7 @@ var init_PentHouse = __esm({
|
|
|
5000
5047
|
init_types();
|
|
5001
5048
|
SvgPentHouse = ({ size = 16, ...props }) => {
|
|
5002
5049
|
const sizeValue = resolveSize(size);
|
|
5003
|
-
return /* @__PURE__ */
|
|
5050
|
+
return /* @__PURE__ */ React88.createElement(
|
|
5004
5051
|
"svg",
|
|
5005
5052
|
{
|
|
5006
5053
|
width: sizeValue,
|
|
@@ -5010,7 +5057,7 @@ var init_PentHouse = __esm({
|
|
|
5010
5057
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5011
5058
|
...props
|
|
5012
5059
|
},
|
|
5013
|
-
/* @__PURE__ */
|
|
5060
|
+
/* @__PURE__ */ React88.createElement(
|
|
5014
5061
|
"path",
|
|
5015
5062
|
{
|
|
5016
5063
|
fillRule: "evenodd",
|
|
@@ -5019,7 +5066,7 @@ var init_PentHouse = __esm({
|
|
|
5019
5066
|
fill: "currentColor"
|
|
5020
5067
|
}
|
|
5021
5068
|
),
|
|
5022
|
-
/* @__PURE__ */
|
|
5069
|
+
/* @__PURE__ */ React88.createElement(
|
|
5023
5070
|
"path",
|
|
5024
5071
|
{
|
|
5025
5072
|
fillRule: "evenodd",
|
|
@@ -5028,7 +5075,7 @@ var init_PentHouse = __esm({
|
|
|
5028
5075
|
fill: "currentColor"
|
|
5029
5076
|
}
|
|
5030
5077
|
),
|
|
5031
|
-
/* @__PURE__ */
|
|
5078
|
+
/* @__PURE__ */ React88.createElement(
|
|
5032
5079
|
"path",
|
|
5033
5080
|
{
|
|
5034
5081
|
fillRule: "evenodd",
|
|
@@ -5037,7 +5084,7 @@ var init_PentHouse = __esm({
|
|
|
5037
5084
|
fill: "currentColor"
|
|
5038
5085
|
}
|
|
5039
5086
|
),
|
|
5040
|
-
/* @__PURE__ */
|
|
5087
|
+
/* @__PURE__ */ React88.createElement(
|
|
5041
5088
|
"path",
|
|
5042
5089
|
{
|
|
5043
5090
|
fillRule: "evenodd",
|
|
@@ -5046,7 +5093,7 @@ var init_PentHouse = __esm({
|
|
|
5046
5093
|
fill: "currentColor"
|
|
5047
5094
|
}
|
|
5048
5095
|
),
|
|
5049
|
-
/* @__PURE__ */
|
|
5096
|
+
/* @__PURE__ */ React88.createElement(
|
|
5050
5097
|
"path",
|
|
5051
5098
|
{
|
|
5052
5099
|
fillRule: "evenodd",
|
|
@@ -5055,7 +5102,7 @@ var init_PentHouse = __esm({
|
|
|
5055
5102
|
fill: "currentColor"
|
|
5056
5103
|
}
|
|
5057
5104
|
),
|
|
5058
|
-
/* @__PURE__ */
|
|
5105
|
+
/* @__PURE__ */ React88.createElement(
|
|
5059
5106
|
"path",
|
|
5060
5107
|
{
|
|
5061
5108
|
fillRule: "evenodd",
|
|
@@ -5064,7 +5111,7 @@ var init_PentHouse = __esm({
|
|
|
5064
5111
|
fill: "currentColor"
|
|
5065
5112
|
}
|
|
5066
5113
|
),
|
|
5067
|
-
/* @__PURE__ */
|
|
5114
|
+
/* @__PURE__ */ React88.createElement(
|
|
5068
5115
|
"path",
|
|
5069
5116
|
{
|
|
5070
5117
|
fillRule: "evenodd",
|
|
@@ -5084,7 +5131,7 @@ var Pet_exports = {};
|
|
|
5084
5131
|
__export(Pet_exports, {
|
|
5085
5132
|
default: () => Pet_default
|
|
5086
5133
|
});
|
|
5087
|
-
import * as
|
|
5134
|
+
import * as React89 from "react";
|
|
5088
5135
|
var SvgPet, Pet_default;
|
|
5089
5136
|
var init_Pet = __esm({
|
|
5090
5137
|
"src/react/Pet.tsx"() {
|
|
@@ -5092,7 +5139,7 @@ var init_Pet = __esm({
|
|
|
5092
5139
|
init_types();
|
|
5093
5140
|
SvgPet = ({ size = 16, ...props }) => {
|
|
5094
5141
|
const sizeValue = resolveSize(size);
|
|
5095
|
-
return /* @__PURE__ */
|
|
5142
|
+
return /* @__PURE__ */ React89.createElement(
|
|
5096
5143
|
"svg",
|
|
5097
5144
|
{
|
|
5098
5145
|
width: sizeValue,
|
|
@@ -5102,7 +5149,7 @@ var init_Pet = __esm({
|
|
|
5102
5149
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5103
5150
|
...props
|
|
5104
5151
|
},
|
|
5105
|
-
/* @__PURE__ */
|
|
5152
|
+
/* @__PURE__ */ React89.createElement(
|
|
5106
5153
|
"path",
|
|
5107
5154
|
{
|
|
5108
5155
|
fillRule: "evenodd",
|
|
@@ -5111,7 +5158,7 @@ var init_Pet = __esm({
|
|
|
5111
5158
|
fill: "currentColor"
|
|
5112
5159
|
}
|
|
5113
5160
|
),
|
|
5114
|
-
/* @__PURE__ */
|
|
5161
|
+
/* @__PURE__ */ React89.createElement(
|
|
5115
5162
|
"path",
|
|
5116
5163
|
{
|
|
5117
5164
|
fillRule: "evenodd",
|
|
@@ -5120,7 +5167,7 @@ var init_Pet = __esm({
|
|
|
5120
5167
|
fill: "currentColor"
|
|
5121
5168
|
}
|
|
5122
5169
|
),
|
|
5123
|
-
/* @__PURE__ */
|
|
5170
|
+
/* @__PURE__ */ React89.createElement(
|
|
5124
5171
|
"path",
|
|
5125
5172
|
{
|
|
5126
5173
|
fillRule: "evenodd",
|
|
@@ -5129,7 +5176,7 @@ var init_Pet = __esm({
|
|
|
5129
5176
|
fill: "currentColor"
|
|
5130
5177
|
}
|
|
5131
5178
|
),
|
|
5132
|
-
/* @__PURE__ */
|
|
5179
|
+
/* @__PURE__ */ React89.createElement(
|
|
5133
5180
|
"path",
|
|
5134
5181
|
{
|
|
5135
5182
|
fillRule: "evenodd",
|
|
@@ -5138,7 +5185,7 @@ var init_Pet = __esm({
|
|
|
5138
5185
|
fill: "currentColor"
|
|
5139
5186
|
}
|
|
5140
5187
|
),
|
|
5141
|
-
/* @__PURE__ */
|
|
5188
|
+
/* @__PURE__ */ React89.createElement(
|
|
5142
5189
|
"path",
|
|
5143
5190
|
{
|
|
5144
5191
|
fillRule: "evenodd",
|
|
@@ -5147,7 +5194,7 @@ var init_Pet = __esm({
|
|
|
5147
5194
|
fill: "currentColor"
|
|
5148
5195
|
}
|
|
5149
5196
|
),
|
|
5150
|
-
/* @__PURE__ */
|
|
5197
|
+
/* @__PURE__ */ React89.createElement(
|
|
5151
5198
|
"path",
|
|
5152
5199
|
{
|
|
5153
5200
|
fillRule: "evenodd",
|
|
@@ -5167,7 +5214,7 @@ var PhoneLinear_exports = {};
|
|
|
5167
5214
|
__export(PhoneLinear_exports, {
|
|
5168
5215
|
default: () => PhoneLinear_default
|
|
5169
5216
|
});
|
|
5170
|
-
import * as
|
|
5217
|
+
import * as React90 from "react";
|
|
5171
5218
|
var SvgPhoneLinear, PhoneLinear_default;
|
|
5172
5219
|
var init_PhoneLinear = __esm({
|
|
5173
5220
|
"src/react/PhoneLinear.tsx"() {
|
|
@@ -5175,7 +5222,7 @@ var init_PhoneLinear = __esm({
|
|
|
5175
5222
|
init_types();
|
|
5176
5223
|
SvgPhoneLinear = ({ size = 16, ...props }) => {
|
|
5177
5224
|
const sizeValue = resolveSize(size);
|
|
5178
|
-
return /* @__PURE__ */
|
|
5225
|
+
return /* @__PURE__ */ React90.createElement(
|
|
5179
5226
|
"svg",
|
|
5180
5227
|
{
|
|
5181
5228
|
width: sizeValue,
|
|
@@ -5185,7 +5232,7 @@ var init_PhoneLinear = __esm({
|
|
|
5185
5232
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5186
5233
|
...props
|
|
5187
5234
|
},
|
|
5188
|
-
/* @__PURE__ */
|
|
5235
|
+
/* @__PURE__ */ React90.createElement(
|
|
5189
5236
|
"path",
|
|
5190
5237
|
{
|
|
5191
5238
|
d: "M2.03296 7.0498C2.03301 6.32705 2.16087 5.62378 2.42358 4.9668C2.69267 4.28489 3.11486 3.66908 3.68433 3.13184C4.39753 2.43522 5.24516 2.03418 6.18823 2.03418C6.56349 2.03424 6.9463 2.11459 7.29858 2.28125C7.66527 2.45049 8.00211 2.71079 8.26343 3.08496L10.3669 6.04883C10.5611 6.31906 10.715 6.58748 10.8279 6.86328C10.9416 7.13229 11.0221 7.439 11.0222 7.75684C11.0222 8.15556 10.9049 8.53405 10.7009 8.86914L10.7 8.86816C10.536 9.15169 10.3181 9.42026 10.072 9.66797L9.55444 10.2061C9.68722 10.4205 9.90014 10.714 10.2136 11.085L10.8308 11.7793C11.0394 12.0074 11.2549 12.2359 11.4783 12.4639L12.1843 13.1396C12.4148 13.3537 12.6419 13.5573 12.8699 13.751C13.2453 14.0686 13.5438 14.2787 13.7654 14.4102L14.2761 13.9062C14.5236 13.6592 14.7967 13.4343 15.0935 13.2705L15.2195 13.1992C15.518 13.041 15.845 12.9492 16.2048 12.9492C16.5089 12.9492 16.8058 13.0141 17.0984 13.1338C17.3733 13.2462 17.6383 13.3994 17.8982 13.5762L17.906 13.5811L17.9138 13.5869L20.9138 15.7168C21.2179 15.9288 21.4689 16.1936 21.6443 16.5225L21.7156 16.6689L21.7214 16.6826L21.7273 16.6973C21.8508 17.006 21.9373 17.3467 21.9373 17.7383C21.9372 18.1995 21.8337 18.6658 21.6238 19.1104C21.434 19.5123 21.1859 19.8954 20.8601 20.2549C20.3378 20.8305 19.7416 21.2675 19.0525 21.5508C18.3948 21.8248 17.6879 21.9648 16.9392 21.9648C15.8724 21.9648 14.7643 21.714 13.6316 21.2314C12.5201 20.7579 11.4182 20.1241 10.3357 19.3359L10.3347 19.335C9.25516 18.5464 8.2325 17.6746 7.25854 16.71L7.25269 16.7031C6.28835 15.7294 5.41555 14.7071 4.6355 13.6357L4.63257 13.6318C3.85754 12.5544 3.22319 11.4624 2.75757 10.3662L2.75659 10.3643C2.28356 9.24081 2.03296 8.13301 2.03296 7.0498ZM3.83374 7.0498C3.83374 7.85158 4.01818 8.72047 4.41479 9.66309L4.57397 10.0205C4.9619 10.8577 5.46914 11.7118 6.09058 12.5762L6.36597 12.9473C7.01956 13.8092 7.74178 14.6386 8.53198 15.4365C9.4415 16.3367 10.3924 17.1482 11.3953 17.8809L11.7644 18.1426C12.6253 18.7361 13.4849 19.2123 14.3367 19.5752C15.2888 19.9809 16.1569 20.165 16.9392 20.165C17.4595 20.165 17.931 20.0689 18.3611 19.8896L18.366 19.8877C18.7807 19.7176 19.1623 19.448 19.5271 19.0459C19.7269 18.8253 19.8775 18.5923 19.9958 18.3418C20.0941 18.1337 20.1365 17.9296 20.1365 17.7383C20.1365 17.6275 20.1154 17.52 20.0632 17.3848C20.039 17.3335 19.9937 17.2687 19.8806 17.1904L19.8718 17.1846L16.8787 15.0596C16.6891 14.9312 16.539 14.8498 16.4167 14.7998C16.3109 14.7565 16.2451 14.749 16.2048 14.749C16.1628 14.749 16.1141 14.7568 16.0291 14.8086L16.0037 14.8242L15.9773 14.8379C15.8791 14.8892 15.7346 14.9936 15.5447 15.1836L15.5408 15.1875L14.8523 15.8682L14.8513 15.8672C14.5927 16.1239 14.2516 16.2811 13.8484 16.2812C13.6971 16.2812 13.5095 16.264 13.3054 16.1875L13.2859 16.1807L13.2664 16.1719C13.2224 16.153 13.1818 16.134 13.158 16.123C13.1328 16.1115 13.1238 16.1084 13.1238 16.1084L13.0798 16.0898L13.0369 16.0674C12.6503 15.8627 12.2055 15.5471 11.7078 15.126L11.7058 15.124C11.2021 14.6963 10.7132 14.2355 10.2166 13.748L10.2048 13.7363C9.71738 13.2395 9.26936 12.7446 8.85229 12.2627L8.84546 12.2549C8.43086 11.7649 8.10584 11.3213 7.90015 10.9443L7.86108 10.874L7.83569 10.7979C7.83405 10.7939 7.83126 10.7883 7.82788 10.7803C7.81747 10.7557 7.79565 10.7047 7.77417 10.6475L7.75659 10.5996L7.7439 10.5498C7.7275 10.4842 7.71422 10.417 7.70483 10.3467L7.69019 10.123L7.69604 9.9873C7.72414 9.67259 7.85138 9.37104 8.09839 9.12402L8.77515 8.4209L8.78784 8.4082C8.9646 8.23144 9.08062 8.07757 9.14819 7.95801L9.15503 7.94531L9.16284 7.93262C9.21259 7.85081 9.22241 7.79321 9.22241 7.75684C9.2223 7.73497 9.21389 7.66631 9.16772 7.55859L9.16187 7.54492C9.11221 7.42362 9.03257 7.27691 8.9021 7.0957L8.89819 7.09082L6.79565 4.12598L6.78979 4.11816C6.72557 4.02539 6.64667 3.96211 6.54468 3.91504L6.53296 3.90918C6.43566 3.86248 6.31587 3.83502 6.18823 3.83496C5.79566 3.83496 5.37766 3.99039 4.93335 4.42773L4.91968 4.44141C4.52964 4.80939 4.26353 5.20778 4.09741 5.62988L4.09546 5.63477C3.92328 6.06522 3.83379 6.54018 3.83374 7.0498Z",
|
|
@@ -5203,7 +5250,7 @@ var PinMapSolid_exports = {};
|
|
|
5203
5250
|
__export(PinMapSolid_exports, {
|
|
5204
5251
|
default: () => PinMapSolid_default
|
|
5205
5252
|
});
|
|
5206
|
-
import * as
|
|
5253
|
+
import * as React91 from "react";
|
|
5207
5254
|
var SvgPinMapSolid, PinMapSolid_default;
|
|
5208
5255
|
var init_PinMapSolid = __esm({
|
|
5209
5256
|
"src/react/PinMapSolid.tsx"() {
|
|
@@ -5211,7 +5258,7 @@ var init_PinMapSolid = __esm({
|
|
|
5211
5258
|
init_types();
|
|
5212
5259
|
SvgPinMapSolid = ({ size = 16, ...props }) => {
|
|
5213
5260
|
const sizeValue = resolveSize(size);
|
|
5214
|
-
return /* @__PURE__ */
|
|
5261
|
+
return /* @__PURE__ */ React91.createElement(
|
|
5215
5262
|
"svg",
|
|
5216
5263
|
{
|
|
5217
5264
|
width: sizeValue,
|
|
@@ -5221,7 +5268,7 @@ var init_PinMapSolid = __esm({
|
|
|
5221
5268
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5222
5269
|
...props
|
|
5223
5270
|
},
|
|
5224
|
-
/* @__PURE__ */
|
|
5271
|
+
/* @__PURE__ */ React91.createElement(
|
|
5225
5272
|
"path",
|
|
5226
5273
|
{
|
|
5227
5274
|
fillRule: "evenodd",
|
|
@@ -5241,7 +5288,7 @@ var Plus_exports = {};
|
|
|
5241
5288
|
__export(Plus_exports, {
|
|
5242
5289
|
default: () => Plus_default
|
|
5243
5290
|
});
|
|
5244
|
-
import * as
|
|
5291
|
+
import * as React92 from "react";
|
|
5245
5292
|
var SvgPlus, Plus_default;
|
|
5246
5293
|
var init_Plus = __esm({
|
|
5247
5294
|
"src/react/Plus.tsx"() {
|
|
@@ -5249,7 +5296,7 @@ var init_Plus = __esm({
|
|
|
5249
5296
|
init_types();
|
|
5250
5297
|
SvgPlus = ({ size = 16, ...props }) => {
|
|
5251
5298
|
const sizeValue = resolveSize(size);
|
|
5252
|
-
return /* @__PURE__ */
|
|
5299
|
+
return /* @__PURE__ */ React92.createElement(
|
|
5253
5300
|
"svg",
|
|
5254
5301
|
{
|
|
5255
5302
|
width: sizeValue,
|
|
@@ -5259,7 +5306,7 @@ var init_Plus = __esm({
|
|
|
5259
5306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5260
5307
|
...props
|
|
5261
5308
|
},
|
|
5262
|
-
/* @__PURE__ */
|
|
5309
|
+
/* @__PURE__ */ React92.createElement(
|
|
5263
5310
|
"path",
|
|
5264
5311
|
{
|
|
5265
5312
|
d: "M11 19V13H5C4.44772 13 4 12.5523 4 12C4 11.4477 4.44772 11 5 11H11V5C11 4.44772 11.4477 4 12 4C12.5523 4 13 4.44772 13 5V11H19C19.5523 11 20 11.4477 20 12C20 12.5523 19.5523 13 19 13H13V19C13 19.5523 12.5523 20 12 20C11.4477 20 11 19.5523 11 19Z",
|
|
@@ -5277,7 +5324,7 @@ var Promotion_exports = {};
|
|
|
5277
5324
|
__export(Promotion_exports, {
|
|
5278
5325
|
default: () => Promotion_default
|
|
5279
5326
|
});
|
|
5280
|
-
import * as
|
|
5327
|
+
import * as React93 from "react";
|
|
5281
5328
|
var SvgPromotion, Promotion_default;
|
|
5282
5329
|
var init_Promotion = __esm({
|
|
5283
5330
|
"src/react/Promotion.tsx"() {
|
|
@@ -5285,7 +5332,7 @@ var init_Promotion = __esm({
|
|
|
5285
5332
|
init_types();
|
|
5286
5333
|
SvgPromotion = ({ size = 16, ...props }) => {
|
|
5287
5334
|
const sizeValue = resolveSize(size);
|
|
5288
|
-
return /* @__PURE__ */
|
|
5335
|
+
return /* @__PURE__ */ React93.createElement(
|
|
5289
5336
|
"svg",
|
|
5290
5337
|
{
|
|
5291
5338
|
width: sizeValue,
|
|
@@ -5295,7 +5342,7 @@ var init_Promotion = __esm({
|
|
|
5295
5342
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5296
5343
|
...props
|
|
5297
5344
|
},
|
|
5298
|
-
/* @__PURE__ */
|
|
5345
|
+
/* @__PURE__ */ React93.createElement(
|
|
5299
5346
|
"path",
|
|
5300
5347
|
{
|
|
5301
5348
|
fillRule: "evenodd",
|
|
@@ -5304,7 +5351,7 @@ var init_Promotion = __esm({
|
|
|
5304
5351
|
fill: "currentColor"
|
|
5305
5352
|
}
|
|
5306
5353
|
),
|
|
5307
|
-
/* @__PURE__ */
|
|
5354
|
+
/* @__PURE__ */ React93.createElement(
|
|
5308
5355
|
"path",
|
|
5309
5356
|
{
|
|
5310
5357
|
fillRule: "evenodd",
|
|
@@ -5313,7 +5360,7 @@ var init_Promotion = __esm({
|
|
|
5313
5360
|
fill: "currentColor"
|
|
5314
5361
|
}
|
|
5315
5362
|
),
|
|
5316
|
-
/* @__PURE__ */
|
|
5363
|
+
/* @__PURE__ */ React93.createElement(
|
|
5317
5364
|
"path",
|
|
5318
5365
|
{
|
|
5319
5366
|
fillRule: "evenodd",
|
|
@@ -5322,7 +5369,7 @@ var init_Promotion = __esm({
|
|
|
5322
5369
|
fill: "currentColor"
|
|
5323
5370
|
}
|
|
5324
5371
|
),
|
|
5325
|
-
/* @__PURE__ */
|
|
5372
|
+
/* @__PURE__ */ React93.createElement(
|
|
5326
5373
|
"path",
|
|
5327
5374
|
{
|
|
5328
5375
|
fillRule: "evenodd",
|
|
@@ -5342,7 +5389,7 @@ var PropertiesFilled_exports = {};
|
|
|
5342
5389
|
__export(PropertiesFilled_exports, {
|
|
5343
5390
|
default: () => PropertiesFilled_default
|
|
5344
5391
|
});
|
|
5345
|
-
import * as
|
|
5392
|
+
import * as React94 from "react";
|
|
5346
5393
|
var SvgPropertiesFilled, PropertiesFilled_default;
|
|
5347
5394
|
var init_PropertiesFilled = __esm({
|
|
5348
5395
|
"src/react/PropertiesFilled.tsx"() {
|
|
@@ -5350,7 +5397,7 @@ var init_PropertiesFilled = __esm({
|
|
|
5350
5397
|
init_types();
|
|
5351
5398
|
SvgPropertiesFilled = ({ size = 16, ...props }) => {
|
|
5352
5399
|
const sizeValue = resolveSize(size);
|
|
5353
|
-
return /* @__PURE__ */
|
|
5400
|
+
return /* @__PURE__ */ React94.createElement(
|
|
5354
5401
|
"svg",
|
|
5355
5402
|
{
|
|
5356
5403
|
width: sizeValue,
|
|
@@ -5360,7 +5407,7 @@ var init_PropertiesFilled = __esm({
|
|
|
5360
5407
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5361
5408
|
...props
|
|
5362
5409
|
},
|
|
5363
|
-
/* @__PURE__ */
|
|
5410
|
+
/* @__PURE__ */ React94.createElement(
|
|
5364
5411
|
"path",
|
|
5365
5412
|
{
|
|
5366
5413
|
fillRule: "evenodd",
|
|
@@ -5369,7 +5416,7 @@ var init_PropertiesFilled = __esm({
|
|
|
5369
5416
|
fill: "currentColor"
|
|
5370
5417
|
}
|
|
5371
5418
|
),
|
|
5372
|
-
/* @__PURE__ */
|
|
5419
|
+
/* @__PURE__ */ React94.createElement(
|
|
5373
5420
|
"path",
|
|
5374
5421
|
{
|
|
5375
5422
|
fillRule: "evenodd",
|
|
@@ -5378,7 +5425,7 @@ var init_PropertiesFilled = __esm({
|
|
|
5378
5425
|
fill: "currentColor"
|
|
5379
5426
|
}
|
|
5380
5427
|
),
|
|
5381
|
-
/* @__PURE__ */
|
|
5428
|
+
/* @__PURE__ */ React94.createElement(
|
|
5382
5429
|
"path",
|
|
5383
5430
|
{
|
|
5384
5431
|
d: "M16.0356 0.902344C17.6923 0.902608 19.0356 2.24565 19.0356 3.90234V19.999C19.0356 21.6559 17.6915 22.999 16.0347 22.999H8.00049C6.34363 22.999 5.00049 21.6559 5.00049 19.999V3.90234C5.00049 2.24549 6.34363 0.902344 8.00049 0.902344H16.0356ZM10.0005 17C9.4482 17 9.00049 17.4477 9.00049 18C9.00051 18.5523 9.44822 19 10.0005 19H14.0005C14.5525 18.9997 15.0005 18.5521 15.0005 18C15.0005 17.4479 14.5525 17.0003 14.0005 17H10.0005ZM10.0005 13C9.4482 13 9.00049 13.4477 9.00049 14C9.00051 14.5523 9.44822 15 10.0005 15H14.0005C14.5525 14.9997 15.0005 14.5521 15.0005 14C15.0005 13.4479 14.5525 13.0003 14.0005 13H10.0005ZM10.0005 9C9.4482 9 9.00049 9.44771 9.00049 10C9.00051 10.5523 9.44822 11 10.0005 11H14.0005C14.5525 10.9997 15.0005 10.5521 15.0005 10C15.0005 9.44788 14.5525 9.00026 14.0005 9H10.0005ZM10.0005 5C9.4482 5 9.00049 5.44772 9.00049 6C9.00051 6.55226 9.44822 7 10.0005 7H14.0005C14.5525 6.99974 15.0005 6.5521 15.0005 6C15.0005 5.44788 14.5525 5.00026 14.0005 5H10.0005Z",
|
|
@@ -5396,7 +5443,7 @@ var PropertiesLinear_exports = {};
|
|
|
5396
5443
|
__export(PropertiesLinear_exports, {
|
|
5397
5444
|
default: () => PropertiesLinear_default
|
|
5398
5445
|
});
|
|
5399
|
-
import * as
|
|
5446
|
+
import * as React95 from "react";
|
|
5400
5447
|
var SvgPropertiesLinear, PropertiesLinear_default;
|
|
5401
5448
|
var init_PropertiesLinear = __esm({
|
|
5402
5449
|
"src/react/PropertiesLinear.tsx"() {
|
|
@@ -5404,7 +5451,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5404
5451
|
init_types();
|
|
5405
5452
|
SvgPropertiesLinear = ({ size = 16, ...props }) => {
|
|
5406
5453
|
const sizeValue = resolveSize(size);
|
|
5407
|
-
return /* @__PURE__ */
|
|
5454
|
+
return /* @__PURE__ */ React95.createElement(
|
|
5408
5455
|
"svg",
|
|
5409
5456
|
{
|
|
5410
5457
|
width: sizeValue,
|
|
@@ -5414,7 +5461,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5414
5461
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5415
5462
|
...props
|
|
5416
5463
|
},
|
|
5417
|
-
/* @__PURE__ */
|
|
5464
|
+
/* @__PURE__ */ React95.createElement(
|
|
5418
5465
|
"path",
|
|
5419
5466
|
{
|
|
5420
5467
|
fillRule: "evenodd",
|
|
@@ -5423,7 +5470,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5423
5470
|
fill: "currentColor"
|
|
5424
5471
|
}
|
|
5425
5472
|
),
|
|
5426
|
-
/* @__PURE__ */
|
|
5473
|
+
/* @__PURE__ */ React95.createElement(
|
|
5427
5474
|
"path",
|
|
5428
5475
|
{
|
|
5429
5476
|
fillRule: "evenodd",
|
|
@@ -5432,7 +5479,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5432
5479
|
fill: "currentColor"
|
|
5433
5480
|
}
|
|
5434
5481
|
),
|
|
5435
|
-
/* @__PURE__ */
|
|
5482
|
+
/* @__PURE__ */ React95.createElement(
|
|
5436
5483
|
"path",
|
|
5437
5484
|
{
|
|
5438
5485
|
fillRule: "evenodd",
|
|
@@ -5441,7 +5488,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5441
5488
|
fill: "currentColor"
|
|
5442
5489
|
}
|
|
5443
5490
|
),
|
|
5444
|
-
/* @__PURE__ */
|
|
5491
|
+
/* @__PURE__ */ React95.createElement(
|
|
5445
5492
|
"path",
|
|
5446
5493
|
{
|
|
5447
5494
|
fillRule: "evenodd",
|
|
@@ -5450,7 +5497,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5450
5497
|
fill: "currentColor"
|
|
5451
5498
|
}
|
|
5452
5499
|
),
|
|
5453
|
-
/* @__PURE__ */
|
|
5500
|
+
/* @__PURE__ */ React95.createElement(
|
|
5454
5501
|
"path",
|
|
5455
5502
|
{
|
|
5456
5503
|
fillRule: "evenodd",
|
|
@@ -5459,7 +5506,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5459
5506
|
fill: "currentColor"
|
|
5460
5507
|
}
|
|
5461
5508
|
),
|
|
5462
|
-
/* @__PURE__ */
|
|
5509
|
+
/* @__PURE__ */ React95.createElement(
|
|
5463
5510
|
"path",
|
|
5464
5511
|
{
|
|
5465
5512
|
fillRule: "evenodd",
|
|
@@ -5468,7 +5515,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5468
5515
|
fill: "currentColor"
|
|
5469
5516
|
}
|
|
5470
5517
|
),
|
|
5471
|
-
/* @__PURE__ */
|
|
5518
|
+
/* @__PURE__ */ React95.createElement(
|
|
5472
5519
|
"path",
|
|
5473
5520
|
{
|
|
5474
5521
|
fillRule: "evenodd",
|
|
@@ -5488,7 +5535,7 @@ var Rent_exports = {};
|
|
|
5488
5535
|
__export(Rent_exports, {
|
|
5489
5536
|
default: () => Rent_default
|
|
5490
5537
|
});
|
|
5491
|
-
import * as
|
|
5538
|
+
import * as React96 from "react";
|
|
5492
5539
|
var SvgRent, Rent_default;
|
|
5493
5540
|
var init_Rent = __esm({
|
|
5494
5541
|
"src/react/Rent.tsx"() {
|
|
@@ -5496,7 +5543,7 @@ var init_Rent = __esm({
|
|
|
5496
5543
|
init_types();
|
|
5497
5544
|
SvgRent = ({ size = 16, ...props }) => {
|
|
5498
5545
|
const sizeValue = resolveSize(size);
|
|
5499
|
-
return /* @__PURE__ */
|
|
5546
|
+
return /* @__PURE__ */ React96.createElement(
|
|
5500
5547
|
"svg",
|
|
5501
5548
|
{
|
|
5502
5549
|
width: sizeValue,
|
|
@@ -5506,7 +5553,7 @@ var init_Rent = __esm({
|
|
|
5506
5553
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5507
5554
|
...props
|
|
5508
5555
|
},
|
|
5509
|
-
/* @__PURE__ */
|
|
5556
|
+
/* @__PURE__ */ React96.createElement(
|
|
5510
5557
|
"path",
|
|
5511
5558
|
{
|
|
5512
5559
|
fillRule: "evenodd",
|
|
@@ -5515,7 +5562,7 @@ var init_Rent = __esm({
|
|
|
5515
5562
|
fill: "currentColor"
|
|
5516
5563
|
}
|
|
5517
5564
|
),
|
|
5518
|
-
/* @__PURE__ */
|
|
5565
|
+
/* @__PURE__ */ React96.createElement(
|
|
5519
5566
|
"path",
|
|
5520
5567
|
{
|
|
5521
5568
|
fillRule: "evenodd",
|
|
@@ -5524,7 +5571,7 @@ var init_Rent = __esm({
|
|
|
5524
5571
|
fill: "currentColor"
|
|
5525
5572
|
}
|
|
5526
5573
|
),
|
|
5527
|
-
/* @__PURE__ */
|
|
5574
|
+
/* @__PURE__ */ React96.createElement(
|
|
5528
5575
|
"path",
|
|
5529
5576
|
{
|
|
5530
5577
|
fillRule: "evenodd",
|
|
@@ -5544,7 +5591,7 @@ var Restaurant_exports = {};
|
|
|
5544
5591
|
__export(Restaurant_exports, {
|
|
5545
5592
|
default: () => Restaurant_default
|
|
5546
5593
|
});
|
|
5547
|
-
import * as
|
|
5594
|
+
import * as React97 from "react";
|
|
5548
5595
|
var SvgRestaurant, Restaurant_default;
|
|
5549
5596
|
var init_Restaurant = __esm({
|
|
5550
5597
|
"src/react/Restaurant.tsx"() {
|
|
@@ -5552,7 +5599,7 @@ var init_Restaurant = __esm({
|
|
|
5552
5599
|
init_types();
|
|
5553
5600
|
SvgRestaurant = ({ size = 16, ...props }) => {
|
|
5554
5601
|
const sizeValue = resolveSize(size);
|
|
5555
|
-
return /* @__PURE__ */
|
|
5602
|
+
return /* @__PURE__ */ React97.createElement(
|
|
5556
5603
|
"svg",
|
|
5557
5604
|
{
|
|
5558
5605
|
width: sizeValue,
|
|
@@ -5562,7 +5609,7 @@ var init_Restaurant = __esm({
|
|
|
5562
5609
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5563
5610
|
...props
|
|
5564
5611
|
},
|
|
5565
|
-
/* @__PURE__ */
|
|
5612
|
+
/* @__PURE__ */ React97.createElement(
|
|
5566
5613
|
"path",
|
|
5567
5614
|
{
|
|
5568
5615
|
fillRule: "evenodd",
|
|
@@ -5571,7 +5618,7 @@ var init_Restaurant = __esm({
|
|
|
5571
5618
|
fill: "currentColor"
|
|
5572
5619
|
}
|
|
5573
5620
|
),
|
|
5574
|
-
/* @__PURE__ */
|
|
5621
|
+
/* @__PURE__ */ React97.createElement(
|
|
5575
5622
|
"path",
|
|
5576
5623
|
{
|
|
5577
5624
|
fillRule: "evenodd",
|
|
@@ -5591,7 +5638,7 @@ var Sale_exports = {};
|
|
|
5591
5638
|
__export(Sale_exports, {
|
|
5592
5639
|
default: () => Sale_default
|
|
5593
5640
|
});
|
|
5594
|
-
import * as
|
|
5641
|
+
import * as React98 from "react";
|
|
5595
5642
|
var SvgSale, Sale_default;
|
|
5596
5643
|
var init_Sale = __esm({
|
|
5597
5644
|
"src/react/Sale.tsx"() {
|
|
@@ -5599,7 +5646,7 @@ var init_Sale = __esm({
|
|
|
5599
5646
|
init_types();
|
|
5600
5647
|
SvgSale = ({ size = 16, ...props }) => {
|
|
5601
5648
|
const sizeValue = resolveSize(size);
|
|
5602
|
-
return /* @__PURE__ */
|
|
5649
|
+
return /* @__PURE__ */ React98.createElement(
|
|
5603
5650
|
"svg",
|
|
5604
5651
|
{
|
|
5605
5652
|
width: sizeValue,
|
|
@@ -5609,7 +5656,7 @@ var init_Sale = __esm({
|
|
|
5609
5656
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5610
5657
|
...props
|
|
5611
5658
|
},
|
|
5612
|
-
/* @__PURE__ */
|
|
5659
|
+
/* @__PURE__ */ React98.createElement(
|
|
5613
5660
|
"path",
|
|
5614
5661
|
{
|
|
5615
5662
|
fillRule: "evenodd",
|
|
@@ -5618,7 +5665,7 @@ var init_Sale = __esm({
|
|
|
5618
5665
|
fill: "currentColor"
|
|
5619
5666
|
}
|
|
5620
5667
|
),
|
|
5621
|
-
/* @__PURE__ */
|
|
5668
|
+
/* @__PURE__ */ React98.createElement(
|
|
5622
5669
|
"path",
|
|
5623
5670
|
{
|
|
5624
5671
|
fillRule: "evenodd",
|
|
@@ -5627,7 +5674,7 @@ var init_Sale = __esm({
|
|
|
5627
5674
|
fill: "currentColor"
|
|
5628
5675
|
}
|
|
5629
5676
|
),
|
|
5630
|
-
/* @__PURE__ */
|
|
5677
|
+
/* @__PURE__ */ React98.createElement(
|
|
5631
5678
|
"path",
|
|
5632
5679
|
{
|
|
5633
5680
|
fillRule: "evenodd",
|
|
@@ -5647,7 +5694,7 @@ var Search_exports = {};
|
|
|
5647
5694
|
__export(Search_exports, {
|
|
5648
5695
|
default: () => Search_default
|
|
5649
5696
|
});
|
|
5650
|
-
import * as
|
|
5697
|
+
import * as React99 from "react";
|
|
5651
5698
|
var SvgSearch, Search_default;
|
|
5652
5699
|
var init_Search = __esm({
|
|
5653
5700
|
"src/react/Search.tsx"() {
|
|
@@ -5655,7 +5702,7 @@ var init_Search = __esm({
|
|
|
5655
5702
|
init_types();
|
|
5656
5703
|
SvgSearch = ({ size = 16, ...props }) => {
|
|
5657
5704
|
const sizeValue = resolveSize(size);
|
|
5658
|
-
return /* @__PURE__ */
|
|
5705
|
+
return /* @__PURE__ */ React99.createElement(
|
|
5659
5706
|
"svg",
|
|
5660
5707
|
{
|
|
5661
5708
|
width: sizeValue,
|
|
@@ -5665,7 +5712,7 @@ var init_Search = __esm({
|
|
|
5665
5712
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5666
5713
|
...props
|
|
5667
5714
|
},
|
|
5668
|
-
/* @__PURE__ */
|
|
5715
|
+
/* @__PURE__ */ React99.createElement(
|
|
5669
5716
|
"path",
|
|
5670
5717
|
{
|
|
5671
5718
|
fillRule: "evenodd",
|
|
@@ -5674,7 +5721,7 @@ var init_Search = __esm({
|
|
|
5674
5721
|
fill: "currentColor"
|
|
5675
5722
|
}
|
|
5676
5723
|
),
|
|
5677
|
-
/* @__PURE__ */
|
|
5724
|
+
/* @__PURE__ */ React99.createElement(
|
|
5678
5725
|
"path",
|
|
5679
5726
|
{
|
|
5680
5727
|
fillRule: "evenodd",
|
|
@@ -5694,7 +5741,7 @@ var SearchX_exports = {};
|
|
|
5694
5741
|
__export(SearchX_exports, {
|
|
5695
5742
|
default: () => SearchX_default
|
|
5696
5743
|
});
|
|
5697
|
-
import * as
|
|
5744
|
+
import * as React100 from "react";
|
|
5698
5745
|
var SvgSearchX, SearchX_default;
|
|
5699
5746
|
var init_SearchX = __esm({
|
|
5700
5747
|
"src/react/SearchX.tsx"() {
|
|
@@ -5702,7 +5749,7 @@ var init_SearchX = __esm({
|
|
|
5702
5749
|
init_types();
|
|
5703
5750
|
SvgSearchX = ({ size = 16, ...props }) => {
|
|
5704
5751
|
const sizeValue = resolveSize(size);
|
|
5705
|
-
return /* @__PURE__ */
|
|
5752
|
+
return /* @__PURE__ */ React100.createElement(
|
|
5706
5753
|
"svg",
|
|
5707
5754
|
{
|
|
5708
5755
|
width: sizeValue,
|
|
@@ -5712,7 +5759,7 @@ var init_SearchX = __esm({
|
|
|
5712
5759
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5713
5760
|
...props
|
|
5714
5761
|
},
|
|
5715
|
-
/* @__PURE__ */
|
|
5762
|
+
/* @__PURE__ */ React100.createElement(
|
|
5716
5763
|
"path",
|
|
5717
5764
|
{
|
|
5718
5765
|
fillRule: "evenodd",
|
|
@@ -5721,7 +5768,7 @@ var init_SearchX = __esm({
|
|
|
5721
5768
|
fill: "currentColor"
|
|
5722
5769
|
}
|
|
5723
5770
|
),
|
|
5724
|
-
/* @__PURE__ */
|
|
5771
|
+
/* @__PURE__ */ React100.createElement(
|
|
5725
5772
|
"path",
|
|
5726
5773
|
{
|
|
5727
5774
|
fillRule: "evenodd",
|
|
@@ -5730,7 +5777,7 @@ var init_SearchX = __esm({
|
|
|
5730
5777
|
fill: "currentColor"
|
|
5731
5778
|
}
|
|
5732
5779
|
),
|
|
5733
|
-
/* @__PURE__ */
|
|
5780
|
+
/* @__PURE__ */ React100.createElement(
|
|
5734
5781
|
"path",
|
|
5735
5782
|
{
|
|
5736
5783
|
fillRule: "evenodd",
|
|
@@ -5739,7 +5786,7 @@ var init_SearchX = __esm({
|
|
|
5739
5786
|
fill: "currentColor"
|
|
5740
5787
|
}
|
|
5741
5788
|
),
|
|
5742
|
-
/* @__PURE__ */
|
|
5789
|
+
/* @__PURE__ */ React100.createElement(
|
|
5743
5790
|
"path",
|
|
5744
5791
|
{
|
|
5745
5792
|
fillRule: "evenodd",
|
|
@@ -5759,7 +5806,7 @@ var Share_exports = {};
|
|
|
5759
5806
|
__export(Share_exports, {
|
|
5760
5807
|
default: () => Share_default
|
|
5761
5808
|
});
|
|
5762
|
-
import * as
|
|
5809
|
+
import * as React101 from "react";
|
|
5763
5810
|
var SvgShare, Share_default;
|
|
5764
5811
|
var init_Share = __esm({
|
|
5765
5812
|
"src/react/Share.tsx"() {
|
|
@@ -5767,7 +5814,7 @@ var init_Share = __esm({
|
|
|
5767
5814
|
init_types();
|
|
5768
5815
|
SvgShare = ({ size = 16, ...props }) => {
|
|
5769
5816
|
const sizeValue = resolveSize(size);
|
|
5770
|
-
return /* @__PURE__ */
|
|
5817
|
+
return /* @__PURE__ */ React101.createElement(
|
|
5771
5818
|
"svg",
|
|
5772
5819
|
{
|
|
5773
5820
|
width: sizeValue,
|
|
@@ -5777,7 +5824,7 @@ var init_Share = __esm({
|
|
|
5777
5824
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5778
5825
|
...props
|
|
5779
5826
|
},
|
|
5780
|
-
/* @__PURE__ */
|
|
5827
|
+
/* @__PURE__ */ React101.createElement(
|
|
5781
5828
|
"path",
|
|
5782
5829
|
{
|
|
5783
5830
|
fillRule: "evenodd",
|
|
@@ -5786,7 +5833,7 @@ var init_Share = __esm({
|
|
|
5786
5833
|
fill: "currentColor"
|
|
5787
5834
|
}
|
|
5788
5835
|
),
|
|
5789
|
-
/* @__PURE__ */
|
|
5836
|
+
/* @__PURE__ */ React101.createElement(
|
|
5790
5837
|
"path",
|
|
5791
5838
|
{
|
|
5792
5839
|
fillRule: "evenodd",
|
|
@@ -5795,7 +5842,7 @@ var init_Share = __esm({
|
|
|
5795
5842
|
fill: "currentColor"
|
|
5796
5843
|
}
|
|
5797
5844
|
),
|
|
5798
|
-
/* @__PURE__ */
|
|
5845
|
+
/* @__PURE__ */ React101.createElement(
|
|
5799
5846
|
"path",
|
|
5800
5847
|
{
|
|
5801
5848
|
fillRule: "evenodd",
|
|
@@ -5815,7 +5862,7 @@ var Size3D_exports = {};
|
|
|
5815
5862
|
__export(Size3D_exports, {
|
|
5816
5863
|
default: () => Size3D_default
|
|
5817
5864
|
});
|
|
5818
|
-
import * as
|
|
5865
|
+
import * as React102 from "react";
|
|
5819
5866
|
var SvgSize3D, Size3D_default;
|
|
5820
5867
|
var init_Size3D = __esm({
|
|
5821
5868
|
"src/react/Size3D.tsx"() {
|
|
@@ -5823,7 +5870,7 @@ var init_Size3D = __esm({
|
|
|
5823
5870
|
init_types();
|
|
5824
5871
|
SvgSize3D = ({ size = 16, ...props }) => {
|
|
5825
5872
|
const sizeValue = resolveSize(size);
|
|
5826
|
-
return /* @__PURE__ */
|
|
5873
|
+
return /* @__PURE__ */ React102.createElement(
|
|
5827
5874
|
"svg",
|
|
5828
5875
|
{
|
|
5829
5876
|
width: sizeValue,
|
|
@@ -5833,7 +5880,7 @@ var init_Size3D = __esm({
|
|
|
5833
5880
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5834
5881
|
...props
|
|
5835
5882
|
},
|
|
5836
|
-
/* @__PURE__ */
|
|
5883
|
+
/* @__PURE__ */ React102.createElement(
|
|
5837
5884
|
"path",
|
|
5838
5885
|
{
|
|
5839
5886
|
fillRule: "evenodd",
|
|
@@ -5842,7 +5889,7 @@ var init_Size3D = __esm({
|
|
|
5842
5889
|
fill: "currentColor"
|
|
5843
5890
|
}
|
|
5844
5891
|
),
|
|
5845
|
-
/* @__PURE__ */
|
|
5892
|
+
/* @__PURE__ */ React102.createElement(
|
|
5846
5893
|
"path",
|
|
5847
5894
|
{
|
|
5848
5895
|
fillRule: "evenodd",
|
|
@@ -5851,7 +5898,7 @@ var init_Size3D = __esm({
|
|
|
5851
5898
|
fill: "currentColor"
|
|
5852
5899
|
}
|
|
5853
5900
|
),
|
|
5854
|
-
/* @__PURE__ */
|
|
5901
|
+
/* @__PURE__ */ React102.createElement(
|
|
5855
5902
|
"path",
|
|
5856
5903
|
{
|
|
5857
5904
|
fillRule: "evenodd",
|
|
@@ -5860,7 +5907,7 @@ var init_Size3D = __esm({
|
|
|
5860
5907
|
fill: "currentColor"
|
|
5861
5908
|
}
|
|
5862
5909
|
),
|
|
5863
|
-
/* @__PURE__ */
|
|
5910
|
+
/* @__PURE__ */ React102.createElement(
|
|
5864
5911
|
"path",
|
|
5865
5912
|
{
|
|
5866
5913
|
fillRule: "evenodd",
|
|
@@ -5880,7 +5927,7 @@ var StatusDot_exports = {};
|
|
|
5880
5927
|
__export(StatusDot_exports, {
|
|
5881
5928
|
default: () => StatusDot_default
|
|
5882
5929
|
});
|
|
5883
|
-
import * as
|
|
5930
|
+
import * as React103 from "react";
|
|
5884
5931
|
var SvgStatusDot, StatusDot_default;
|
|
5885
5932
|
var init_StatusDot = __esm({
|
|
5886
5933
|
"src/react/StatusDot.tsx"() {
|
|
@@ -5888,7 +5935,7 @@ var init_StatusDot = __esm({
|
|
|
5888
5935
|
init_types();
|
|
5889
5936
|
SvgStatusDot = ({ size = 16, ...props }) => {
|
|
5890
5937
|
const sizeValue = resolveSize(size);
|
|
5891
|
-
return /* @__PURE__ */
|
|
5938
|
+
return /* @__PURE__ */ React103.createElement(
|
|
5892
5939
|
"svg",
|
|
5893
5940
|
{
|
|
5894
5941
|
width: sizeValue,
|
|
@@ -5898,7 +5945,7 @@ var init_StatusDot = __esm({
|
|
|
5898
5945
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5899
5946
|
...props
|
|
5900
5947
|
},
|
|
5901
|
-
/* @__PURE__ */
|
|
5948
|
+
/* @__PURE__ */ React103.createElement(
|
|
5902
5949
|
"path",
|
|
5903
5950
|
{
|
|
5904
5951
|
d: "M16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12Z",
|
|
@@ -5916,7 +5963,7 @@ var Storage_exports = {};
|
|
|
5916
5963
|
__export(Storage_exports, {
|
|
5917
5964
|
default: () => Storage_default
|
|
5918
5965
|
});
|
|
5919
|
-
import * as
|
|
5966
|
+
import * as React104 from "react";
|
|
5920
5967
|
var SvgStorage, Storage_default;
|
|
5921
5968
|
var init_Storage = __esm({
|
|
5922
5969
|
"src/react/Storage.tsx"() {
|
|
@@ -5924,7 +5971,7 @@ var init_Storage = __esm({
|
|
|
5924
5971
|
init_types();
|
|
5925
5972
|
SvgStorage = ({ size = 16, ...props }) => {
|
|
5926
5973
|
const sizeValue = resolveSize(size);
|
|
5927
|
-
return /* @__PURE__ */
|
|
5974
|
+
return /* @__PURE__ */ React104.createElement(
|
|
5928
5975
|
"svg",
|
|
5929
5976
|
{
|
|
5930
5977
|
width: sizeValue,
|
|
@@ -5934,7 +5981,7 @@ var init_Storage = __esm({
|
|
|
5934
5981
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5935
5982
|
...props
|
|
5936
5983
|
},
|
|
5937
|
-
/* @__PURE__ */
|
|
5984
|
+
/* @__PURE__ */ React104.createElement(
|
|
5938
5985
|
"path",
|
|
5939
5986
|
{
|
|
5940
5987
|
d: "M15.4409 1.4502C16.1602 1.46435 16.8446 1.76362 17.3433 2.28223C17.8384 2.79713 18.11 3.48636 18.1001 4.2002V11.2002H21.4409C22.1602 11.2143 22.8446 11.5136 23.3433 12.0322C23.8384 12.5471 24.11 13.2364 24.1001 13.9502V19.7842C24.1141 20.5035 23.8419 21.1992 23.3433 21.7178C22.8446 22.2364 22.1602 22.5357 21.4409 22.5498H13.9087C13.2093 22.5356 12.5448 22.2504 12.0503 21.7578C11.5555 22.2505 10.8906 22.536 10.1909 22.5498H2.65966C1.94072 22.5353 1.25678 22.236 0.758296 21.7178C0.259869 21.1994 -0.0130903 20.5041 0.000483051 19.7852V13.9502C-0.00914487 13.2364 0.263254 12.5471 0.758296 12.0322C1.25678 11.514 1.94072 11.2147 2.65966 11.2002H5.25048V4.2002C5.24085 3.48643 5.51228 2.79707 6.00732 2.28223C6.50573 1.76389 7.18976 1.46484 7.90869 1.4502H15.4409ZM12.8511 19.7998H12.8501C12.8502 19.8047 12.8491 19.8096 12.8491 19.8145L12.8501 19.8154C12.8445 20.1108 12.9565 20.3959 13.1606 20.6084C13.3653 20.8212 13.6467 20.9442 13.9419 20.9502H21.4097C21.7047 20.9444 21.9854 20.8211 22.1899 20.6084C22.3944 20.3957 22.5062 20.1104 22.5005 19.8154V13.9346C22.5062 13.6396 22.3944 13.3543 22.1899 13.1416C22.0108 12.9553 21.7734 12.8379 21.519 12.8076L21.4097 12.7998H20.3501V18.0498H15.0005V12.7998H12.8511V19.7998ZM2.58154 12.8076C2.32746 12.8381 2.09056 12.9555 1.91162 13.1416C1.70705 13.3544 1.59454 13.6395 1.60009 13.9346L1.60107 13.9424V19.8076L1.60009 19.8154C1.59454 20.1105 1.70705 20.3956 1.91162 20.6084C2.11623 20.8211 2.39678 20.9442 2.69189 20.9502H10.1597C10.4548 20.9444 10.7354 20.8212 10.9399 20.6084C11.1445 20.3956 11.2562 20.1105 11.2505 19.8154L11.2515 19.8145C11.2515 19.8047 11.2503 19.7949 11.2505 19.7852V12.7998H9.10009V18.0498H3.75048V12.7998H2.69189L2.58154 12.8076ZM16.6001 16.4502H18.7505V12.7998H16.6001V16.4502ZM5.35009 16.4502H7.50048V12.7998H5.35009V16.4502ZM7.83154 3.05762C7.57728 3.08805 7.33968 3.2054 7.16064 3.3916C6.9562 3.60433 6.84454 3.88957 6.85009 4.18457V11.2002H16.5005V4.18457C16.5062 3.88956 16.3944 3.60434 16.1899 3.3916C16.0108 3.20535 15.7734 3.08785 15.519 3.05762L15.4097 3.0498H14.3501V8.2998H9.00048V3.0498H7.94189L7.83154 3.05762ZM10.6001 6.7002H12.7505V3.0498H10.6001V6.7002Z",
|
|
@@ -5952,7 +5999,7 @@ var Store_exports = {};
|
|
|
5952
5999
|
__export(Store_exports, {
|
|
5953
6000
|
default: () => Store_default
|
|
5954
6001
|
});
|
|
5955
|
-
import * as
|
|
6002
|
+
import * as React105 from "react";
|
|
5956
6003
|
var SvgStore, Store_default;
|
|
5957
6004
|
var init_Store = __esm({
|
|
5958
6005
|
"src/react/Store.tsx"() {
|
|
@@ -5960,7 +6007,7 @@ var init_Store = __esm({
|
|
|
5960
6007
|
init_types();
|
|
5961
6008
|
SvgStore = ({ size = 16, ...props }) => {
|
|
5962
6009
|
const sizeValue = resolveSize(size);
|
|
5963
|
-
return /* @__PURE__ */
|
|
6010
|
+
return /* @__PURE__ */ React105.createElement(
|
|
5964
6011
|
"svg",
|
|
5965
6012
|
{
|
|
5966
6013
|
width: sizeValue,
|
|
@@ -5970,7 +6017,7 @@ var init_Store = __esm({
|
|
|
5970
6017
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5971
6018
|
...props
|
|
5972
6019
|
},
|
|
5973
|
-
/* @__PURE__ */
|
|
6020
|
+
/* @__PURE__ */ React105.createElement(
|
|
5974
6021
|
"path",
|
|
5975
6022
|
{
|
|
5976
6023
|
fillRule: "evenodd",
|
|
@@ -5990,7 +6037,7 @@ var SwimmingPool_exports = {};
|
|
|
5990
6037
|
__export(SwimmingPool_exports, {
|
|
5991
6038
|
default: () => SwimmingPool_default
|
|
5992
6039
|
});
|
|
5993
|
-
import * as
|
|
6040
|
+
import * as React106 from "react";
|
|
5994
6041
|
var SvgSwimmingPool, SwimmingPool_default;
|
|
5995
6042
|
var init_SwimmingPool = __esm({
|
|
5996
6043
|
"src/react/SwimmingPool.tsx"() {
|
|
@@ -5998,7 +6045,7 @@ var init_SwimmingPool = __esm({
|
|
|
5998
6045
|
init_types();
|
|
5999
6046
|
SvgSwimmingPool = ({ size = 16, ...props }) => {
|
|
6000
6047
|
const sizeValue = resolveSize(size);
|
|
6001
|
-
return /* @__PURE__ */
|
|
6048
|
+
return /* @__PURE__ */ React106.createElement(
|
|
6002
6049
|
"svg",
|
|
6003
6050
|
{
|
|
6004
6051
|
width: sizeValue,
|
|
@@ -6008,7 +6055,7 @@ var init_SwimmingPool = __esm({
|
|
|
6008
6055
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6009
6056
|
...props
|
|
6010
6057
|
},
|
|
6011
|
-
/* @__PURE__ */
|
|
6058
|
+
/* @__PURE__ */ React106.createElement(
|
|
6012
6059
|
"path",
|
|
6013
6060
|
{
|
|
6014
6061
|
fillRule: "evenodd",
|
|
@@ -6017,7 +6064,7 @@ var init_SwimmingPool = __esm({
|
|
|
6017
6064
|
fill: "currentColor"
|
|
6018
6065
|
}
|
|
6019
6066
|
),
|
|
6020
|
-
/* @__PURE__ */
|
|
6067
|
+
/* @__PURE__ */ React106.createElement(
|
|
6021
6068
|
"path",
|
|
6022
6069
|
{
|
|
6023
6070
|
fillRule: "evenodd",
|
|
@@ -6026,7 +6073,7 @@ var init_SwimmingPool = __esm({
|
|
|
6026
6073
|
fill: "currentColor"
|
|
6027
6074
|
}
|
|
6028
6075
|
),
|
|
6029
|
-
/* @__PURE__ */
|
|
6076
|
+
/* @__PURE__ */ React106.createElement(
|
|
6030
6077
|
"path",
|
|
6031
6078
|
{
|
|
6032
6079
|
fillRule: "evenodd",
|
|
@@ -6035,7 +6082,7 @@ var init_SwimmingPool = __esm({
|
|
|
6035
6082
|
fill: "currentColor"
|
|
6036
6083
|
}
|
|
6037
6084
|
),
|
|
6038
|
-
/* @__PURE__ */
|
|
6085
|
+
/* @__PURE__ */ React106.createElement(
|
|
6039
6086
|
"path",
|
|
6040
6087
|
{
|
|
6041
6088
|
fillRule: "evenodd",
|
|
@@ -6044,7 +6091,7 @@ var init_SwimmingPool = __esm({
|
|
|
6044
6091
|
fill: "currentColor"
|
|
6045
6092
|
}
|
|
6046
6093
|
),
|
|
6047
|
-
/* @__PURE__ */
|
|
6094
|
+
/* @__PURE__ */ React106.createElement(
|
|
6048
6095
|
"path",
|
|
6049
6096
|
{
|
|
6050
6097
|
fillRule: "evenodd",
|
|
@@ -6053,7 +6100,7 @@ var init_SwimmingPool = __esm({
|
|
|
6053
6100
|
fill: "currentColor"
|
|
6054
6101
|
}
|
|
6055
6102
|
),
|
|
6056
|
-
/* @__PURE__ */
|
|
6103
|
+
/* @__PURE__ */ React106.createElement(
|
|
6057
6104
|
"path",
|
|
6058
6105
|
{
|
|
6059
6106
|
fillRule: "evenodd",
|
|
@@ -6073,7 +6120,7 @@ var Tasks_exports = {};
|
|
|
6073
6120
|
__export(Tasks_exports, {
|
|
6074
6121
|
default: () => Tasks_default
|
|
6075
6122
|
});
|
|
6076
|
-
import * as
|
|
6123
|
+
import * as React107 from "react";
|
|
6077
6124
|
var SvgTasks, Tasks_default;
|
|
6078
6125
|
var init_Tasks = __esm({
|
|
6079
6126
|
"src/react/Tasks.tsx"() {
|
|
@@ -6081,7 +6128,7 @@ var init_Tasks = __esm({
|
|
|
6081
6128
|
init_types();
|
|
6082
6129
|
SvgTasks = ({ size = 16, ...props }) => {
|
|
6083
6130
|
const sizeValue = resolveSize(size);
|
|
6084
|
-
return /* @__PURE__ */
|
|
6131
|
+
return /* @__PURE__ */ React107.createElement(
|
|
6085
6132
|
"svg",
|
|
6086
6133
|
{
|
|
6087
6134
|
width: sizeValue,
|
|
@@ -6091,7 +6138,7 @@ var init_Tasks = __esm({
|
|
|
6091
6138
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6092
6139
|
...props
|
|
6093
6140
|
},
|
|
6094
|
-
/* @__PURE__ */
|
|
6141
|
+
/* @__PURE__ */ React107.createElement(
|
|
6095
6142
|
"path",
|
|
6096
6143
|
{
|
|
6097
6144
|
fillRule: "evenodd",
|
|
@@ -6100,7 +6147,7 @@ var init_Tasks = __esm({
|
|
|
6100
6147
|
fill: "currentColor"
|
|
6101
6148
|
}
|
|
6102
6149
|
),
|
|
6103
|
-
/* @__PURE__ */
|
|
6150
|
+
/* @__PURE__ */ React107.createElement(
|
|
6104
6151
|
"path",
|
|
6105
6152
|
{
|
|
6106
6153
|
fillRule: "evenodd",
|
|
@@ -6109,7 +6156,7 @@ var init_Tasks = __esm({
|
|
|
6109
6156
|
fill: "currentColor"
|
|
6110
6157
|
}
|
|
6111
6158
|
),
|
|
6112
|
-
/* @__PURE__ */
|
|
6159
|
+
/* @__PURE__ */ React107.createElement(
|
|
6113
6160
|
"path",
|
|
6114
6161
|
{
|
|
6115
6162
|
fillRule: "evenodd",
|
|
@@ -6118,7 +6165,7 @@ var init_Tasks = __esm({
|
|
|
6118
6165
|
fill: "currentColor"
|
|
6119
6166
|
}
|
|
6120
6167
|
),
|
|
6121
|
-
/* @__PURE__ */
|
|
6168
|
+
/* @__PURE__ */ React107.createElement(
|
|
6122
6169
|
"path",
|
|
6123
6170
|
{
|
|
6124
6171
|
fillRule: "evenodd",
|
|
@@ -6127,7 +6174,7 @@ var init_Tasks = __esm({
|
|
|
6127
6174
|
fill: "currentColor"
|
|
6128
6175
|
}
|
|
6129
6176
|
),
|
|
6130
|
-
/* @__PURE__ */
|
|
6177
|
+
/* @__PURE__ */ React107.createElement(
|
|
6131
6178
|
"path",
|
|
6132
6179
|
{
|
|
6133
6180
|
fillRule: "evenodd",
|
|
@@ -6136,7 +6183,7 @@ var init_Tasks = __esm({
|
|
|
6136
6183
|
fill: "currentColor"
|
|
6137
6184
|
}
|
|
6138
6185
|
),
|
|
6139
|
-
/* @__PURE__ */
|
|
6186
|
+
/* @__PURE__ */ React107.createElement(
|
|
6140
6187
|
"path",
|
|
6141
6188
|
{
|
|
6142
6189
|
fillRule: "evenodd",
|
|
@@ -6156,7 +6203,7 @@ var Terrace_exports = {};
|
|
|
6156
6203
|
__export(Terrace_exports, {
|
|
6157
6204
|
default: () => Terrace_default
|
|
6158
6205
|
});
|
|
6159
|
-
import * as
|
|
6206
|
+
import * as React108 from "react";
|
|
6160
6207
|
var SvgTerrace, Terrace_default;
|
|
6161
6208
|
var init_Terrace = __esm({
|
|
6162
6209
|
"src/react/Terrace.tsx"() {
|
|
@@ -6164,7 +6211,7 @@ var init_Terrace = __esm({
|
|
|
6164
6211
|
init_types();
|
|
6165
6212
|
SvgTerrace = ({ size = 16, ...props }) => {
|
|
6166
6213
|
const sizeValue = resolveSize(size);
|
|
6167
|
-
return /* @__PURE__ */
|
|
6214
|
+
return /* @__PURE__ */ React108.createElement(
|
|
6168
6215
|
"svg",
|
|
6169
6216
|
{
|
|
6170
6217
|
width: sizeValue,
|
|
@@ -6174,7 +6221,7 @@ var init_Terrace = __esm({
|
|
|
6174
6221
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6175
6222
|
...props
|
|
6176
6223
|
},
|
|
6177
|
-
/* @__PURE__ */
|
|
6224
|
+
/* @__PURE__ */ React108.createElement(
|
|
6178
6225
|
"path",
|
|
6179
6226
|
{
|
|
6180
6227
|
d: "M19.2676 10.7392C19.9333 10.2802 20.7544 10.1041 21.5498 10.25C22.2459 10.3777 22.8726 10.7431 23.3262 11.2783L23.5098 11.5176L23.668 11.7744C24.007 12.3881 24.1265 13.1031 23.999 13.7988C23.8539 14.591 23.4002 15.2922 22.7393 15.7519L22.7402 15.7529L17.7539 19.2871C17.6752 19.3567 17.5936 19.4218 17.5088 19.4824L18.7139 21.8926C18.9111 22.2877 18.7505 22.7683 18.3555 22.9658C17.9604 23.1631 17.4798 23.0025 17.2822 22.6074L15.9971 20.0371C15.9152 20.0438 15.8327 20.0498 15.75 20.0498H6.62305L6.02441 22.4443C5.91716 22.8728 5.48227 23.1335 5.05371 23.0264C4.62519 22.9191 4.36454 22.4842 4.47168 22.0556L4.97559 20.0361C4.26734 19.9721 3.60066 19.6631 3.09375 19.1562C2.52176 18.5842 2.2002 17.8089 2.2002 17C2.2002 16.1911 2.52176 15.4157 3.09375 14.8437C3.66574 14.2717 4.44109 13.9502 5.25 13.9502H14.7451L19.2588 10.7461L19.2676 10.7392ZM4.80762 9.69334C5.02854 9.31071 5.51776 9.17945 5.90039 9.40037C6.28273 9.6214 6.41323 10.1106 6.19238 10.4931L5.44238 11.792C5.22142 12.1745 4.73218 12.3058 4.34961 12.0849C3.96715 11.864 3.83674 11.3747 4.05762 10.9922L4.80762 9.69334ZM9.59961 9.40037C9.98224 9.17945 10.4715 9.31071 10.6924 9.69334L11.4424 10.9922C11.6633 11.3747 11.5329 11.864 11.1504 12.0849C10.7678 12.3058 10.2786 12.1745 10.0576 11.792L9.30762 10.4931C9.08677 10.1106 9.21727 9.6214 9.59961 9.40037ZM9.2002 6.19627C9.2002 5.81178 9.04723 5.4428 8.77539 5.17088C8.50346 4.89895 8.13456 4.74608 7.75 4.74608C7.36544 4.74608 6.99654 4.89895 6.72461 5.17088C6.45277 5.4428 6.2998 5.81178 6.2998 6.19627C6.29988 6.58073 6.45275 6.9498 6.72461 7.22166C6.99652 7.4935 7.3655 7.64647 7.75 7.64647C8.1345 7.64647 8.50348 7.4935 8.77539 7.22166C9.04725 6.9498 9.20012 6.58073 9.2002 6.19627ZM3.25 5.39647C3.69183 5.39647 4.0498 5.75444 4.0498 6.19627C4.04965 6.63797 3.69173 6.99608 3.25 6.99608H1.75C1.30827 6.99608 0.950351 6.63797 0.950195 6.19627C0.950195 5.75444 1.30817 5.39647 1.75 5.39647H3.25ZM13.75 5.39647C14.1918 5.39647 14.5498 5.75444 14.5498 6.19627C14.5496 6.63797 14.1917 6.99608 13.75 6.99608H12.25C11.8083 6.99608 11.4504 6.63797 11.4502 6.19627C11.4502 5.75444 11.8082 5.39647 12.25 5.39647H13.75ZM4.34961 0.3076C4.73208 0.0867727 5.22133 0.217327 5.44238 0.599592L6.19238 1.8994C6.41317 2.28197 6.28288 2.77124 5.90039 2.99217C5.51787 3.21302 5.02863 3.08157 4.80762 2.6992L4.05762 1.40037C3.83679 1.0179 3.96734 0.528649 4.34961 0.3076ZM10.0576 0.599592C10.2787 0.217326 10.7679 0.0867727 11.1504 0.3076C11.5327 0.528649 11.6632 1.0179 11.4424 1.40037L10.6924 2.6992C10.4714 3.08157 9.98213 3.21302 9.59961 2.99217C9.21712 2.77124 9.08683 2.28197 9.30762 1.8994L10.0576 0.599592ZM3.7998 17C3.7998 17.3845 3.95268 17.7534 4.22461 18.0254C4.49654 18.2973 4.86544 18.4502 5.25 18.4502H15.75L15.8848 18.4433C16.1975 18.4136 16.4931 18.2814 16.7246 18.0654L16.7646 18.0283L16.8086 17.9971L21.8154 14.4472L21.8232 14.4414C22.1391 14.2229 22.3555 13.8884 22.4248 13.5107C22.494 13.1328 22.4105 12.7421 22.1924 12.4258C21.974 12.1097 21.6386 11.8935 21.2607 11.8242C20.8862 11.7556 20.4994 11.8361 20.1846 12.0498L15.2549 15.5498H5.25C4.86544 15.5498 4.49654 15.7027 4.22461 15.9746C3.95268 16.2465 3.7998 16.6154 3.7998 17ZM10.7998 6.19627C10.7997 7.00508 10.4782 7.7806 9.90625 8.35252C9.33428 8.92442 8.55884 9.24608 7.75 9.24608C6.94116 9.24608 6.16572 8.92442 5.59375 8.35252C5.02183 7.7806 4.70027 7.00508 4.7002 6.19627C4.7002 5.38736 5.02176 4.61103 5.59375 4.03905C6.1657 3.46727 6.94125 3.14647 7.75 3.14647C8.55875 3.14647 9.3343 3.46727 9.90625 4.03905C10.4782 4.61103 10.7998 5.38736 10.7998 6.19627Z",
|
|
@@ -6192,7 +6239,7 @@ var ThermometerSnowflake_exports = {};
|
|
|
6192
6239
|
__export(ThermometerSnowflake_exports, {
|
|
6193
6240
|
default: () => ThermometerSnowflake_default
|
|
6194
6241
|
});
|
|
6195
|
-
import * as
|
|
6242
|
+
import * as React109 from "react";
|
|
6196
6243
|
var SvgThermometerSnowflake, ThermometerSnowflake_default;
|
|
6197
6244
|
var init_ThermometerSnowflake = __esm({
|
|
6198
6245
|
"src/react/ThermometerSnowflake.tsx"() {
|
|
@@ -6200,7 +6247,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6200
6247
|
init_types();
|
|
6201
6248
|
SvgThermometerSnowflake = ({ size = 16, ...props }) => {
|
|
6202
6249
|
const sizeValue = resolveSize(size);
|
|
6203
|
-
return /* @__PURE__ */
|
|
6250
|
+
return /* @__PURE__ */ React109.createElement(
|
|
6204
6251
|
"svg",
|
|
6205
6252
|
{
|
|
6206
6253
|
width: sizeValue,
|
|
@@ -6210,7 +6257,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6210
6257
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6211
6258
|
...props
|
|
6212
6259
|
},
|
|
6213
|
-
/* @__PURE__ */
|
|
6260
|
+
/* @__PURE__ */ React109.createElement(
|
|
6214
6261
|
"path",
|
|
6215
6262
|
{
|
|
6216
6263
|
fillRule: "evenodd",
|
|
@@ -6219,7 +6266,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6219
6266
|
fill: "currentColor"
|
|
6220
6267
|
}
|
|
6221
6268
|
),
|
|
6222
|
-
/* @__PURE__ */
|
|
6269
|
+
/* @__PURE__ */ React109.createElement(
|
|
6223
6270
|
"path",
|
|
6224
6271
|
{
|
|
6225
6272
|
fillRule: "evenodd",
|
|
@@ -6228,7 +6275,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6228
6275
|
fill: "currentColor"
|
|
6229
6276
|
}
|
|
6230
6277
|
),
|
|
6231
|
-
/* @__PURE__ */
|
|
6278
|
+
/* @__PURE__ */ React109.createElement(
|
|
6232
6279
|
"path",
|
|
6233
6280
|
{
|
|
6234
6281
|
fillRule: "evenodd",
|
|
@@ -6237,7 +6284,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6237
6284
|
fill: "currentColor"
|
|
6238
6285
|
}
|
|
6239
6286
|
),
|
|
6240
|
-
/* @__PURE__ */
|
|
6287
|
+
/* @__PURE__ */ React109.createElement(
|
|
6241
6288
|
"path",
|
|
6242
6289
|
{
|
|
6243
6290
|
fillRule: "evenodd",
|
|
@@ -6246,7 +6293,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6246
6293
|
fill: "currentColor"
|
|
6247
6294
|
}
|
|
6248
6295
|
),
|
|
6249
|
-
/* @__PURE__ */
|
|
6296
|
+
/* @__PURE__ */ React109.createElement(
|
|
6250
6297
|
"path",
|
|
6251
6298
|
{
|
|
6252
6299
|
fillRule: "evenodd",
|
|
@@ -6255,7 +6302,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6255
6302
|
fill: "currentColor"
|
|
6256
6303
|
}
|
|
6257
6304
|
),
|
|
6258
|
-
/* @__PURE__ */
|
|
6305
|
+
/* @__PURE__ */ React109.createElement(
|
|
6259
6306
|
"path",
|
|
6260
6307
|
{
|
|
6261
6308
|
fillRule: "evenodd",
|
|
@@ -6275,7 +6322,7 @@ var Time_exports = {};
|
|
|
6275
6322
|
__export(Time_exports, {
|
|
6276
6323
|
default: () => Time_default
|
|
6277
6324
|
});
|
|
6278
|
-
import * as
|
|
6325
|
+
import * as React110 from "react";
|
|
6279
6326
|
var SvgTime, Time_default;
|
|
6280
6327
|
var init_Time = __esm({
|
|
6281
6328
|
"src/react/Time.tsx"() {
|
|
@@ -6283,7 +6330,7 @@ var init_Time = __esm({
|
|
|
6283
6330
|
init_types();
|
|
6284
6331
|
SvgTime = ({ size = 16, ...props }) => {
|
|
6285
6332
|
const sizeValue = resolveSize(size);
|
|
6286
|
-
return /* @__PURE__ */
|
|
6333
|
+
return /* @__PURE__ */ React110.createElement(
|
|
6287
6334
|
"svg",
|
|
6288
6335
|
{
|
|
6289
6336
|
width: sizeValue,
|
|
@@ -6293,7 +6340,7 @@ var init_Time = __esm({
|
|
|
6293
6340
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6294
6341
|
...props
|
|
6295
6342
|
},
|
|
6296
|
-
/* @__PURE__ */
|
|
6343
|
+
/* @__PURE__ */ React110.createElement(
|
|
6297
6344
|
"path",
|
|
6298
6345
|
{
|
|
6299
6346
|
fillRule: "evenodd",
|
|
@@ -6302,7 +6349,7 @@ var init_Time = __esm({
|
|
|
6302
6349
|
fill: "currentColor"
|
|
6303
6350
|
}
|
|
6304
6351
|
),
|
|
6305
|
-
/* @__PURE__ */
|
|
6352
|
+
/* @__PURE__ */ React110.createElement(
|
|
6306
6353
|
"path",
|
|
6307
6354
|
{
|
|
6308
6355
|
fillRule: "evenodd",
|
|
@@ -6322,7 +6369,7 @@ var TouchAndroid_exports = {};
|
|
|
6322
6369
|
__export(TouchAndroid_exports, {
|
|
6323
6370
|
default: () => TouchAndroid_default
|
|
6324
6371
|
});
|
|
6325
|
-
import * as
|
|
6372
|
+
import * as React111 from "react";
|
|
6326
6373
|
var SvgTouchAndroid, TouchAndroid_default;
|
|
6327
6374
|
var init_TouchAndroid = __esm({
|
|
6328
6375
|
"src/react/TouchAndroid.tsx"() {
|
|
@@ -6330,7 +6377,7 @@ var init_TouchAndroid = __esm({
|
|
|
6330
6377
|
init_types();
|
|
6331
6378
|
SvgTouchAndroid = ({ size = 16, ...props }) => {
|
|
6332
6379
|
const sizeValue = resolveSize(size);
|
|
6333
|
-
return /* @__PURE__ */
|
|
6380
|
+
return /* @__PURE__ */ React111.createElement(
|
|
6334
6381
|
"svg",
|
|
6335
6382
|
{
|
|
6336
6383
|
width: sizeValue,
|
|
@@ -6340,7 +6387,7 @@ var init_TouchAndroid = __esm({
|
|
|
6340
6387
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6341
6388
|
...props
|
|
6342
6389
|
},
|
|
6343
|
-
/* @__PURE__ */
|
|
6390
|
+
/* @__PURE__ */ React111.createElement(
|
|
6344
6391
|
"path",
|
|
6345
6392
|
{
|
|
6346
6393
|
d: "M18.3069 4.55233C18.2243 4.55233 18.1416 4.53167 18.0693 4.49033C16.0853 3.46733 14.3699 3.03333 12.3136 3.03333C10.2676 3.03333 8.32493 3.519 6.55793 4.49033C6.30993 4.62467 5.99993 4.53167 5.85526 4.28367C5.72093 4.03567 5.81393 3.71533 6.06193 3.581C7.98393 2.53733 10.0919 2 12.3136 2C14.5146 2 16.4366 2.48567 18.5446 3.57067C18.8029 3.705 18.8959 4.015 18.7616 4.263C18.6686 4.449 18.4929 4.55233 18.3069 4.55233ZM3.51993 9.97733C3.4166 9.97733 3.31326 9.94633 3.22026 9.88433C2.9826 9.719 2.93093 9.39867 3.09626 9.161C4.11926 7.71433 5.42126 6.57767 6.97126 5.782C10.2159 4.108 14.3699 4.09767 17.6249 5.77167C19.1749 6.56733 20.4769 7.69367 21.4999 9.13C21.6653 9.35733 21.6136 9.688 21.3759 9.85333C21.1383 10.0187 20.8179 9.967 20.6526 9.72933C19.7226 8.42733 18.5446 7.40433 17.1496 6.69133C14.1839 5.17233 10.3916 5.17233 7.43626 6.70167C6.03093 7.425 4.85293 8.45833 3.92293 9.76033C3.84026 9.905 3.68526 9.97733 3.51993 9.97733ZM9.97826 22.4497C9.84393 22.4497 9.7096 22.398 9.6166 22.2947C8.7176 21.3957 8.23193 20.817 7.5396 19.5667C6.8266 18.2957 6.4546 16.7457 6.4546 15.082C6.4546 12.013 9.07926 9.51233 12.3033 9.51233C15.5273 9.51233 18.1519 12.013 18.1519 15.082C18.1519 15.3713 17.9246 15.5987 17.6353 15.5987C17.3459 15.5987 17.1186 15.3713 17.1186 15.082C17.1186 12.5813 14.9589 10.5457 12.3033 10.5457C9.6476 10.5457 7.48793 12.5813 7.48793 15.082C7.48793 16.57 7.8186 17.9443 8.44893 19.0603C9.11027 20.2487 9.56493 20.755 10.3606 21.561C10.5569 21.7677 10.5569 22.088 10.3606 22.2947C10.2469 22.398 10.1126 22.4497 9.97826 22.4497ZM17.3873 20.538C16.1576 20.538 15.0726 20.228 14.1839 19.6183C12.6443 18.5747 11.7246 16.88 11.7246 15.082C11.7246 14.7927 11.9519 14.5653 12.2413 14.5653C12.5306 14.5653 12.7579 14.7927 12.7579 15.082C12.7579 16.539 13.5019 17.9133 14.7626 18.7607C15.4963 19.2567 16.3539 19.4943 17.3873 19.4943C17.6353 19.4943 18.0486 19.4633 18.4619 19.391C18.7409 19.3393 19.0096 19.5253 19.0613 19.8147C19.1129 20.0937 18.9269 20.3623 18.6376 20.414C18.0486 20.5277 17.5319 20.538 17.3873 20.538ZM15.3103 22.6667C15.2689 22.6667 15.2173 22.6563 15.1759 22.646C13.5329 22.1913 12.4583 21.5817 11.3319 20.476C9.88526 19.0397 9.0896 17.128 9.0896 15.082C9.0896 13.408 10.5156 12.044 12.2723 12.044C14.0289 12.044 15.4549 13.408 15.4549 15.082C15.4549 16.1877 16.4159 17.0867 17.6043 17.0867C18.7926 17.0867 19.7536 16.1877 19.7536 15.082C19.7536 11.1863 16.3953 8.02433 12.2619 8.02433C9.32726 8.02433 6.6406 9.657 5.4316 12.1887C5.0286 13.0257 4.82193 14.0073 4.82193 15.082C4.82193 15.888 4.89426 17.159 5.51426 18.8123C5.6176 19.081 5.48326 19.3807 5.2146 19.4737C4.94593 19.577 4.64626 19.4323 4.55326 19.174C4.04693 17.8203 3.79893 16.477 3.79893 15.082C3.79893 13.842 4.0366 12.7157 4.5016 11.734C5.87593 8.851 8.92426 6.98067 12.2619 6.98067C16.9636 6.98067 20.7869 10.6077 20.7869 15.0717C20.7869 16.7457 19.3609 18.1097 17.6043 18.1097C15.8476 18.1097 14.4216 16.7457 14.4216 15.0717C14.4216 13.966 13.4606 13.067 12.2723 13.067C11.0839 13.067 10.1229 13.966 10.1229 15.0717C10.1229 16.8387 10.8049 18.492 12.0553 19.732C13.0369 20.7033 13.9773 21.2407 15.4343 21.6437C15.7133 21.716 15.8683 22.0053 15.7959 22.274C15.7443 22.5117 15.5273 22.6667 15.3103 22.6667Z",
|
|
@@ -6358,7 +6405,7 @@ var TouchIos_exports = {};
|
|
|
6358
6405
|
__export(TouchIos_exports, {
|
|
6359
6406
|
default: () => TouchIos_default
|
|
6360
6407
|
});
|
|
6361
|
-
import * as
|
|
6408
|
+
import * as React112 from "react";
|
|
6362
6409
|
var SvgTouchIos, TouchIos_default;
|
|
6363
6410
|
var init_TouchIos = __esm({
|
|
6364
6411
|
"src/react/TouchIos.tsx"() {
|
|
@@ -6366,7 +6413,7 @@ var init_TouchIos = __esm({
|
|
|
6366
6413
|
init_types();
|
|
6367
6414
|
SvgTouchIos = ({ size = 16, ...props }) => {
|
|
6368
6415
|
const sizeValue = resolveSize(size);
|
|
6369
|
-
return /* @__PURE__ */
|
|
6416
|
+
return /* @__PURE__ */ React112.createElement(
|
|
6370
6417
|
"svg",
|
|
6371
6418
|
{
|
|
6372
6419
|
width: sizeValue,
|
|
@@ -6376,7 +6423,7 @@ var init_TouchIos = __esm({
|
|
|
6376
6423
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6377
6424
|
...props
|
|
6378
6425
|
},
|
|
6379
|
-
/* @__PURE__ */
|
|
6426
|
+
/* @__PURE__ */ React112.createElement(
|
|
6380
6427
|
"path",
|
|
6381
6428
|
{
|
|
6382
6429
|
d: "M15.126 16.078c0.245 0.036 0.327 0.227 0.327 0.445 -0.172 1.399 -0.499 2.734 -0.998 4.024 -0.408 1.045 -0.907 2.044 -1.534 2.979 -0.063 0.1 -0.127 0.209 -0.209 0.3 -0.163 0.191 -0.372 0.227 -0.563 0.1 -0.209 -0.136 -0.172 -0.336 -0.063 -0.527 0.19 -0.327 0.408 -0.636 0.599 -0.963 1.025 -1.78 1.688 -3.679 1.951 -5.722 0.009 -0.109 0.036 -0.209 0.063 -0.309 0.054 -0.218 0.191 -0.354 0.426 -0.327M11.751 10.21c0.989 -0.182 1.896 0.527 2.105 1.653 0.064 0.345 0.127 0.681 0.154 1.026 0.045 0.581 0.136 1.172 0.1 1.762 -0.045 3.306 -1.034 6.294 -3.012 8.956 -0.163 0.218 -0.345 0.49 -0.662 0.263 -0.299 -0.218 -0.154 -0.472 0.018 -0.708 1.497 -2.016 2.432 -4.269 2.758 -6.767 0.2 -1.535 0.136 -3.043 -0.163 -4.55 -0.127 -0.645 -0.69 -0.981 -1.325 -0.845 -0.535 0.118 -0.871 0.654 -0.753 1.262 0.281 1.49 0.318 2.97 0.046 4.46 -0.054 0.3 -0.054 0.736 -0.499 0.672 -0.454 -0.063 -0.318 -0.463 -0.263 -0.772 0.236 -1.371 0.245 -2.734 -0.027 -4.096 -0.236 -1.19 0.381 -2.107 1.524 -2.316m2.059 -2.171c0.118 -0.2 0.299 -0.245 0.508 -0.145 0.508 0.254 0.925 0.609 1.297 1.044 0.735 0.863 1.052 1.889 1.198 2.988 0.109 0.89 0.227 1.771 0.2 2.407 -0.009 3.388 -0.771 6.303 -2.295 9.028 -0.027 0.054 -0.054 0.109 -0.091 0.154 -0.145 0.236 -0.336 0.382 -0.599 0.218 -0.245 -0.145 -0.2 -0.381 -0.073 -0.599 0.309 -0.536 0.581 -1.09 0.835 -1.662 1.007 -2.261 1.47 -4.632 1.452 -7.103 -0.009 -1.099 -0.127 -2.207 -0.381 -3.279 -0.209 -0.917 -0.699 -1.662 -1.452 -2.234 -0.154 -0.118 -0.326 -0.227 -0.472 -0.345 -0.154 -0.127 -0.245 -0.281 -0.127 -0.472m-1.86 3.624c0.263 -0.045 0.39 0.118 0.436 0.354 0.181 0.881 0.281 1.771 0.272 2.661 -0.064 3.224 -1.089 6.094 -3.158 8.592 -0.045 0.055 -0.091 0.118 -0.145 0.173 -0.172 0.191 -0.381 0.282 -0.59 0.1 -0.2 -0.164 -0.154 -0.382 -0.009 -0.572 0.245 -0.327 0.508 -0.636 0.744 -0.972C11.034 19.865 11.796 17.467 11.896 14.843c0.027 -0.817 -0.082 -1.626 -0.209 -2.434 -0.018 -0.091 -0.036 -0.182 -0.045 -0.272 -0.018 -0.236 0.045 -0.436 0.309 -0.472M17.032 19.52c0.064 -0.245 0.191 -0.418 0.481 -0.364 0.209 0.045 0.291 0.2 0.291 0.409 -0.027 0.109 -0.045 0.227 -0.082 0.345 -0.299 1.017 -0.653 2.007 -1.125 2.961 -0.118 0.245 -0.281 0.472 -0.59 0.327 -0.29 -0.136 -0.218 -0.399 -0.109 -0.627 0.454 -0.99 0.844 -2.007 1.134 -3.052m-7.422 -0.7c0.091 -0.218 0.227 -0.409 0.508 -0.327 0.209 0.064 0.272 0.227 0.245 0.509 -0.091 0.209 -0.209 0.481 -0.336 0.754 -0.544 1.153 -1.243 2.207 -2.132 3.124 -0.191 0.191 -0.399 0.372 -0.653 0.127 -0.236 -0.227 -0.091 -0.445 0.082 -0.627 0.98 -1.044 1.733 -2.234 2.287 -3.56M9.255 12.908c0.29 -0.027 0.381 0.191 0.417 0.436 0.027 0.182 0.064 0.354 0.073 0.536 0 0.254 -0.009 0.509 -0.009 0.772 -0.036 2.861 -1.062 5.322 -3.031 7.402l-0.19 0.191c-0.19 0.181 -0.417 0.29 -0.635 0.073 -0.236 -0.227 -0.1 -0.445 0.091 -0.627A10.02 10.02 0 0 0 7.64 19.557c1.016 -1.762 1.479 -3.651 1.297 -5.695 -0.009 -0.154 -0.018 -0.3 -0.018 -0.454 -0.009 -0.245 0.054 -0.482 0.336 -0.5M17.685 7.44c0.227 -0.163 0.399 -0.036 0.544 0.145 0.671 0.89 1.071 1.898 1.288 2.97 0.263 1.353 0.426 2.698 0.399 3.815 0.009 2.607 -0.39 4.886 -1.17 7.103 -0.054 0.145 -0.109 0.282 -0.163 0.427 -0.091 0.236 -0.245 0.409 -0.517 0.309 -0.263 -0.1 -0.29 -0.318 -0.2 -0.563 0.118 -0.345 0.236 -0.681 0.345 -1.036 0.671 -2.089 1.007 -4.242 0.926 -6.44 -0.073 -1.853 -0.173 -3.724 -1.08 -5.422 -0.136 -0.254 -0.299 -0.491 -0.445 -0.745 -0.118 -0.209 -0.136 -0.418 0.073 -0.563m-5.862 -0.181c0.181 0 0.245 -0.009 0.299 0 0.263 0.027 0.563 0.073 0.572 0.4 0.009 0.363 -0.299 0.409 -0.59 0.409 -1.524 -0.027 -2.686 0.609 -3.493 1.889 -0.535 0.854 -0.708 1.789 -0.517 2.788 0.608 3.279 -0.281 6.104 -2.622 8.465 -0.082 0.082 -0.173 0.173 -0.272 0.245 -0.2 0.164 -0.417 0.218 -0.599 0 -0.172 -0.2 -0.082 -0.399 0.082 -0.563 0.49 -0.472 0.962 -0.963 1.343 -1.526 1.261 -1.88 1.787 -3.942 1.334 -6.167 -0.608 -3.052 1.443 -5.813 4.464 -5.94M5.545 17.222c0.1 -0.227 0.227 -0.4 0.508 -0.345 0.181 0.054 0.272 0.191 0.281 0.427a5.2 5.2 0 0 1 -0.118 0.336c-0.463 1.09 -1.161 1.998 -2.042 2.779 -0.209 0.191 -0.454 0.3 -0.671 0.036 -0.209 -0.245 -0.036 -0.463 0.154 -0.618 0.844 -0.717 1.461 -1.598 1.887 -2.616m15.334 -4.314c0.372 -0.045 0.445 0.254 0.454 0.545 0.027 0.427 0.018 0.854 0.018 1.281 0.027 1.753 -0.209 3.47 -0.617 5.168 -0.018 0.055 -0.027 0.118 -0.045 0.173 -0.081 0.263 -0.145 0.59 -0.517 0.49 -0.354 -0.091 -0.318 -0.391 -0.245 -0.672 0.191 -0.736 0.345 -1.471 0.436 -2.225 0.181 -1.381 0.317 -2.761 0.181 -4.16 -0.027 -0.282 0.009 -0.554 0.336 -0.6M7.187 6.078c0.172 -0.109 0.345 -0.109 0.49 0.045 0.154 0.154 0.127 0.336 0 0.49 -0.118 0.136 -0.254 0.264 -0.381 0.391 -1.806 1.78 -2.486 3.914 -2.033 6.412 0.381 2.098 -0.19 3.924 -1.597 5.495 -0.181 0.2 -0.399 0.372 -0.617 0.536 -0.163 0.118 -0.345 0.127 -0.49 -0.036 -0.154 -0.182 -0.118 -0.363 0.036 -0.527 0.136 -0.145 0.281 -0.272 0.417 -0.418 1.043 -1.072 1.561 -2.352 1.606 -4.005a105.2 105.2 0 0 1 -0.172 -1.226c-0.381 -2.752 0.463 -5.068 2.495 -6.957 0.073 -0.073 0.163 -0.136 0.245 -0.2M3.258 12.009c0.209 -0.009 0.354 0.118 0.381 0.318 0.079 0.799 0.309 1.452 0.309 2.207 -0.054 1.489 -0.572 2.67 -1.606 3.624 -0.172 0.154 -0.363 0.245 -0.563 0.063 -0.209 -0.191 -0.181 -0.427 0.009 -0.599 1.37 -1.244 1.549 -3.088 1.202 -4.311 -0.084 -0.298 -0.141 -0.886 -0.081 -1.032 0.056 -0.136 0.14 -0.27 0.349 -0.27m8.711 -6.204c2.922 -0.018 5.544 2.135 6.115 5.032 0.245 1.244 0.399 2.507 0.372 3.86 0.036 0.845 -0.081 1.762 -0.19 2.68a1.24 1.24 0 0 1 -0.054 0.263c-0.054 0.236 -0.173 0.445 -0.454 0.4 -0.281 -0.054 -0.345 -0.281 -0.299 -0.527 0.091 -0.6 0.136 -1.199 0.191 -1.798 0.154 -1.735 0 -3.451 -0.427 -5.132C16.533 7.885 13.802 6.178 11.089 6.668c-2.804 0.509 -4.754 3.006 -4.5 5.804 0.073 0.799 0.299 1.581 0.245 2.389 -0.009 0.163 -0.009 0.336 -0.045 0.5 -0.045 0.218 -0.154 0.418 -0.417 0.39 -0.281 -0.027 -0.381 -0.245 -0.354 -0.49 0.036 -0.391 0.064 -0.781 0.009 -1.172 -0.136 -1.044 -0.336 -2.089 -0.136 -3.151 0.553 -2.934 3.112 -5.114 6.079 -5.132M14.754 2.236c0.091 -0.272 0.317 -0.3 0.562 -0.227 0.626 0.191 1.225 0.445 1.788 0.772 3.166 1.825 4.927 4.596 5.435 8.192 0.172 1.217 0.309 2.434 0.272 3.733 0.045 0.799 -0.036 1.653 -0.127 2.507 -0.027 0.282 -0.036 0.69 -0.472 0.627 -0.417 -0.064 -0.336 -0.436 -0.299 -0.736 0.299 -2.507 0.191 -4.996 -0.426 -7.43 -0.844 -3.37 -2.967 -5.64 -6.206 -6.885 -0.073 -0.027 -0.145 -0.045 -0.218 -0.073 -0.218 -0.091 -0.39 -0.227 -0.308 -0.481m-4.192 -0.672c0.88 -0.136 1.778 -0.173 2.667 -0.027 0.254 0.045 0.508 0.109 0.49 0.427 -0.027 0.354 -0.299 0.345 -0.572 0.336 -0.336 -0.027 -0.671 -0.018 -1.007 -0.018 -4.945 -0.173 -9.409 3.588 -9.908 8.965 -0.091 0.99 0.045 1.962 0.2 2.934 0.154 0.936 -0.127 1.762 -0.708 2.498 -0.163 0.209 -0.372 0.418 -0.644 0.191 -0.281 -0.227 -0.118 -0.463 0.055 -0.672 0.553 -0.672 0.626 -1.444 0.481 -2.271 -1.007 -6.031 2.885 -11.426 8.947 -12.362M1.439 6.432c0.098 -0.08 0.219 -0.105 0.349 -0.036 0.191 0.091 0.263 0.254 0.191 0.454 -0.091 0.254 -0.209 0.499 -0.318 0.754 -0.916 2.162 -1.143 4.396 -0.662 6.703 0.064 0.3 0.29 0.718 -0.2 0.836 -0.49 0.118 -0.49 -0.354 -0.554 -0.654C0.095 13.731 -0.017 12.967 0.003 12.281a12.114 12.114 0 0 1 0.022 -1.029c0.085 -1.569 0.483 -2.998 1.128 -4.375 0.046 -0.108 0.099 -0.209 0.164 -0.304l0.008 -0.015c0.027 -0.053 0.067 -0.096 0.114 -0.126m9.613 2.452c1.914 -0.563 3.756 0.563 4.192 2.543 0.19 0.863 0.263 1.753 0.309 2.643v0.409c-0.009 0.245 -0.091 0.472 -0.381 0.472s-0.363 -0.218 -0.372 -0.472c-0.045 -0.917 -0.118 -1.835 -0.281 -2.743 -0.336 -1.835 -2.16 -2.77 -3.738 -1.908 -0.526 0.291 -0.925 0.727 -1.134 1.308 -0.027 0.073 -0.055 0.145 -0.073 0.218 -0.082 0.254 -0.181 0.527 -0.517 0.427 -0.363 -0.109 -0.29 -0.418 -0.209 -0.681 0.363 -1.108 1.08 -1.889 2.205 -2.216m7.34 -6.595a0.333 0.333 0 0 1 0.44 -0.099c0.119 0.051 0.236 0.146 0.341 0.227 2.106 1.594 3.498 3.565 4.231 5.882a11.88 11.88 0 0 1 0.57 2.96q0.015 0.178 0.025 0.358v0.545c0 0.236 -0.063 0.436 -0.345 0.445 -0.281 0.009 -0.39 -0.191 -0.408 -0.445 -0.018 -0.454 -0.027 -0.908 -0.082 -1.353 -0.381 -3.215 -1.878 -5.804 -4.427 -7.784 -0.208 -0.166 -0.537 -0.325 -0.396 -0.623 0.009 -0.04 0.026 -0.078 0.051 -0.114m-7.268 0.655c4.609 -0.454 9.037 2.743 9.863 7.593 0.045 0.236 0.082 0.463 0.109 0.608 0.009 0.327 0.027 0.6 -0.309 0.636 -0.317 0.036 -0.399 -0.218 -0.445 -0.472 -0.209 -1.426 -0.599 -2.788 -1.452 -3.969 -2.114 -2.934 -4.981 -4.087 -8.511 -3.497 -3.212 0.536 -5.825 3.161 -6.533 6.376 -0.063 0.291 -0.054 0.736 -0.517 0.636 -0.49 -0.1 -0.299 -0.518 -0.227 -0.827 0.889 -3.878 4.146 -6.703 8.021 -7.085m0.789 1.399c1.751 0.064 3.257 0.518 4.591 1.489 0.045 0.036 0.1 0.073 0.145 0.109 0.2 0.182 0.481 0.363 0.236 0.672 -0.236 0.309 -0.481 0.1 -0.708 -0.064 -2.105 -1.544 -4.382 -1.798 -6.814 -0.89 -0.054 0.018 -0.109 0.045 -0.172 0.063 -0.218 0.082 -0.436 0.082 -0.545 -0.154 -0.127 -0.263 0.027 -0.436 0.254 -0.545 0.681 -0.318 1.388 -0.5 2.123 -0.6 0.336 -0.036 0.663 -0.054 0.889 -0.082M12.184 0c1.557 0 3.196 0.374 4.766 1.073 0.045 0.018 0.082 0.036 0.127 0.055 0.263 0.109 0.481 0.263 0.354 0.581 -0.136 0.327 -0.408 0.236 -0.653 0.118 -0.792 -0.371 -2.328 -0.83 -3.284 -1.002a11.4 11.4 0 0 0 -1.494 -0.097c-0.935 0 -1.843 0.113 -2.712 0.326 -2.195 0.575 -4.338 1.88 -6.121 4.026 -0.182 0.226 -0.348 0.61 -0.696 0.395a0.334 0.334 0 0 1 -0.2 -0.195c-0.13 -0.244 0.141 -0.481 0.297 -0.682C4.628 2.027 7.305 0.528 10.571 0.092 11.043 0.029 11.694 0 12.184 0",
|
|
@@ -6394,7 +6441,7 @@ var Trash2_exports = {};
|
|
|
6394
6441
|
__export(Trash2_exports, {
|
|
6395
6442
|
default: () => Trash2_default
|
|
6396
6443
|
});
|
|
6397
|
-
import * as
|
|
6444
|
+
import * as React113 from "react";
|
|
6398
6445
|
var SvgTrash2, Trash2_default;
|
|
6399
6446
|
var init_Trash2 = __esm({
|
|
6400
6447
|
"src/react/Trash2.tsx"() {
|
|
@@ -6402,7 +6449,7 @@ var init_Trash2 = __esm({
|
|
|
6402
6449
|
init_types();
|
|
6403
6450
|
SvgTrash2 = ({ size = 16, ...props }) => {
|
|
6404
6451
|
const sizeValue = resolveSize(size);
|
|
6405
|
-
return /* @__PURE__ */
|
|
6452
|
+
return /* @__PURE__ */ React113.createElement(
|
|
6406
6453
|
"svg",
|
|
6407
6454
|
{
|
|
6408
6455
|
width: sizeValue,
|
|
@@ -6412,7 +6459,7 @@ var init_Trash2 = __esm({
|
|
|
6412
6459
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6413
6460
|
...props
|
|
6414
6461
|
},
|
|
6415
|
-
/* @__PURE__ */
|
|
6462
|
+
/* @__PURE__ */ React113.createElement(
|
|
6416
6463
|
"path",
|
|
6417
6464
|
{
|
|
6418
6465
|
fillRule: "evenodd",
|
|
@@ -6421,7 +6468,7 @@ var init_Trash2 = __esm({
|
|
|
6421
6468
|
fill: "currentColor"
|
|
6422
6469
|
}
|
|
6423
6470
|
),
|
|
6424
|
-
/* @__PURE__ */
|
|
6471
|
+
/* @__PURE__ */ React113.createElement(
|
|
6425
6472
|
"path",
|
|
6426
6473
|
{
|
|
6427
6474
|
fillRule: "evenodd",
|
|
@@ -6430,7 +6477,7 @@ var init_Trash2 = __esm({
|
|
|
6430
6477
|
fill: "currentColor"
|
|
6431
6478
|
}
|
|
6432
6479
|
),
|
|
6433
|
-
/* @__PURE__ */
|
|
6480
|
+
/* @__PURE__ */ React113.createElement(
|
|
6434
6481
|
"path",
|
|
6435
6482
|
{
|
|
6436
6483
|
fillRule: "evenodd",
|
|
@@ -6439,7 +6486,7 @@ var init_Trash2 = __esm({
|
|
|
6439
6486
|
fill: "currentColor"
|
|
6440
6487
|
}
|
|
6441
6488
|
),
|
|
6442
|
-
/* @__PURE__ */
|
|
6489
|
+
/* @__PURE__ */ React113.createElement(
|
|
6443
6490
|
"path",
|
|
6444
6491
|
{
|
|
6445
6492
|
fillRule: "evenodd",
|
|
@@ -6448,7 +6495,7 @@ var init_Trash2 = __esm({
|
|
|
6448
6495
|
fill: "currentColor"
|
|
6449
6496
|
}
|
|
6450
6497
|
),
|
|
6451
|
-
/* @__PURE__ */
|
|
6498
|
+
/* @__PURE__ */ React113.createElement(
|
|
6452
6499
|
"path",
|
|
6453
6500
|
{
|
|
6454
6501
|
fillRule: "evenodd",
|
|
@@ -6468,7 +6515,7 @@ var User_exports = {};
|
|
|
6468
6515
|
__export(User_exports, {
|
|
6469
6516
|
default: () => User_default
|
|
6470
6517
|
});
|
|
6471
|
-
import * as
|
|
6518
|
+
import * as React114 from "react";
|
|
6472
6519
|
var SvgUser, User_default;
|
|
6473
6520
|
var init_User = __esm({
|
|
6474
6521
|
"src/react/User.tsx"() {
|
|
@@ -6476,7 +6523,7 @@ var init_User = __esm({
|
|
|
6476
6523
|
init_types();
|
|
6477
6524
|
SvgUser = ({ size = 16, ...props }) => {
|
|
6478
6525
|
const sizeValue = resolveSize(size);
|
|
6479
|
-
return /* @__PURE__ */
|
|
6526
|
+
return /* @__PURE__ */ React114.createElement(
|
|
6480
6527
|
"svg",
|
|
6481
6528
|
{
|
|
6482
6529
|
width: sizeValue,
|
|
@@ -6486,7 +6533,7 @@ var init_User = __esm({
|
|
|
6486
6533
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6487
6534
|
...props
|
|
6488
6535
|
},
|
|
6489
|
-
/* @__PURE__ */
|
|
6536
|
+
/* @__PURE__ */ React114.createElement(
|
|
6490
6537
|
"path",
|
|
6491
6538
|
{
|
|
6492
6539
|
fillRule: "evenodd",
|
|
@@ -6495,7 +6542,7 @@ var init_User = __esm({
|
|
|
6495
6542
|
fill: "currentColor"
|
|
6496
6543
|
}
|
|
6497
6544
|
),
|
|
6498
|
-
/* @__PURE__ */
|
|
6545
|
+
/* @__PURE__ */ React114.createElement(
|
|
6499
6546
|
"path",
|
|
6500
6547
|
{
|
|
6501
6548
|
fillRule: "evenodd",
|
|
@@ -6515,7 +6562,7 @@ var Warehouse_exports = {};
|
|
|
6515
6562
|
__export(Warehouse_exports, {
|
|
6516
6563
|
default: () => Warehouse_default
|
|
6517
6564
|
});
|
|
6518
|
-
import * as
|
|
6565
|
+
import * as React115 from "react";
|
|
6519
6566
|
var SvgWarehouse, Warehouse_default;
|
|
6520
6567
|
var init_Warehouse = __esm({
|
|
6521
6568
|
"src/react/Warehouse.tsx"() {
|
|
@@ -6523,7 +6570,7 @@ var init_Warehouse = __esm({
|
|
|
6523
6570
|
init_types();
|
|
6524
6571
|
SvgWarehouse = ({ size = 16, ...props }) => {
|
|
6525
6572
|
const sizeValue = resolveSize(size);
|
|
6526
|
-
return /* @__PURE__ */
|
|
6573
|
+
return /* @__PURE__ */ React115.createElement(
|
|
6527
6574
|
"svg",
|
|
6528
6575
|
{
|
|
6529
6576
|
width: sizeValue,
|
|
@@ -6533,7 +6580,7 @@ var init_Warehouse = __esm({
|
|
|
6533
6580
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6534
6581
|
...props
|
|
6535
6582
|
},
|
|
6536
|
-
/* @__PURE__ */
|
|
6583
|
+
/* @__PURE__ */ React115.createElement(
|
|
6537
6584
|
"path",
|
|
6538
6585
|
{
|
|
6539
6586
|
fillRule: "evenodd",
|
|
@@ -6542,7 +6589,7 @@ var init_Warehouse = __esm({
|
|
|
6542
6589
|
fill: "currentColor"
|
|
6543
6590
|
}
|
|
6544
6591
|
),
|
|
6545
|
-
/* @__PURE__ */
|
|
6592
|
+
/* @__PURE__ */ React115.createElement(
|
|
6546
6593
|
"path",
|
|
6547
6594
|
{
|
|
6548
6595
|
fillRule: "evenodd",
|
|
@@ -6551,7 +6598,7 @@ var init_Warehouse = __esm({
|
|
|
6551
6598
|
fill: "currentColor"
|
|
6552
6599
|
}
|
|
6553
6600
|
),
|
|
6554
|
-
/* @__PURE__ */
|
|
6601
|
+
/* @__PURE__ */ React115.createElement(
|
|
6555
6602
|
"path",
|
|
6556
6603
|
{
|
|
6557
6604
|
fillRule: "evenodd",
|
|
@@ -6560,7 +6607,7 @@ var init_Warehouse = __esm({
|
|
|
6560
6607
|
fill: "currentColor"
|
|
6561
6608
|
}
|
|
6562
6609
|
),
|
|
6563
|
-
/* @__PURE__ */
|
|
6610
|
+
/* @__PURE__ */ React115.createElement(
|
|
6564
6611
|
"path",
|
|
6565
6612
|
{
|
|
6566
6613
|
fillRule: "evenodd",
|
|
@@ -6580,7 +6627,7 @@ var Whatsapp_exports = {};
|
|
|
6580
6627
|
__export(Whatsapp_exports, {
|
|
6581
6628
|
default: () => Whatsapp_default
|
|
6582
6629
|
});
|
|
6583
|
-
import * as
|
|
6630
|
+
import * as React116 from "react";
|
|
6584
6631
|
var SvgWhatsapp, Whatsapp_default;
|
|
6585
6632
|
var init_Whatsapp = __esm({
|
|
6586
6633
|
"src/react/Whatsapp.tsx"() {
|
|
@@ -6588,7 +6635,7 @@ var init_Whatsapp = __esm({
|
|
|
6588
6635
|
init_types();
|
|
6589
6636
|
SvgWhatsapp = ({ size = 16, ...props }) => {
|
|
6590
6637
|
const sizeValue = resolveSize(size);
|
|
6591
|
-
return /* @__PURE__ */
|
|
6638
|
+
return /* @__PURE__ */ React116.createElement(
|
|
6592
6639
|
"svg",
|
|
6593
6640
|
{
|
|
6594
6641
|
width: sizeValue,
|
|
@@ -6598,7 +6645,7 @@ var init_Whatsapp = __esm({
|
|
|
6598
6645
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6599
6646
|
...props
|
|
6600
6647
|
},
|
|
6601
|
-
/* @__PURE__ */
|
|
6648
|
+
/* @__PURE__ */ React116.createElement(
|
|
6602
6649
|
"path",
|
|
6603
6650
|
{
|
|
6604
6651
|
fillRule: "evenodd",
|
|
@@ -6650,6 +6697,7 @@ init_ChevronUp();
|
|
|
6650
6697
|
init_CircleOff();
|
|
6651
6698
|
init_Closet();
|
|
6652
6699
|
init_Collections();
|
|
6700
|
+
init_Copy();
|
|
6653
6701
|
init_DoorOpen();
|
|
6654
6702
|
init_Duplex();
|
|
6655
6703
|
init_Edit();
|
|
@@ -6731,7 +6779,7 @@ init_Warehouse();
|
|
|
6731
6779
|
init_Whatsapp();
|
|
6732
6780
|
|
|
6733
6781
|
// src/react/Icon.tsx
|
|
6734
|
-
import * as
|
|
6782
|
+
import * as React117 from "react";
|
|
6735
6783
|
function loadIcon(name) {
|
|
6736
6784
|
switch (name) {
|
|
6737
6785
|
case "accessibility":
|
|
@@ -6806,6 +6854,8 @@ function loadIcon(name) {
|
|
|
6806
6854
|
return Promise.resolve().then(() => (init_Closet(), Closet_exports)).then((m) => m.default);
|
|
6807
6855
|
case "collections":
|
|
6808
6856
|
return Promise.resolve().then(() => (init_Collections(), Collections_exports)).then((m) => m.default);
|
|
6857
|
+
case "copy":
|
|
6858
|
+
return Promise.resolve().then(() => (init_Copy(), Copy_exports)).then((m) => m.default);
|
|
6809
6859
|
case "door-open":
|
|
6810
6860
|
return Promise.resolve().then(() => (init_DoorOpen(), DoorOpen_exports)).then((m) => m.default);
|
|
6811
6861
|
case "duplex":
|
|
@@ -6969,10 +7019,10 @@ function loadIcon(name) {
|
|
|
6969
7019
|
}
|
|
6970
7020
|
}
|
|
6971
7021
|
var Icon = ({ name, size = 16, color, ...props }) => {
|
|
6972
|
-
const [IconComponent, setIconComponent] =
|
|
6973
|
-
const [loading, setLoading] =
|
|
6974
|
-
const [error, setError] =
|
|
6975
|
-
|
|
7022
|
+
const [IconComponent, setIconComponent] = React117.useState(null);
|
|
7023
|
+
const [loading, setLoading] = React117.useState(true);
|
|
7024
|
+
const [error, setError] = React117.useState(null);
|
|
7025
|
+
React117.useEffect(() => {
|
|
6976
7026
|
setLoading(true);
|
|
6977
7027
|
setError(null);
|
|
6978
7028
|
loadIcon(name).then((Component) => {
|
|
@@ -6991,7 +7041,7 @@ var Icon = ({ name, size = 16, color, ...props }) => {
|
|
|
6991
7041
|
return null;
|
|
6992
7042
|
}
|
|
6993
7043
|
const style = color ? { ...props.style, color } : props.style;
|
|
6994
|
-
return /* @__PURE__ */
|
|
7044
|
+
return /* @__PURE__ */ React117.createElement(IconComponent, { size, ...props, style });
|
|
6995
7045
|
};
|
|
6996
7046
|
var Icon_default = Icon;
|
|
6997
7047
|
|
|
@@ -7034,6 +7084,7 @@ export {
|
|
|
7034
7084
|
CircleOff_default as CircleOff,
|
|
7035
7085
|
Closet_default as Closet,
|
|
7036
7086
|
Collections_default as Collections,
|
|
7087
|
+
Copy_default as Copy,
|
|
7037
7088
|
DoorOpen_default as DoorOpen,
|
|
7038
7089
|
Duplex_default as Duplex,
|
|
7039
7090
|
Edit_default as Edit,
|