@kopexa/icons 10.0.6 → 10.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/application-asset.d.mts +7 -0
- package/dist/application-asset.d.ts +7 -0
- package/dist/application-asset.js +55 -0
- package/dist/application-asset.mjs +7 -0
- package/dist/chunk-C7HXAXXL.mjs +32 -0
- package/dist/chunk-MJ6PIAN3.mjs +29 -0
- package/dist/chunk-NF6CL4XZ.mjs +32 -0
- package/dist/chunk-PVEPO5UN.mjs +32 -0
- package/dist/external-link-icon.d.mts +7 -0
- package/dist/external-link-icon.d.ts +7 -0
- package/dist/external-link-icon.js +55 -0
- package/dist/external-link-icon.mjs +7 -0
- package/dist/globe-icon.d.mts +7 -0
- package/dist/globe-icon.d.ts +7 -0
- package/dist/globe-icon.js +55 -0
- package/dist/globe-icon.mjs +7 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +435 -320
- package/dist/index.mjs +50 -33
- package/dist/puzzle-icon.d.mts +7 -0
- package/dist/puzzle-icon.d.ts +7 -0
- package/dist/puzzle-icon.js +52 -0
- package/dist/puzzle-icon.mjs +7 -0
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -23,6 +23,7 @@ var index_exports = {};
|
|
|
23
23
|
__export(index_exports, {
|
|
24
24
|
AlertCircleIcon: () => AlertCircleIcon,
|
|
25
25
|
AlertIcon: () => AlertIcon,
|
|
26
|
+
ApplicationAssetIcon: () => ApplicationAssetIcon,
|
|
26
27
|
ArrowDown: () => ArrowDown,
|
|
27
28
|
ArrowDownUp: () => ArrowDownUp,
|
|
28
29
|
ArrowRightIcon: () => ArrowRightIcon,
|
|
@@ -50,11 +51,14 @@ __export(index_exports, {
|
|
|
50
51
|
EditIcon: () => EditIcon,
|
|
51
52
|
EllipsisIcon: () => EllipsisIcon,
|
|
52
53
|
EqualsIcon: () => EqualsIcon,
|
|
54
|
+
ExternalLinkIcon: () => ExternalLinkIcon,
|
|
53
55
|
EyeIcon: () => EyeIcon,
|
|
54
56
|
EyeOffIcon: () => EyeOffIcon,
|
|
57
|
+
GlobeIcon: () => GlobeIcon,
|
|
55
58
|
GripVerticalIcon: () => GripVerticalIcon,
|
|
56
59
|
IncidentIcon: () => IncidentIcon,
|
|
57
60
|
InfoIcon: () => InfoIcon,
|
|
61
|
+
IntegrationIcon: () => PuzzleIcon,
|
|
58
62
|
IntersectIcon: () => SquaresIntersect,
|
|
59
63
|
IssuesIcon: () => IssuesIcon,
|
|
60
64
|
LinkedInIcon: () => LinkedInIcon,
|
|
@@ -68,6 +72,7 @@ __export(index_exports, {
|
|
|
68
72
|
PlusIcon: () => PlusIcon,
|
|
69
73
|
ProcessingActivityIcon: () => ProcessingActivityIcon,
|
|
70
74
|
ProgramIcon: () => ProgramIcon,
|
|
75
|
+
PuzzleIcon: () => PuzzleIcon,
|
|
71
76
|
RiskIcon: () => RiskIcon,
|
|
72
77
|
SaveIcon: () => SaveIcon,
|
|
73
78
|
SearchIcon: () => SearchIcon,
|
|
@@ -134,10 +139,37 @@ var AlertCircleIcon = ({ size = 24, ...props }) => {
|
|
|
134
139
|
);
|
|
135
140
|
};
|
|
136
141
|
|
|
137
|
-
// src/
|
|
142
|
+
// src/application-asset.tsx
|
|
138
143
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
139
|
-
var
|
|
144
|
+
var ApplicationAssetIcon = ({ size = 24, ...props }) => {
|
|
140
145
|
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
146
|
+
"svg",
|
|
147
|
+
{
|
|
148
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
149
|
+
width: "24",
|
|
150
|
+
height: "24",
|
|
151
|
+
viewBox: "0 0 24 24",
|
|
152
|
+
fill: "none",
|
|
153
|
+
stroke: "currentColor",
|
|
154
|
+
"stroke-width": "2",
|
|
155
|
+
"stroke-linecap": "round",
|
|
156
|
+
"stroke-linejoin": "round",
|
|
157
|
+
...props,
|
|
158
|
+
children: [
|
|
159
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { children: "Application Asset Icon" }),
|
|
160
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
|
|
161
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 8h.01" }),
|
|
162
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 8h.01" }),
|
|
163
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 8h.01" })
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
);
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
// src/arrow-down.tsx
|
|
170
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
171
|
+
var ArrowDown = ({ size = 24, ...props }) => {
|
|
172
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
141
173
|
"svg",
|
|
142
174
|
{
|
|
143
175
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -151,18 +183,18 @@ var ArrowDown = ({ size = 24, ...props }) => {
|
|
|
151
183
|
strokeLinejoin: "round",
|
|
152
184
|
...props,
|
|
153
185
|
children: [
|
|
154
|
-
/* @__PURE__ */ (0,
|
|
155
|
-
/* @__PURE__ */ (0,
|
|
156
|
-
/* @__PURE__ */ (0,
|
|
186
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { children: "Arrow Up Down" }),
|
|
187
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 5v14" }),
|
|
188
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m19 12-7 7-7-7" })
|
|
157
189
|
]
|
|
158
190
|
}
|
|
159
191
|
);
|
|
160
192
|
};
|
|
161
193
|
|
|
162
194
|
// src/arrow-down-up.tsx
|
|
163
|
-
var
|
|
195
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
164
196
|
var ArrowDownUp = ({ size = 24, ...props }) => {
|
|
165
|
-
return /* @__PURE__ */ (0,
|
|
197
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
166
198
|
"svg",
|
|
167
199
|
{
|
|
168
200
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -176,20 +208,20 @@ var ArrowDownUp = ({ size = 24, ...props }) => {
|
|
|
176
208
|
strokeLinejoin: "round",
|
|
177
209
|
...props,
|
|
178
210
|
children: [
|
|
179
|
-
/* @__PURE__ */ (0,
|
|
180
|
-
/* @__PURE__ */ (0,
|
|
181
|
-
/* @__PURE__ */ (0,
|
|
182
|
-
/* @__PURE__ */ (0,
|
|
183
|
-
/* @__PURE__ */ (0,
|
|
211
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", { children: "Arrow down Up icon" }),
|
|
212
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m3 16 4 4 4-4" }),
|
|
213
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 20V4" }),
|
|
214
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m21 8-4-4-4 4" }),
|
|
215
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M17 4v16" })
|
|
184
216
|
]
|
|
185
217
|
}
|
|
186
218
|
);
|
|
187
219
|
};
|
|
188
220
|
|
|
189
221
|
// src/arrow-right-icon.tsx
|
|
190
|
-
var
|
|
222
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
191
223
|
var ArrowRightIcon = ({ size = 24, ...props }) => {
|
|
192
|
-
return /* @__PURE__ */ (0,
|
|
224
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
193
225
|
"svg",
|
|
194
226
|
{
|
|
195
227
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -203,18 +235,18 @@ var ArrowRightIcon = ({ size = 24, ...props }) => {
|
|
|
203
235
|
strokeLinejoin: "round",
|
|
204
236
|
...props,
|
|
205
237
|
children: [
|
|
206
|
-
/* @__PURE__ */ (0,
|
|
207
|
-
/* @__PURE__ */ (0,
|
|
208
|
-
/* @__PURE__ */ (0,
|
|
238
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", { children: "Arrow Right icon" }),
|
|
239
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M5 12h14" }),
|
|
240
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m12 5 7 7-7 7" })
|
|
209
241
|
]
|
|
210
242
|
}
|
|
211
243
|
);
|
|
212
244
|
};
|
|
213
245
|
|
|
214
246
|
// src/arrow-up.tsx
|
|
215
|
-
var
|
|
247
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
216
248
|
var ArrowUp = ({ size = 24, ...props }) => {
|
|
217
|
-
return /* @__PURE__ */ (0,
|
|
249
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
218
250
|
"svg",
|
|
219
251
|
{
|
|
220
252
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -228,18 +260,18 @@ var ArrowUp = ({ size = 24, ...props }) => {
|
|
|
228
260
|
strokeLinejoin: "round",
|
|
229
261
|
...props,
|
|
230
262
|
children: [
|
|
231
|
-
/* @__PURE__ */ (0,
|
|
232
|
-
/* @__PURE__ */ (0,
|
|
233
|
-
/* @__PURE__ */ (0,
|
|
263
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("title", { children: "Arrow Up Icon" }),
|
|
264
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { d: "m5 12 7-7 7 7" }),
|
|
265
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { d: "M12 19V5" })
|
|
234
266
|
]
|
|
235
267
|
}
|
|
236
268
|
);
|
|
237
269
|
};
|
|
238
270
|
|
|
239
271
|
// src/assets.tsx
|
|
240
|
-
var
|
|
272
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
241
273
|
var AssetsIcon = ({ size = 24, ...props }) => {
|
|
242
|
-
return /* @__PURE__ */ (0,
|
|
274
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
243
275
|
"svg",
|
|
244
276
|
{
|
|
245
277
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -253,22 +285,22 @@ var AssetsIcon = ({ size = 24, ...props }) => {
|
|
|
253
285
|
strokeLinejoin: "round",
|
|
254
286
|
...props,
|
|
255
287
|
children: [
|
|
256
|
-
/* @__PURE__ */ (0,
|
|
257
|
-
/* @__PURE__ */ (0,
|
|
258
|
-
/* @__PURE__ */ (0,
|
|
259
|
-
/* @__PURE__ */ (0,
|
|
260
|
-
/* @__PURE__ */ (0,
|
|
261
|
-
/* @__PURE__ */ (0,
|
|
262
|
-
/* @__PURE__ */ (0,
|
|
288
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("title", { children: "Assets icon" }),
|
|
289
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14" }),
|
|
290
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { d: "m7.5 4.27 9 5.15" }),
|
|
291
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("polyline", { points: "3.29 7 12 12 20.71 7" }),
|
|
292
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("line", { x1: "12", x2: "12", y1: "22", y2: "12" }),
|
|
293
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("circle", { cx: "18.5", cy: "15.5", r: "2.5" }),
|
|
294
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { d: "M20.27 17.27 22 19" })
|
|
263
295
|
]
|
|
264
296
|
}
|
|
265
297
|
);
|
|
266
298
|
};
|
|
267
299
|
|
|
268
300
|
// src/catalog.tsx
|
|
269
|
-
var
|
|
301
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
270
302
|
var CatalogIcon = ({ size = 24, ...props }) => {
|
|
271
|
-
return /* @__PURE__ */ (0,
|
|
303
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
272
304
|
"svg",
|
|
273
305
|
{
|
|
274
306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -282,20 +314,20 @@ var CatalogIcon = ({ size = 24, ...props }) => {
|
|
|
282
314
|
strokeLinejoin: "round",
|
|
283
315
|
...props,
|
|
284
316
|
children: [
|
|
285
|
-
/* @__PURE__ */ (0,
|
|
286
|
-
/* @__PURE__ */ (0,
|
|
287
|
-
/* @__PURE__ */ (0,
|
|
288
|
-
/* @__PURE__ */ (0,
|
|
289
|
-
/* @__PURE__ */ (0,
|
|
317
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("title", { children: "Catalog icon" }),
|
|
318
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m16 6 4 14" }),
|
|
319
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M12 6v14" }),
|
|
320
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M8 8v12" }),
|
|
321
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M4 4v16" })
|
|
290
322
|
]
|
|
291
323
|
}
|
|
292
324
|
);
|
|
293
325
|
};
|
|
294
326
|
|
|
295
327
|
// src/chart-pie.tsx
|
|
296
|
-
var
|
|
328
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
297
329
|
var ChartPie = ({ size = 24, ...props }) => {
|
|
298
|
-
return /* @__PURE__ */ (0,
|
|
330
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
299
331
|
"svg",
|
|
300
332
|
{
|
|
301
333
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -309,18 +341,18 @@ var ChartPie = ({ size = 24, ...props }) => {
|
|
|
309
341
|
strokeLinejoin: "round",
|
|
310
342
|
...props,
|
|
311
343
|
children: [
|
|
312
|
-
/* @__PURE__ */ (0,
|
|
313
|
-
/* @__PURE__ */ (0,
|
|
314
|
-
/* @__PURE__ */ (0,
|
|
344
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("title", { children: "Chart Pie icon" }),
|
|
345
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { d: "M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z" }),
|
|
346
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { d: "M21.21 15.89A10 10 0 1 1 8 2.83" })
|
|
315
347
|
]
|
|
316
348
|
}
|
|
317
349
|
);
|
|
318
350
|
};
|
|
319
351
|
|
|
320
352
|
// src/check.tsx
|
|
321
|
-
var
|
|
353
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
322
354
|
var CheckIcon = (props) => {
|
|
323
|
-
return /* @__PURE__ */ (0,
|
|
355
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
324
356
|
"svg",
|
|
325
357
|
{
|
|
326
358
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -334,17 +366,17 @@ var CheckIcon = (props) => {
|
|
|
334
366
|
strokeLinejoin: "round",
|
|
335
367
|
...props,
|
|
336
368
|
children: [
|
|
337
|
-
/* @__PURE__ */ (0,
|
|
338
|
-
/* @__PURE__ */ (0,
|
|
369
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("title", { children: "Check Icon" }),
|
|
370
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
339
371
|
]
|
|
340
372
|
}
|
|
341
373
|
);
|
|
342
374
|
};
|
|
343
375
|
|
|
344
376
|
// src/check-circle.tsx
|
|
345
|
-
var
|
|
377
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
346
378
|
var CheckCirleIcon = ({ size = 24, ...props }) => {
|
|
347
|
-
return /* @__PURE__ */ (0,
|
|
379
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
348
380
|
"svg",
|
|
349
381
|
{
|
|
350
382
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -358,18 +390,18 @@ var CheckCirleIcon = ({ size = 24, ...props }) => {
|
|
|
358
390
|
strokeLinejoin: "round",
|
|
359
391
|
...props,
|
|
360
392
|
children: [
|
|
361
|
-
/* @__PURE__ */ (0,
|
|
362
|
-
/* @__PURE__ */ (0,
|
|
363
|
-
/* @__PURE__ */ (0,
|
|
393
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("title", { children: "Check Circle Icon" }),
|
|
394
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
395
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { d: "m9 12 2 2 4-4" })
|
|
364
396
|
]
|
|
365
397
|
}
|
|
366
398
|
);
|
|
367
399
|
};
|
|
368
400
|
|
|
369
401
|
// src/chevron-down.tsx
|
|
370
|
-
var
|
|
402
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
371
403
|
var ChevronDownIcon = (props) => {
|
|
372
|
-
return /* @__PURE__ */ (0,
|
|
404
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
373
405
|
"svg",
|
|
374
406
|
{
|
|
375
407
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -383,17 +415,17 @@ var ChevronDownIcon = (props) => {
|
|
|
383
415
|
strokeLinejoin: "round",
|
|
384
416
|
...props,
|
|
385
417
|
children: [
|
|
386
|
-
/* @__PURE__ */ (0,
|
|
387
|
-
/* @__PURE__ */ (0,
|
|
418
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("title", { children: "Chevron Down Icon" }),
|
|
419
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "m6 9 6 6 6-6" })
|
|
388
420
|
]
|
|
389
421
|
}
|
|
390
422
|
);
|
|
391
423
|
};
|
|
392
424
|
|
|
393
425
|
// src/chevron-left.tsx
|
|
394
|
-
var
|
|
426
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
395
427
|
var ChevronLeftIcon = (props) => {
|
|
396
|
-
return /* @__PURE__ */ (0,
|
|
428
|
+
return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
|
|
397
429
|
"svg",
|
|
398
430
|
{
|
|
399
431
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -407,17 +439,17 @@ var ChevronLeftIcon = (props) => {
|
|
|
407
439
|
strokeLinejoin: "round",
|
|
408
440
|
...props,
|
|
409
441
|
children: [
|
|
410
|
-
/* @__PURE__ */ (0,
|
|
411
|
-
/* @__PURE__ */ (0,
|
|
442
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("title", { children: "Chevron Left Icon" }),
|
|
443
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { d: "m15 18-6-6 6-6" })
|
|
412
444
|
]
|
|
413
445
|
}
|
|
414
446
|
);
|
|
415
447
|
};
|
|
416
448
|
|
|
417
449
|
// src/chevron-right.tsx
|
|
418
|
-
var
|
|
450
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
419
451
|
var ChevronRightIcon = (props) => {
|
|
420
|
-
return /* @__PURE__ */ (0,
|
|
452
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
421
453
|
"svg",
|
|
422
454
|
{
|
|
423
455
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -431,17 +463,17 @@ var ChevronRightIcon = (props) => {
|
|
|
431
463
|
strokeLinejoin: "round",
|
|
432
464
|
...props,
|
|
433
465
|
children: [
|
|
434
|
-
/* @__PURE__ */ (0,
|
|
435
|
-
/* @__PURE__ */ (0,
|
|
466
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("title", { children: "Chevron Right Icon" }),
|
|
467
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { d: "m9 18 6-6-6-6" })
|
|
436
468
|
]
|
|
437
469
|
}
|
|
438
470
|
);
|
|
439
471
|
};
|
|
440
472
|
|
|
441
473
|
// src/chevron-up-down.tsx
|
|
442
|
-
var
|
|
474
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
443
475
|
var ChevronUpDown = ({ size = 24, ...props }) => {
|
|
444
|
-
return /* @__PURE__ */ (0,
|
|
476
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
445
477
|
"svg",
|
|
446
478
|
{
|
|
447
479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -455,21 +487,21 @@ var ChevronUpDown = ({ size = 24, ...props }) => {
|
|
|
455
487
|
strokeLinejoin: "round",
|
|
456
488
|
...props,
|
|
457
489
|
children: [
|
|
458
|
-
/* @__PURE__ */ (0,
|
|
459
|
-
/* @__PURE__ */ (0,
|
|
460
|
-
/* @__PURE__ */ (0,
|
|
490
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("title", { children: "Chevron Up Down icon" }),
|
|
491
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "m7 15 5 5 5-5" }),
|
|
492
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "m7 9 5-5 5 5" })
|
|
461
493
|
]
|
|
462
494
|
}
|
|
463
495
|
);
|
|
464
496
|
};
|
|
465
497
|
|
|
466
498
|
// src/chevrons-left-right-ellipsis-icon.tsx
|
|
467
|
-
var
|
|
499
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
468
500
|
var ChevronsLeftRightEllipsisIcon = ({
|
|
469
501
|
size = 24,
|
|
470
502
|
...props
|
|
471
503
|
}) => {
|
|
472
|
-
return /* @__PURE__ */ (0,
|
|
504
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
473
505
|
"svg",
|
|
474
506
|
{
|
|
475
507
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -483,21 +515,21 @@ var ChevronsLeftRightEllipsisIcon = ({
|
|
|
483
515
|
strokeLinejoin: "round",
|
|
484
516
|
...props,
|
|
485
517
|
children: [
|
|
486
|
-
/* @__PURE__ */ (0,
|
|
487
|
-
/* @__PURE__ */ (0,
|
|
488
|
-
/* @__PURE__ */ (0,
|
|
489
|
-
/* @__PURE__ */ (0,
|
|
490
|
-
/* @__PURE__ */ (0,
|
|
491
|
-
/* @__PURE__ */ (0,
|
|
518
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("title", { children: "ChevronsLeftRightEllipsis icon" }),
|
|
519
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { d: "M12 12h.01" }),
|
|
520
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { d: "M16 12h.01" }),
|
|
521
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { d: "m17 7 5 5-5 5" }),
|
|
522
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { d: "m7 7-5 5 5 5" }),
|
|
523
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { d: "M8 12h.01" })
|
|
492
524
|
]
|
|
493
525
|
}
|
|
494
526
|
);
|
|
495
527
|
};
|
|
496
528
|
|
|
497
529
|
// src/circle.tsx
|
|
498
|
-
var
|
|
530
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
499
531
|
var CircleIcon = (props) => {
|
|
500
|
-
return /* @__PURE__ */ (0,
|
|
532
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
501
533
|
"svg",
|
|
502
534
|
{
|
|
503
535
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -511,19 +543,19 @@ var CircleIcon = (props) => {
|
|
|
511
543
|
strokeLinejoin: "round",
|
|
512
544
|
...props,
|
|
513
545
|
children: [
|
|
514
|
-
/* @__PURE__ */ (0,
|
|
515
|
-
/* @__PURE__ */ (0,
|
|
546
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("title", { children: "Circle Icon" }),
|
|
547
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
516
548
|
" ",
|
|
517
|
-
/* @__PURE__ */ (0,
|
|
549
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
518
550
|
]
|
|
519
551
|
}
|
|
520
552
|
);
|
|
521
553
|
};
|
|
522
554
|
|
|
523
555
|
// src/circle-dot-icon.tsx
|
|
524
|
-
var
|
|
556
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
525
557
|
var CircleDotIcon = ({ size = 24, ...props }) => {
|
|
526
|
-
return /* @__PURE__ */ (0,
|
|
558
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
527
559
|
"svg",
|
|
528
560
|
{
|
|
529
561
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -537,21 +569,21 @@ var CircleDotIcon = ({ size = 24, ...props }) => {
|
|
|
537
569
|
strokeLinejoin: "round",
|
|
538
570
|
...props,
|
|
539
571
|
children: [
|
|
540
|
-
/* @__PURE__ */ (0,
|
|
541
|
-
/* @__PURE__ */ (0,
|
|
542
|
-
/* @__PURE__ */ (0,
|
|
572
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("title", { children: "CircleDot icon" }),
|
|
573
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
574
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("circle", { cx: "12", cy: "12", r: "1" })
|
|
543
575
|
]
|
|
544
576
|
}
|
|
545
577
|
);
|
|
546
578
|
};
|
|
547
579
|
|
|
548
580
|
// src/circle-fading-arrow-up-icon.tsx
|
|
549
|
-
var
|
|
581
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
550
582
|
var CircleFadingArrowUpIcon = ({
|
|
551
583
|
size = 24,
|
|
552
584
|
...props
|
|
553
585
|
}) => {
|
|
554
|
-
return /* @__PURE__ */ (0,
|
|
586
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
555
587
|
"svg",
|
|
556
588
|
{
|
|
557
589
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -565,23 +597,23 @@ var CircleFadingArrowUpIcon = ({
|
|
|
565
597
|
strokeLinejoin: "round",
|
|
566
598
|
...props,
|
|
567
599
|
children: [
|
|
568
|
-
/* @__PURE__ */ (0,
|
|
569
|
-
/* @__PURE__ */ (0,
|
|
570
|
-
/* @__PURE__ */ (0,
|
|
571
|
-
/* @__PURE__ */ (0,
|
|
572
|
-
/* @__PURE__ */ (0,
|
|
573
|
-
/* @__PURE__ */ (0,
|
|
574
|
-
/* @__PURE__ */ (0,
|
|
575
|
-
/* @__PURE__ */ (0,
|
|
600
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("title", { children: "Circle Fading Arrow Up icon" }),
|
|
601
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M12 2a10 10 0 0 1 7.38 16.75" }),
|
|
602
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "m16 12-4-4-4 4" }),
|
|
603
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M12 16V8" }),
|
|
604
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M2.5 8.875a10 10 0 0 0-.5 3" }),
|
|
605
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M2.83 16a10 10 0 0 0 2.43 3.4" }),
|
|
606
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M4.636 5.235a10 10 0 0 1 .891-.857" }),
|
|
607
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M8.644 21.42a10 10 0 0 0 7.631-.38" })
|
|
576
608
|
]
|
|
577
609
|
}
|
|
578
610
|
);
|
|
579
611
|
};
|
|
580
612
|
|
|
581
613
|
// src/close.tsx
|
|
582
|
-
var
|
|
614
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
583
615
|
var CloseIcon = (props) => {
|
|
584
|
-
return /* @__PURE__ */ (0,
|
|
616
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
585
617
|
"svg",
|
|
586
618
|
{
|
|
587
619
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -595,18 +627,18 @@ var CloseIcon = (props) => {
|
|
|
595
627
|
strokeLinejoin: "round",
|
|
596
628
|
...props,
|
|
597
629
|
children: [
|
|
598
|
-
/* @__PURE__ */ (0,
|
|
599
|
-
/* @__PURE__ */ (0,
|
|
600
|
-
/* @__PURE__ */ (0,
|
|
630
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("title", { children: "Close Icon" }),
|
|
631
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M18 6 6 18" }),
|
|
632
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "m6 6 12 12" })
|
|
601
633
|
]
|
|
602
634
|
}
|
|
603
635
|
);
|
|
604
636
|
};
|
|
605
637
|
|
|
606
638
|
// src/controls.tsx
|
|
607
|
-
var
|
|
639
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
608
640
|
var ControlsIcon = ({ size = 24, ...props }) => {
|
|
609
|
-
return /* @__PURE__ */ (0,
|
|
641
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
610
642
|
"svg",
|
|
611
643
|
{
|
|
612
644
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -620,21 +652,21 @@ var ControlsIcon = ({ size = 24, ...props }) => {
|
|
|
620
652
|
strokeLinejoin: "round",
|
|
621
653
|
...props,
|
|
622
654
|
children: [
|
|
623
|
-
/* @__PURE__ */ (0,
|
|
624
|
-
/* @__PURE__ */ (0,
|
|
625
|
-
/* @__PURE__ */ (0,
|
|
626
|
-
/* @__PURE__ */ (0,
|
|
627
|
-
/* @__PURE__ */ (0,
|
|
628
|
-
/* @__PURE__ */ (0,
|
|
655
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("title", { children: "Controls icon" }),
|
|
656
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "m3 17 2 2 4-4" }),
|
|
657
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "m3 7 2 2 4-4" }),
|
|
658
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M13 6h8" }),
|
|
659
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M13 12h8" }),
|
|
660
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M13 18h8" })
|
|
629
661
|
]
|
|
630
662
|
}
|
|
631
663
|
);
|
|
632
664
|
};
|
|
633
665
|
|
|
634
666
|
// src/copy-icon.tsx
|
|
635
|
-
var
|
|
667
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
636
668
|
var CopyIcon = ({ size = 24, ...props }) => {
|
|
637
|
-
return /* @__PURE__ */ (0,
|
|
669
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
638
670
|
"svg",
|
|
639
671
|
{
|
|
640
672
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -648,18 +680,18 @@ var CopyIcon = ({ size = 24, ...props }) => {
|
|
|
648
680
|
strokeLinejoin: "round",
|
|
649
681
|
...props,
|
|
650
682
|
children: [
|
|
651
|
-
/* @__PURE__ */ (0,
|
|
652
|
-
/* @__PURE__ */ (0,
|
|
653
|
-
/* @__PURE__ */ (0,
|
|
683
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("title", { children: "Copy Icon" }),
|
|
684
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
685
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
|
|
654
686
|
]
|
|
655
687
|
}
|
|
656
688
|
);
|
|
657
689
|
};
|
|
658
690
|
|
|
659
691
|
// src/data-asset.tsx
|
|
660
|
-
var
|
|
692
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
661
693
|
var DataAssetIcon = ({ size = 24, ...props }) => {
|
|
662
|
-
return /* @__PURE__ */ (0,
|
|
694
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
663
695
|
"svg",
|
|
664
696
|
{
|
|
665
697
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -673,19 +705,19 @@ var DataAssetIcon = ({ size = 24, ...props }) => {
|
|
|
673
705
|
strokeLinejoin: "round",
|
|
674
706
|
...props,
|
|
675
707
|
children: [
|
|
676
|
-
/* @__PURE__ */ (0,
|
|
677
|
-
/* @__PURE__ */ (0,
|
|
678
|
-
/* @__PURE__ */ (0,
|
|
679
|
-
/* @__PURE__ */ (0,
|
|
708
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("title", { children: "Plattform Asset icon" }),
|
|
709
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }),
|
|
710
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "M3 5V19A9 3 0 0 0 21 19V5" }),
|
|
711
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "M3 12A9 3 0 0 0 21 12" })
|
|
680
712
|
]
|
|
681
713
|
}
|
|
682
714
|
);
|
|
683
715
|
};
|
|
684
716
|
|
|
685
717
|
// src/documents.tsx
|
|
686
|
-
var
|
|
718
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
687
719
|
var DocumentsIcon = ({ size = 24, ...props }) => {
|
|
688
|
-
return /* @__PURE__ */ (0,
|
|
720
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
689
721
|
"svg",
|
|
690
722
|
{
|
|
691
723
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -699,21 +731,21 @@ var DocumentsIcon = ({ size = 24, ...props }) => {
|
|
|
699
731
|
strokeLinejoin: "round",
|
|
700
732
|
...props,
|
|
701
733
|
children: [
|
|
702
|
-
/* @__PURE__ */ (0,
|
|
703
|
-
/* @__PURE__ */ (0,
|
|
704
|
-
/* @__PURE__ */ (0,
|
|
705
|
-
/* @__PURE__ */ (0,
|
|
706
|
-
/* @__PURE__ */ (0,
|
|
707
|
-
/* @__PURE__ */ (0,
|
|
734
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("title", { children: "Documents icon" }),
|
|
735
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
736
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
|
|
737
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M10 9H8" }),
|
|
738
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M16 13H8" }),
|
|
739
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M16 17H8" })
|
|
708
740
|
]
|
|
709
741
|
}
|
|
710
742
|
);
|
|
711
743
|
};
|
|
712
744
|
|
|
713
745
|
// src/domain-icon.tsx
|
|
714
|
-
var
|
|
746
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
715
747
|
var DomainIcon = ({ size = 24, ...props }) => {
|
|
716
|
-
return /* @__PURE__ */ (0,
|
|
748
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
717
749
|
"svg",
|
|
718
750
|
{
|
|
719
751
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -727,19 +759,19 @@ var DomainIcon = ({ size = 24, ...props }) => {
|
|
|
727
759
|
strokeLinejoin: "round",
|
|
728
760
|
...props,
|
|
729
761
|
children: [
|
|
730
|
-
/* @__PURE__ */ (0,
|
|
731
|
-
/* @__PURE__ */ (0,
|
|
732
|
-
/* @__PURE__ */ (0,
|
|
733
|
-
/* @__PURE__ */ (0,
|
|
762
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("title", { children: "Domain icon" }),
|
|
763
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
764
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
765
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M2 12h20" })
|
|
734
766
|
]
|
|
735
767
|
}
|
|
736
768
|
);
|
|
737
769
|
};
|
|
738
770
|
|
|
739
771
|
// src/dsar.tsx
|
|
740
|
-
var
|
|
772
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
741
773
|
var DSARIcon = ({ size = 24, ...props }) => {
|
|
742
|
-
return /* @__PURE__ */ (0,
|
|
774
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
743
775
|
"svg",
|
|
744
776
|
{
|
|
745
777
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -753,18 +785,18 @@ var DSARIcon = ({ size = 24, ...props }) => {
|
|
|
753
785
|
strokeLinejoin: "round",
|
|
754
786
|
...props,
|
|
755
787
|
children: [
|
|
756
|
-
/* @__PURE__ */ (0,
|
|
757
|
-
/* @__PURE__ */ (0,
|
|
758
|
-
/* @__PURE__ */ (0,
|
|
788
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("title", { children: "DSAR icon" }),
|
|
789
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
790
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
|
|
759
791
|
]
|
|
760
792
|
}
|
|
761
793
|
);
|
|
762
794
|
};
|
|
763
795
|
|
|
764
796
|
// src/edit-icon.tsx
|
|
765
|
-
var
|
|
797
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
766
798
|
var EditIcon = ({ size = 24, ...props }) => {
|
|
767
|
-
return /* @__PURE__ */ (0,
|
|
799
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
768
800
|
"svg",
|
|
769
801
|
{
|
|
770
802
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -778,18 +810,18 @@ var EditIcon = ({ size = 24, ...props }) => {
|
|
|
778
810
|
strokeLinejoin: "round",
|
|
779
811
|
...props,
|
|
780
812
|
children: [
|
|
781
|
-
/* @__PURE__ */ (0,
|
|
782
|
-
/* @__PURE__ */ (0,
|
|
783
|
-
/* @__PURE__ */ (0,
|
|
813
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("title", { children: "Edit icon" }),
|
|
814
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z" }),
|
|
815
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "m15 5 4 4" })
|
|
784
816
|
]
|
|
785
817
|
}
|
|
786
818
|
);
|
|
787
819
|
};
|
|
788
820
|
|
|
789
821
|
// src/ellipsis-icon.tsx
|
|
790
|
-
var
|
|
822
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
791
823
|
var EllipsisIcon = ({ size = 24, ...props }) => {
|
|
792
|
-
return /* @__PURE__ */ (0,
|
|
824
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
793
825
|
"svg",
|
|
794
826
|
{
|
|
795
827
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -803,19 +835,19 @@ var EllipsisIcon = ({ size = 24, ...props }) => {
|
|
|
803
835
|
strokeLinejoin: "round",
|
|
804
836
|
...props,
|
|
805
837
|
children: [
|
|
806
|
-
/* @__PURE__ */ (0,
|
|
807
|
-
/* @__PURE__ */ (0,
|
|
808
|
-
/* @__PURE__ */ (0,
|
|
809
|
-
/* @__PURE__ */ (0,
|
|
838
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("title", { children: "Ellipsis Icon" }),
|
|
839
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
|
|
840
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
|
|
841
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("circle", { cx: "5", cy: "12", r: "1" })
|
|
810
842
|
]
|
|
811
843
|
}
|
|
812
844
|
);
|
|
813
845
|
};
|
|
814
846
|
|
|
815
847
|
// src/equals-icon.tsx
|
|
816
|
-
var
|
|
848
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
817
849
|
var EqualsIcon = ({ size = 24, ...props }) => {
|
|
818
|
-
return /* @__PURE__ */ (0,
|
|
850
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
819
851
|
"svg",
|
|
820
852
|
{
|
|
821
853
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -829,18 +861,45 @@ var EqualsIcon = ({ size = 24, ...props }) => {
|
|
|
829
861
|
strokeLinejoin: "round",
|
|
830
862
|
...props,
|
|
831
863
|
children: [
|
|
832
|
-
/* @__PURE__ */ (0,
|
|
833
|
-
/* @__PURE__ */ (0,
|
|
834
|
-
/* @__PURE__ */ (0,
|
|
864
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("title", { children: "Equals icon" }),
|
|
865
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("line", { x1: "5", x2: "19", y1: "9", y2: "9" }),
|
|
866
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("line", { x1: "5", x2: "19", y1: "15", y2: "15" })
|
|
867
|
+
]
|
|
868
|
+
}
|
|
869
|
+
);
|
|
870
|
+
};
|
|
871
|
+
|
|
872
|
+
// src/external-link-icon.tsx
|
|
873
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
874
|
+
var ExternalLinkIcon = ({ size = 24, ...props }) => {
|
|
875
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
|
|
876
|
+
"svg",
|
|
877
|
+
{
|
|
878
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
879
|
+
width: size,
|
|
880
|
+
height: size,
|
|
881
|
+
viewBox: "0 0 24 24",
|
|
882
|
+
fill: "none",
|
|
883
|
+
stroke: "currentColor",
|
|
884
|
+
strokeWidth: "2",
|
|
885
|
+
strokeLinecap: "round",
|
|
886
|
+
strokeLinejoin: "round",
|
|
887
|
+
"aria-hidden": "true",
|
|
888
|
+
...props,
|
|
889
|
+
children: [
|
|
890
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("title", { children: "External Link Icon" }),
|
|
891
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M15 3h6v6" }),
|
|
892
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M10 14 21 3" }),
|
|
893
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
|
|
835
894
|
]
|
|
836
895
|
}
|
|
837
896
|
);
|
|
838
897
|
};
|
|
839
898
|
|
|
840
899
|
// src/eye.tsx
|
|
841
|
-
var
|
|
900
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
842
901
|
var EyeIcon = (props) => {
|
|
843
|
-
return /* @__PURE__ */ (0,
|
|
902
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
844
903
|
"svg",
|
|
845
904
|
{
|
|
846
905
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -854,18 +913,18 @@ var EyeIcon = (props) => {
|
|
|
854
913
|
strokeLinejoin: "round",
|
|
855
914
|
...props,
|
|
856
915
|
children: [
|
|
857
|
-
/* @__PURE__ */ (0,
|
|
858
|
-
/* @__PURE__ */ (0,
|
|
859
|
-
/* @__PURE__ */ (0,
|
|
916
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("title", { children: "Eye Icon" }),
|
|
917
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0" }),
|
|
918
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
860
919
|
]
|
|
861
920
|
}
|
|
862
921
|
);
|
|
863
922
|
};
|
|
864
923
|
|
|
865
924
|
// src/eye-off.tsx
|
|
866
|
-
var
|
|
925
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
867
926
|
var EyeOffIcon = (props) => {
|
|
868
|
-
return /* @__PURE__ */ (0,
|
|
927
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
|
|
869
928
|
"svg",
|
|
870
929
|
{
|
|
871
930
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -879,20 +938,47 @@ var EyeOffIcon = (props) => {
|
|
|
879
938
|
strokeLinejoin: "round",
|
|
880
939
|
...props,
|
|
881
940
|
children: [
|
|
882
|
-
/* @__PURE__ */ (0,
|
|
883
|
-
/* @__PURE__ */ (0,
|
|
884
|
-
/* @__PURE__ */ (0,
|
|
885
|
-
/* @__PURE__ */ (0,
|
|
886
|
-
/* @__PURE__ */ (0,
|
|
941
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("title", { children: "Eye Off Icon" }),
|
|
942
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49" }),
|
|
943
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
|
|
944
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143" }),
|
|
945
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "m2 2 20 20" })
|
|
946
|
+
]
|
|
947
|
+
}
|
|
948
|
+
);
|
|
949
|
+
};
|
|
950
|
+
|
|
951
|
+
// src/globe-icon.tsx
|
|
952
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
953
|
+
var GlobeIcon = ({ size = 24, ...props }) => {
|
|
954
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
955
|
+
"svg",
|
|
956
|
+
{
|
|
957
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
958
|
+
width: size,
|
|
959
|
+
height: size,
|
|
960
|
+
viewBox: "0 0 24 24",
|
|
961
|
+
fill: "none",
|
|
962
|
+
stroke: "currentColor",
|
|
963
|
+
strokeWidth: "2",
|
|
964
|
+
strokeLinecap: "round",
|
|
965
|
+
strokeLinejoin: "round",
|
|
966
|
+
"aria-hidden": "true",
|
|
967
|
+
...props,
|
|
968
|
+
children: [
|
|
969
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("title", { children: "External Link Icon" }),
|
|
970
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
971
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
972
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M2 12h20" })
|
|
887
973
|
]
|
|
888
974
|
}
|
|
889
975
|
);
|
|
890
976
|
};
|
|
891
977
|
|
|
892
978
|
// src/grip-vertical.tsx
|
|
893
|
-
var
|
|
979
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
894
980
|
var GripVerticalIcon = ({ size = 24, ...props }) => {
|
|
895
|
-
return /* @__PURE__ */ (0,
|
|
981
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
896
982
|
"svg",
|
|
897
983
|
{
|
|
898
984
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -907,22 +993,22 @@ var GripVerticalIcon = ({ size = 24, ...props }) => {
|
|
|
907
993
|
"aria-hidden": "true",
|
|
908
994
|
...props,
|
|
909
995
|
children: [
|
|
910
|
-
/* @__PURE__ */ (0,
|
|
911
|
-
/* @__PURE__ */ (0,
|
|
912
|
-
/* @__PURE__ */ (0,
|
|
913
|
-
/* @__PURE__ */ (0,
|
|
914
|
-
/* @__PURE__ */ (0,
|
|
915
|
-
/* @__PURE__ */ (0,
|
|
916
|
-
/* @__PURE__ */ (0,
|
|
996
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("title", { children: "Grip Vertical Icon" }),
|
|
997
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("circle", { cx: "9", cy: "12", r: "1" }),
|
|
998
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("circle", { cx: "9", cy: "5", r: "1" }),
|
|
999
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("circle", { cx: "9", cy: "19", r: "1" }),
|
|
1000
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("circle", { cx: "15", cy: "12", r: "1" }),
|
|
1001
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("circle", { cx: "15", cy: "5", r: "1" }),
|
|
1002
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("circle", { cx: "15", cy: "19", r: "1" })
|
|
917
1003
|
]
|
|
918
1004
|
}
|
|
919
1005
|
);
|
|
920
1006
|
};
|
|
921
1007
|
|
|
922
1008
|
// src/incident.tsx
|
|
923
|
-
var
|
|
1009
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
924
1010
|
var IncidentIcon = ({ size = 24, ...props }) => {
|
|
925
|
-
return /* @__PURE__ */ (0,
|
|
1011
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
926
1012
|
"svg",
|
|
927
1013
|
{
|
|
928
1014
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -936,19 +1022,19 @@ var IncidentIcon = ({ size = 24, ...props }) => {
|
|
|
936
1022
|
strokeLinejoin: "round",
|
|
937
1023
|
...props,
|
|
938
1024
|
children: [
|
|
939
|
-
/* @__PURE__ */ (0,
|
|
940
|
-
/* @__PURE__ */ (0,
|
|
941
|
-
/* @__PURE__ */ (0,
|
|
942
|
-
/* @__PURE__ */ (0,
|
|
1025
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("title", { children: "Incident icon" }),
|
|
1026
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M12 16h.01" }),
|
|
1027
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M12 8v4" }),
|
|
1028
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z" })
|
|
943
1029
|
]
|
|
944
1030
|
}
|
|
945
1031
|
);
|
|
946
1032
|
};
|
|
947
1033
|
|
|
948
1034
|
// src/info.tsx
|
|
949
|
-
var
|
|
1035
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
950
1036
|
var InfoIcon = ({ size = 24, ...props }) => {
|
|
951
|
-
return /* @__PURE__ */ (0,
|
|
1037
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
952
1038
|
"svg",
|
|
953
1039
|
{
|
|
954
1040
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -963,19 +1049,19 @@ var InfoIcon = ({ size = 24, ...props }) => {
|
|
|
963
1049
|
"aria-hidden": "true",
|
|
964
1050
|
...props,
|
|
965
1051
|
children: [
|
|
966
|
-
/* @__PURE__ */ (0,
|
|
967
|
-
/* @__PURE__ */ (0,
|
|
968
|
-
/* @__PURE__ */ (0,
|
|
969
|
-
/* @__PURE__ */ (0,
|
|
1052
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("title", { children: "Info Icon" }),
|
|
1053
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1054
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M12 16v-4" }),
|
|
1055
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M12 8h.01" })
|
|
970
1056
|
]
|
|
971
1057
|
}
|
|
972
1058
|
);
|
|
973
1059
|
};
|
|
974
1060
|
|
|
975
1061
|
// src/issues.tsx
|
|
976
|
-
var
|
|
1062
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
977
1063
|
var IssuesIcon = ({ size = 24, ...props }) => {
|
|
978
|
-
return /* @__PURE__ */ (0,
|
|
1064
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
|
|
979
1065
|
"svg",
|
|
980
1066
|
{
|
|
981
1067
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -989,21 +1075,21 @@ var IssuesIcon = ({ size = 24, ...props }) => {
|
|
|
989
1075
|
strokeLinejoin: "round",
|
|
990
1076
|
...props,
|
|
991
1077
|
children: [
|
|
992
|
-
/* @__PURE__ */ (0,
|
|
993
|
-
/* @__PURE__ */ (0,
|
|
994
|
-
/* @__PURE__ */ (0,
|
|
995
|
-
/* @__PURE__ */ (0,
|
|
996
|
-
/* @__PURE__ */ (0,
|
|
997
|
-
/* @__PURE__ */ (0,
|
|
1078
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("title", { children: "Issues icon" }),
|
|
1079
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
|
|
1080
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M12 11h4" }),
|
|
1081
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M12 16h4" }),
|
|
1082
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M8 11h.01" }),
|
|
1083
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M8 16h.01" })
|
|
998
1084
|
]
|
|
999
1085
|
}
|
|
1000
1086
|
);
|
|
1001
1087
|
};
|
|
1002
1088
|
|
|
1003
1089
|
// src/linkedin.tsx
|
|
1004
|
-
var
|
|
1090
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
1005
1091
|
var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
1006
|
-
return /* @__PURE__ */ (0,
|
|
1092
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
|
|
1007
1093
|
"svg",
|
|
1008
1094
|
{
|
|
1009
1095
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1019,19 +1105,19 @@ var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
|
1019
1105
|
focusable: "false",
|
|
1020
1106
|
...props,
|
|
1021
1107
|
children: [
|
|
1022
|
-
/* @__PURE__ */ (0,
|
|
1023
|
-
/* @__PURE__ */ (0,
|
|
1024
|
-
/* @__PURE__ */ (0,
|
|
1025
|
-
/* @__PURE__ */ (0,
|
|
1108
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("title", { children: "LinkedIn Icon" }),
|
|
1109
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" }),
|
|
1110
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("rect", { width: "4", height: "12", x: "2", y: "9" }),
|
|
1111
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("circle", { cx: "4", cy: "4", r: "2" })
|
|
1026
1112
|
]
|
|
1027
1113
|
}
|
|
1028
1114
|
);
|
|
1029
1115
|
};
|
|
1030
1116
|
|
|
1031
1117
|
// src/minus.tsx
|
|
1032
|
-
var
|
|
1118
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
1033
1119
|
var MinusIcon = ({ size = 24, ...props }) => {
|
|
1034
|
-
return /* @__PURE__ */ (0,
|
|
1120
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
|
|
1035
1121
|
"svg",
|
|
1036
1122
|
{
|
|
1037
1123
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1045,17 +1131,17 @@ var MinusIcon = ({ size = 24, ...props }) => {
|
|
|
1045
1131
|
strokeLinejoin: "round",
|
|
1046
1132
|
...props,
|
|
1047
1133
|
children: [
|
|
1048
|
-
/* @__PURE__ */ (0,
|
|
1049
|
-
/* @__PURE__ */ (0,
|
|
1134
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("title", { children: "Minus Icon" }),
|
|
1135
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M5 12h14" })
|
|
1050
1136
|
]
|
|
1051
1137
|
}
|
|
1052
1138
|
);
|
|
1053
1139
|
};
|
|
1054
1140
|
|
|
1055
1141
|
// src/notification-icon.tsx
|
|
1056
|
-
var
|
|
1142
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
1057
1143
|
var NotificationIcon = (props) => {
|
|
1058
|
-
return /* @__PURE__ */ (0,
|
|
1144
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
|
|
1059
1145
|
"svg",
|
|
1060
1146
|
{
|
|
1061
1147
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1069,18 +1155,18 @@ var NotificationIcon = (props) => {
|
|
|
1069
1155
|
strokeLinejoin: "round",
|
|
1070
1156
|
...props,
|
|
1071
1157
|
children: [
|
|
1072
|
-
/* @__PURE__ */ (0,
|
|
1073
|
-
/* @__PURE__ */ (0,
|
|
1074
|
-
/* @__PURE__ */ (0,
|
|
1158
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("title", { children: "Notification Icon" }),
|
|
1159
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
|
|
1160
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326" })
|
|
1075
1161
|
]
|
|
1076
1162
|
}
|
|
1077
1163
|
);
|
|
1078
1164
|
};
|
|
1079
1165
|
|
|
1080
1166
|
// src/panel-left-icon.tsx
|
|
1081
|
-
var
|
|
1167
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
1082
1168
|
var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
1083
|
-
return /* @__PURE__ */ (0,
|
|
1169
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
|
|
1084
1170
|
"svg",
|
|
1085
1171
|
{
|
|
1086
1172
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1094,18 +1180,18 @@ var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
|
1094
1180
|
strokeLinejoin: "round",
|
|
1095
1181
|
...props,
|
|
1096
1182
|
children: [
|
|
1097
|
-
/* @__PURE__ */ (0,
|
|
1098
|
-
/* @__PURE__ */ (0,
|
|
1099
|
-
/* @__PURE__ */ (0,
|
|
1183
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("title", { children: "Panel Left icon" }),
|
|
1184
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
1185
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("path", { d: "M9 3v18" })
|
|
1100
1186
|
]
|
|
1101
1187
|
}
|
|
1102
1188
|
);
|
|
1103
1189
|
};
|
|
1104
1190
|
|
|
1105
1191
|
// src/people.tsx
|
|
1106
|
-
var
|
|
1192
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
1107
1193
|
var PeopleIcon = ({ size = 24, ...props }) => {
|
|
1108
|
-
return /* @__PURE__ */ (0,
|
|
1194
|
+
return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
|
|
1109
1195
|
"svg",
|
|
1110
1196
|
{
|
|
1111
1197
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1119,20 +1205,20 @@ var PeopleIcon = ({ size = 24, ...props }) => {
|
|
|
1119
1205
|
strokeLinejoin: "round",
|
|
1120
1206
|
...props,
|
|
1121
1207
|
children: [
|
|
1122
|
-
/* @__PURE__ */ (0,
|
|
1123
|
-
/* @__PURE__ */ (0,
|
|
1124
|
-
/* @__PURE__ */ (0,
|
|
1125
|
-
/* @__PURE__ */ (0,
|
|
1126
|
-
/* @__PURE__ */ (0,
|
|
1208
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("title", { children: "People icon" }),
|
|
1209
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
1210
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("path", { d: "M16 3.128a4 4 0 0 1 0 7.744" }),
|
|
1211
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
1212
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("circle", { cx: "9", cy: "7", r: "4" })
|
|
1127
1213
|
]
|
|
1128
1214
|
}
|
|
1129
1215
|
);
|
|
1130
1216
|
};
|
|
1131
1217
|
|
|
1132
1218
|
// src/physical-asset.tsx
|
|
1133
|
-
var
|
|
1219
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
1134
1220
|
var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
1135
|
-
return /* @__PURE__ */ (0,
|
|
1221
|
+
return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
|
|
1136
1222
|
"svg",
|
|
1137
1223
|
{
|
|
1138
1224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1146,20 +1232,20 @@ var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
|
1146
1232
|
strokeLinejoin: "round",
|
|
1147
1233
|
...props,
|
|
1148
1234
|
children: [
|
|
1149
|
-
/* @__PURE__ */ (0,
|
|
1150
|
-
/* @__PURE__ */ (0,
|
|
1151
|
-
/* @__PURE__ */ (0,
|
|
1152
|
-
/* @__PURE__ */ (0,
|
|
1153
|
-
/* @__PURE__ */ (0,
|
|
1235
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("title", { children: "Physical Asset icon" }),
|
|
1236
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("path", { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" }),
|
|
1237
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("path", { d: "M10 19v-3.96 3.15" }),
|
|
1238
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("path", { d: "M7 19h5" }),
|
|
1239
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("rect", { width: "6", height: "10", x: "16", y: "12", rx: "2" })
|
|
1154
1240
|
]
|
|
1155
1241
|
}
|
|
1156
1242
|
);
|
|
1157
1243
|
};
|
|
1158
1244
|
|
|
1159
1245
|
// src/plattform-asset.tsx
|
|
1160
|
-
var
|
|
1246
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
1161
1247
|
var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
1162
|
-
return /* @__PURE__ */ (0,
|
|
1248
|
+
return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
|
|
1163
1249
|
"svg",
|
|
1164
1250
|
{
|
|
1165
1251
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1173,20 +1259,20 @@ var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
|
1173
1259
|
strokeLinejoin: "round",
|
|
1174
1260
|
...props,
|
|
1175
1261
|
children: [
|
|
1176
|
-
/* @__PURE__ */ (0,
|
|
1177
|
-
/* @__PURE__ */ (0,
|
|
1178
|
-
/* @__PURE__ */ (0,
|
|
1179
|
-
/* @__PURE__ */ (0,
|
|
1180
|
-
/* @__PURE__ */ (0,
|
|
1262
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("title", { children: "Plattform Asset icon" }),
|
|
1263
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }),
|
|
1264
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }),
|
|
1265
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }),
|
|
1266
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("line", { x1: "6", x2: "6.01", y1: "18", y2: "18" })
|
|
1181
1267
|
]
|
|
1182
1268
|
}
|
|
1183
1269
|
);
|
|
1184
1270
|
};
|
|
1185
1271
|
|
|
1186
1272
|
// src/plus.tsx
|
|
1187
|
-
var
|
|
1273
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
1188
1274
|
var PlusIcon = (props) => {
|
|
1189
|
-
return /* @__PURE__ */ (0,
|
|
1275
|
+
return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
|
|
1190
1276
|
"svg",
|
|
1191
1277
|
{
|
|
1192
1278
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1200,21 +1286,21 @@ var PlusIcon = (props) => {
|
|
|
1200
1286
|
strokeLinejoin: "round",
|
|
1201
1287
|
...props,
|
|
1202
1288
|
children: [
|
|
1203
|
-
/* @__PURE__ */ (0,
|
|
1204
|
-
/* @__PURE__ */ (0,
|
|
1205
|
-
/* @__PURE__ */ (0,
|
|
1289
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("title", { children: "Plus Icon" }),
|
|
1290
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { d: "M5 12h14" }),
|
|
1291
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { d: "M12 5v14" })
|
|
1206
1292
|
]
|
|
1207
1293
|
}
|
|
1208
1294
|
);
|
|
1209
1295
|
};
|
|
1210
1296
|
|
|
1211
1297
|
// src/processing-activity.tsx
|
|
1212
|
-
var
|
|
1298
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
1213
1299
|
var ProcessingActivityIcon = ({
|
|
1214
1300
|
size = 24,
|
|
1215
1301
|
...props
|
|
1216
1302
|
}) => {
|
|
1217
|
-
return /* @__PURE__ */ (0,
|
|
1303
|
+
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
|
|
1218
1304
|
"svg",
|
|
1219
1305
|
{
|
|
1220
1306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1228,19 +1314,46 @@ var ProcessingActivityIcon = ({
|
|
|
1228
1314
|
strokeLinejoin: "round",
|
|
1229
1315
|
...props,
|
|
1230
1316
|
children: [
|
|
1231
|
-
/* @__PURE__ */ (0,
|
|
1232
|
-
/* @__PURE__ */ (0,
|
|
1233
|
-
/* @__PURE__ */ (0,
|
|
1234
|
-
/* @__PURE__ */ (0,
|
|
1317
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("title", { children: "Processing Activity icon" }),
|
|
1318
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("rect", { width: "8", height: "8", x: "3", y: "3", rx: "2" }),
|
|
1319
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { d: "M7 11v4a2 2 0 0 0 2 2h4" }),
|
|
1320
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("rect", { width: "8", height: "8", x: "13", y: "13", rx: "2" })
|
|
1235
1321
|
]
|
|
1236
1322
|
}
|
|
1237
1323
|
);
|
|
1238
1324
|
};
|
|
1239
1325
|
|
|
1240
1326
|
// src/program-icon.tsx
|
|
1241
|
-
var
|
|
1327
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
1242
1328
|
var ProgramIcon = ({ size = 24, ...props }) => {
|
|
1243
|
-
return /* @__PURE__ */ (0,
|
|
1329
|
+
return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
|
|
1330
|
+
"svg",
|
|
1331
|
+
{
|
|
1332
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1333
|
+
width: size,
|
|
1334
|
+
height: size,
|
|
1335
|
+
viewBox: "0 0 24 24",
|
|
1336
|
+
fill: "none",
|
|
1337
|
+
stroke: "currentColor",
|
|
1338
|
+
strokeWidth: "2",
|
|
1339
|
+
strokeLinecap: "round",
|
|
1340
|
+
strokeLinejoin: "round",
|
|
1341
|
+
...props,
|
|
1342
|
+
children: [
|
|
1343
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("title", { children: "Program icon" }),
|
|
1344
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z" }),
|
|
1345
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M8 10v4" }),
|
|
1346
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M12 10v2" }),
|
|
1347
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M16 10v6" })
|
|
1348
|
+
]
|
|
1349
|
+
}
|
|
1350
|
+
);
|
|
1351
|
+
};
|
|
1352
|
+
|
|
1353
|
+
// src/puzzle-icon.tsx
|
|
1354
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
1355
|
+
var PuzzleIcon = ({ size = 24, ...props }) => {
|
|
1356
|
+
return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
|
|
1244
1357
|
"svg",
|
|
1245
1358
|
{
|
|
1246
1359
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1254,20 +1367,17 @@ var ProgramIcon = ({ size = 24, ...props }) => {
|
|
|
1254
1367
|
strokeLinejoin: "round",
|
|
1255
1368
|
...props,
|
|
1256
1369
|
children: [
|
|
1257
|
-
/* @__PURE__ */ (0,
|
|
1258
|
-
/* @__PURE__ */ (0,
|
|
1259
|
-
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { d: "M8 10v4" }),
|
|
1260
|
-
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { d: "M12 10v2" }),
|
|
1261
|
-
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { d: "M16 10v6" })
|
|
1370
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("title", { children: "Puzzle Icon" }),
|
|
1371
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z" })
|
|
1262
1372
|
]
|
|
1263
1373
|
}
|
|
1264
1374
|
);
|
|
1265
1375
|
};
|
|
1266
1376
|
|
|
1267
1377
|
// src/risk.tsx
|
|
1268
|
-
var
|
|
1378
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
1269
1379
|
var RiskIcon = ({ size = 24, ...props }) => {
|
|
1270
|
-
return /* @__PURE__ */ (0,
|
|
1380
|
+
return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
|
|
1271
1381
|
"svg",
|
|
1272
1382
|
{
|
|
1273
1383
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1281,19 +1391,19 @@ var RiskIcon = ({ size = 24, ...props }) => {
|
|
|
1281
1391
|
strokeLinejoin: "round",
|
|
1282
1392
|
...props,
|
|
1283
1393
|
children: [
|
|
1284
|
-
/* @__PURE__ */ (0,
|
|
1285
|
-
/* @__PURE__ */ (0,
|
|
1286
|
-
/* @__PURE__ */ (0,
|
|
1287
|
-
/* @__PURE__ */ (0,
|
|
1394
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("title", { children: "Risk icon" }),
|
|
1395
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
1396
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M12 8v4" }),
|
|
1397
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M12 16h.01" })
|
|
1288
1398
|
]
|
|
1289
1399
|
}
|
|
1290
1400
|
);
|
|
1291
1401
|
};
|
|
1292
1402
|
|
|
1293
1403
|
// src/save.tsx
|
|
1294
|
-
var
|
|
1404
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
1295
1405
|
var SaveIcon = (props) => {
|
|
1296
|
-
return /* @__PURE__ */ (0,
|
|
1406
|
+
return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
|
|
1297
1407
|
"svg",
|
|
1298
1408
|
{
|
|
1299
1409
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1307,19 +1417,19 @@ var SaveIcon = (props) => {
|
|
|
1307
1417
|
strokeLinejoin: "round",
|
|
1308
1418
|
...props,
|
|
1309
1419
|
children: [
|
|
1310
|
-
/* @__PURE__ */ (0,
|
|
1311
|
-
/* @__PURE__ */ (0,
|
|
1312
|
-
/* @__PURE__ */ (0,
|
|
1313
|
-
/* @__PURE__ */ (0,
|
|
1420
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("title", { children: "Save Icon" }),
|
|
1421
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
|
|
1422
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
1423
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
1314
1424
|
]
|
|
1315
1425
|
}
|
|
1316
1426
|
);
|
|
1317
1427
|
};
|
|
1318
1428
|
|
|
1319
1429
|
// src/search.tsx
|
|
1320
|
-
var
|
|
1430
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
1321
1431
|
var SearchIcon = (props) => {
|
|
1322
|
-
return /* @__PURE__ */ (0,
|
|
1432
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
|
|
1323
1433
|
"svg",
|
|
1324
1434
|
{
|
|
1325
1435
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1333,18 +1443,18 @@ var SearchIcon = (props) => {
|
|
|
1333
1443
|
strokeLinejoin: "round",
|
|
1334
1444
|
...props,
|
|
1335
1445
|
children: [
|
|
1336
|
-
/* @__PURE__ */ (0,
|
|
1337
|
-
/* @__PURE__ */ (0,
|
|
1338
|
-
/* @__PURE__ */ (0,
|
|
1446
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("title", { children: "Search Icon" }),
|
|
1447
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "m21 21-4.34-4.34" }),
|
|
1448
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("circle", { cx: "11", cy: "11", r: "8" })
|
|
1339
1449
|
]
|
|
1340
1450
|
}
|
|
1341
1451
|
);
|
|
1342
1452
|
};
|
|
1343
1453
|
|
|
1344
1454
|
// src/settings.tsx
|
|
1345
|
-
var
|
|
1455
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
1346
1456
|
var SettingsIcon = ({ size = 24, ...props }) => {
|
|
1347
|
-
return /* @__PURE__ */ (0,
|
|
1457
|
+
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
|
|
1348
1458
|
"svg",
|
|
1349
1459
|
{
|
|
1350
1460
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1358,20 +1468,20 @@ var SettingsIcon = ({ size = 24, ...props }) => {
|
|
|
1358
1468
|
strokeLinejoin: "round",
|
|
1359
1469
|
...props,
|
|
1360
1470
|
children: [
|
|
1361
|
-
/* @__PURE__ */ (0,
|
|
1362
|
-
/* @__PURE__ */ (0,
|
|
1363
|
-
/* @__PURE__ */ (0,
|
|
1364
|
-
/* @__PURE__ */ (0,
|
|
1365
|
-
/* @__PURE__ */ (0,
|
|
1471
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("title", { children: "Settings" }),
|
|
1472
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "M14 17H5" }),
|
|
1473
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "M19 7h-9" }),
|
|
1474
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("circle", { cx: "17", cy: "17", r: "3" }),
|
|
1475
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("circle", { cx: "7", cy: "7", r: "3" })
|
|
1366
1476
|
]
|
|
1367
1477
|
}
|
|
1368
1478
|
);
|
|
1369
1479
|
};
|
|
1370
1480
|
|
|
1371
1481
|
// src/shell.tsx
|
|
1372
|
-
var
|
|
1482
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
1373
1483
|
var ShellIcon = ({ size = 24, ...props }) => {
|
|
1374
|
-
return /* @__PURE__ */ (0,
|
|
1484
|
+
return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
|
|
1375
1485
|
"svg",
|
|
1376
1486
|
{
|
|
1377
1487
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1385,17 +1495,17 @@ var ShellIcon = ({ size = 24, ...props }) => {
|
|
|
1385
1495
|
strokeLinejoin: "round",
|
|
1386
1496
|
...props,
|
|
1387
1497
|
children: [
|
|
1388
|
-
/* @__PURE__ */ (0,
|
|
1389
|
-
/* @__PURE__ */ (0,
|
|
1498
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("title", { children: "Shell Icon" }),
|
|
1499
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44" })
|
|
1390
1500
|
]
|
|
1391
1501
|
}
|
|
1392
1502
|
);
|
|
1393
1503
|
};
|
|
1394
1504
|
|
|
1395
1505
|
// src/squares-intersect.tsx
|
|
1396
|
-
var
|
|
1506
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
1397
1507
|
var SquaresIntersect = ({ size = 24, ...props }) => {
|
|
1398
|
-
return /* @__PURE__ */ (0,
|
|
1508
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
|
|
1399
1509
|
"svg",
|
|
1400
1510
|
{
|
|
1401
1511
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1409,27 +1519,27 @@ var SquaresIntersect = ({ size = 24, ...props }) => {
|
|
|
1409
1519
|
strokeLinejoin: "round",
|
|
1410
1520
|
...props,
|
|
1411
1521
|
children: [
|
|
1412
|
-
/* @__PURE__ */ (0,
|
|
1413
|
-
/* @__PURE__ */ (0,
|
|
1414
|
-
/* @__PURE__ */ (0,
|
|
1415
|
-
/* @__PURE__ */ (0,
|
|
1416
|
-
/* @__PURE__ */ (0,
|
|
1417
|
-
/* @__PURE__ */ (0,
|
|
1418
|
-
/* @__PURE__ */ (0,
|
|
1419
|
-
/* @__PURE__ */ (0,
|
|
1420
|
-
/* @__PURE__ */ (0,
|
|
1421
|
-
/* @__PURE__ */ (0,
|
|
1422
|
-
/* @__PURE__ */ (0,
|
|
1423
|
-
/* @__PURE__ */ (0,
|
|
1522
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("title", { children: "Squares Intersect icon" }),
|
|
1523
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M10 22a2 2 0 0 1-2-2" }),
|
|
1524
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M14 2a2 2 0 0 1 2 2" }),
|
|
1525
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M16 22h-2" }),
|
|
1526
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M2 10V8" }),
|
|
1527
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M2 4a2 2 0 0 1 2-2" }),
|
|
1528
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M20 8a2 2 0 0 1 2 2" }),
|
|
1529
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M22 14v2" }),
|
|
1530
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M22 20a2 2 0 0 1-2 2" }),
|
|
1531
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M4 16a2 2 0 0 1-2-2" }),
|
|
1532
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z" }),
|
|
1533
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M8 2h2" })
|
|
1424
1534
|
]
|
|
1425
1535
|
}
|
|
1426
1536
|
);
|
|
1427
1537
|
};
|
|
1428
1538
|
|
|
1429
1539
|
// src/trash-icon.tsx
|
|
1430
|
-
var
|
|
1540
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
1431
1541
|
var TrashIcon = ({ size = 24, ...props }) => {
|
|
1432
|
-
return /* @__PURE__ */ (0,
|
|
1542
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
|
|
1433
1543
|
"svg",
|
|
1434
1544
|
{
|
|
1435
1545
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1443,21 +1553,21 @@ var TrashIcon = ({ size = 24, ...props }) => {
|
|
|
1443
1553
|
strokeLinejoin: "round",
|
|
1444
1554
|
...props,
|
|
1445
1555
|
children: [
|
|
1446
|
-
/* @__PURE__ */ (0,
|
|
1447
|
-
/* @__PURE__ */ (0,
|
|
1448
|
-
/* @__PURE__ */ (0,
|
|
1449
|
-
/* @__PURE__ */ (0,
|
|
1450
|
-
/* @__PURE__ */ (0,
|
|
1451
|
-
/* @__PURE__ */ (0,
|
|
1556
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("title", { children: "Trash icon" }),
|
|
1557
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "M10 11v6" }),
|
|
1558
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "M14 11v6" }),
|
|
1559
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
1560
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "M3 6h18" }),
|
|
1561
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
1452
1562
|
]
|
|
1453
1563
|
}
|
|
1454
1564
|
);
|
|
1455
1565
|
};
|
|
1456
1566
|
|
|
1457
1567
|
// src/upload.tsx
|
|
1458
|
-
var
|
|
1568
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
1459
1569
|
var UploadIcon = ({ size = 24, ...props }) => {
|
|
1460
|
-
return /* @__PURE__ */ (0,
|
|
1570
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
|
|
1461
1571
|
"svg",
|
|
1462
1572
|
{
|
|
1463
1573
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1471,19 +1581,19 @@ var UploadIcon = ({ size = 24, ...props }) => {
|
|
|
1471
1581
|
strokeLinejoin: "round",
|
|
1472
1582
|
...props,
|
|
1473
1583
|
children: [
|
|
1474
|
-
/* @__PURE__ */ (0,
|
|
1475
|
-
/* @__PURE__ */ (0,
|
|
1476
|
-
/* @__PURE__ */ (0,
|
|
1477
|
-
/* @__PURE__ */ (0,
|
|
1584
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("title", { children: "Upload icon" }),
|
|
1585
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M12 13v8" }),
|
|
1586
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }),
|
|
1587
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "m8 17 4-4 4 4" })
|
|
1478
1588
|
]
|
|
1479
1589
|
}
|
|
1480
1590
|
);
|
|
1481
1591
|
};
|
|
1482
1592
|
|
|
1483
1593
|
// src/vendor.tsx
|
|
1484
|
-
var
|
|
1594
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
1485
1595
|
var VendorIcon = ({ size = 24, ...props }) => {
|
|
1486
|
-
return /* @__PURE__ */ (0,
|
|
1596
|
+
return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
|
|
1487
1597
|
"svg",
|
|
1488
1598
|
{
|
|
1489
1599
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1497,12 +1607,12 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1497
1607
|
strokeLinejoin: "round",
|
|
1498
1608
|
...props,
|
|
1499
1609
|
children: [
|
|
1500
|
-
/* @__PURE__ */ (0,
|
|
1501
|
-
/* @__PURE__ */ (0,
|
|
1502
|
-
/* @__PURE__ */ (0,
|
|
1503
|
-
/* @__PURE__ */ (0,
|
|
1504
|
-
/* @__PURE__ */ (0,
|
|
1505
|
-
/* @__PURE__ */ (0,
|
|
1610
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("title", { children: "Vendor icon" }),
|
|
1611
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7" }),
|
|
1612
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
1613
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4" }),
|
|
1614
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M2 7h20" }),
|
|
1615
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M22 7v3a2 2 0 0 1-2 2a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7" })
|
|
1506
1616
|
]
|
|
1507
1617
|
}
|
|
1508
1618
|
);
|
|
@@ -1511,6 +1621,7 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1511
1621
|
0 && (module.exports = {
|
|
1512
1622
|
AlertCircleIcon,
|
|
1513
1623
|
AlertIcon,
|
|
1624
|
+
ApplicationAssetIcon,
|
|
1514
1625
|
ArrowDown,
|
|
1515
1626
|
ArrowDownUp,
|
|
1516
1627
|
ArrowRightIcon,
|
|
@@ -1538,11 +1649,14 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1538
1649
|
EditIcon,
|
|
1539
1650
|
EllipsisIcon,
|
|
1540
1651
|
EqualsIcon,
|
|
1652
|
+
ExternalLinkIcon,
|
|
1541
1653
|
EyeIcon,
|
|
1542
1654
|
EyeOffIcon,
|
|
1655
|
+
GlobeIcon,
|
|
1543
1656
|
GripVerticalIcon,
|
|
1544
1657
|
IncidentIcon,
|
|
1545
1658
|
InfoIcon,
|
|
1659
|
+
IntegrationIcon,
|
|
1546
1660
|
IntersectIcon,
|
|
1547
1661
|
IssuesIcon,
|
|
1548
1662
|
LinkedInIcon,
|
|
@@ -1556,6 +1670,7 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1556
1670
|
PlusIcon,
|
|
1557
1671
|
ProcessingActivityIcon,
|
|
1558
1672
|
ProgramIcon,
|
|
1673
|
+
PuzzleIcon,
|
|
1559
1674
|
RiskIcon,
|
|
1560
1675
|
SaveIcon,
|
|
1561
1676
|
SearchIcon,
|