@carto/meridian-ds 1.4.3-alpha-tag.5 → 1.4.3-alpha-icons-shapes.1
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/CHANGELOG.md +2 -1
- package/dist/{Alert--QYebQp3.js → Alert-D8jI1sG4.js} +1 -1
- package/dist/{Alert-DFaAeTZf.cjs → Alert-zqtoWsBL.cjs} +1 -1
- package/dist/OpenDiagonallyRight-5HZXh46V.js +59 -0
- package/dist/OpenDiagonallyRight-BrRyCV4Q.cjs +58 -0
- package/dist/{TablePaginationActions-BG2gWq0M.cjs → TablePaginationActions-CFGXm44W.cjs} +21 -3
- package/dist/{TablePaginationActions-Dit3VW-A.js → TablePaginationActions-KpTvhN4Y.js} +21 -3
- package/dist/components/index.cjs +1062 -206
- package/dist/components/index.js +1064 -208
- package/dist/custom-icons/index.cjs +339 -390
- package/dist/custom-icons/index.js +339 -390
- package/dist/theme/index.cjs +8 -3
- package/dist/theme/index.js +9 -4
- package/dist/types/components/molecules/index.d.ts +0 -2
- package/dist/types/components/molecules/index.d.ts.map +1 -1
- package/dist/types/components/organisms/CodeArea/CodeAreaDialog/CodeAreaDialog.d.ts +16 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaDialog/CodeAreaDialog.d.ts.map +1 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaDialog/CodeAreaDialogConfirmation.d.ts +16 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaDialog/CodeAreaDialogConfirmation.d.ts.map +1 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaDialog/CodeAreaDialogContent.d.ts +10 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaDialog/CodeAreaDialogContent.d.ts.map +1 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaDialog/CodeAreaDialogError.d.ts +8 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaDialog/CodeAreaDialogError.d.ts.map +1 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaField.d.ts +4 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaField.d.ts.map +1 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaFooter.d.ts +12 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaFooter.d.ts.map +1 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaHeader.d.ts +9 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaHeader.d.ts.map +1 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaInput.d.ts +28 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaInput.d.ts.map +1 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaTheme.d.ts +7 -0
- package/dist/types/components/organisms/CodeArea/CodeAreaTheme.d.ts.map +1 -0
- package/dist/types/components/organisms/CodeArea/index.d.ts +9 -0
- package/dist/types/components/organisms/CodeArea/index.d.ts.map +1 -0
- package/dist/types/components/organisms/CodeArea/types.d.ts +38 -0
- package/dist/types/components/organisms/CodeArea/types.d.ts.map +1 -0
- package/dist/types/components/organisms/CodeArea/utils.d.ts +5 -0
- package/dist/types/components/organisms/CodeArea/utils.d.ts.map +1 -0
- package/dist/types/components/organisms/index.d.ts +2 -0
- package/dist/types/components/organisms/index.d.ts.map +1 -1
- package/dist/types/localization/en.d.ts +6 -0
- package/dist/types/localization/en.d.ts.map +1 -1
- package/dist/types/localization/es.d.ts +6 -0
- package/dist/types/localization/es.d.ts.map +1 -1
- package/dist/types/localization/id.d.ts +6 -0
- package/dist/types/localization/id.d.ts.map +1 -1
- package/dist/types/localization/index.d.ts +18 -0
- package/dist/types/localization/index.d.ts.map +1 -1
- package/dist/types/theme/sections/components/data-display.d.ts.map +1 -1
- package/dist/widgets/index.cjs +2 -2
- package/dist/widgets/index.js +2 -2
- package/package.json +6 -1
- package/dist/types/components/molecules/Tag.d.ts +0 -31
- package/dist/types/components/molecules/Tag.d.ts.map +0 -1
|
@@ -2,8 +2,9 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
import { createSvgIcon } from "@mui/material/utils";
|
|
4
4
|
import { A } from "../ArrowDown-CY_wMVJT.js";
|
|
5
|
+
import { C, O } from "../OpenDiagonallyRight-5HZXh46V.js";
|
|
5
6
|
import { S, a } from "../SwatchSquare-DDi0beUM.js";
|
|
6
|
-
const Icon$
|
|
7
|
+
const Icon$2Z = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
7
8
|
"path",
|
|
8
9
|
{
|
|
9
10
|
fill: "currentColor",
|
|
@@ -12,10 +13,10 @@ const Icon$2$ = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
12
13
|
clipRule: "evenodd"
|
|
13
14
|
}
|
|
14
15
|
) });
|
|
15
|
-
const BaseSvgIcon$
|
|
16
|
+
const BaseSvgIcon$2Z = createSvgIcon(Icon$2Z(), "AccessIn");
|
|
16
17
|
function AccessIn({ width, height, sx, ...props }, ref) {
|
|
17
18
|
return /* @__PURE__ */ jsx(
|
|
18
|
-
BaseSvgIcon$
|
|
19
|
+
BaseSvgIcon$2Z,
|
|
19
20
|
{
|
|
20
21
|
ref,
|
|
21
22
|
viewBox: "0 0 24 24",
|
|
@@ -29,17 +30,17 @@ function AccessIn({ width, height, sx, ...props }, ref) {
|
|
|
29
30
|
);
|
|
30
31
|
}
|
|
31
32
|
const AccessIn$1 = forwardRef(AccessIn);
|
|
32
|
-
const Icon$
|
|
33
|
+
const Icon$2Y = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
33
34
|
"path",
|
|
34
35
|
{
|
|
35
36
|
fill: "currentColor",
|
|
36
37
|
d: "M4 8h4V4H4zM10 20h4v-4h-4zM8 20H4v-4h4zM4 14h4v-4H4zM14 14h-4v-4h4zM14 8h-4V4h4zM16 14h4v-4h-4zM20 20h-4v-4h4zM21 0h-2v3h-3v2h3v3h2V5h3V3h-3z"
|
|
37
38
|
}
|
|
38
39
|
) });
|
|
39
|
-
const BaseSvgIcon$
|
|
40
|
+
const BaseSvgIcon$2Y = createSvgIcon(Icon$2Y(), "AddApp");
|
|
40
41
|
function AddApp({ width, height, sx, ...props }, ref) {
|
|
41
42
|
return /* @__PURE__ */ jsx(
|
|
42
|
-
BaseSvgIcon$
|
|
43
|
+
BaseSvgIcon$2Y,
|
|
43
44
|
{
|
|
44
45
|
ref,
|
|
45
46
|
viewBox: "0 0 24 24",
|
|
@@ -53,7 +54,7 @@ function AddApp({ width, height, sx, ...props }, ref) {
|
|
|
53
54
|
);
|
|
54
55
|
}
|
|
55
56
|
const AddApp$1 = forwardRef(AddApp);
|
|
56
|
-
const Icon$
|
|
57
|
+
const Icon$2X = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
57
58
|
"path",
|
|
58
59
|
{
|
|
59
60
|
fill: "currentColor",
|
|
@@ -62,10 +63,10 @@ const Icon$2Z = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
62
63
|
clipRule: "evenodd"
|
|
63
64
|
}
|
|
64
65
|
) });
|
|
65
|
-
const BaseSvgIcon$
|
|
66
|
+
const BaseSvgIcon$2X = createSvgIcon(Icon$2X(), "AddSection");
|
|
66
67
|
function AddSection({ width, height, sx, ...props }, ref) {
|
|
67
68
|
return /* @__PURE__ */ jsx(
|
|
68
|
-
BaseSvgIcon$
|
|
69
|
+
BaseSvgIcon$2X,
|
|
69
70
|
{
|
|
70
71
|
ref,
|
|
71
72
|
viewBox: "0 0 24 24",
|
|
@@ -79,17 +80,17 @@ function AddSection({ width, height, sx, ...props }, ref) {
|
|
|
79
80
|
);
|
|
80
81
|
}
|
|
81
82
|
const AddSection$1 = forwardRef(AddSection);
|
|
82
|
-
const Icon$
|
|
83
|
+
const Icon$2W = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
83
84
|
"path",
|
|
84
85
|
{
|
|
85
86
|
fill: "currentColor",
|
|
86
87
|
d: "M3 7v2h10V7zm4 6v2H3v2h4v2h2v-6zm14 4v-2H11v2zm-6-6h2V9h4V7h-4V5h-2z"
|
|
87
88
|
}
|
|
88
89
|
) });
|
|
89
|
-
const BaseSvgIcon$
|
|
90
|
+
const BaseSvgIcon$2W = createSvgIcon(Icon$2W(), "AdvancedSettings");
|
|
90
91
|
function AdvancedSettings({ width, height, sx, ...props }, ref) {
|
|
91
92
|
return /* @__PURE__ */ jsx(
|
|
92
|
-
BaseSvgIcon$
|
|
93
|
+
BaseSvgIcon$2W,
|
|
93
94
|
{
|
|
94
95
|
ref,
|
|
95
96
|
viewBox: "0 0 24 24",
|
|
@@ -103,7 +104,7 @@ function AdvancedSettings({ width, height, sx, ...props }, ref) {
|
|
|
103
104
|
);
|
|
104
105
|
}
|
|
105
106
|
const AdvancedSettings$1 = forwardRef(AdvancedSettings);
|
|
106
|
-
const Icon$
|
|
107
|
+
const Icon$2V = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
107
108
|
/* @__PURE__ */ jsx(
|
|
108
109
|
"path",
|
|
109
110
|
{
|
|
@@ -123,10 +124,10 @@ const Icon$2X = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
123
124
|
}
|
|
124
125
|
)
|
|
125
126
|
] });
|
|
126
|
-
const BaseSvgIcon$
|
|
127
|
+
const BaseSvgIcon$2V = createSvgIcon(Icon$2V(), "Annotation");
|
|
127
128
|
function Annotation({ width, height, sx, ...props }, ref) {
|
|
128
129
|
return /* @__PURE__ */ jsx(
|
|
129
|
-
BaseSvgIcon$
|
|
130
|
+
BaseSvgIcon$2V,
|
|
130
131
|
{
|
|
131
132
|
ref,
|
|
132
133
|
viewBox: "0 0 24 24",
|
|
@@ -140,7 +141,7 @@ function Annotation({ width, height, sx, ...props }, ref) {
|
|
|
140
141
|
);
|
|
141
142
|
}
|
|
142
143
|
const Annotation$1 = forwardRef(Annotation);
|
|
143
|
-
const Icon$
|
|
144
|
+
const Icon$2U = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
144
145
|
/* @__PURE__ */ jsx(
|
|
145
146
|
"path",
|
|
146
147
|
{
|
|
@@ -165,10 +166,10 @@ const Icon$2W = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
165
166
|
}
|
|
166
167
|
)
|
|
167
168
|
] });
|
|
168
|
-
const BaseSvgIcon$
|
|
169
|
+
const BaseSvgIcon$2U = createSvgIcon(Icon$2U(), "ApiCall");
|
|
169
170
|
function ApiCall({ width, height, sx, ...props }, ref) {
|
|
170
171
|
return /* @__PURE__ */ jsx(
|
|
171
|
-
BaseSvgIcon$
|
|
172
|
+
BaseSvgIcon$2U,
|
|
172
173
|
{
|
|
173
174
|
ref,
|
|
174
175
|
viewBox: "0 0 24 24",
|
|
@@ -182,7 +183,7 @@ function ApiCall({ width, height, sx, ...props }, ref) {
|
|
|
182
183
|
);
|
|
183
184
|
}
|
|
184
185
|
const ApiCall$1 = forwardRef(ApiCall);
|
|
185
|
-
const Icon$
|
|
186
|
+
const Icon$2T = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
186
187
|
"path",
|
|
187
188
|
{
|
|
188
189
|
fill: "currentColor",
|
|
@@ -191,10 +192,10 @@ const Icon$2V = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
191
192
|
clipRule: "evenodd"
|
|
192
193
|
}
|
|
193
194
|
) });
|
|
194
|
-
const BaseSvgIcon$
|
|
195
|
+
const BaseSvgIcon$2T = createSvgIcon(Icon$2T(), "ArrowLeft");
|
|
195
196
|
function ArrowLeft({ width, height, sx, ...props }, ref) {
|
|
196
197
|
return /* @__PURE__ */ jsx(
|
|
197
|
-
BaseSvgIcon$
|
|
198
|
+
BaseSvgIcon$2T,
|
|
198
199
|
{
|
|
199
200
|
ref,
|
|
200
201
|
viewBox: "0 0 24 24",
|
|
@@ -208,7 +209,7 @@ function ArrowLeft({ width, height, sx, ...props }, ref) {
|
|
|
208
209
|
);
|
|
209
210
|
}
|
|
210
211
|
const ArrowLeft$1 = forwardRef(ArrowLeft);
|
|
211
|
-
const Icon$
|
|
212
|
+
const Icon$2S = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
212
213
|
"path",
|
|
213
214
|
{
|
|
214
215
|
fill: "currentColor",
|
|
@@ -217,10 +218,10 @@ const Icon$2U = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
217
218
|
clipRule: "evenodd"
|
|
218
219
|
}
|
|
219
220
|
) });
|
|
220
|
-
const BaseSvgIcon$
|
|
221
|
+
const BaseSvgIcon$2S = createSvgIcon(Icon$2S(), "ArrowRight");
|
|
221
222
|
function ArrowRight({ width, height, sx, ...props }, ref) {
|
|
222
223
|
return /* @__PURE__ */ jsx(
|
|
223
|
-
BaseSvgIcon$
|
|
224
|
+
BaseSvgIcon$2S,
|
|
224
225
|
{
|
|
225
226
|
ref,
|
|
226
227
|
viewBox: "0 0 24 24",
|
|
@@ -234,7 +235,7 @@ function ArrowRight({ width, height, sx, ...props }, ref) {
|
|
|
234
235
|
);
|
|
235
236
|
}
|
|
236
237
|
const ArrowRight$1 = forwardRef(ArrowRight);
|
|
237
|
-
const Icon$
|
|
238
|
+
const Icon$2R = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
238
239
|
"path",
|
|
239
240
|
{
|
|
240
241
|
fill: "currentColor",
|
|
@@ -243,10 +244,10 @@ const Icon$2T = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
243
244
|
clipRule: "evenodd"
|
|
244
245
|
}
|
|
245
246
|
) });
|
|
246
|
-
const BaseSvgIcon$
|
|
247
|
+
const BaseSvgIcon$2R = createSvgIcon(Icon$2R(), "ArrowUp");
|
|
247
248
|
function ArrowUp({ width, height, sx, ...props }, ref) {
|
|
248
249
|
return /* @__PURE__ */ jsx(
|
|
249
|
-
BaseSvgIcon$
|
|
250
|
+
BaseSvgIcon$2R,
|
|
250
251
|
{
|
|
251
252
|
ref,
|
|
252
253
|
viewBox: "0 0 24 24",
|
|
@@ -260,7 +261,7 @@ function ArrowUp({ width, height, sx, ...props }, ref) {
|
|
|
260
261
|
);
|
|
261
262
|
}
|
|
262
263
|
const ArrowUp$1 = forwardRef(ArrowUp);
|
|
263
|
-
const Icon$
|
|
264
|
+
const Icon$2Q = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
264
265
|
/* @__PURE__ */ jsx(
|
|
265
266
|
"path",
|
|
266
267
|
{
|
|
@@ -280,10 +281,10 @@ const Icon$2S = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
280
281
|
}
|
|
281
282
|
)
|
|
282
283
|
] });
|
|
283
|
-
const BaseSvgIcon$
|
|
284
|
+
const BaseSvgIcon$2Q = createSvgIcon(Icon$2Q(), "Autostyle");
|
|
284
285
|
function Autostyle({ width, height, sx, ...props }, ref) {
|
|
285
286
|
return /* @__PURE__ */ jsx(
|
|
286
|
-
BaseSvgIcon$
|
|
287
|
+
BaseSvgIcon$2Q,
|
|
287
288
|
{
|
|
288
289
|
ref,
|
|
289
290
|
viewBox: "0 0 24 24",
|
|
@@ -297,7 +298,7 @@ function Autostyle({ width, height, sx, ...props }, ref) {
|
|
|
297
298
|
);
|
|
298
299
|
}
|
|
299
300
|
const Autostyle$1 = forwardRef(Autostyle);
|
|
300
|
-
const Icon$
|
|
301
|
+
const Icon$2P = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
301
302
|
/* @__PURE__ */ jsx(
|
|
302
303
|
"path",
|
|
303
304
|
{
|
|
@@ -315,10 +316,10 @@ const Icon$2R = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
315
316
|
}
|
|
316
317
|
)
|
|
317
318
|
] });
|
|
318
|
-
const BaseSvgIcon$
|
|
319
|
+
const BaseSvgIcon$2P = createSvgIcon(Icon$2P(), "Avg");
|
|
319
320
|
function Avg({ width, height, sx, ...props }, ref) {
|
|
320
321
|
return /* @__PURE__ */ jsx(
|
|
321
|
-
BaseSvgIcon$
|
|
322
|
+
BaseSvgIcon$2P,
|
|
322
323
|
{
|
|
323
324
|
ref,
|
|
324
325
|
viewBox: "0 0 24 24",
|
|
@@ -332,7 +333,7 @@ function Avg({ width, height, sx, ...props }, ref) {
|
|
|
332
333
|
);
|
|
333
334
|
}
|
|
334
335
|
const Avg$1 = forwardRef(Avg);
|
|
335
|
-
const Icon$
|
|
336
|
+
const Icon$2O = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
336
337
|
"path",
|
|
337
338
|
{
|
|
338
339
|
fill: "currentColor",
|
|
@@ -341,10 +342,10 @@ const Icon$2Q = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
341
342
|
clipRule: "evenodd"
|
|
342
343
|
}
|
|
343
344
|
) });
|
|
344
|
-
const BaseSvgIcon$
|
|
345
|
+
const BaseSvgIcon$2O = createSvgIcon(Icon$2O(), "Behavioral");
|
|
345
346
|
function Behavioral({ width, height, sx, ...props }, ref) {
|
|
346
347
|
return /* @__PURE__ */ jsx(
|
|
347
|
-
BaseSvgIcon$
|
|
348
|
+
BaseSvgIcon$2O,
|
|
348
349
|
{
|
|
349
350
|
ref,
|
|
350
351
|
viewBox: "0 0 24 24",
|
|
@@ -358,7 +359,7 @@ function Behavioral({ width, height, sx, ...props }, ref) {
|
|
|
358
359
|
);
|
|
359
360
|
}
|
|
360
361
|
const Behavioral$1 = forwardRef(Behavioral);
|
|
361
|
-
const Icon$
|
|
362
|
+
const Icon$2N = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
362
363
|
/* @__PURE__ */ jsx(
|
|
363
364
|
"path",
|
|
364
365
|
{
|
|
@@ -376,10 +377,10 @@ const Icon$2P = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
376
377
|
}
|
|
377
378
|
)
|
|
378
379
|
] });
|
|
379
|
-
const BaseSvgIcon$
|
|
380
|
+
const BaseSvgIcon$2N = createSvgIcon(Icon$2N(), "Bigquery");
|
|
380
381
|
function Bigquery({ width, height, sx, ...props }, ref) {
|
|
381
382
|
return /* @__PURE__ */ jsx(
|
|
382
|
-
BaseSvgIcon$
|
|
383
|
+
BaseSvgIcon$2N,
|
|
383
384
|
{
|
|
384
385
|
ref,
|
|
385
386
|
viewBox: "0 0 24 24",
|
|
@@ -393,7 +394,7 @@ function Bigquery({ width, height, sx, ...props }, ref) {
|
|
|
393
394
|
);
|
|
394
395
|
}
|
|
395
396
|
const Bigquery$1 = forwardRef(Bigquery);
|
|
396
|
-
const Icon$
|
|
397
|
+
const Icon$2M = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
397
398
|
"path",
|
|
398
399
|
{
|
|
399
400
|
fill: "currentColor",
|
|
@@ -402,10 +403,10 @@ const Icon$2O = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
402
403
|
clipRule: "evenodd"
|
|
403
404
|
}
|
|
404
405
|
) });
|
|
405
|
-
const BaseSvgIcon$
|
|
406
|
+
const BaseSvgIcon$2M = createSvgIcon(Icon$2M(), "Blending");
|
|
406
407
|
function Blending({ width, height, sx, ...props }, ref) {
|
|
407
408
|
return /* @__PURE__ */ jsx(
|
|
408
|
-
BaseSvgIcon$
|
|
409
|
+
BaseSvgIcon$2M,
|
|
409
410
|
{
|
|
410
411
|
ref,
|
|
411
412
|
viewBox: "0 0 24 24",
|
|
@@ -419,7 +420,7 @@ function Blending({ width, height, sx, ...props }, ref) {
|
|
|
419
420
|
);
|
|
420
421
|
}
|
|
421
422
|
const Blending$1 = forwardRef(Blending);
|
|
422
|
-
const Icon$
|
|
423
|
+
const Icon$2L = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
423
424
|
"path",
|
|
424
425
|
{
|
|
425
426
|
fill: "currentColor",
|
|
@@ -428,10 +429,10 @@ const Icon$2N = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
428
429
|
clipRule: "evenodd"
|
|
429
430
|
}
|
|
430
431
|
) });
|
|
431
|
-
const BaseSvgIcon$
|
|
432
|
+
const BaseSvgIcon$2L = createSvgIcon(Icon$2L(), "BlockLabel");
|
|
432
433
|
function BlockLabel({ width, height, sx, ...props }, ref) {
|
|
433
434
|
return /* @__PURE__ */ jsx(
|
|
434
|
-
BaseSvgIcon$
|
|
435
|
+
BaseSvgIcon$2L,
|
|
435
436
|
{
|
|
436
437
|
ref,
|
|
437
438
|
viewBox: "0 0 24 24",
|
|
@@ -445,7 +446,7 @@ function BlockLabel({ width, height, sx, ...props }, ref) {
|
|
|
445
446
|
);
|
|
446
447
|
}
|
|
447
448
|
const BlockLabel$1 = forwardRef(BlockLabel);
|
|
448
|
-
const Icon$
|
|
449
|
+
const Icon$2K = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
449
450
|
/* @__PURE__ */ jsx(
|
|
450
451
|
"path",
|
|
451
452
|
{
|
|
@@ -463,10 +464,10 @@ const Icon$2M = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
463
464
|
}
|
|
464
465
|
)
|
|
465
466
|
] });
|
|
466
|
-
const BaseSvgIcon$
|
|
467
|
+
const BaseSvgIcon$2K = createSvgIcon(Icon$2K(), "BlockLabelOff");
|
|
467
468
|
function BlockLabelOff({ width, height, sx, ...props }, ref) {
|
|
468
469
|
return /* @__PURE__ */ jsx(
|
|
469
|
-
BaseSvgIcon$
|
|
470
|
+
BaseSvgIcon$2K,
|
|
470
471
|
{
|
|
471
472
|
ref,
|
|
472
473
|
viewBox: "0 0 24 24",
|
|
@@ -480,17 +481,17 @@ function BlockLabelOff({ width, height, sx, ...props }, ref) {
|
|
|
480
481
|
);
|
|
481
482
|
}
|
|
482
483
|
const BlockLabelOff$1 = forwardRef(BlockLabelOff);
|
|
483
|
-
const Icon$
|
|
484
|
+
const Icon$2J = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
484
485
|
"path",
|
|
485
486
|
{
|
|
486
487
|
fill: "currentColor",
|
|
487
488
|
d: "M18 18v-2H6v2zM7.41 5.59 12 10.18l4.59-4.59L18 7l-6 6-6-6z"
|
|
488
489
|
}
|
|
489
490
|
) });
|
|
490
|
-
const BaseSvgIcon$
|
|
491
|
+
const BaseSvgIcon$2J = createSvgIcon(Icon$2J(), "BottomRow");
|
|
491
492
|
function BottomRow({ width, height, sx, ...props }, ref) {
|
|
492
493
|
return /* @__PURE__ */ jsx(
|
|
493
|
-
BaseSvgIcon$
|
|
494
|
+
BaseSvgIcon$2J,
|
|
494
495
|
{
|
|
495
496
|
ref,
|
|
496
497
|
viewBox: "0 0 24 24",
|
|
@@ -504,7 +505,7 @@ function BottomRow({ width, height, sx, ...props }, ref) {
|
|
|
504
505
|
);
|
|
505
506
|
}
|
|
506
507
|
const BottomRow$1 = forwardRef(BottomRow);
|
|
507
|
-
const Icon$
|
|
508
|
+
const Icon$2I = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
508
509
|
/* @__PURE__ */ jsx(
|
|
509
510
|
"path",
|
|
510
511
|
{
|
|
@@ -522,10 +523,10 @@ const Icon$2K = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
522
523
|
}
|
|
523
524
|
)
|
|
524
525
|
] });
|
|
525
|
-
const BaseSvgIcon$
|
|
526
|
+
const BaseSvgIcon$2I = createSvgIcon(Icon$2I(), "Carto");
|
|
526
527
|
function Carto({ width, height, sx, ...props }, ref) {
|
|
527
528
|
return /* @__PURE__ */ jsx(
|
|
528
|
-
BaseSvgIcon$
|
|
529
|
+
BaseSvgIcon$2I,
|
|
529
530
|
{
|
|
530
531
|
ref,
|
|
531
532
|
viewBox: "0 0 24 24",
|
|
@@ -539,7 +540,7 @@ function Carto({ width, height, sx, ...props }, ref) {
|
|
|
539
540
|
);
|
|
540
541
|
}
|
|
541
542
|
const Carto$1 = forwardRef(Carto);
|
|
542
|
-
const Icon$
|
|
543
|
+
const Icon$2H = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
543
544
|
/* @__PURE__ */ jsx(
|
|
544
545
|
"path",
|
|
545
546
|
{
|
|
@@ -555,10 +556,10 @@ const Icon$2J = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
555
556
|
}
|
|
556
557
|
)
|
|
557
558
|
] });
|
|
558
|
-
const BaseSvgIcon$
|
|
559
|
+
const BaseSvgIcon$2H = createSvgIcon(Icon$2H(), "CartoAi");
|
|
559
560
|
function CartoAi({ width, height, sx, ...props }, ref) {
|
|
560
561
|
return /* @__PURE__ */ jsx(
|
|
561
|
-
BaseSvgIcon$
|
|
562
|
+
BaseSvgIcon$2H,
|
|
562
563
|
{
|
|
563
564
|
ref,
|
|
564
565
|
viewBox: "0 0 24 24",
|
|
@@ -572,7 +573,7 @@ function CartoAi({ width, height, sx, ...props }, ref) {
|
|
|
572
573
|
);
|
|
573
574
|
}
|
|
574
575
|
const CartoAi$1 = forwardRef(CartoAi);
|
|
575
|
-
const Icon$
|
|
576
|
+
const Icon$2G = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
576
577
|
/* @__PURE__ */ jsx(
|
|
577
578
|
"path",
|
|
578
579
|
{
|
|
@@ -590,10 +591,10 @@ const Icon$2I = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
590
591
|
}
|
|
591
592
|
)
|
|
592
593
|
] });
|
|
593
|
-
const BaseSvgIcon$
|
|
594
|
+
const BaseSvgIcon$2G = createSvgIcon(Icon$2G(), "CartoSymbol");
|
|
594
595
|
function CartoSymbol({ width, height, sx, ...props }, ref) {
|
|
595
596
|
return /* @__PURE__ */ jsx(
|
|
596
|
-
BaseSvgIcon$
|
|
597
|
+
BaseSvgIcon$2G,
|
|
597
598
|
{
|
|
598
599
|
ref,
|
|
599
600
|
viewBox: "0 0 24 24",
|
|
@@ -607,7 +608,7 @@ function CartoSymbol({ width, height, sx, ...props }, ref) {
|
|
|
607
608
|
);
|
|
608
609
|
}
|
|
609
610
|
const CartoSymbol$1 = forwardRef(CartoSymbol);
|
|
610
|
-
const Icon$
|
|
611
|
+
const Icon$2F = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
611
612
|
/* @__PURE__ */ jsxs(
|
|
612
613
|
"g",
|
|
613
614
|
{
|
|
@@ -623,10 +624,10 @@ const Icon$2H = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
623
624
|
),
|
|
624
625
|
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M0 0h24v24H0z" }) }) })
|
|
625
626
|
] });
|
|
626
|
-
const BaseSvgIcon$
|
|
627
|
+
const BaseSvgIcon$2F = createSvgIcon(Icon$2F(), "CatalogView");
|
|
627
628
|
function CatalogView({ width, height, sx, ...props }, ref) {
|
|
628
629
|
return /* @__PURE__ */ jsx(
|
|
629
|
-
BaseSvgIcon$
|
|
630
|
+
BaseSvgIcon$2F,
|
|
630
631
|
{
|
|
631
632
|
ref,
|
|
632
633
|
viewBox: "0 0 24 24",
|
|
@@ -640,7 +641,7 @@ function CatalogView({ width, height, sx, ...props }, ref) {
|
|
|
640
641
|
);
|
|
641
642
|
}
|
|
642
643
|
const CatalogView$1 = forwardRef(CatalogView);
|
|
643
|
-
const Icon$
|
|
644
|
+
const Icon$2E = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
644
645
|
/* @__PURE__ */ jsx(
|
|
645
646
|
"path",
|
|
646
647
|
{
|
|
@@ -660,10 +661,10 @@ const Icon$2G = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
660
661
|
}
|
|
661
662
|
)
|
|
662
663
|
] });
|
|
663
|
-
const BaseSvgIcon$
|
|
664
|
+
const BaseSvgIcon$2E = createSvgIcon(Icon$2E(), "CatastropheModeling");
|
|
664
665
|
function CatastropheModeling({ width, height, sx, ...props }, ref) {
|
|
665
666
|
return /* @__PURE__ */ jsx(
|
|
666
|
-
BaseSvgIcon$
|
|
667
|
+
BaseSvgIcon$2E,
|
|
667
668
|
{
|
|
668
669
|
ref,
|
|
669
670
|
viewBox: "0 0 24 24",
|
|
@@ -677,7 +678,7 @@ function CatastropheModeling({ width, height, sx, ...props }, ref) {
|
|
|
677
678
|
);
|
|
678
679
|
}
|
|
679
680
|
const CatastropheModeling$1 = forwardRef(CatastropheModeling);
|
|
680
|
-
const Icon$
|
|
681
|
+
const Icon$2D = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
681
682
|
"path",
|
|
682
683
|
{
|
|
683
684
|
fill: "currentColor",
|
|
@@ -686,10 +687,10 @@ const Icon$2F = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
686
687
|
clipRule: "evenodd"
|
|
687
688
|
}
|
|
688
689
|
) });
|
|
689
|
-
const BaseSvgIcon$
|
|
690
|
+
const BaseSvgIcon$2D = createSvgIcon(Icon$2D(), "Center");
|
|
690
691
|
function Center({ width, height, sx, ...props }, ref) {
|
|
691
692
|
return /* @__PURE__ */ jsx(
|
|
692
|
-
BaseSvgIcon$
|
|
693
|
+
BaseSvgIcon$2D,
|
|
693
694
|
{
|
|
694
695
|
ref,
|
|
695
696
|
viewBox: "0 0 24 24",
|
|
@@ -703,7 +704,7 @@ function Center({ width, height, sx, ...props }, ref) {
|
|
|
703
704
|
);
|
|
704
705
|
}
|
|
705
706
|
const Center$1 = forwardRef(Center);
|
|
706
|
-
const Icon$
|
|
707
|
+
const Icon$2C = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
707
708
|
"path",
|
|
708
709
|
{
|
|
709
710
|
fill: "currentColor",
|
|
@@ -712,10 +713,10 @@ const Icon$2E = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
712
713
|
clipRule: "evenodd"
|
|
713
714
|
}
|
|
714
715
|
) });
|
|
715
|
-
const BaseSvgIcon$
|
|
716
|
+
const BaseSvgIcon$2C = createSvgIcon(Icon$2C(), "CenterLayer");
|
|
716
717
|
function CenterLayer({ width, height, sx, ...props }, ref) {
|
|
717
718
|
return /* @__PURE__ */ jsx(
|
|
718
|
-
BaseSvgIcon$
|
|
719
|
+
BaseSvgIcon$2C,
|
|
719
720
|
{
|
|
720
721
|
ref,
|
|
721
722
|
viewBox: "0 0 24 24",
|
|
@@ -729,7 +730,7 @@ function CenterLayer({ width, height, sx, ...props }, ref) {
|
|
|
729
730
|
);
|
|
730
731
|
}
|
|
731
732
|
const CenterLayer$1 = forwardRef(CenterLayer);
|
|
732
|
-
const Icon$
|
|
733
|
+
const Icon$2B = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
733
734
|
"path",
|
|
734
735
|
{
|
|
735
736
|
fill: "currentColor",
|
|
@@ -738,10 +739,10 @@ const Icon$2D = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
738
739
|
clipRule: "evenodd"
|
|
739
740
|
}
|
|
740
741
|
) });
|
|
741
|
-
const BaseSvgIcon$
|
|
742
|
+
const BaseSvgIcon$2B = createSvgIcon(Icon$2B(), "CloseDiagonallyLeft");
|
|
742
743
|
function CloseDiagonallyLeft({ width, height, sx, ...props }, ref) {
|
|
743
744
|
return /* @__PURE__ */ jsx(
|
|
744
|
-
BaseSvgIcon$
|
|
745
|
+
BaseSvgIcon$2B,
|
|
745
746
|
{
|
|
746
747
|
ref,
|
|
747
748
|
viewBox: "0 0 24 24",
|
|
@@ -755,33 +756,7 @@ function CloseDiagonallyLeft({ width, height, sx, ...props }, ref) {
|
|
|
755
756
|
);
|
|
756
757
|
}
|
|
757
758
|
const CloseDiagonallyLeft$1 = forwardRef(CloseDiagonallyLeft);
|
|
758
|
-
const Icon$
|
|
759
|
-
"path",
|
|
760
|
-
{
|
|
761
|
-
fill: "currentColor",
|
|
762
|
-
fillRule: "evenodd",
|
|
763
|
-
d: "m6.121 19.293 2.877-2.877V19H11v-6l-6 .007v1.994l2.584.001-2.877 2.877zM13 11l6-.007V8.999h-2.585l2.878-2.878-1.414-1.414L15 7.585V5H13z",
|
|
764
|
-
clipRule: "evenodd"
|
|
765
|
-
}
|
|
766
|
-
) });
|
|
767
|
-
const BaseSvgIcon$2C = createSvgIcon(Icon$2C(), "CloseDiagonallyRight");
|
|
768
|
-
function CloseDiagonallyRight({ width, height, sx, ...props }, ref) {
|
|
769
|
-
return /* @__PURE__ */ jsx(
|
|
770
|
-
BaseSvgIcon$2C,
|
|
771
|
-
{
|
|
772
|
-
ref,
|
|
773
|
-
viewBox: "0 0 24 24",
|
|
774
|
-
sx: {
|
|
775
|
-
width,
|
|
776
|
-
height: height || width,
|
|
777
|
-
...sx
|
|
778
|
-
},
|
|
779
|
-
...props
|
|
780
|
-
}
|
|
781
|
-
);
|
|
782
|
-
}
|
|
783
|
-
const CloseDiagonallyRight$1 = forwardRef(CloseDiagonallyRight);
|
|
784
|
-
const Icon$2B = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
759
|
+
const Icon$2A = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
785
760
|
"path",
|
|
786
761
|
{
|
|
787
762
|
fill: "currentColor",
|
|
@@ -790,10 +765,10 @@ const Icon$2B = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
790
765
|
clipRule: "evenodd"
|
|
791
766
|
}
|
|
792
767
|
) });
|
|
793
|
-
const BaseSvgIcon$
|
|
768
|
+
const BaseSvgIcon$2A = createSvgIcon(Icon$2A(), "CloseVertically");
|
|
794
769
|
function CloseVertically({ width, height, sx, ...props }, ref) {
|
|
795
770
|
return /* @__PURE__ */ jsx(
|
|
796
|
-
BaseSvgIcon$
|
|
771
|
+
BaseSvgIcon$2A,
|
|
797
772
|
{
|
|
798
773
|
ref,
|
|
799
774
|
viewBox: "0 0 24 24",
|
|
@@ -807,7 +782,7 @@ function CloseVertically({ width, height, sx, ...props }, ref) {
|
|
|
807
782
|
);
|
|
808
783
|
}
|
|
809
784
|
const CloseVertically$1 = forwardRef(CloseVertically);
|
|
810
|
-
const Icon$
|
|
785
|
+
const Icon$2z = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
811
786
|
/* @__PURE__ */ jsx(
|
|
812
787
|
"path",
|
|
813
788
|
{
|
|
@@ -823,10 +798,10 @@ const Icon$2A = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
823
798
|
}
|
|
824
799
|
)
|
|
825
800
|
] });
|
|
826
|
-
const BaseSvgIcon$
|
|
801
|
+
const BaseSvgIcon$2z = createSvgIcon(Icon$2z(), "CodeBlock");
|
|
827
802
|
function CodeBlock({ width, height, sx, ...props }, ref) {
|
|
828
803
|
return /* @__PURE__ */ jsx(
|
|
829
|
-
BaseSvgIcon$
|
|
804
|
+
BaseSvgIcon$2z,
|
|
830
805
|
{
|
|
831
806
|
ref,
|
|
832
807
|
viewBox: "0 0 24 24",
|
|
@@ -840,17 +815,17 @@ function CodeBlock({ width, height, sx, ...props }, ref) {
|
|
|
840
815
|
);
|
|
841
816
|
}
|
|
842
817
|
const CodeBlock$1 = forwardRef(CodeBlock);
|
|
843
|
-
const Icon$
|
|
818
|
+
const Icon$2y = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
844
819
|
"path",
|
|
845
820
|
{
|
|
846
821
|
fill: "currentColor",
|
|
847
822
|
d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-1.18 0-2.34-.26-3.43-.78-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-3.2.94.94-3.2c.14-.47.1-.98-.11-1.42A7.9 7.9 0 0 1 4 12c0-4.41 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29L1 23l6.71-1.97c1.31.61 2.75.97 4.29.97 5.52 0 10-4.48 10-10S17.52 2 12 2"
|
|
848
823
|
}
|
|
849
824
|
) });
|
|
850
|
-
const BaseSvgIcon$
|
|
825
|
+
const BaseSvgIcon$2y = createSvgIcon(Icon$2y(), "Comments");
|
|
851
826
|
function Comments({ width, height, sx, ...props }, ref) {
|
|
852
827
|
return /* @__PURE__ */ jsx(
|
|
853
|
-
BaseSvgIcon$
|
|
828
|
+
BaseSvgIcon$2y,
|
|
854
829
|
{
|
|
855
830
|
ref,
|
|
856
831
|
viewBox: "0 0 24 24",
|
|
@@ -864,7 +839,7 @@ function Comments({ width, height, sx, ...props }, ref) {
|
|
|
864
839
|
);
|
|
865
840
|
}
|
|
866
841
|
const Comments$1 = forwardRef(Comments);
|
|
867
|
-
const Icon$
|
|
842
|
+
const Icon$2x = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
868
843
|
"path",
|
|
869
844
|
{
|
|
870
845
|
fill: "currentColor",
|
|
@@ -873,10 +848,10 @@ const Icon$2y = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
873
848
|
clipRule: "evenodd"
|
|
874
849
|
}
|
|
875
850
|
) });
|
|
876
|
-
const BaseSvgIcon$
|
|
851
|
+
const BaseSvgIcon$2x = createSvgIcon(Icon$2x(), "Console");
|
|
877
852
|
function Console({ width, height, sx, ...props }, ref) {
|
|
878
853
|
return /* @__PURE__ */ jsx(
|
|
879
|
-
BaseSvgIcon$
|
|
854
|
+
BaseSvgIcon$2x,
|
|
880
855
|
{
|
|
881
856
|
ref,
|
|
882
857
|
viewBox: "0 0 24 24",
|
|
@@ -890,7 +865,7 @@ function Console({ width, height, sx, ...props }, ref) {
|
|
|
890
865
|
);
|
|
891
866
|
}
|
|
892
867
|
const Console$1 = forwardRef(Console);
|
|
893
|
-
const Icon$
|
|
868
|
+
const Icon$2w = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
894
869
|
"path",
|
|
895
870
|
{
|
|
896
871
|
fill: "currentColor",
|
|
@@ -899,10 +874,10 @@ const Icon$2x = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
899
874
|
clipRule: "evenodd"
|
|
900
875
|
}
|
|
901
876
|
) });
|
|
902
|
-
const BaseSvgIcon$
|
|
877
|
+
const BaseSvgIcon$2w = createSvgIcon(Icon$2w(), "Covid19");
|
|
903
878
|
function Covid19({ width, height, sx, ...props }, ref) {
|
|
904
879
|
return /* @__PURE__ */ jsx(
|
|
905
|
-
BaseSvgIcon$
|
|
880
|
+
BaseSvgIcon$2w,
|
|
906
881
|
{
|
|
907
882
|
ref,
|
|
908
883
|
viewBox: "0 0 24 24",
|
|
@@ -916,7 +891,7 @@ function Covid19({ width, height, sx, ...props }, ref) {
|
|
|
916
891
|
);
|
|
917
892
|
}
|
|
918
893
|
const Covid19$1 = forwardRef(Covid19);
|
|
919
|
-
const Icon$
|
|
894
|
+
const Icon$2v = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
920
895
|
"path",
|
|
921
896
|
{
|
|
922
897
|
fill: "currentColor",
|
|
@@ -925,10 +900,10 @@ const Icon$2w = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
925
900
|
clipRule: "evenodd"
|
|
926
901
|
}
|
|
927
902
|
) });
|
|
928
|
-
const BaseSvgIcon$
|
|
903
|
+
const BaseSvgIcon$2v = createSvgIcon(Icon$2v(), "CreateMap");
|
|
929
904
|
function CreateMap({ width, height, sx, ...props }, ref) {
|
|
930
905
|
return /* @__PURE__ */ jsx(
|
|
931
|
-
BaseSvgIcon$
|
|
906
|
+
BaseSvgIcon$2v,
|
|
932
907
|
{
|
|
933
908
|
ref,
|
|
934
909
|
viewBox: "0 0 24 24",
|
|
@@ -942,17 +917,17 @@ function CreateMap({ width, height, sx, ...props }, ref) {
|
|
|
942
917
|
);
|
|
943
918
|
}
|
|
944
919
|
const CreateMap$1 = forwardRef(CreateMap);
|
|
945
|
-
const Icon$
|
|
920
|
+
const Icon$2u = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
946
921
|
"path",
|
|
947
922
|
{
|
|
948
923
|
fill: "currentColor",
|
|
949
924
|
d: "M21 19.004h3v2h-3v3h-2v-3h-3v-2h3v-3h2zM13.118 23.951a12.4 12.4 0 0 1-2.21.002l.179-1.992a10 10 0 0 0 1.846-.003zM7.554 20.962a10 10 0 0 0 1.72.664l-.544 1.925a12 12 0 0 1-2.066-.798zM4.62 18.75c.416.454.876.873 1.366 1.243L4.782 21.59A12 12 0 0 1 3.145 20.1zM2.679 15.632q.337.862.825 1.65l-1.697 1.056a12 12 0 0 1-.99-1.979zM16.243 16.244A5.96 5.96 0 0 1 12 18.002a5.96 5.96 0 0 1-4.243-1.758l1.415-1.414c1.51 1.512 4.146 1.512 5.656 0zM2 12.023c.002.618.059 1.236.172 1.838l-1.965.37A12 12 0 0 1 0 12.028zM24 12.002c0 .74-.068 1.482-.201 2.202l-1.967-.364A10 10 0 0 0 22 12.002l2-.046zM12 10.002a2 2 0 1 1 0 4 2 2 0 0 1 0-4M13.548 6.225A6 6 0 0 1 18 12.002c0 .488-.07.98-.224 1.548l-1.932-.519A4 4 0 0 0 16 12.002a3.994 3.994 0 0 0-2.969-3.845zM10.97 8.157A3.994 3.994 0 0 0 8 12.002c0 .308.05.635.155 1.031l-1.932.516A5.9 5.9 0 0 1 6 12.002a6 6 0 0 1 4.453-5.777zM2.664 8.412a10 10 0 0 0-.5 1.773l-1.967-.36c.133-.728.334-1.442.6-2.133zM23.176 7.624c.269.688.474 1.4.613 2.126l-1.965.374a10 10 0 0 0-.51-1.77zM4.592 5.285c-.412.455-.785.951-1.109 1.475l-1.7-1.051q.583-.945 1.33-1.768zM20.838 3.886q.752.818 1.342 1.76l-1.696 1.061a10 10 0 0 0-1.119-1.467zM7.518 3.06q-.827.416-1.565.977l-1.21-1.592C5.33 2 5.96 1.605 6.618 1.273zM17.314 1.24c.662.328 1.294.717 1.885 1.16L17.997 4a10 10 0 0 0-1.571-.967zM11.045 2.048a10 10 0 0 0-1.81.34L8.68.468c.708-.203 1.44-.341 2.176-.411zM13.068.05c.737.064 1.466.198 2.177.397l-.539 1.926a10 10 0 0 0-1.813-.331z"
|
|
950
925
|
}
|
|
951
926
|
) });
|
|
952
|
-
const BaseSvgIcon$
|
|
927
|
+
const BaseSvgIcon$2u = createSvgIcon(Icon$2u(), "CreateSpatialAnalysis");
|
|
953
928
|
function CreateSpatialAnalysis({ width, height, sx, ...props }, ref) {
|
|
954
929
|
return /* @__PURE__ */ jsx(
|
|
955
|
-
BaseSvgIcon$
|
|
930
|
+
BaseSvgIcon$2u,
|
|
956
931
|
{
|
|
957
932
|
ref,
|
|
958
933
|
viewBox: "0 0 24 24",
|
|
@@ -966,7 +941,7 @@ function CreateSpatialAnalysis({ width, height, sx, ...props }, ref) {
|
|
|
966
941
|
);
|
|
967
942
|
}
|
|
968
943
|
const CreateSpatialAnalysis$1 = forwardRef(CreateSpatialAnalysis);
|
|
969
|
-
const Icon$
|
|
944
|
+
const Icon$2t = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
970
945
|
/* @__PURE__ */ jsx(
|
|
971
946
|
"path",
|
|
972
947
|
{
|
|
@@ -984,10 +959,10 @@ const Icon$2u = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
984
959
|
}
|
|
985
960
|
)
|
|
986
961
|
] });
|
|
987
|
-
const BaseSvgIcon$
|
|
962
|
+
const BaseSvgIcon$2t = createSvgIcon(Icon$2t(), "CreateTileset");
|
|
988
963
|
function CreateTileset({ width, height, sx, ...props }, ref) {
|
|
989
964
|
return /* @__PURE__ */ jsx(
|
|
990
|
-
BaseSvgIcon$
|
|
965
|
+
BaseSvgIcon$2t,
|
|
991
966
|
{
|
|
992
967
|
ref,
|
|
993
968
|
viewBox: "0 0 24 24",
|
|
@@ -1001,7 +976,7 @@ function CreateTileset({ width, height, sx, ...props }, ref) {
|
|
|
1001
976
|
);
|
|
1002
977
|
}
|
|
1003
978
|
const CreateTileset$1 = forwardRef(CreateTileset);
|
|
1004
|
-
const Icon$
|
|
979
|
+
const Icon$2s = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1005
980
|
"path",
|
|
1006
981
|
{
|
|
1007
982
|
fill: "currentColor",
|
|
@@ -1010,10 +985,10 @@ const Icon$2t = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1010
985
|
clipRule: "evenodd"
|
|
1011
986
|
}
|
|
1012
987
|
) });
|
|
1013
|
-
const BaseSvgIcon$
|
|
988
|
+
const BaseSvgIcon$2s = createSvgIcon(Icon$2s(), "CreateWorkflow");
|
|
1014
989
|
function CreateWorkflow({ width, height, sx, ...props }, ref) {
|
|
1015
990
|
return /* @__PURE__ */ jsx(
|
|
1016
|
-
BaseSvgIcon$
|
|
991
|
+
BaseSvgIcon$2s,
|
|
1017
992
|
{
|
|
1018
993
|
ref,
|
|
1019
994
|
viewBox: "0 0 24 24",
|
|
@@ -1027,7 +1002,7 @@ function CreateWorkflow({ width, height, sx, ...props }, ref) {
|
|
|
1027
1002
|
);
|
|
1028
1003
|
}
|
|
1029
1004
|
const CreateWorkflow$1 = forwardRef(CreateWorkflow);
|
|
1030
|
-
const Icon$
|
|
1005
|
+
const Icon$2r = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1031
1006
|
"path",
|
|
1032
1007
|
{
|
|
1033
1008
|
fill: "currentColor",
|
|
@@ -1036,10 +1011,10 @@ const Icon$2s = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1036
1011
|
clipRule: "evenodd"
|
|
1037
1012
|
}
|
|
1038
1013
|
) });
|
|
1039
|
-
const BaseSvgIcon$
|
|
1014
|
+
const BaseSvgIcon$2r = createSvgIcon(Icon$2r(), "Data");
|
|
1040
1015
|
function Data({ width, height, sx, ...props }, ref) {
|
|
1041
1016
|
return /* @__PURE__ */ jsx(
|
|
1042
|
-
BaseSvgIcon$
|
|
1017
|
+
BaseSvgIcon$2r,
|
|
1043
1018
|
{
|
|
1044
1019
|
ref,
|
|
1045
1020
|
viewBox: "0 0 24 24",
|
|
@@ -1053,7 +1028,7 @@ function Data({ width, height, sx, ...props }, ref) {
|
|
|
1053
1028
|
);
|
|
1054
1029
|
}
|
|
1055
1030
|
const Data$1 = forwardRef(Data);
|
|
1056
|
-
const Icon$
|
|
1031
|
+
const Icon$2q = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
1057
1032
|
/* @__PURE__ */ jsx(
|
|
1058
1033
|
"path",
|
|
1059
1034
|
{
|
|
@@ -1073,10 +1048,10 @@ const Icon$2r = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
1073
1048
|
}
|
|
1074
1049
|
)
|
|
1075
1050
|
] });
|
|
1076
|
-
const BaseSvgIcon$
|
|
1051
|
+
const BaseSvgIcon$2q = createSvgIcon(Icon$2q(), "DataAccess");
|
|
1077
1052
|
function DataAccess({ width, height, sx, ...props }, ref) {
|
|
1078
1053
|
return /* @__PURE__ */ jsx(
|
|
1079
|
-
BaseSvgIcon$
|
|
1054
|
+
BaseSvgIcon$2q,
|
|
1080
1055
|
{
|
|
1081
1056
|
ref,
|
|
1082
1057
|
viewBox: "0 0 24 24",
|
|
@@ -1090,7 +1065,7 @@ function DataAccess({ width, height, sx, ...props }, ref) {
|
|
|
1090
1065
|
);
|
|
1091
1066
|
}
|
|
1092
1067
|
const DataAccess$1 = forwardRef(DataAccess);
|
|
1093
|
-
const Icon$
|
|
1068
|
+
const Icon$2p = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
1094
1069
|
/* @__PURE__ */ jsx(
|
|
1095
1070
|
"path",
|
|
1096
1071
|
{
|
|
@@ -1110,10 +1085,10 @@ const Icon$2q = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
1110
1085
|
}
|
|
1111
1086
|
)
|
|
1112
1087
|
] });
|
|
1113
|
-
const BaseSvgIcon$
|
|
1088
|
+
const BaseSvgIcon$2p = createSvgIcon(Icon$2p(), "DataExplorer");
|
|
1114
1089
|
function DataExplorer({ width, height, sx, ...props }, ref) {
|
|
1115
1090
|
return /* @__PURE__ */ jsx(
|
|
1116
|
-
BaseSvgIcon$
|
|
1091
|
+
BaseSvgIcon$2p,
|
|
1117
1092
|
{
|
|
1118
1093
|
ref,
|
|
1119
1094
|
viewBox: "0 0 24 24",
|
|
@@ -1127,7 +1102,7 @@ function DataExplorer({ width, height, sx, ...props }, ref) {
|
|
|
1127
1102
|
);
|
|
1128
1103
|
}
|
|
1129
1104
|
const DataExplorer$1 = forwardRef(DataExplorer);
|
|
1130
|
-
const Icon$
|
|
1105
|
+
const Icon$2o = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
1131
1106
|
/* @__PURE__ */ jsx(
|
|
1132
1107
|
"path",
|
|
1133
1108
|
{
|
|
@@ -1147,10 +1122,10 @@ const Icon$2p = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
1147
1122
|
}
|
|
1148
1123
|
)
|
|
1149
1124
|
] });
|
|
1150
|
-
const BaseSvgIcon$
|
|
1125
|
+
const BaseSvgIcon$2o = createSvgIcon(Icon$2o(), "DataFilter");
|
|
1151
1126
|
function DataFilter({ width, height, sx, ...props }, ref) {
|
|
1152
1127
|
return /* @__PURE__ */ jsx(
|
|
1153
|
-
BaseSvgIcon$
|
|
1128
|
+
BaseSvgIcon$2o,
|
|
1154
1129
|
{
|
|
1155
1130
|
ref,
|
|
1156
1131
|
viewBox: "0 0 24 24",
|
|
@@ -1164,7 +1139,7 @@ function DataFilter({ width, height, sx, ...props }, ref) {
|
|
|
1164
1139
|
);
|
|
1165
1140
|
}
|
|
1166
1141
|
const DataFilter$1 = forwardRef(DataFilter);
|
|
1167
|
-
const Icon$
|
|
1142
|
+
const Icon$2n = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
1168
1143
|
/* @__PURE__ */ jsx(
|
|
1169
1144
|
"path",
|
|
1170
1145
|
{
|
|
@@ -1182,10 +1157,10 @@ const Icon$2o = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
1182
1157
|
}
|
|
1183
1158
|
)
|
|
1184
1159
|
] });
|
|
1185
|
-
const BaseSvgIcon$
|
|
1160
|
+
const BaseSvgIcon$2n = createSvgIcon(Icon$2n(), "DataMonetization");
|
|
1186
1161
|
function DataMonetization({ width, height, sx, ...props }, ref) {
|
|
1187
1162
|
return /* @__PURE__ */ jsx(
|
|
1188
|
-
BaseSvgIcon$
|
|
1163
|
+
BaseSvgIcon$2n,
|
|
1189
1164
|
{
|
|
1190
1165
|
ref,
|
|
1191
1166
|
viewBox: "0 0 24 24",
|
|
@@ -1199,7 +1174,7 @@ function DataMonetization({ width, height, sx, ...props }, ref) {
|
|
|
1199
1174
|
);
|
|
1200
1175
|
}
|
|
1201
1176
|
const DataMonetization$1 = forwardRef(DataMonetization);
|
|
1202
|
-
const Icon$
|
|
1177
|
+
const Icon$2m = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1203
1178
|
"path",
|
|
1204
1179
|
{
|
|
1205
1180
|
fill: "currentColor",
|
|
@@ -1208,10 +1183,10 @@ const Icon$2n = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1208
1183
|
clipRule: "evenodd"
|
|
1209
1184
|
}
|
|
1210
1185
|
) });
|
|
1211
|
-
const BaseSvgIcon$
|
|
1186
|
+
const BaseSvgIcon$2m = createSvgIcon(Icon$2m(), "DataObservatory");
|
|
1212
1187
|
function DataObservatory({ width, height, sx, ...props }, ref) {
|
|
1213
1188
|
return /* @__PURE__ */ jsx(
|
|
1214
|
-
BaseSvgIcon$
|
|
1189
|
+
BaseSvgIcon$2m,
|
|
1215
1190
|
{
|
|
1216
1191
|
ref,
|
|
1217
1192
|
viewBox: "0 0 24 24",
|
|
@@ -1225,7 +1200,7 @@ function DataObservatory({ width, height, sx, ...props }, ref) {
|
|
|
1225
1200
|
);
|
|
1226
1201
|
}
|
|
1227
1202
|
const DataObservatory$1 = forwardRef(DataObservatory);
|
|
1228
|
-
const Icon$
|
|
1203
|
+
const Icon$2l = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
1229
1204
|
/* @__PURE__ */ jsx(
|
|
1230
1205
|
"path",
|
|
1231
1206
|
{
|
|
@@ -1243,10 +1218,10 @@ const Icon$2m = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
1243
1218
|
}
|
|
1244
1219
|
)
|
|
1245
1220
|
] });
|
|
1246
|
-
const BaseSvgIcon$
|
|
1221
|
+
const BaseSvgIcon$2l = createSvgIcon(Icon$2l(), "DataOk");
|
|
1247
1222
|
function DataOk({ width, height, sx, ...props }, ref) {
|
|
1248
1223
|
return /* @__PURE__ */ jsx(
|
|
1249
|
-
BaseSvgIcon$
|
|
1224
|
+
BaseSvgIcon$2l,
|
|
1250
1225
|
{
|
|
1251
1226
|
ref,
|
|
1252
1227
|
viewBox: "0 0 24 24",
|
|
@@ -1260,7 +1235,7 @@ function DataOk({ width, height, sx, ...props }, ref) {
|
|
|
1260
1235
|
);
|
|
1261
1236
|
}
|
|
1262
1237
|
const DataOk$1 = forwardRef(DataOk);
|
|
1263
|
-
const Icon$
|
|
1238
|
+
const Icon$2k = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
1264
1239
|
/* @__PURE__ */ jsx(
|
|
1265
1240
|
"path",
|
|
1266
1241
|
{
|
|
@@ -1280,10 +1255,10 @@ const Icon$2l = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
1280
1255
|
}
|
|
1281
1256
|
)
|
|
1282
1257
|
] });
|
|
1283
|
-
const BaseSvgIcon$
|
|
1258
|
+
const BaseSvgIcon$2k = createSvgIcon(Icon$2k(), "DataPending");
|
|
1284
1259
|
function DataPending({ width, height, sx, ...props }, ref) {
|
|
1285
1260
|
return /* @__PURE__ */ jsx(
|
|
1286
|
-
BaseSvgIcon$
|
|
1261
|
+
BaseSvgIcon$2k,
|
|
1287
1262
|
{
|
|
1288
1263
|
ref,
|
|
1289
1264
|
viewBox: "0 0 24 24",
|
|
@@ -1297,7 +1272,7 @@ function DataPending({ width, height, sx, ...props }, ref) {
|
|
|
1297
1272
|
);
|
|
1298
1273
|
}
|
|
1299
1274
|
const DataPending$1 = forwardRef(DataPending);
|
|
1300
|
-
const Icon$
|
|
1275
|
+
const Icon$2j = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
1301
1276
|
/* @__PURE__ */ jsx(
|
|
1302
1277
|
"path",
|
|
1303
1278
|
{
|
|
@@ -1315,10 +1290,10 @@ const Icon$2k = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
1315
1290
|
}
|
|
1316
1291
|
)
|
|
1317
1292
|
] });
|
|
1318
|
-
const BaseSvgIcon$
|
|
1293
|
+
const BaseSvgIcon$2j = createSvgIcon(Icon$2j(), "DataPremium");
|
|
1319
1294
|
function DataPremium({ width, height, sx, ...props }, ref) {
|
|
1320
1295
|
return /* @__PURE__ */ jsx(
|
|
1321
|
-
BaseSvgIcon$
|
|
1296
|
+
BaseSvgIcon$2j,
|
|
1322
1297
|
{
|
|
1323
1298
|
ref,
|
|
1324
1299
|
viewBox: "0 0 24 24",
|
|
@@ -1332,7 +1307,7 @@ function DataPremium({ width, height, sx, ...props }, ref) {
|
|
|
1332
1307
|
);
|
|
1333
1308
|
}
|
|
1334
1309
|
const DataPremium$1 = forwardRef(DataPremium);
|
|
1335
|
-
const Icon$
|
|
1310
|
+
const Icon$2i = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
1336
1311
|
/* @__PURE__ */ jsx(
|
|
1337
1312
|
"path",
|
|
1338
1313
|
{
|
|
@@ -1352,10 +1327,10 @@ const Icon$2j = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
1352
1327
|
}
|
|
1353
1328
|
)
|
|
1354
1329
|
] });
|
|
1355
|
-
const BaseSvgIcon$
|
|
1330
|
+
const BaseSvgIcon$2i = createSvgIcon(Icon$2i(), "DataPublic");
|
|
1356
1331
|
function DataPublic({ width, height, sx, ...props }, ref) {
|
|
1357
1332
|
return /* @__PURE__ */ jsx(
|
|
1358
|
-
BaseSvgIcon$
|
|
1333
|
+
BaseSvgIcon$2i,
|
|
1359
1334
|
{
|
|
1360
1335
|
ref,
|
|
1361
1336
|
viewBox: "0 0 24 24",
|
|
@@ -1369,7 +1344,7 @@ function DataPublic({ width, height, sx, ...props }, ref) {
|
|
|
1369
1344
|
);
|
|
1370
1345
|
}
|
|
1371
1346
|
const DataPublic$1 = forwardRef(DataPublic);
|
|
1372
|
-
const Icon$
|
|
1347
|
+
const Icon$2h = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
1373
1348
|
/* @__PURE__ */ jsx(
|
|
1374
1349
|
"path",
|
|
1375
1350
|
{
|
|
@@ -1389,10 +1364,10 @@ const Icon$2i = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
1389
1364
|
}
|
|
1390
1365
|
)
|
|
1391
1366
|
] });
|
|
1392
|
-
const BaseSvgIcon$
|
|
1367
|
+
const BaseSvgIcon$2h = createSvgIcon(Icon$2h(), "DataSample");
|
|
1393
1368
|
function DataSample({ width, height, sx, ...props }, ref) {
|
|
1394
1369
|
return /* @__PURE__ */ jsx(
|
|
1395
|
-
BaseSvgIcon$
|
|
1370
|
+
BaseSvgIcon$2h,
|
|
1396
1371
|
{
|
|
1397
1372
|
ref,
|
|
1398
1373
|
viewBox: "0 0 24 24",
|
|
@@ -1406,7 +1381,7 @@ function DataSample({ width, height, sx, ...props }, ref) {
|
|
|
1406
1381
|
);
|
|
1407
1382
|
}
|
|
1408
1383
|
const DataSample$1 = forwardRef(DataSample);
|
|
1409
|
-
const Icon$
|
|
1384
|
+
const Icon$2g = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1410
1385
|
"path",
|
|
1411
1386
|
{
|
|
1412
1387
|
fill: "currentColor",
|
|
@@ -1415,10 +1390,10 @@ const Icon$2h = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1415
1390
|
clipRule: "evenodd"
|
|
1416
1391
|
}
|
|
1417
1392
|
) });
|
|
1418
|
-
const BaseSvgIcon$
|
|
1393
|
+
const BaseSvgIcon$2g = createSvgIcon(Icon$2g(), "DataUnavailable");
|
|
1419
1394
|
function DataUnavailable({ width, height, sx, ...props }, ref) {
|
|
1420
1395
|
return /* @__PURE__ */ jsx(
|
|
1421
|
-
BaseSvgIcon$
|
|
1396
|
+
BaseSvgIcon$2g,
|
|
1422
1397
|
{
|
|
1423
1398
|
ref,
|
|
1424
1399
|
viewBox: "0 0 24 24",
|
|
@@ -1432,7 +1407,7 @@ function DataUnavailable({ width, height, sx, ...props }, ref) {
|
|
|
1432
1407
|
);
|
|
1433
1408
|
}
|
|
1434
1409
|
const DataUnavailable$1 = forwardRef(DataUnavailable);
|
|
1435
|
-
const Icon$
|
|
1410
|
+
const Icon$2f = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1436
1411
|
"path",
|
|
1437
1412
|
{
|
|
1438
1413
|
fill: "currentColor",
|
|
@@ -1441,10 +1416,10 @@ const Icon$2g = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1441
1416
|
clipRule: "evenodd"
|
|
1442
1417
|
}
|
|
1443
1418
|
) });
|
|
1444
|
-
const BaseSvgIcon$
|
|
1419
|
+
const BaseSvgIcon$2f = createSvgIcon(Icon$2f(), "Databricks");
|
|
1445
1420
|
function Databricks({ width, height, sx, ...props }, ref) {
|
|
1446
1421
|
return /* @__PURE__ */ jsx(
|
|
1447
|
-
BaseSvgIcon$
|
|
1422
|
+
BaseSvgIcon$2f,
|
|
1448
1423
|
{
|
|
1449
1424
|
ref,
|
|
1450
1425
|
viewBox: "0 0 24 24",
|
|
@@ -1458,7 +1433,7 @@ function Databricks({ width, height, sx, ...props }, ref) {
|
|
|
1458
1433
|
);
|
|
1459
1434
|
}
|
|
1460
1435
|
const Databricks$1 = forwardRef(Databricks);
|
|
1461
|
-
const Icon$
|
|
1436
|
+
const Icon$2e = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1462
1437
|
"path",
|
|
1463
1438
|
{
|
|
1464
1439
|
fill: "currentColor",
|
|
@@ -1467,10 +1442,10 @@ const Icon$2f = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1467
1442
|
clipRule: "evenodd"
|
|
1468
1443
|
}
|
|
1469
1444
|
) });
|
|
1470
|
-
const BaseSvgIcon$
|
|
1445
|
+
const BaseSvgIcon$2e = createSvgIcon(Icon$2e(), "Demographics");
|
|
1471
1446
|
function Demographics({ width, height, sx, ...props }, ref) {
|
|
1472
1447
|
return /* @__PURE__ */ jsx(
|
|
1473
|
-
BaseSvgIcon$
|
|
1448
|
+
BaseSvgIcon$2e,
|
|
1474
1449
|
{
|
|
1475
1450
|
ref,
|
|
1476
1451
|
viewBox: "0 0 24 24",
|
|
@@ -1484,7 +1459,7 @@ function Demographics({ width, height, sx, ...props }, ref) {
|
|
|
1484
1459
|
);
|
|
1485
1460
|
}
|
|
1486
1461
|
const Demographics$1 = forwardRef(Demographics);
|
|
1487
|
-
const Icon$
|
|
1462
|
+
const Icon$2d = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1488
1463
|
"path",
|
|
1489
1464
|
{
|
|
1490
1465
|
fill: "currentColor",
|
|
@@ -1493,10 +1468,10 @@ const Icon$2e = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1493
1468
|
clipRule: "evenodd"
|
|
1494
1469
|
}
|
|
1495
1470
|
) });
|
|
1496
|
-
const BaseSvgIcon$
|
|
1471
|
+
const BaseSvgIcon$2d = createSvgIcon(Icon$2d(), "Derived");
|
|
1497
1472
|
function Derived({ width, height, sx, ...props }, ref) {
|
|
1498
1473
|
return /* @__PURE__ */ jsx(
|
|
1499
|
-
BaseSvgIcon$
|
|
1474
|
+
BaseSvgIcon$2d,
|
|
1500
1475
|
{
|
|
1501
1476
|
ref,
|
|
1502
1477
|
viewBox: "0 0 24 24",
|
|
@@ -1510,7 +1485,7 @@ function Derived({ width, height, sx, ...props }, ref) {
|
|
|
1510
1485
|
);
|
|
1511
1486
|
}
|
|
1512
1487
|
const Derived$1 = forwardRef(Derived);
|
|
1513
|
-
const Icon$
|
|
1488
|
+
const Icon$2c = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1514
1489
|
"path",
|
|
1515
1490
|
{
|
|
1516
1491
|
fill: "currentColor",
|
|
@@ -1519,10 +1494,10 @@ const Icon$2d = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1519
1494
|
clipRule: "evenodd"
|
|
1520
1495
|
}
|
|
1521
1496
|
) });
|
|
1522
|
-
const BaseSvgIcon$
|
|
1497
|
+
const BaseSvgIcon$2c = createSvgIcon(Icon$2c(), "Distance");
|
|
1523
1498
|
function Distance({ width, height, sx, ...props }, ref) {
|
|
1524
1499
|
return /* @__PURE__ */ jsx(
|
|
1525
|
-
BaseSvgIcon$
|
|
1500
|
+
BaseSvgIcon$2c,
|
|
1526
1501
|
{
|
|
1527
1502
|
ref,
|
|
1528
1503
|
viewBox: "0 0 24 24",
|
|
@@ -1536,11 +1511,11 @@ function Distance({ width, height, sx, ...props }, ref) {
|
|
|
1536
1511
|
);
|
|
1537
1512
|
}
|
|
1538
1513
|
const Distance$1 = forwardRef(Distance);
|
|
1539
|
-
const Icon$
|
|
1540
|
-
const BaseSvgIcon$
|
|
1514
|
+
const Icon$2b = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx("circle", { cx: 12, cy: 12, r: 5, fill: "currentColor" }) });
|
|
1515
|
+
const BaseSvgIcon$2b = createSvgIcon(Icon$2b(), "Dot");
|
|
1541
1516
|
function Dot({ width, height, sx, ...props }, ref) {
|
|
1542
1517
|
return /* @__PURE__ */ jsx(
|
|
1543
|
-
BaseSvgIcon$
|
|
1518
|
+
BaseSvgIcon$2b,
|
|
1544
1519
|
{
|
|
1545
1520
|
ref,
|
|
1546
1521
|
viewBox: "0 0 24 24",
|
|
@@ -1554,7 +1529,7 @@ function Dot({ width, height, sx, ...props }, ref) {
|
|
|
1554
1529
|
);
|
|
1555
1530
|
}
|
|
1556
1531
|
const Dot$1 = forwardRef(Dot);
|
|
1557
|
-
const Icon$
|
|
1532
|
+
const Icon$2a = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1558
1533
|
"path",
|
|
1559
1534
|
{
|
|
1560
1535
|
fill: "currentColor",
|
|
@@ -1563,10 +1538,10 @@ const Icon$2b = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1563
1538
|
clipRule: "evenodd"
|
|
1564
1539
|
}
|
|
1565
1540
|
) });
|
|
1566
|
-
const BaseSvgIcon$
|
|
1541
|
+
const BaseSvgIcon$2a = createSvgIcon(Icon$2a(), "DrawCircle");
|
|
1567
1542
|
function DrawCircle({ width, height, sx, ...props }, ref) {
|
|
1568
1543
|
return /* @__PURE__ */ jsx(
|
|
1569
|
-
BaseSvgIcon$
|
|
1544
|
+
BaseSvgIcon$2a,
|
|
1570
1545
|
{
|
|
1571
1546
|
ref,
|
|
1572
1547
|
viewBox: "0 0 24 24",
|
|
@@ -1580,7 +1555,7 @@ function DrawCircle({ width, height, sx, ...props }, ref) {
|
|
|
1580
1555
|
);
|
|
1581
1556
|
}
|
|
1582
1557
|
const DrawCircle$1 = forwardRef(DrawCircle);
|
|
1583
|
-
const Icon$
|
|
1558
|
+
const Icon$29 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1584
1559
|
"path",
|
|
1585
1560
|
{
|
|
1586
1561
|
fill: "currentColor",
|
|
@@ -1589,10 +1564,10 @@ const Icon$2a = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1589
1564
|
clipRule: "evenodd"
|
|
1590
1565
|
}
|
|
1591
1566
|
) });
|
|
1592
|
-
const BaseSvgIcon$
|
|
1567
|
+
const BaseSvgIcon$29 = createSvgIcon(Icon$29(), "DrawLasso");
|
|
1593
1568
|
function DrawLasso({ width, height, sx, ...props }, ref) {
|
|
1594
1569
|
return /* @__PURE__ */ jsx(
|
|
1595
|
-
BaseSvgIcon$
|
|
1570
|
+
BaseSvgIcon$29,
|
|
1596
1571
|
{
|
|
1597
1572
|
ref,
|
|
1598
1573
|
viewBox: "0 0 24 24",
|
|
@@ -1606,17 +1581,17 @@ function DrawLasso({ width, height, sx, ...props }, ref) {
|
|
|
1606
1581
|
);
|
|
1607
1582
|
}
|
|
1608
1583
|
const DrawLasso$1 = forwardRef(DrawLasso);
|
|
1609
|
-
const Icon$
|
|
1584
|
+
const Icon$28 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1610
1585
|
"path",
|
|
1611
1586
|
{
|
|
1612
1587
|
fill: "currentColor",
|
|
1613
1588
|
d: "M14 2a2 2 0 1 1 0 4 2 2 0 0 1 0-4M8 12a2 2 0 1 0-4 0 2 2 0 0 0 4 0M20 20a2 2 0 1 0-4 0 2 2 0 0 0 4 0M11.292 5.293a3 3 0 0 0 1.415 1.415l-4 3.999a3 3 0 0 0-1.414-1.415zM15.091 19.263 7.8 14.4c.54-.405.94-.99 1.11-1.664L16.2 17.6c-.54.405-.94.99-1.11 1.664"
|
|
1614
1589
|
}
|
|
1615
1590
|
) });
|
|
1616
|
-
const BaseSvgIcon$
|
|
1591
|
+
const BaseSvgIcon$28 = createSvgIcon(Icon$28(), "DrawLine");
|
|
1617
1592
|
function DrawLine({ width, height, sx, ...props }, ref) {
|
|
1618
1593
|
return /* @__PURE__ */ jsx(
|
|
1619
|
-
BaseSvgIcon$
|
|
1594
|
+
BaseSvgIcon$28,
|
|
1620
1595
|
{
|
|
1621
1596
|
ref,
|
|
1622
1597
|
viewBox: "0 0 24 24",
|
|
@@ -1630,7 +1605,7 @@ function DrawLine({ width, height, sx, ...props }, ref) {
|
|
|
1630
1605
|
);
|
|
1631
1606
|
}
|
|
1632
1607
|
const DrawLine$1 = forwardRef(DrawLine);
|
|
1633
|
-
const Icon$
|
|
1608
|
+
const Icon$27 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1634
1609
|
"path",
|
|
1635
1610
|
{
|
|
1636
1611
|
fill: "currentColor",
|
|
@@ -1639,10 +1614,10 @@ const Icon$28 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1639
1614
|
clipRule: "evenodd"
|
|
1640
1615
|
}
|
|
1641
1616
|
) });
|
|
1642
|
-
const BaseSvgIcon$
|
|
1617
|
+
const BaseSvgIcon$27 = createSvgIcon(Icon$27(), "DrawPolygon");
|
|
1643
1618
|
function DrawPolygon({ width, height, sx, ...props }, ref) {
|
|
1644
1619
|
return /* @__PURE__ */ jsx(
|
|
1645
|
-
BaseSvgIcon$
|
|
1620
|
+
BaseSvgIcon$27,
|
|
1646
1621
|
{
|
|
1647
1622
|
ref,
|
|
1648
1623
|
viewBox: "0 0 24 24",
|
|
@@ -1656,7 +1631,7 @@ function DrawPolygon({ width, height, sx, ...props }, ref) {
|
|
|
1656
1631
|
);
|
|
1657
1632
|
}
|
|
1658
1633
|
const DrawPolygon$1 = forwardRef(DrawPolygon);
|
|
1659
|
-
const Icon$
|
|
1634
|
+
const Icon$26 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1660
1635
|
"path",
|
|
1661
1636
|
{
|
|
1662
1637
|
fill: "currentColor",
|
|
@@ -1665,10 +1640,10 @@ const Icon$27 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1665
1640
|
clipRule: "evenodd"
|
|
1666
1641
|
}
|
|
1667
1642
|
) });
|
|
1668
|
-
const BaseSvgIcon$
|
|
1643
|
+
const BaseSvgIcon$26 = createSvgIcon(Icon$26(), "DrawSquare");
|
|
1669
1644
|
function DrawSquare({ width, height, sx, ...props }, ref) {
|
|
1670
1645
|
return /* @__PURE__ */ jsx(
|
|
1671
|
-
BaseSvgIcon$
|
|
1646
|
+
BaseSvgIcon$26,
|
|
1672
1647
|
{
|
|
1673
1648
|
ref,
|
|
1674
1649
|
viewBox: "0 0 24 24",
|
|
@@ -1682,7 +1657,7 @@ function DrawSquare({ width, height, sx, ...props }, ref) {
|
|
|
1682
1657
|
);
|
|
1683
1658
|
}
|
|
1684
1659
|
const DrawSquare$1 = forwardRef(DrawSquare);
|
|
1685
|
-
const Icon$
|
|
1660
|
+
const Icon$25 = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
1686
1661
|
/* @__PURE__ */ jsx(
|
|
1687
1662
|
"path",
|
|
1688
1663
|
{
|
|
@@ -1700,10 +1675,10 @@ const Icon$26 = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
1700
1675
|
}
|
|
1701
1676
|
)
|
|
1702
1677
|
] });
|
|
1703
|
-
const BaseSvgIcon$
|
|
1678
|
+
const BaseSvgIcon$25 = createSvgIcon(Icon$25(), "DropAPin");
|
|
1704
1679
|
function DropAPin({ width, height, sx, ...props }, ref) {
|
|
1705
1680
|
return /* @__PURE__ */ jsx(
|
|
1706
|
-
BaseSvgIcon$
|
|
1681
|
+
BaseSvgIcon$25,
|
|
1707
1682
|
{
|
|
1708
1683
|
ref,
|
|
1709
1684
|
viewBox: "0 0 24 24",
|
|
@@ -1717,7 +1692,7 @@ function DropAPin({ width, height, sx, ...props }, ref) {
|
|
|
1717
1692
|
);
|
|
1718
1693
|
}
|
|
1719
1694
|
const DropAPin$1 = forwardRef(DropAPin);
|
|
1720
|
-
const Icon$
|
|
1695
|
+
const Icon$24 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1721
1696
|
"path",
|
|
1722
1697
|
{
|
|
1723
1698
|
fill: "currentColor",
|
|
@@ -1726,10 +1701,10 @@ const Icon$25 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1726
1701
|
clipRule: "evenodd"
|
|
1727
1702
|
}
|
|
1728
1703
|
) });
|
|
1729
|
-
const BaseSvgIcon$
|
|
1704
|
+
const BaseSvgIcon$24 = createSvgIcon(Icon$24(), "DualMap");
|
|
1730
1705
|
function DualMap({ width, height, sx, ...props }, ref) {
|
|
1731
1706
|
return /* @__PURE__ */ jsx(
|
|
1732
|
-
BaseSvgIcon$
|
|
1707
|
+
BaseSvgIcon$24,
|
|
1733
1708
|
{
|
|
1734
1709
|
ref,
|
|
1735
1710
|
viewBox: "0 0 24 24",
|
|
@@ -1743,7 +1718,7 @@ function DualMap({ width, height, sx, ...props }, ref) {
|
|
|
1743
1718
|
);
|
|
1744
1719
|
}
|
|
1745
1720
|
const DualMap$1 = forwardRef(DualMap);
|
|
1746
|
-
const Icon$
|
|
1721
|
+
const Icon$23 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1747
1722
|
"path",
|
|
1748
1723
|
{
|
|
1749
1724
|
fill: "currentColor",
|
|
@@ -1752,10 +1727,10 @@ const Icon$24 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1752
1727
|
clipRule: "evenodd"
|
|
1753
1728
|
}
|
|
1754
1729
|
) });
|
|
1755
|
-
const BaseSvgIcon$
|
|
1730
|
+
const BaseSvgIcon$23 = createSvgIcon(Icon$23(), "Environmental");
|
|
1756
1731
|
function Environmental({ width, height, sx, ...props }, ref) {
|
|
1757
1732
|
return /* @__PURE__ */ jsx(
|
|
1758
|
-
BaseSvgIcon$
|
|
1733
|
+
BaseSvgIcon$23,
|
|
1759
1734
|
{
|
|
1760
1735
|
ref,
|
|
1761
1736
|
viewBox: "0 0 24 24",
|
|
@@ -1769,7 +1744,7 @@ function Environmental({ width, height, sx, ...props }, ref) {
|
|
|
1769
1744
|
);
|
|
1770
1745
|
}
|
|
1771
1746
|
const Environmental$1 = forwardRef(Environmental);
|
|
1772
|
-
const Icon$
|
|
1747
|
+
const Icon$22 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1773
1748
|
"path",
|
|
1774
1749
|
{
|
|
1775
1750
|
fill: "currentColor",
|
|
@@ -1778,10 +1753,10 @@ const Icon$23 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1778
1753
|
clipRule: "evenodd"
|
|
1779
1754
|
}
|
|
1780
1755
|
) });
|
|
1781
|
-
const BaseSvgIcon$
|
|
1756
|
+
const BaseSvgIcon$22 = createSvgIcon(Icon$22(), "EnvironmentalManagement");
|
|
1782
1757
|
function EnvironmentalManagement({ width, height, sx, ...props }, ref) {
|
|
1783
1758
|
return /* @__PURE__ */ jsx(
|
|
1784
|
-
BaseSvgIcon$
|
|
1759
|
+
BaseSvgIcon$22,
|
|
1785
1760
|
{
|
|
1786
1761
|
ref,
|
|
1787
1762
|
viewBox: "0 0 24 24",
|
|
@@ -1795,11 +1770,11 @@ function EnvironmentalManagement({ width, height, sx, ...props }, ref) {
|
|
|
1795
1770
|
);
|
|
1796
1771
|
}
|
|
1797
1772
|
const EnvironmentalManagement$1 = forwardRef(EnvironmentalManagement);
|
|
1798
|
-
const Icon$
|
|
1799
|
-
const BaseSvgIcon$
|
|
1773
|
+
const Icon$21 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M4 17v-3h16v3zm0-7V7h16v3z" }) });
|
|
1774
|
+
const BaseSvgIcon$21 = createSvgIcon(Icon$21(), "Equal");
|
|
1800
1775
|
function Equal({ width, height, sx, ...props }, ref) {
|
|
1801
1776
|
return /* @__PURE__ */ jsx(
|
|
1802
|
-
BaseSvgIcon$
|
|
1777
|
+
BaseSvgIcon$21,
|
|
1803
1778
|
{
|
|
1804
1779
|
ref,
|
|
1805
1780
|
viewBox: "0 0 24 24",
|
|
@@ -1813,7 +1788,7 @@ function Equal({ width, height, sx, ...props }, ref) {
|
|
|
1813
1788
|
);
|
|
1814
1789
|
}
|
|
1815
1790
|
const Equal$1 = forwardRef(Equal);
|
|
1816
|
-
const Icon$
|
|
1791
|
+
const Icon$20 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1817
1792
|
"path",
|
|
1818
1793
|
{
|
|
1819
1794
|
fill: "currentColor",
|
|
@@ -1822,10 +1797,10 @@ const Icon$21 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1822
1797
|
clipRule: "evenodd"
|
|
1823
1798
|
}
|
|
1824
1799
|
) });
|
|
1825
|
-
const BaseSvgIcon$
|
|
1800
|
+
const BaseSvgIcon$20 = createSvgIcon(Icon$20(), "ExitToAppLeft");
|
|
1826
1801
|
function ExitToAppLeft({ width, height, sx, ...props }, ref) {
|
|
1827
1802
|
return /* @__PURE__ */ jsx(
|
|
1828
|
-
BaseSvgIcon$
|
|
1803
|
+
BaseSvgIcon$20,
|
|
1829
1804
|
{
|
|
1830
1805
|
ref,
|
|
1831
1806
|
viewBox: "0 0 24 24",
|
|
@@ -1839,7 +1814,7 @@ function ExitToAppLeft({ width, height, sx, ...props }, ref) {
|
|
|
1839
1814
|
);
|
|
1840
1815
|
}
|
|
1841
1816
|
const ExitToAppLeft$1 = forwardRef(ExitToAppLeft);
|
|
1842
|
-
const Icon$
|
|
1817
|
+
const Icon$1$ = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1843
1818
|
"path",
|
|
1844
1819
|
{
|
|
1845
1820
|
fill: "currentColor",
|
|
@@ -1848,10 +1823,10 @@ const Icon$20 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1848
1823
|
clipRule: "evenodd"
|
|
1849
1824
|
}
|
|
1850
1825
|
) });
|
|
1851
|
-
const BaseSvgIcon$
|
|
1826
|
+
const BaseSvgIcon$1$ = createSvgIcon(Icon$1$(), "Fabric");
|
|
1852
1827
|
function Fabric({ width, height, sx, ...props }, ref) {
|
|
1853
1828
|
return /* @__PURE__ */ jsx(
|
|
1854
|
-
BaseSvgIcon$
|
|
1829
|
+
BaseSvgIcon$1$,
|
|
1855
1830
|
{
|
|
1856
1831
|
ref,
|
|
1857
1832
|
viewBox: "0 0 24 24",
|
|
@@ -1865,7 +1840,7 @@ function Fabric({ width, height, sx, ...props }, ref) {
|
|
|
1865
1840
|
);
|
|
1866
1841
|
}
|
|
1867
1842
|
const Fabric$1 = forwardRef(Fabric);
|
|
1868
|
-
const Icon$
|
|
1843
|
+
const Icon$1_ = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1869
1844
|
"path",
|
|
1870
1845
|
{
|
|
1871
1846
|
fill: "currentColor",
|
|
@@ -1874,10 +1849,10 @@ const Icon$1$ = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1874
1849
|
clipRule: "evenodd"
|
|
1875
1850
|
}
|
|
1876
1851
|
) });
|
|
1877
|
-
const BaseSvgIcon$
|
|
1852
|
+
const BaseSvgIcon$1_ = createSvgIcon(Icon$1_(), "Facebook");
|
|
1878
1853
|
function Facebook({ width, height, sx, ...props }, ref) {
|
|
1879
1854
|
return /* @__PURE__ */ jsx(
|
|
1880
|
-
BaseSvgIcon$
|
|
1855
|
+
BaseSvgIcon$1_,
|
|
1881
1856
|
{
|
|
1882
1857
|
ref,
|
|
1883
1858
|
viewBox: "0 0 24 24",
|
|
@@ -1891,7 +1866,7 @@ function Facebook({ width, height, sx, ...props }, ref) {
|
|
|
1891
1866
|
);
|
|
1892
1867
|
}
|
|
1893
1868
|
const Facebook$1 = forwardRef(Facebook);
|
|
1894
|
-
const Icon$
|
|
1869
|
+
const Icon$1Z = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1895
1870
|
"path",
|
|
1896
1871
|
{
|
|
1897
1872
|
fill: "currentColor",
|
|
@@ -1900,10 +1875,10 @@ const Icon$1_ = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
1900
1875
|
clipRule: "evenodd"
|
|
1901
1876
|
}
|
|
1902
1877
|
) });
|
|
1903
|
-
const BaseSvgIcon$
|
|
1878
|
+
const BaseSvgIcon$1Z = createSvgIcon(Icon$1Z(), "Financial");
|
|
1904
1879
|
function Financial({ width, height, sx, ...props }, ref) {
|
|
1905
1880
|
return /* @__PURE__ */ jsx(
|
|
1906
|
-
BaseSvgIcon$
|
|
1881
|
+
BaseSvgIcon$1Z,
|
|
1907
1882
|
{
|
|
1908
1883
|
ref,
|
|
1909
1884
|
viewBox: "0 0 24 24",
|
|
@@ -1917,17 +1892,17 @@ function Financial({ width, height, sx, ...props }, ref) {
|
|
|
1917
1892
|
);
|
|
1918
1893
|
}
|
|
1919
1894
|
const Financial$1 = forwardRef(Financial);
|
|
1920
|
-
const Icon$
|
|
1895
|
+
const Icon$1Y = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
1921
1896
|
"path",
|
|
1922
1897
|
{
|
|
1923
1898
|
fill: "currentColor",
|
|
1924
1899
|
d: "M13 23h-2V1h2zM7 21h2v-2H7zM3 9h2V7H3zM21 19V5c0-1.1-.9-2-2-2h-4v2h4v14h-4v2h4c1.1 0 2-.9 2-2M5 5V3c-1.1 0-2 .9-2 2zM3 17h2v-2H3zM7 5h2V3H7zM3 13h2v-2H3zM3 19c0 1.1.9 2 2 2v-2z"
|
|
1925
1900
|
}
|
|
1926
1901
|
) });
|
|
1927
|
-
const BaseSvgIcon$
|
|
1902
|
+
const BaseSvgIcon$1Y = createSvgIcon(Icon$1Y(), "FlipInverse");
|
|
1928
1903
|
function FlipInverse({ width, height, sx, ...props }, ref) {
|
|
1929
1904
|
return /* @__PURE__ */ jsx(
|
|
1930
|
-
BaseSvgIcon$
|
|
1905
|
+
BaseSvgIcon$1Y,
|
|
1931
1906
|
{
|
|
1932
1907
|
ref,
|
|
1933
1908
|
viewBox: "0 0 24 24",
|
|
@@ -1941,7 +1916,7 @@ function FlipInverse({ width, height, sx, ...props }, ref) {
|
|
|
1941
1916
|
);
|
|
1942
1917
|
}
|
|
1943
1918
|
const FlipInverse$1 = forwardRef(FlipInverse);
|
|
1944
|
-
const Icon$
|
|
1919
|
+
const Icon$1X = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
1945
1920
|
/* @__PURE__ */ jsx(
|
|
1946
1921
|
"path",
|
|
1947
1922
|
{
|
|
@@ -1961,10 +1936,10 @@ const Icon$1Y = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
1961
1936
|
}
|
|
1962
1937
|
)
|
|
1963
1938
|
] });
|
|
1964
|
-
const BaseSvgIcon$
|
|
1939
|
+
const BaseSvgIcon$1X = createSvgIcon(Icon$1X(), "Framed");
|
|
1965
1940
|
function Framed({ width, height, sx, ...props }, ref) {
|
|
1966
1941
|
return /* @__PURE__ */ jsx(
|
|
1967
|
-
BaseSvgIcon$
|
|
1942
|
+
BaseSvgIcon$1X,
|
|
1968
1943
|
{
|
|
1969
1944
|
ref,
|
|
1970
1945
|
viewBox: "0 0 24 24",
|
|
@@ -1978,7 +1953,7 @@ function Framed({ width, height, sx, ...props }, ref) {
|
|
|
1978
1953
|
);
|
|
1979
1954
|
}
|
|
1980
1955
|
const Framed$1 = forwardRef(Framed);
|
|
1981
|
-
const Icon$
|
|
1956
|
+
const Icon$1W = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
1982
1957
|
/* @__PURE__ */ jsx(
|
|
1983
1958
|
"path",
|
|
1984
1959
|
{
|
|
@@ -2005,10 +1980,10 @@ const Icon$1X = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2005
1980
|
}
|
|
2006
1981
|
)
|
|
2007
1982
|
] });
|
|
2008
|
-
const BaseSvgIcon$
|
|
1983
|
+
const BaseSvgIcon$1W = createSvgIcon(Icon$1W(), "FraudDetection");
|
|
2009
1984
|
function FraudDetection({ width, height, sx, ...props }, ref) {
|
|
2010
1985
|
return /* @__PURE__ */ jsx(
|
|
2011
|
-
BaseSvgIcon$
|
|
1986
|
+
BaseSvgIcon$1W,
|
|
2012
1987
|
{
|
|
2013
1988
|
ref,
|
|
2014
1989
|
viewBox: "0 0 24 24",
|
|
@@ -2022,7 +1997,7 @@ function FraudDetection({ width, height, sx, ...props }, ref) {
|
|
|
2022
1997
|
);
|
|
2023
1998
|
}
|
|
2024
1999
|
const FraudDetection$1 = forwardRef(FraudDetection);
|
|
2025
|
-
const Icon$
|
|
2000
|
+
const Icon$1V = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2026
2001
|
"path",
|
|
2027
2002
|
{
|
|
2028
2003
|
fill: "currentColor",
|
|
@@ -2031,10 +2006,10 @@ const Icon$1W = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2031
2006
|
clipRule: "evenodd"
|
|
2032
2007
|
}
|
|
2033
2008
|
) });
|
|
2034
|
-
const BaseSvgIcon$
|
|
2009
|
+
const BaseSvgIcon$1V = createSvgIcon(Icon$1V(), "Functions");
|
|
2035
2010
|
function Functions({ width, height, sx, ...props }, ref) {
|
|
2036
2011
|
return /* @__PURE__ */ jsx(
|
|
2037
|
-
BaseSvgIcon$
|
|
2012
|
+
BaseSvgIcon$1V,
|
|
2038
2013
|
{
|
|
2039
2014
|
ref,
|
|
2040
2015
|
viewBox: "0 0 24 24",
|
|
@@ -2048,7 +2023,7 @@ function Functions({ width, height, sx, ...props }, ref) {
|
|
|
2048
2023
|
);
|
|
2049
2024
|
}
|
|
2050
2025
|
const Functions$1 = forwardRef(Functions);
|
|
2051
|
-
const Icon$
|
|
2026
|
+
const Icon$1U = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
2052
2027
|
/* @__PURE__ */ jsx(
|
|
2053
2028
|
"path",
|
|
2054
2029
|
{
|
|
@@ -2071,10 +2046,10 @@ const Icon$1V = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2071
2046
|
}
|
|
2072
2047
|
)
|
|
2073
2048
|
] });
|
|
2074
|
-
const BaseSvgIcon$
|
|
2049
|
+
const BaseSvgIcon$1U = createSvgIcon(Icon$1U(), "GeneratingDescription");
|
|
2075
2050
|
function GeneratingDescription({ width, height, sx, ...props }, ref) {
|
|
2076
2051
|
return /* @__PURE__ */ jsx(
|
|
2077
|
-
BaseSvgIcon$
|
|
2052
|
+
BaseSvgIcon$1U,
|
|
2078
2053
|
{
|
|
2079
2054
|
ref,
|
|
2080
2055
|
viewBox: "0 0 24 24",
|
|
@@ -2088,7 +2063,7 @@ function GeneratingDescription({ width, height, sx, ...props }, ref) {
|
|
|
2088
2063
|
);
|
|
2089
2064
|
}
|
|
2090
2065
|
const GeneratingDescription$1 = forwardRef(GeneratingDescription);
|
|
2091
|
-
const Icon$
|
|
2066
|
+
const Icon$1T = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
2092
2067
|
/* @__PURE__ */ jsx(
|
|
2093
2068
|
"path",
|
|
2094
2069
|
{
|
|
@@ -2108,10 +2083,10 @@ const Icon$1U = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2108
2083
|
}
|
|
2109
2084
|
)
|
|
2110
2085
|
] });
|
|
2111
|
-
const BaseSvgIcon$
|
|
2086
|
+
const BaseSvgIcon$1T = createSvgIcon(Icon$1T(), "GeocodeTable");
|
|
2112
2087
|
function GeocodeTable({ width, height, sx, ...props }, ref) {
|
|
2113
2088
|
return /* @__PURE__ */ jsx(
|
|
2114
|
-
BaseSvgIcon$
|
|
2089
|
+
BaseSvgIcon$1T,
|
|
2115
2090
|
{
|
|
2116
2091
|
ref,
|
|
2117
2092
|
viewBox: "0 0 24 24",
|
|
@@ -2125,7 +2100,7 @@ function GeocodeTable({ width, height, sx, ...props }, ref) {
|
|
|
2125
2100
|
);
|
|
2126
2101
|
}
|
|
2127
2102
|
const GeocodeTable$1 = forwardRef(GeocodeTable);
|
|
2128
|
-
const Icon$
|
|
2103
|
+
const Icon$1S = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2129
2104
|
"path",
|
|
2130
2105
|
{
|
|
2131
2106
|
fill: "currentColor",
|
|
@@ -2134,10 +2109,10 @@ const Icon$1T = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2134
2109
|
clipRule: "evenodd"
|
|
2135
2110
|
}
|
|
2136
2111
|
) });
|
|
2137
|
-
const BaseSvgIcon$
|
|
2112
|
+
const BaseSvgIcon$1S = createSvgIcon(Icon$1S(), "Geography");
|
|
2138
2113
|
function Geography({ width, height, sx, ...props }, ref) {
|
|
2139
2114
|
return /* @__PURE__ */ jsx(
|
|
2140
|
-
BaseSvgIcon$
|
|
2115
|
+
BaseSvgIcon$1S,
|
|
2141
2116
|
{
|
|
2142
2117
|
ref,
|
|
2143
2118
|
viewBox: "0 0 24 24",
|
|
@@ -2151,7 +2126,7 @@ function Geography({ width, height, sx, ...props }, ref) {
|
|
|
2151
2126
|
);
|
|
2152
2127
|
}
|
|
2153
2128
|
const Geography$1 = forwardRef(Geography);
|
|
2154
|
-
const Icon$
|
|
2129
|
+
const Icon$1R = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2155
2130
|
"path",
|
|
2156
2131
|
{
|
|
2157
2132
|
fill: "currentColor",
|
|
@@ -2160,10 +2135,10 @@ const Icon$1S = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2160
2135
|
clipRule: "evenodd"
|
|
2161
2136
|
}
|
|
2162
2137
|
) });
|
|
2163
|
-
const BaseSvgIcon$
|
|
2138
|
+
const BaseSvgIcon$1R = createSvgIcon(Icon$1R(), "Geomarketing");
|
|
2164
2139
|
function Geomarketing({ width, height, sx, ...props }, ref) {
|
|
2165
2140
|
return /* @__PURE__ */ jsx(
|
|
2166
|
-
BaseSvgIcon$
|
|
2141
|
+
BaseSvgIcon$1R,
|
|
2167
2142
|
{
|
|
2168
2143
|
ref,
|
|
2169
2144
|
viewBox: "0 0 24 24",
|
|
@@ -2177,7 +2152,7 @@ function Geomarketing({ width, height, sx, ...props }, ref) {
|
|
|
2177
2152
|
);
|
|
2178
2153
|
}
|
|
2179
2154
|
const Geomarketing$1 = forwardRef(Geomarketing);
|
|
2180
|
-
const Icon$
|
|
2155
|
+
const Icon$1Q = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2181
2156
|
"path",
|
|
2182
2157
|
{
|
|
2183
2158
|
fill: "currentColor",
|
|
@@ -2186,10 +2161,10 @@ const Icon$1R = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2186
2161
|
clipRule: "evenodd"
|
|
2187
2162
|
}
|
|
2188
2163
|
) });
|
|
2189
|
-
const BaseSvgIcon$
|
|
2164
|
+
const BaseSvgIcon$1Q = createSvgIcon(Icon$1Q(), "Geometry");
|
|
2190
2165
|
function Geometry({ width, height, sx, ...props }, ref) {
|
|
2191
2166
|
return /* @__PURE__ */ jsx(
|
|
2192
|
-
BaseSvgIcon$
|
|
2167
|
+
BaseSvgIcon$1Q,
|
|
2193
2168
|
{
|
|
2194
2169
|
ref,
|
|
2195
2170
|
viewBox: "0 0 24 24",
|
|
@@ -2203,7 +2178,7 @@ function Geometry({ width, height, sx, ...props }, ref) {
|
|
|
2203
2178
|
);
|
|
2204
2179
|
}
|
|
2205
2180
|
const Geometry$1 = forwardRef(Geometry);
|
|
2206
|
-
const Icon$
|
|
2181
|
+
const Icon$1P = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2207
2182
|
"path",
|
|
2208
2183
|
{
|
|
2209
2184
|
fill: "currentColor",
|
|
@@ -2212,10 +2187,10 @@ const Icon$1Q = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2212
2187
|
clipRule: "evenodd"
|
|
2213
2188
|
}
|
|
2214
2189
|
) });
|
|
2215
|
-
const BaseSvgIcon$
|
|
2190
|
+
const BaseSvgIcon$1P = createSvgIcon(Icon$1P(), "Github");
|
|
2216
2191
|
function Github({ width, height, sx, ...props }, ref) {
|
|
2217
2192
|
return /* @__PURE__ */ jsx(
|
|
2218
|
-
BaseSvgIcon$
|
|
2193
|
+
BaseSvgIcon$1P,
|
|
2219
2194
|
{
|
|
2220
2195
|
ref,
|
|
2221
2196
|
viewBox: "0 0 24 24",
|
|
@@ -2229,7 +2204,7 @@ function Github({ width, height, sx, ...props }, ref) {
|
|
|
2229
2204
|
);
|
|
2230
2205
|
}
|
|
2231
2206
|
const Github$1 = forwardRef(Github);
|
|
2232
|
-
const Icon$
|
|
2207
|
+
const Icon$1O = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2233
2208
|
"path",
|
|
2234
2209
|
{
|
|
2235
2210
|
fill: "currentColor",
|
|
@@ -2238,10 +2213,10 @@ const Icon$1P = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2238
2213
|
clipRule: "evenodd"
|
|
2239
2214
|
}
|
|
2240
2215
|
) });
|
|
2241
|
-
const BaseSvgIcon$
|
|
2216
|
+
const BaseSvgIcon$1O = createSvgIcon(Icon$1O(), "Google");
|
|
2242
2217
|
function Google({ width, height, sx, ...props }, ref) {
|
|
2243
2218
|
return /* @__PURE__ */ jsx(
|
|
2244
|
-
BaseSvgIcon$
|
|
2219
|
+
BaseSvgIcon$1O,
|
|
2245
2220
|
{
|
|
2246
2221
|
ref,
|
|
2247
2222
|
viewBox: "0 0 24 24",
|
|
@@ -2255,7 +2230,7 @@ function Google({ width, height, sx, ...props }, ref) {
|
|
|
2255
2230
|
);
|
|
2256
2231
|
}
|
|
2257
2232
|
const Google$1 = forwardRef(Google);
|
|
2258
|
-
const Icon$
|
|
2233
|
+
const Icon$1N = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2259
2234
|
"path",
|
|
2260
2235
|
{
|
|
2261
2236
|
fill: "currentColor",
|
|
@@ -2264,10 +2239,10 @@ const Icon$1O = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2264
2239
|
clipRule: "evenodd"
|
|
2265
2240
|
}
|
|
2266
2241
|
) });
|
|
2267
|
-
const BaseSvgIcon$
|
|
2242
|
+
const BaseSvgIcon$1N = createSvgIcon(Icon$1N(), "H3");
|
|
2268
2243
|
function H3({ width, height, sx, ...props }, ref) {
|
|
2269
2244
|
return /* @__PURE__ */ jsx(
|
|
2270
|
-
BaseSvgIcon$
|
|
2245
|
+
BaseSvgIcon$1N,
|
|
2271
2246
|
{
|
|
2272
2247
|
ref,
|
|
2273
2248
|
viewBox: "0 0 24 24",
|
|
@@ -2281,7 +2256,7 @@ function H3({ width, height, sx, ...props }, ref) {
|
|
|
2281
2256
|
);
|
|
2282
2257
|
}
|
|
2283
2258
|
const H3$1 = forwardRef(H3);
|
|
2284
|
-
const Icon$
|
|
2259
|
+
const Icon$1M = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2285
2260
|
"path",
|
|
2286
2261
|
{
|
|
2287
2262
|
fill: "currentColor",
|
|
@@ -2290,10 +2265,10 @@ const Icon$1N = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2290
2265
|
clipRule: "evenodd"
|
|
2291
2266
|
}
|
|
2292
2267
|
) });
|
|
2293
|
-
const BaseSvgIcon$
|
|
2268
|
+
const BaseSvgIcon$1M = createSvgIcon(Icon$1M(), "HealthAnalytics");
|
|
2294
2269
|
function HealthAnalytics({ width, height, sx, ...props }, ref) {
|
|
2295
2270
|
return /* @__PURE__ */ jsx(
|
|
2296
|
-
BaseSvgIcon$
|
|
2271
|
+
BaseSvgIcon$1M,
|
|
2297
2272
|
{
|
|
2298
2273
|
ref,
|
|
2299
2274
|
viewBox: "0 0 24 24",
|
|
@@ -2307,7 +2282,7 @@ function HealthAnalytics({ width, height, sx, ...props }, ref) {
|
|
|
2307
2282
|
);
|
|
2308
2283
|
}
|
|
2309
2284
|
const HealthAnalytics$1 = forwardRef(HealthAnalytics);
|
|
2310
|
-
const Icon$
|
|
2285
|
+
const Icon$1L = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
2311
2286
|
/* @__PURE__ */ jsx(
|
|
2312
2287
|
"path",
|
|
2313
2288
|
{
|
|
@@ -2325,10 +2300,10 @@ const Icon$1M = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2325
2300
|
}
|
|
2326
2301
|
)
|
|
2327
2302
|
] });
|
|
2328
|
-
const BaseSvgIcon$
|
|
2303
|
+
const BaseSvgIcon$1L = createSvgIcon(Icon$1L(), "HideComments");
|
|
2329
2304
|
function HideComments({ width, height, sx, ...props }, ref) {
|
|
2330
2305
|
return /* @__PURE__ */ jsx(
|
|
2331
|
-
BaseSvgIcon$
|
|
2306
|
+
BaseSvgIcon$1L,
|
|
2332
2307
|
{
|
|
2333
2308
|
ref,
|
|
2334
2309
|
viewBox: "0 0 24 24",
|
|
@@ -2342,7 +2317,7 @@ function HideComments({ width, height, sx, ...props }, ref) {
|
|
|
2342
2317
|
);
|
|
2343
2318
|
}
|
|
2344
2319
|
const HideComments$1 = forwardRef(HideComments);
|
|
2345
|
-
const Icon$
|
|
2320
|
+
const Icon$1K = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
2346
2321
|
/* @__PURE__ */ jsx(
|
|
2347
2322
|
"path",
|
|
2348
2323
|
{
|
|
@@ -2360,10 +2335,10 @@ const Icon$1L = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2360
2335
|
}
|
|
2361
2336
|
)
|
|
2362
2337
|
] });
|
|
2363
|
-
const BaseSvgIcon$
|
|
2338
|
+
const BaseSvgIcon$1K = createSvgIcon(Icon$1K(), "HideLeftsidebar");
|
|
2364
2339
|
function HideLeftsidebar({ width, height, sx, ...props }, ref) {
|
|
2365
2340
|
return /* @__PURE__ */ jsx(
|
|
2366
|
-
BaseSvgIcon$
|
|
2341
|
+
BaseSvgIcon$1K,
|
|
2367
2342
|
{
|
|
2368
2343
|
ref,
|
|
2369
2344
|
viewBox: "0 0 24 24",
|
|
@@ -2377,7 +2352,7 @@ function HideLeftsidebar({ width, height, sx, ...props }, ref) {
|
|
|
2377
2352
|
);
|
|
2378
2353
|
}
|
|
2379
2354
|
const HideLeftsidebar$1 = forwardRef(HideLeftsidebar);
|
|
2380
|
-
const Icon$
|
|
2355
|
+
const Icon$1J = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2381
2356
|
"path",
|
|
2382
2357
|
{
|
|
2383
2358
|
fill: "currentColor",
|
|
@@ -2386,10 +2361,10 @@ const Icon$1K = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2386
2361
|
clipRule: "evenodd"
|
|
2387
2362
|
}
|
|
2388
2363
|
) });
|
|
2389
|
-
const BaseSvgIcon$
|
|
2364
|
+
const BaseSvgIcon$1J = createSvgIcon(Icon$1J(), "Home");
|
|
2390
2365
|
function Home({ width, height, sx, ...props }, ref) {
|
|
2391
2366
|
return /* @__PURE__ */ jsx(
|
|
2392
|
-
BaseSvgIcon$
|
|
2367
|
+
BaseSvgIcon$1J,
|
|
2393
2368
|
{
|
|
2394
2369
|
ref,
|
|
2395
2370
|
viewBox: "0 0 24 24",
|
|
@@ -2403,7 +2378,7 @@ function Home({ width, height, sx, ...props }, ref) {
|
|
|
2403
2378
|
);
|
|
2404
2379
|
}
|
|
2405
2380
|
const Home$1 = forwardRef(Home);
|
|
2406
|
-
const Icon$
|
|
2381
|
+
const Icon$1I = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2407
2382
|
"path",
|
|
2408
2383
|
{
|
|
2409
2384
|
fill: "currentColor",
|
|
@@ -2412,10 +2387,10 @@ const Icon$1J = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2412
2387
|
clipRule: "evenodd"
|
|
2413
2388
|
}
|
|
2414
2389
|
) });
|
|
2415
|
-
const BaseSvgIcon$
|
|
2390
|
+
const BaseSvgIcon$1I = createSvgIcon(Icon$1I(), "Housing");
|
|
2416
2391
|
function Housing({ width, height, sx, ...props }, ref) {
|
|
2417
2392
|
return /* @__PURE__ */ jsx(
|
|
2418
|
-
BaseSvgIcon$
|
|
2393
|
+
BaseSvgIcon$1I,
|
|
2419
2394
|
{
|
|
2420
2395
|
ref,
|
|
2421
2396
|
viewBox: "0 0 24 24",
|
|
@@ -2429,7 +2404,7 @@ function Housing({ width, height, sx, ...props }, ref) {
|
|
|
2429
2404
|
);
|
|
2430
2405
|
}
|
|
2431
2406
|
const Housing$1 = forwardRef(Housing);
|
|
2432
|
-
const Icon$
|
|
2407
|
+
const Icon$1H = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2433
2408
|
"path",
|
|
2434
2409
|
{
|
|
2435
2410
|
fill: "currentColor",
|
|
@@ -2438,10 +2413,10 @@ const Icon$1I = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2438
2413
|
clipRule: "evenodd"
|
|
2439
2414
|
}
|
|
2440
2415
|
) });
|
|
2441
|
-
const BaseSvgIcon$
|
|
2416
|
+
const BaseSvgIcon$1H = createSvgIcon(Icon$1H(), "HumanMobility");
|
|
2442
2417
|
function HumanMobility({ width, height, sx, ...props }, ref) {
|
|
2443
2418
|
return /* @__PURE__ */ jsx(
|
|
2444
|
-
BaseSvgIcon$
|
|
2419
|
+
BaseSvgIcon$1H,
|
|
2445
2420
|
{
|
|
2446
2421
|
ref,
|
|
2447
2422
|
viewBox: "0 0 24 24",
|
|
@@ -2455,7 +2430,7 @@ function HumanMobility({ width, height, sx, ...props }, ref) {
|
|
|
2455
2430
|
);
|
|
2456
2431
|
}
|
|
2457
2432
|
const HumanMobility$1 = forwardRef(HumanMobility);
|
|
2458
|
-
const Icon$
|
|
2433
|
+
const Icon$1G = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2459
2434
|
"path",
|
|
2460
2435
|
{
|
|
2461
2436
|
fill: "currentColor",
|
|
@@ -2464,10 +2439,10 @@ const Icon$1H = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2464
2439
|
clipRule: "evenodd"
|
|
2465
2440
|
}
|
|
2466
2441
|
) });
|
|
2467
|
-
const BaseSvgIcon$
|
|
2442
|
+
const BaseSvgIcon$1G = createSvgIcon(Icon$1G(), "Id");
|
|
2468
2443
|
function Id({ width, height, sx, ...props }, ref) {
|
|
2469
2444
|
return /* @__PURE__ */ jsx(
|
|
2470
|
-
BaseSvgIcon$
|
|
2445
|
+
BaseSvgIcon$1G,
|
|
2471
2446
|
{
|
|
2472
2447
|
ref,
|
|
2473
2448
|
viewBox: "0 0 24 24",
|
|
@@ -2481,7 +2456,7 @@ function Id({ width, height, sx, ...props }, ref) {
|
|
|
2481
2456
|
);
|
|
2482
2457
|
}
|
|
2483
2458
|
const Id$1 = forwardRef(Id);
|
|
2484
|
-
const Icon$
|
|
2459
|
+
const Icon$1F = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
2485
2460
|
/* @__PURE__ */ jsx(
|
|
2486
2461
|
"path",
|
|
2487
2462
|
{
|
|
@@ -2499,10 +2474,10 @@ const Icon$1G = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2499
2474
|
),
|
|
2500
2475
|
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "m14.14 11.86-3 3.87L9 13.14 6 17h12z" })
|
|
2501
2476
|
] });
|
|
2502
|
-
const BaseSvgIcon$
|
|
2477
|
+
const BaseSvgIcon$1F = createSvgIcon(Icon$1F(), "Image");
|
|
2503
2478
|
function Image({ width, height, sx, ...props }, ref) {
|
|
2504
2479
|
return /* @__PURE__ */ jsx(
|
|
2505
|
-
BaseSvgIcon$
|
|
2480
|
+
BaseSvgIcon$1F,
|
|
2506
2481
|
{
|
|
2507
2482
|
ref,
|
|
2508
2483
|
viewBox: "0 0 24 24",
|
|
@@ -2516,7 +2491,7 @@ function Image({ width, height, sx, ...props }, ref) {
|
|
|
2516
2491
|
);
|
|
2517
2492
|
}
|
|
2518
2493
|
const Image$1 = forwardRef(Image);
|
|
2519
|
-
const Icon$
|
|
2494
|
+
const Icon$1E = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
2520
2495
|
/* @__PURE__ */ jsx(
|
|
2521
2496
|
"path",
|
|
2522
2497
|
{
|
|
@@ -2541,10 +2516,10 @@ const Icon$1F = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2541
2516
|
}
|
|
2542
2517
|
)
|
|
2543
2518
|
] });
|
|
2544
|
-
const BaseSvgIcon$
|
|
2519
|
+
const BaseSvgIcon$1E = createSvgIcon(Icon$1E(), "Infrastructure");
|
|
2545
2520
|
function Infrastructure({ width, height, sx, ...props }, ref) {
|
|
2546
2521
|
return /* @__PURE__ */ jsx(
|
|
2547
|
-
BaseSvgIcon$
|
|
2522
|
+
BaseSvgIcon$1E,
|
|
2548
2523
|
{
|
|
2549
2524
|
ref,
|
|
2550
2525
|
viewBox: "0 0 24 24",
|
|
@@ -2558,7 +2533,7 @@ function Infrastructure({ width, height, sx, ...props }, ref) {
|
|
|
2558
2533
|
);
|
|
2559
2534
|
}
|
|
2560
2535
|
const Infrastructure$1 = forwardRef(Infrastructure);
|
|
2561
|
-
const Icon$
|
|
2536
|
+
const Icon$1D = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2562
2537
|
"path",
|
|
2563
2538
|
{
|
|
2564
2539
|
fill: "currentColor",
|
|
@@ -2567,10 +2542,10 @@ const Icon$1E = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2567
2542
|
clipRule: "evenodd"
|
|
2568
2543
|
}
|
|
2569
2544
|
) });
|
|
2570
|
-
const BaseSvgIcon$
|
|
2545
|
+
const BaseSvgIcon$1D = createSvgIcon(Icon$1D(), "IotAnalytics");
|
|
2571
2546
|
function IotAnalytics({ width, height, sx, ...props }, ref) {
|
|
2572
2547
|
return /* @__PURE__ */ jsx(
|
|
2573
|
-
BaseSvgIcon$
|
|
2548
|
+
BaseSvgIcon$1D,
|
|
2574
2549
|
{
|
|
2575
2550
|
ref,
|
|
2576
2551
|
viewBox: "0 0 24 24",
|
|
@@ -2584,7 +2559,7 @@ function IotAnalytics({ width, height, sx, ...props }, ref) {
|
|
|
2584
2559
|
);
|
|
2585
2560
|
}
|
|
2586
2561
|
const IotAnalytics$1 = forwardRef(IotAnalytics);
|
|
2587
|
-
const Icon$
|
|
2562
|
+
const Icon$1C = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
2588
2563
|
/* @__PURE__ */ jsx(
|
|
2589
2564
|
"path",
|
|
2590
2565
|
{
|
|
@@ -2602,10 +2577,10 @@ const Icon$1D = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2602
2577
|
}
|
|
2603
2578
|
)
|
|
2604
2579
|
] });
|
|
2605
|
-
const BaseSvgIcon$
|
|
2580
|
+
const BaseSvgIcon$1C = createSvgIcon(Icon$1C(), "LabelDeprecated");
|
|
2606
2581
|
function LabelDeprecated({ width, height, sx, ...props }, ref) {
|
|
2607
2582
|
return /* @__PURE__ */ jsx(
|
|
2608
|
-
BaseSvgIcon$
|
|
2583
|
+
BaseSvgIcon$1C,
|
|
2609
2584
|
{
|
|
2610
2585
|
ref,
|
|
2611
2586
|
viewBox: "0 0 24 24",
|
|
@@ -2619,7 +2594,7 @@ function LabelDeprecated({ width, height, sx, ...props }, ref) {
|
|
|
2619
2594
|
);
|
|
2620
2595
|
}
|
|
2621
2596
|
const LabelDeprecated$1 = forwardRef(LabelDeprecated);
|
|
2622
|
-
const Icon$
|
|
2597
|
+
const Icon$1B = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2623
2598
|
"path",
|
|
2624
2599
|
{
|
|
2625
2600
|
fill: "currentColor",
|
|
@@ -2628,10 +2603,10 @@ const Icon$1C = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2628
2603
|
clipRule: "evenodd"
|
|
2629
2604
|
}
|
|
2630
2605
|
) });
|
|
2631
|
-
const BaseSvgIcon$
|
|
2606
|
+
const BaseSvgIcon$1B = createSvgIcon(Icon$1B(), "Layers");
|
|
2632
2607
|
function Layers({ width, height, sx, ...props }, ref) {
|
|
2633
2608
|
return /* @__PURE__ */ jsx(
|
|
2634
|
-
BaseSvgIcon$
|
|
2609
|
+
BaseSvgIcon$1B,
|
|
2635
2610
|
{
|
|
2636
2611
|
ref,
|
|
2637
2612
|
viewBox: "0 0 24 24",
|
|
@@ -2645,7 +2620,7 @@ function Layers({ width, height, sx, ...props }, ref) {
|
|
|
2645
2620
|
);
|
|
2646
2621
|
}
|
|
2647
2622
|
const Layers$1 = forwardRef(Layers);
|
|
2648
|
-
const Icon$
|
|
2623
|
+
const Icon$1A = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2649
2624
|
"path",
|
|
2650
2625
|
{
|
|
2651
2626
|
fill: "currentColor",
|
|
@@ -2654,10 +2629,10 @@ const Icon$1B = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2654
2629
|
clipRule: "evenodd"
|
|
2655
2630
|
}
|
|
2656
2631
|
) });
|
|
2657
|
-
const BaseSvgIcon$
|
|
2632
|
+
const BaseSvgIcon$1A = createSvgIcon(Icon$1A(), "Linkedin");
|
|
2658
2633
|
function Linkedin({ width, height, sx, ...props }, ref) {
|
|
2659
2634
|
return /* @__PURE__ */ jsx(
|
|
2660
|
-
BaseSvgIcon$
|
|
2635
|
+
BaseSvgIcon$1A,
|
|
2661
2636
|
{
|
|
2662
2637
|
ref,
|
|
2663
2638
|
viewBox: "0 0 24 24",
|
|
@@ -2671,7 +2646,7 @@ function Linkedin({ width, height, sx, ...props }, ref) {
|
|
|
2671
2646
|
);
|
|
2672
2647
|
}
|
|
2673
2648
|
const Linkedin$1 = forwardRef(Linkedin);
|
|
2674
|
-
const Icon$
|
|
2649
|
+
const Icon$1z = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2675
2650
|
"path",
|
|
2676
2651
|
{
|
|
2677
2652
|
fill: "currentColor",
|
|
@@ -2680,10 +2655,10 @@ const Icon$1A = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2680
2655
|
clipRule: "evenodd"
|
|
2681
2656
|
}
|
|
2682
2657
|
) });
|
|
2683
|
-
const BaseSvgIcon$
|
|
2658
|
+
const BaseSvgIcon$1z = createSvgIcon(Icon$1z(), "MapCoordinates");
|
|
2684
2659
|
function MapCoordinates({ width, height, sx, ...props }, ref) {
|
|
2685
2660
|
return /* @__PURE__ */ jsx(
|
|
2686
|
-
BaseSvgIcon$
|
|
2661
|
+
BaseSvgIcon$1z,
|
|
2687
2662
|
{
|
|
2688
2663
|
ref,
|
|
2689
2664
|
viewBox: "0 0 24 24",
|
|
@@ -2697,7 +2672,7 @@ function MapCoordinates({ width, height, sx, ...props }, ref) {
|
|
|
2697
2672
|
);
|
|
2698
2673
|
}
|
|
2699
2674
|
const MapCoordinates$1 = forwardRef(MapCoordinates);
|
|
2700
|
-
const Icon$
|
|
2675
|
+
const Icon$1y = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
2701
2676
|
/* @__PURE__ */ jsx(
|
|
2702
2677
|
"path",
|
|
2703
2678
|
{
|
|
@@ -2724,10 +2699,10 @@ const Icon$1z = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2724
2699
|
}
|
|
2725
2700
|
)
|
|
2726
2701
|
] });
|
|
2727
|
-
const BaseSvgIcon$
|
|
2702
|
+
const BaseSvgIcon$1y = createSvgIcon(Icon$1y(), "MapCopy");
|
|
2728
2703
|
function MapCopy({ width, height, sx, ...props }, ref) {
|
|
2729
2704
|
return /* @__PURE__ */ jsx(
|
|
2730
|
-
BaseSvgIcon$
|
|
2705
|
+
BaseSvgIcon$1y,
|
|
2731
2706
|
{
|
|
2732
2707
|
ref,
|
|
2733
2708
|
viewBox: "0 0 24 24",
|
|
@@ -2741,7 +2716,7 @@ function MapCopy({ width, height, sx, ...props }, ref) {
|
|
|
2741
2716
|
);
|
|
2742
2717
|
}
|
|
2743
2718
|
const MapCopy$1 = forwardRef(MapCopy);
|
|
2744
|
-
const Icon$
|
|
2719
|
+
const Icon$1x = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2745
2720
|
"path",
|
|
2746
2721
|
{
|
|
2747
2722
|
fill: "currentColor",
|
|
@@ -2750,10 +2725,10 @@ const Icon$1y = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2750
2725
|
clipRule: "evenodd"
|
|
2751
2726
|
}
|
|
2752
2727
|
) });
|
|
2753
|
-
const BaseSvgIcon$
|
|
2728
|
+
const BaseSvgIcon$1x = createSvgIcon(Icon$1x(), "MapOthers");
|
|
2754
2729
|
function MapOthers({ width, height, sx, ...props }, ref) {
|
|
2755
2730
|
return /* @__PURE__ */ jsx(
|
|
2756
|
-
BaseSvgIcon$
|
|
2731
|
+
BaseSvgIcon$1x,
|
|
2757
2732
|
{
|
|
2758
2733
|
ref,
|
|
2759
2734
|
viewBox: "0 0 24 24",
|
|
@@ -2767,7 +2742,7 @@ function MapOthers({ width, height, sx, ...props }, ref) {
|
|
|
2767
2742
|
);
|
|
2768
2743
|
}
|
|
2769
2744
|
const MapOthers$1 = forwardRef(MapOthers);
|
|
2770
|
-
const Icon$
|
|
2745
|
+
const Icon$1w = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2771
2746
|
"path",
|
|
2772
2747
|
{
|
|
2773
2748
|
fill: "currentColor",
|
|
@@ -2776,10 +2751,10 @@ const Icon$1x = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2776
2751
|
clipRule: "evenodd"
|
|
2777
2752
|
}
|
|
2778
2753
|
) });
|
|
2779
|
-
const BaseSvgIcon$
|
|
2754
|
+
const BaseSvgIcon$1w = createSvgIcon(Icon$1w(), "MapPin");
|
|
2780
2755
|
function MapPin({ width, height, sx, ...props }, ref) {
|
|
2781
2756
|
return /* @__PURE__ */ jsx(
|
|
2782
|
-
BaseSvgIcon$
|
|
2757
|
+
BaseSvgIcon$1w,
|
|
2783
2758
|
{
|
|
2784
2759
|
ref,
|
|
2785
2760
|
viewBox: "0 0 24 24",
|
|
@@ -2793,7 +2768,7 @@ function MapPin({ width, height, sx, ...props }, ref) {
|
|
|
2793
2768
|
);
|
|
2794
2769
|
}
|
|
2795
2770
|
const MapPin$1 = forwardRef(MapPin);
|
|
2796
|
-
const Icon$
|
|
2771
|
+
const Icon$1v = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
2797
2772
|
/* @__PURE__ */ jsx(
|
|
2798
2773
|
"path",
|
|
2799
2774
|
{
|
|
@@ -2816,10 +2791,10 @@ const Icon$1w = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2816
2791
|
}
|
|
2817
2792
|
)
|
|
2818
2793
|
] });
|
|
2819
|
-
const BaseSvgIcon$
|
|
2794
|
+
const BaseSvgIcon$1v = createSvgIcon(Icon$1v(), "MarkCommentRead");
|
|
2820
2795
|
function MarkCommentRead({ width, height, sx, ...props }, ref) {
|
|
2821
2796
|
return /* @__PURE__ */ jsx(
|
|
2822
|
-
BaseSvgIcon$
|
|
2797
|
+
BaseSvgIcon$1v,
|
|
2823
2798
|
{
|
|
2824
2799
|
ref,
|
|
2825
2800
|
viewBox: "0 0 24 24",
|
|
@@ -2833,7 +2808,7 @@ function MarkCommentRead({ width, height, sx, ...props }, ref) {
|
|
|
2833
2808
|
);
|
|
2834
2809
|
}
|
|
2835
2810
|
const MarkCommentRead$1 = forwardRef(MarkCommentRead);
|
|
2836
|
-
const Icon$
|
|
2811
|
+
const Icon$1u = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2837
2812
|
"path",
|
|
2838
2813
|
{
|
|
2839
2814
|
fill: "currentColor",
|
|
@@ -2842,10 +2817,10 @@ const Icon$1v = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
2842
2817
|
clipRule: "evenodd"
|
|
2843
2818
|
}
|
|
2844
2819
|
) });
|
|
2845
|
-
const BaseSvgIcon$
|
|
2820
|
+
const BaseSvgIcon$1u = createSvgIcon(Icon$1u(), "MarketAnalysis");
|
|
2846
2821
|
function MarketAnalysis({ width, height, sx, ...props }, ref) {
|
|
2847
2822
|
return /* @__PURE__ */ jsx(
|
|
2848
|
-
BaseSvgIcon$
|
|
2823
|
+
BaseSvgIcon$1u,
|
|
2849
2824
|
{
|
|
2850
2825
|
ref,
|
|
2851
2826
|
viewBox: "0 0 24 24",
|
|
@@ -2859,7 +2834,7 @@ function MarketAnalysis({ width, height, sx, ...props }, ref) {
|
|
|
2859
2834
|
);
|
|
2860
2835
|
}
|
|
2861
2836
|
const MarketAnalysis$1 = forwardRef(MarketAnalysis);
|
|
2862
|
-
const Icon$
|
|
2837
|
+
const Icon$1t = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
2863
2838
|
/* @__PURE__ */ jsx(
|
|
2864
2839
|
"path",
|
|
2865
2840
|
{
|
|
@@ -2884,10 +2859,10 @@ const Icon$1u = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2884
2859
|
}
|
|
2885
2860
|
)
|
|
2886
2861
|
] });
|
|
2887
|
-
const BaseSvgIcon$
|
|
2862
|
+
const BaseSvgIcon$1t = createSvgIcon(Icon$1t(), "Max");
|
|
2888
2863
|
function Max({ width, height, sx, ...props }, ref) {
|
|
2889
2864
|
return /* @__PURE__ */ jsx(
|
|
2890
|
-
BaseSvgIcon$
|
|
2865
|
+
BaseSvgIcon$1t,
|
|
2891
2866
|
{
|
|
2892
2867
|
ref,
|
|
2893
2868
|
viewBox: "0 0 24 24",
|
|
@@ -2901,17 +2876,17 @@ function Max({ width, height, sx, ...props }, ref) {
|
|
|
2901
2876
|
);
|
|
2902
2877
|
}
|
|
2903
2878
|
const Max$1 = forwardRef(Max);
|
|
2904
|
-
const Icon$
|
|
2879
|
+
const Icon$1s = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2905
2880
|
"path",
|
|
2906
2881
|
{
|
|
2907
2882
|
fill: "currentColor",
|
|
2908
2883
|
d: "M4 18q-.824 0-1.412-.587A1.93 1.93 0 0 1 2 16V8q0-.824.587-1.412A1.93 1.93 0 0 1 4 6h16q.824 0 1.413.588Q22 7.175 22 8v8q0 .824-.587 1.413A1.93 1.93 0 0 1 20 18zm0-2h16V8h-3v4h-2V8h-2v4h-2V8H9v4H7V8H4z"
|
|
2909
2884
|
}
|
|
2910
2885
|
) });
|
|
2911
|
-
const BaseSvgIcon$
|
|
2886
|
+
const BaseSvgIcon$1s = createSvgIcon(Icon$1s(), "MeasureTool");
|
|
2912
2887
|
function MeasureTool({ width, height, sx, ...props }, ref) {
|
|
2913
2888
|
return /* @__PURE__ */ jsx(
|
|
2914
|
-
BaseSvgIcon$
|
|
2889
|
+
BaseSvgIcon$1s,
|
|
2915
2890
|
{
|
|
2916
2891
|
ref,
|
|
2917
2892
|
viewBox: "0 0 24 24",
|
|
@@ -2925,17 +2900,17 @@ function MeasureTool({ width, height, sx, ...props }, ref) {
|
|
|
2925
2900
|
);
|
|
2926
2901
|
}
|
|
2927
2902
|
const MeasureTool$1 = forwardRef(MeasureTool);
|
|
2928
|
-
const Icon$
|
|
2903
|
+
const Icon$1r = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2929
2904
|
"path",
|
|
2930
2905
|
{
|
|
2931
2906
|
fill: "currentColor",
|
|
2932
2907
|
d: "M5 9h4.5c.55 0 1 .45 1 1v5H9v-4.5H8v3H6.5v-3h-1V15H4v-5c0-.55.45-1 1-1M12 15h1.5V9H12zM18.75 9v3.5L16.25 9H15v6h1.25v-3.5L18.8 15H20V9z"
|
|
2933
2908
|
}
|
|
2934
2909
|
) });
|
|
2935
|
-
const BaseSvgIcon$
|
|
2910
|
+
const BaseSvgIcon$1r = createSvgIcon(Icon$1r(), "Min");
|
|
2936
2911
|
function Min({ width, height, sx, ...props }, ref) {
|
|
2937
2912
|
return /* @__PURE__ */ jsx(
|
|
2938
|
-
BaseSvgIcon$
|
|
2913
|
+
BaseSvgIcon$1r,
|
|
2939
2914
|
{
|
|
2940
2915
|
ref,
|
|
2941
2916
|
viewBox: "0 0 24 24",
|
|
@@ -2949,7 +2924,7 @@ function Min({ width, height, sx, ...props }, ref) {
|
|
|
2949
2924
|
);
|
|
2950
2925
|
}
|
|
2951
2926
|
const Min$1 = forwardRef(Min);
|
|
2952
|
-
const Icon$
|
|
2927
|
+
const Icon$1q = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
2953
2928
|
/* @__PURE__ */ jsx(
|
|
2954
2929
|
"path",
|
|
2955
2930
|
{
|
|
@@ -2968,10 +2943,10 @@ const Icon$1r = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2968
2943
|
}
|
|
2969
2944
|
)
|
|
2970
2945
|
] });
|
|
2971
|
-
const BaseSvgIcon$
|
|
2946
|
+
const BaseSvgIcon$1q = createSvgIcon(Icon$1q(), "MobilityPlanning");
|
|
2972
2947
|
function MobilityPlanning({ width, height, sx, ...props }, ref) {
|
|
2973
2948
|
return /* @__PURE__ */ jsx(
|
|
2974
|
-
BaseSvgIcon$
|
|
2949
|
+
BaseSvgIcon$1q,
|
|
2975
2950
|
{
|
|
2976
2951
|
ref,
|
|
2977
2952
|
viewBox: "0 0 24 24",
|
|
@@ -2985,7 +2960,7 @@ function MobilityPlanning({ width, height, sx, ...props }, ref) {
|
|
|
2985
2960
|
);
|
|
2986
2961
|
}
|
|
2987
2962
|
const MobilityPlanning$1 = forwardRef(MobilityPlanning);
|
|
2988
|
-
const Icon$
|
|
2963
|
+
const Icon$1p = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
2989
2964
|
/* @__PURE__ */ jsx("g", { clipPath: "url(#a)", children: /* @__PURE__ */ jsx(
|
|
2990
2965
|
"path",
|
|
2991
2966
|
{
|
|
@@ -2997,10 +2972,10 @@ const Icon$1q = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
2997
2972
|
) }),
|
|
2998
2973
|
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M0 0h24v24H0z" }) }) })
|
|
2999
2974
|
] });
|
|
3000
|
-
const BaseSvgIcon$
|
|
2975
|
+
const BaseSvgIcon$1p = createSvgIcon(Icon$1p(), "NetworkDeployment");
|
|
3001
2976
|
function NetworkDeployment({ width, height, sx, ...props }, ref) {
|
|
3002
2977
|
return /* @__PURE__ */ jsx(
|
|
3003
|
-
BaseSvgIcon$
|
|
2978
|
+
BaseSvgIcon$1p,
|
|
3004
2979
|
{
|
|
3005
2980
|
ref,
|
|
3006
2981
|
viewBox: "0 0 24 24",
|
|
@@ -3014,7 +2989,7 @@ function NetworkDeployment({ width, height, sx, ...props }, ref) {
|
|
|
3014
2989
|
);
|
|
3015
2990
|
}
|
|
3016
2991
|
const NetworkDeployment$1 = forwardRef(NetworkDeployment);
|
|
3017
|
-
const Icon$
|
|
2992
|
+
const Icon$1o = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
3018
2993
|
/* @__PURE__ */ jsx(
|
|
3019
2994
|
"path",
|
|
3020
2995
|
{
|
|
@@ -3030,10 +3005,10 @@ const Icon$1p = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
3030
3005
|
}
|
|
3031
3006
|
)
|
|
3032
3007
|
] });
|
|
3033
|
-
const BaseSvgIcon$
|
|
3008
|
+
const BaseSvgIcon$1o = createSvgIcon(Icon$1o(), "NightsThermostat");
|
|
3034
3009
|
function NightsThermostat({ width, height, sx, ...props }, ref) {
|
|
3035
3010
|
return /* @__PURE__ */ jsx(
|
|
3036
|
-
BaseSvgIcon$
|
|
3011
|
+
BaseSvgIcon$1o,
|
|
3037
3012
|
{
|
|
3038
3013
|
ref,
|
|
3039
3014
|
viewBox: "0 0 24 24",
|
|
@@ -3047,7 +3022,7 @@ function NightsThermostat({ width, height, sx, ...props }, ref) {
|
|
|
3047
3022
|
);
|
|
3048
3023
|
}
|
|
3049
3024
|
const NightsThermostat$1 = forwardRef(NightsThermostat);
|
|
3050
|
-
const Icon$
|
|
3025
|
+
const Icon$1n = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
3051
3026
|
/* @__PURE__ */ jsx(
|
|
3052
3027
|
"path",
|
|
3053
3028
|
{
|
|
@@ -3057,10 +3032,10 @@ const Icon$1o = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
3057
3032
|
),
|
|
3058
3033
|
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M8 20H4v-4h4zM16 4v4h4V4z" })
|
|
3059
3034
|
] });
|
|
3060
|
-
const BaseSvgIcon$
|
|
3035
|
+
const BaseSvgIcon$1n = createSvgIcon(Icon$1n(), "NoApp");
|
|
3061
3036
|
function NoApp({ width, height, sx, ...props }, ref) {
|
|
3062
3037
|
return /* @__PURE__ */ jsx(
|
|
3063
|
-
BaseSvgIcon$
|
|
3038
|
+
BaseSvgIcon$1n,
|
|
3064
3039
|
{
|
|
3065
3040
|
ref,
|
|
3066
3041
|
viewBox: "0 0 24 24",
|
|
@@ -3074,7 +3049,7 @@ function NoApp({ width, height, sx, ...props }, ref) {
|
|
|
3074
3049
|
);
|
|
3075
3050
|
}
|
|
3076
3051
|
const NoApp$1 = forwardRef(NoApp);
|
|
3077
|
-
const Icon$
|
|
3052
|
+
const Icon$1m = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
3078
3053
|
/* @__PURE__ */ jsx(
|
|
3079
3054
|
"path",
|
|
3080
3055
|
{
|
|
@@ -3092,10 +3067,10 @@ const Icon$1n = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
3092
3067
|
}
|
|
3093
3068
|
)
|
|
3094
3069
|
] });
|
|
3095
|
-
const BaseSvgIcon$
|
|
3070
|
+
const BaseSvgIcon$1m = createSvgIcon(Icon$1m(), "NoMap");
|
|
3096
3071
|
function NoMap({ width, height, sx, ...props }, ref) {
|
|
3097
3072
|
return /* @__PURE__ */ jsx(
|
|
3098
|
-
BaseSvgIcon$
|
|
3073
|
+
BaseSvgIcon$1m,
|
|
3099
3074
|
{
|
|
3100
3075
|
ref,
|
|
3101
3076
|
viewBox: "0 0 24 24",
|
|
@@ -3109,7 +3084,7 @@ function NoMap({ width, height, sx, ...props }, ref) {
|
|
|
3109
3084
|
);
|
|
3110
3085
|
}
|
|
3111
3086
|
const NoMap$1 = forwardRef(NoMap);
|
|
3112
|
-
const Icon$
|
|
3087
|
+
const Icon$1l = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
3113
3088
|
"path",
|
|
3114
3089
|
{
|
|
3115
3090
|
fill: "currentColor",
|
|
@@ -3118,10 +3093,10 @@ const Icon$1m = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
3118
3093
|
clipRule: "evenodd"
|
|
3119
3094
|
}
|
|
3120
3095
|
) });
|
|
3121
|
-
const BaseSvgIcon$
|
|
3096
|
+
const BaseSvgIcon$1l = createSvgIcon(Icon$1l(), "NoSpatialExtension");
|
|
3122
3097
|
function NoSpatialExtension({ width, height, sx, ...props }, ref) {
|
|
3123
3098
|
return /* @__PURE__ */ jsx(
|
|
3124
|
-
BaseSvgIcon$
|
|
3099
|
+
BaseSvgIcon$1l,
|
|
3125
3100
|
{
|
|
3126
3101
|
ref,
|
|
3127
3102
|
viewBox: "0 0 24 24",
|
|
@@ -3135,7 +3110,7 @@ function NoSpatialExtension({ width, height, sx, ...props }, ref) {
|
|
|
3135
3110
|
);
|
|
3136
3111
|
}
|
|
3137
3112
|
const NoSpatialExtension$1 = forwardRef(NoSpatialExtension);
|
|
3138
|
-
const Icon$
|
|
3113
|
+
const Icon$1k = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
3139
3114
|
/* @__PURE__ */ jsx(
|
|
3140
3115
|
"path",
|
|
3141
3116
|
{
|
|
@@ -3153,10 +3128,10 @@ const Icon$1l = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
3153
3128
|
}
|
|
3154
3129
|
)
|
|
3155
3130
|
] });
|
|
3156
|
-
const BaseSvgIcon$
|
|
3131
|
+
const BaseSvgIcon$1k = createSvgIcon(Icon$1k(), "NoTileset");
|
|
3157
3132
|
function NoTileset({ width, height, sx, ...props }, ref) {
|
|
3158
3133
|
return /* @__PURE__ */ jsx(
|
|
3159
|
-
BaseSvgIcon$
|
|
3134
|
+
BaseSvgIcon$1k,
|
|
3160
3135
|
{
|
|
3161
3136
|
ref,
|
|
3162
3137
|
viewBox: "0 0 24 24",
|
|
@@ -3170,17 +3145,17 @@ function NoTileset({ width, height, sx, ...props }, ref) {
|
|
|
3170
3145
|
);
|
|
3171
3146
|
}
|
|
3172
3147
|
const NoTileset$1 = forwardRef(NoTileset);
|
|
3173
|
-
const Icon$
|
|
3148
|
+
const Icon$1j = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
3174
3149
|
"path",
|
|
3175
3150
|
{
|
|
3176
3151
|
fill: "currentColor",
|
|
3177
3152
|
d: "M2.614 2.476 1.2 3.891 4.31 7H4v3h3.31l4 4H4v3h10.31l4.568 4.568 1.414-1.414zM16.938 14l3 3H20v-3zM9.938 7l3 3H20V7z"
|
|
3178
3153
|
}
|
|
3179
3154
|
) });
|
|
3180
|
-
const BaseSvgIcon$
|
|
3155
|
+
const BaseSvgIcon$1j = createSvgIcon(Icon$1j(), "NotEqual");
|
|
3181
3156
|
function NotEqual({ width, height, sx, ...props }, ref) {
|
|
3182
3157
|
return /* @__PURE__ */ jsx(
|
|
3183
|
-
BaseSvgIcon$
|
|
3158
|
+
BaseSvgIcon$1j,
|
|
3184
3159
|
{
|
|
3185
3160
|
ref,
|
|
3186
3161
|
viewBox: "0 0 24 24",
|
|
@@ -3194,7 +3169,7 @@ function NotEqual({ width, height, sx, ...props }, ref) {
|
|
|
3194
3169
|
);
|
|
3195
3170
|
}
|
|
3196
3171
|
const NotEqual$1 = forwardRef(NotEqual);
|
|
3197
|
-
const Icon$
|
|
3172
|
+
const Icon$1i = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
3198
3173
|
/* @__PURE__ */ jsx(
|
|
3199
3174
|
"path",
|
|
3200
3175
|
{
|
|
@@ -3214,10 +3189,10 @@ const Icon$1j = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
3214
3189
|
}
|
|
3215
3190
|
)
|
|
3216
3191
|
] });
|
|
3217
|
-
const BaseSvgIcon$
|
|
3192
|
+
const BaseSvgIcon$1i = createSvgIcon(Icon$1i(), "Number");
|
|
3218
3193
|
function Number({ width, height, sx, ...props }, ref) {
|
|
3219
3194
|
return /* @__PURE__ */ jsx(
|
|
3220
|
-
BaseSvgIcon$
|
|
3195
|
+
BaseSvgIcon$1i,
|
|
3221
3196
|
{
|
|
3222
3197
|
ref,
|
|
3223
3198
|
viewBox: "0 0 24 24",
|
|
@@ -3231,7 +3206,7 @@ function Number({ width, height, sx, ...props }, ref) {
|
|
|
3231
3206
|
);
|
|
3232
3207
|
}
|
|
3233
3208
|
const Number$1 = forwardRef(Number);
|
|
3234
|
-
const Icon$
|
|
3209
|
+
const Icon$1h = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
3235
3210
|
"path",
|
|
3236
3211
|
{
|
|
3237
3212
|
fill: "currentColor",
|
|
@@ -3240,10 +3215,10 @@ const Icon$1i = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
3240
3215
|
clipRule: "evenodd"
|
|
3241
3216
|
}
|
|
3242
3217
|
) });
|
|
3243
|
-
const BaseSvgIcon$
|
|
3218
|
+
const BaseSvgIcon$1h = createSvgIcon(Icon$1h(), "Onboarding");
|
|
3244
3219
|
function Onboarding({ width, height, sx, ...props }, ref) {
|
|
3245
3220
|
return /* @__PURE__ */ jsx(
|
|
3246
|
-
BaseSvgIcon$
|
|
3221
|
+
BaseSvgIcon$1h,
|
|
3247
3222
|
{
|
|
3248
3223
|
ref,
|
|
3249
3224
|
viewBox: "0 0 24 24",
|
|
@@ -3257,7 +3232,7 @@ function Onboarding({ width, height, sx, ...props }, ref) {
|
|
|
3257
3232
|
);
|
|
3258
3233
|
}
|
|
3259
3234
|
const Onboarding$1 = forwardRef(Onboarding);
|
|
3260
|
-
const Icon$
|
|
3235
|
+
const Icon$1g = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
3261
3236
|
"path",
|
|
3262
3237
|
{
|
|
3263
3238
|
fill: "currentColor",
|
|
@@ -3266,10 +3241,10 @@ const Icon$1h = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
3266
3241
|
clipRule: "evenodd"
|
|
3267
3242
|
}
|
|
3268
3243
|
) });
|
|
3269
|
-
const BaseSvgIcon$
|
|
3244
|
+
const BaseSvgIcon$1g = createSvgIcon(Icon$1g(), "OohAnalytics");
|
|
3270
3245
|
function OohAnalytics({ width, height, sx, ...props }, ref) {
|
|
3271
3246
|
return /* @__PURE__ */ jsx(
|
|
3272
|
-
BaseSvgIcon$
|
|
3247
|
+
BaseSvgIcon$1g,
|
|
3273
3248
|
{
|
|
3274
3249
|
ref,
|
|
3275
3250
|
viewBox: "0 0 24 24",
|
|
@@ -3283,7 +3258,7 @@ function OohAnalytics({ width, height, sx, ...props }, ref) {
|
|
|
3283
3258
|
);
|
|
3284
3259
|
}
|
|
3285
3260
|
const OohAnalytics$1 = forwardRef(OohAnalytics);
|
|
3286
|
-
const Icon$
|
|
3261
|
+
const Icon$1f = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
3287
3262
|
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M13.125 13.125h-2.25v-2.25h2.25z" }),
|
|
3288
3263
|
/* @__PURE__ */ jsx(
|
|
3289
3264
|
"path",
|
|
@@ -3304,10 +3279,10 @@ const Icon$1g = () => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/20
|
|
|
3304
3279
|
}
|
|
3305
3280
|
)
|
|
3306
3281
|
] });
|
|
3307
|
-
const BaseSvgIcon$
|
|
3282
|
+
const BaseSvgIcon$1f = createSvgIcon(Icon$1f(), "Opacity");
|
|
3308
3283
|
function Opacity({ width, height, sx, ...props }, ref) {
|
|
3309
3284
|
return /* @__PURE__ */ jsx(
|
|
3310
|
-
BaseSvgIcon$
|
|
3285
|
+
BaseSvgIcon$1f,
|
|
3311
3286
|
{
|
|
3312
3287
|
ref,
|
|
3313
3288
|
viewBox: "0 0 24 24",
|
|
@@ -3321,7 +3296,7 @@ function Opacity({ width, height, sx, ...props }, ref) {
|
|
|
3321
3296
|
);
|
|
3322
3297
|
}
|
|
3323
3298
|
const Opacity$1 = forwardRef(Opacity);
|
|
3324
|
-
const Icon$
|
|
3299
|
+
const Icon$1e = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
3325
3300
|
"path",
|
|
3326
3301
|
{
|
|
3327
3302
|
fill: "currentColor",
|
|
@@ -3330,34 +3305,8 @@ const Icon$1f = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/200
|
|
|
3330
3305
|
clipRule: "evenodd"
|
|
3331
3306
|
}
|
|
3332
3307
|
) });
|
|
3333
|
-
const BaseSvgIcon$
|
|
3308
|
+
const BaseSvgIcon$1e = createSvgIcon(Icon$1e(), "OpenDiagonallyLeft");
|
|
3334
3309
|
function OpenDiagonallyLeft({ width, height, sx, ...props }, ref) {
|
|
3335
|
-
return /* @__PURE__ */ jsx(
|
|
3336
|
-
BaseSvgIcon$1f,
|
|
3337
|
-
{
|
|
3338
|
-
ref,
|
|
3339
|
-
viewBox: "0 0 24 24",
|
|
3340
|
-
sx: {
|
|
3341
|
-
width,
|
|
3342
|
-
height: height || width,
|
|
3343
|
-
...sx
|
|
3344
|
-
},
|
|
3345
|
-
...props
|
|
3346
|
-
}
|
|
3347
|
-
);
|
|
3348
|
-
}
|
|
3349
|
-
const OpenDiagonallyLeft$1 = forwardRef(OpenDiagonallyLeft);
|
|
3350
|
-
const Icon$1e = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
3351
|
-
"path",
|
|
3352
|
-
{
|
|
3353
|
-
fill: "currentColor",
|
|
3354
|
-
fillRule: "evenodd",
|
|
3355
|
-
d: "m14.121 11.293 2.877-2.877V11H19V5l-6 .007v1.994l2.584.001-2.877 2.877zM5 19l6-.007v-1.994H8.415l2.878-2.878-1.414-1.414L7 15.585V13H5z",
|
|
3356
|
-
clipRule: "evenodd"
|
|
3357
|
-
}
|
|
3358
|
-
) });
|
|
3359
|
-
const BaseSvgIcon$1e = createSvgIcon(Icon$1e(), "OpenDiagonallyRight");
|
|
3360
|
-
function OpenDiagonallyRight({ width, height, sx, ...props }, ref) {
|
|
3361
3310
|
return /* @__PURE__ */ jsx(
|
|
3362
3311
|
BaseSvgIcon$1e,
|
|
3363
3312
|
{
|
|
@@ -3372,7 +3321,7 @@ function OpenDiagonallyRight({ width, height, sx, ...props }, ref) {
|
|
|
3372
3321
|
}
|
|
3373
3322
|
);
|
|
3374
3323
|
}
|
|
3375
|
-
const
|
|
3324
|
+
const OpenDiagonallyLeft$1 = forwardRef(OpenDiagonallyLeft);
|
|
3376
3325
|
const Icon$1d = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
|
|
3377
3326
|
"path",
|
|
3378
3327
|
{
|
|
@@ -5736,7 +5685,7 @@ export {
|
|
|
5736
5685
|
Center$1 as Center,
|
|
5737
5686
|
CenterLayer$1 as CenterLayer,
|
|
5738
5687
|
CloseDiagonallyLeft$1 as CloseDiagonallyLeft,
|
|
5739
|
-
|
|
5688
|
+
C as CloseDiagonallyRight,
|
|
5740
5689
|
CloseVertically$1 as CloseVertically,
|
|
5741
5690
|
CodeBlock$1 as CodeBlock,
|
|
5742
5691
|
Comments$1 as Comments,
|
|
@@ -5824,7 +5773,7 @@ export {
|
|
|
5824
5773
|
OohAnalytics$1 as OohAnalytics,
|
|
5825
5774
|
Opacity$1 as Opacity,
|
|
5826
5775
|
OpenDiagonallyLeft$1 as OpenDiagonallyLeft,
|
|
5827
|
-
|
|
5776
|
+
O as OpenDiagonallyRight,
|
|
5828
5777
|
OpenNewWindow$1 as OpenNewWindow,
|
|
5829
5778
|
OpenVertically$1 as OpenVertically,
|
|
5830
5779
|
ParameterSettings$1 as ParameterSettings,
|