@kopexa/icons 9.0.0 → 9.0.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/dist/chunk-36PEVCQL.mjs +31 -0
- package/dist/chunk-V6QXOK5V.mjs +32 -0
- package/dist/chunk-WWSIRUDQ.mjs +32 -0
- package/dist/data-asset.d.mts +7 -0
- package/dist/data-asset.d.ts +7 -0
- package/dist/data-asset.js +54 -0
- package/dist/data-asset.mjs +7 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +214 -128
- package/dist/index.mjs +26 -14
- package/dist/physical-asset.d.mts +7 -0
- package/dist/physical-asset.d.ts +7 -0
- package/dist/physical-asset.js +55 -0
- package/dist/physical-asset.mjs +7 -0
- package/dist/plattform-asset.d.mts +7 -0
- package/dist/plattform-asset.d.ts +7 -0
- package/dist/plattform-asset.js +55 -0
- package/dist/plattform-asset.mjs +7 -0
- package/package.json +2 -2
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/data-asset.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var DataAssetIcon = ({ size = 24, ...props }) => {
|
|
6
|
+
return /* @__PURE__ */ jsxs(
|
|
7
|
+
"svg",
|
|
8
|
+
{
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
stroke: "currentColor",
|
|
15
|
+
strokeWidth: "2",
|
|
16
|
+
strokeLinecap: "round",
|
|
17
|
+
strokeLinejoin: "round",
|
|
18
|
+
...props,
|
|
19
|
+
children: [
|
|
20
|
+
/* @__PURE__ */ jsx("title", { children: "Plattform Asset icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M3 5V19A9 3 0 0 0 21 19V5" }),
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M3 12A9 3 0 0 0 21 12" })
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export {
|
|
30
|
+
DataAssetIcon
|
|
31
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/physical-asset.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
6
|
+
return /* @__PURE__ */ jsxs(
|
|
7
|
+
"svg",
|
|
8
|
+
{
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
stroke: "currentColor",
|
|
15
|
+
strokeWidth: "2",
|
|
16
|
+
strokeLinecap: "round",
|
|
17
|
+
strokeLinejoin: "round",
|
|
18
|
+
...props,
|
|
19
|
+
children: [
|
|
20
|
+
/* @__PURE__ */ jsx("title", { children: "Physical Asset icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M10 19v-3.96 3.15" }),
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M7 19h5" }),
|
|
24
|
+
/* @__PURE__ */ jsx("rect", { width: "6", height: "10", x: "16", y: "12", rx: "2" })
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export {
|
|
31
|
+
PhysicalAssetIcon
|
|
32
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/plattform-asset.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
6
|
+
return /* @__PURE__ */ jsxs(
|
|
7
|
+
"svg",
|
|
8
|
+
{
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
stroke: "currentColor",
|
|
15
|
+
strokeWidth: "2",
|
|
16
|
+
strokeLinecap: "round",
|
|
17
|
+
strokeLinejoin: "round",
|
|
18
|
+
...props,
|
|
19
|
+
children: [
|
|
20
|
+
/* @__PURE__ */ jsx("title", { children: "Plattform Asset icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }),
|
|
22
|
+
/* @__PURE__ */ jsx("rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }),
|
|
23
|
+
/* @__PURE__ */ jsx("line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }),
|
|
24
|
+
/* @__PURE__ */ jsx("line", { x1: "6", x2: "6.01", y1: "18", y2: "18" })
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export {
|
|
31
|
+
PlattformAssetIcon
|
|
32
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/data-asset.tsx
|
|
22
|
+
var data_asset_exports = {};
|
|
23
|
+
__export(data_asset_exports, {
|
|
24
|
+
DataAssetIcon: () => DataAssetIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(data_asset_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var DataAssetIcon = ({ size = 24, ...props }) => {
|
|
29
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
30
|
+
"svg",
|
|
31
|
+
{
|
|
32
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
33
|
+
width: size,
|
|
34
|
+
height: size,
|
|
35
|
+
viewBox: "0 0 24 24",
|
|
36
|
+
fill: "none",
|
|
37
|
+
stroke: "currentColor",
|
|
38
|
+
strokeWidth: "2",
|
|
39
|
+
strokeLinecap: "round",
|
|
40
|
+
strokeLinejoin: "round",
|
|
41
|
+
...props,
|
|
42
|
+
children: [
|
|
43
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Plattform Asset icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 5V19A9 3 0 0 0 21 19V5" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 12A9 3 0 0 0 21 12" })
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
};
|
|
51
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
52
|
+
0 && (module.exports = {
|
|
53
|
+
DataAssetIcon
|
|
54
|
+
});
|
package/dist/index.d.mts
CHANGED
|
@@ -12,6 +12,7 @@ export { ChevronUpDown } from './chevron-up-down.mjs';
|
|
|
12
12
|
export { CircleIcon } from './circle.mjs';
|
|
13
13
|
export { CloseIcon } from './close.mjs';
|
|
14
14
|
export { ControlsIcon } from './controls.mjs';
|
|
15
|
+
export { DataAssetIcon } from './data-asset.mjs';
|
|
15
16
|
export { DocumentsIcon } from './documents.mjs';
|
|
16
17
|
export { DSARIcon } from './dsar.mjs';
|
|
17
18
|
export { EllipsisIcon } from './ellipsis-icon.mjs';
|
|
@@ -24,6 +25,8 @@ export { MinusIcon } from './minus.mjs';
|
|
|
24
25
|
export { NotificationIcon } from './notification-icon.mjs';
|
|
25
26
|
export { PanelLeftIcon } from './panel-left-icon.mjs';
|
|
26
27
|
export { PeopleIcon } from './people.mjs';
|
|
28
|
+
export { PhysicalAssetIcon } from './physical-asset.mjs';
|
|
29
|
+
export { PlattformAssetIcon } from './plattform-asset.mjs';
|
|
27
30
|
export { PlusIcon } from './plus.mjs';
|
|
28
31
|
export { ProcessingActivityIcon } from './processing-activity.mjs';
|
|
29
32
|
export { ProgramIcon } from './program-icon.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export { ChevronUpDown } from './chevron-up-down.js';
|
|
|
12
12
|
export { CircleIcon } from './circle.js';
|
|
13
13
|
export { CloseIcon } from './close.js';
|
|
14
14
|
export { ControlsIcon } from './controls.js';
|
|
15
|
+
export { DataAssetIcon } from './data-asset.js';
|
|
15
16
|
export { DocumentsIcon } from './documents.js';
|
|
16
17
|
export { DSARIcon } from './dsar.js';
|
|
17
18
|
export { EllipsisIcon } from './ellipsis-icon.js';
|
|
@@ -24,6 +25,8 @@ export { MinusIcon } from './minus.js';
|
|
|
24
25
|
export { NotificationIcon } from './notification-icon.js';
|
|
25
26
|
export { PanelLeftIcon } from './panel-left-icon.js';
|
|
26
27
|
export { PeopleIcon } from './people.js';
|
|
28
|
+
export { PhysicalAssetIcon } from './physical-asset.js';
|
|
29
|
+
export { PlattformAssetIcon } from './plattform-asset.js';
|
|
27
30
|
export { PlusIcon } from './plus.js';
|
|
28
31
|
export { ProcessingActivityIcon } from './processing-activity.js';
|
|
29
32
|
export { ProgramIcon } from './program-icon.js';
|
package/dist/index.js
CHANGED
|
@@ -36,6 +36,7 @@ __export(index_exports, {
|
|
|
36
36
|
CloseIcon: () => CloseIcon,
|
|
37
37
|
ControlsIcon: () => ControlsIcon,
|
|
38
38
|
DSARIcon: () => DSARIcon,
|
|
39
|
+
DataAssetIcon: () => DataAssetIcon,
|
|
39
40
|
DocumentsIcon: () => DocumentsIcon,
|
|
40
41
|
EllipsisIcon: () => EllipsisIcon,
|
|
41
42
|
EyeIcon: () => EyeIcon,
|
|
@@ -47,6 +48,8 @@ __export(index_exports, {
|
|
|
47
48
|
NotificationIcon: () => NotificationIcon,
|
|
48
49
|
PanelLeftIcon: () => PanelLeftIcon,
|
|
49
50
|
PeopleIcon: () => PeopleIcon,
|
|
51
|
+
PhysicalAssetIcon: () => PhysicalAssetIcon,
|
|
52
|
+
PlattformAssetIcon: () => PlattformAssetIcon,
|
|
50
53
|
PlusIcon: () => PlusIcon,
|
|
51
54
|
ProcessingActivityIcon: () => ProcessingActivityIcon,
|
|
52
55
|
ProgramIcon: () => ProgramIcon,
|
|
@@ -417,9 +420,9 @@ var ControlsIcon = ({ size = 24, ...props }) => {
|
|
|
417
420
|
);
|
|
418
421
|
};
|
|
419
422
|
|
|
420
|
-
// src/
|
|
423
|
+
// src/data-asset.tsx
|
|
421
424
|
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
422
|
-
var
|
|
425
|
+
var DataAssetIcon = ({ size = 24, ...props }) => {
|
|
423
426
|
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
424
427
|
"svg",
|
|
425
428
|
{
|
|
@@ -434,20 +437,18 @@ var DocumentsIcon = ({ size = 24, ...props }) => {
|
|
|
434
437
|
strokeLinejoin: "round",
|
|
435
438
|
...props,
|
|
436
439
|
children: [
|
|
437
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("title", { children: "
|
|
438
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("
|
|
439
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { d: "
|
|
440
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { d: "
|
|
441
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { d: "M16 13H8" }),
|
|
442
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { d: "M16 17H8" })
|
|
440
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("title", { children: "Plattform Asset icon" }),
|
|
441
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }),
|
|
442
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { d: "M3 5V19A9 3 0 0 0 21 19V5" }),
|
|
443
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { d: "M3 12A9 3 0 0 0 21 12" })
|
|
443
444
|
]
|
|
444
445
|
}
|
|
445
446
|
);
|
|
446
447
|
};
|
|
447
448
|
|
|
448
|
-
// src/
|
|
449
|
+
// src/documents.tsx
|
|
449
450
|
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
450
|
-
var
|
|
451
|
+
var DocumentsIcon = ({ size = 24, ...props }) => {
|
|
451
452
|
return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
452
453
|
"svg",
|
|
453
454
|
{
|
|
@@ -462,17 +463,20 @@ var DSARIcon = ({ size = 24, ...props }) => {
|
|
|
462
463
|
strokeLinejoin: "round",
|
|
463
464
|
...props,
|
|
464
465
|
children: [
|
|
465
|
-
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("title", { children: "
|
|
466
|
-
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("
|
|
467
|
-
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "
|
|
466
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("title", { children: "Documents icon" }),
|
|
467
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
468
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
|
|
469
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "M10 9H8" }),
|
|
470
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "M16 13H8" }),
|
|
471
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "M16 17H8" })
|
|
468
472
|
]
|
|
469
473
|
}
|
|
470
474
|
);
|
|
471
475
|
};
|
|
472
476
|
|
|
473
|
-
// src/
|
|
477
|
+
// src/dsar.tsx
|
|
474
478
|
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
475
|
-
var
|
|
479
|
+
var DSARIcon = ({ size = 24, ...props }) => {
|
|
476
480
|
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
477
481
|
"svg",
|
|
478
482
|
{
|
|
@@ -487,19 +491,44 @@ var EllipsisIcon = ({ size = 24, ...props }) => {
|
|
|
487
491
|
strokeLinejoin: "round",
|
|
488
492
|
...props,
|
|
489
493
|
children: [
|
|
490
|
-
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("title", { children: "
|
|
491
|
-
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("
|
|
492
|
-
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("
|
|
493
|
-
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("circle", { cx: "5", cy: "12", r: "1" })
|
|
494
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("title", { children: "DSAR icon" }),
|
|
495
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
496
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.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" })
|
|
494
497
|
]
|
|
495
498
|
}
|
|
496
499
|
);
|
|
497
500
|
};
|
|
498
501
|
|
|
499
|
-
// src/
|
|
502
|
+
// src/ellipsis-icon.tsx
|
|
500
503
|
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
501
|
-
var
|
|
504
|
+
var EllipsisIcon = ({ size = 24, ...props }) => {
|
|
502
505
|
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
506
|
+
"svg",
|
|
507
|
+
{
|
|
508
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
509
|
+
width: size,
|
|
510
|
+
height: size,
|
|
511
|
+
viewBox: "0 0 24 24",
|
|
512
|
+
fill: "none",
|
|
513
|
+
stroke: "currentColor",
|
|
514
|
+
strokeWidth: "2",
|
|
515
|
+
strokeLinecap: "round",
|
|
516
|
+
strokeLinejoin: "round",
|
|
517
|
+
...props,
|
|
518
|
+
children: [
|
|
519
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("title", { children: "Ellipsis Icon" }),
|
|
520
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
|
|
521
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
|
|
522
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("circle", { cx: "5", cy: "12", r: "1" })
|
|
523
|
+
]
|
|
524
|
+
}
|
|
525
|
+
);
|
|
526
|
+
};
|
|
527
|
+
|
|
528
|
+
// src/eye.tsx
|
|
529
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
530
|
+
var EyeIcon = (props) => {
|
|
531
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
503
532
|
"svg",
|
|
504
533
|
{
|
|
505
534
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -513,18 +542,18 @@ var EyeIcon = (props) => {
|
|
|
513
542
|
strokeLinejoin: "round",
|
|
514
543
|
...props,
|
|
515
544
|
children: [
|
|
516
|
-
/* @__PURE__ */ (0,
|
|
517
|
-
/* @__PURE__ */ (0,
|
|
518
|
-
/* @__PURE__ */ (0,
|
|
545
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("title", { children: "Eye Icon" }),
|
|
546
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.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" }),
|
|
547
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
519
548
|
]
|
|
520
549
|
}
|
|
521
550
|
);
|
|
522
551
|
};
|
|
523
552
|
|
|
524
553
|
// src/eye-off.tsx
|
|
525
|
-
var
|
|
554
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
526
555
|
var EyeOffIcon = (props) => {
|
|
527
|
-
return /* @__PURE__ */ (0,
|
|
556
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
528
557
|
"svg",
|
|
529
558
|
{
|
|
530
559
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -538,20 +567,20 @@ var EyeOffIcon = (props) => {
|
|
|
538
567
|
strokeLinejoin: "round",
|
|
539
568
|
...props,
|
|
540
569
|
children: [
|
|
541
|
-
/* @__PURE__ */ (0,
|
|
542
|
-
/* @__PURE__ */ (0,
|
|
543
|
-
/* @__PURE__ */ (0,
|
|
544
|
-
/* @__PURE__ */ (0,
|
|
545
|
-
/* @__PURE__ */ (0,
|
|
570
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("title", { children: "Eye Off Icon" }),
|
|
571
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.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" }),
|
|
572
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
|
|
573
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.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" }),
|
|
574
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "m2 2 20 20" })
|
|
546
575
|
]
|
|
547
576
|
}
|
|
548
577
|
);
|
|
549
578
|
};
|
|
550
579
|
|
|
551
580
|
// src/incident.tsx
|
|
552
|
-
var
|
|
581
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
553
582
|
var IncidentIcon = ({ size = 24, ...props }) => {
|
|
554
|
-
return /* @__PURE__ */ (0,
|
|
583
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
555
584
|
"svg",
|
|
556
585
|
{
|
|
557
586
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -565,19 +594,19 @@ var IncidentIcon = ({ size = 24, ...props }) => {
|
|
|
565
594
|
strokeLinejoin: "round",
|
|
566
595
|
...props,
|
|
567
596
|
children: [
|
|
568
|
-
/* @__PURE__ */ (0,
|
|
569
|
-
/* @__PURE__ */ (0,
|
|
570
|
-
/* @__PURE__ */ (0,
|
|
571
|
-
/* @__PURE__ */ (0,
|
|
597
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("title", { children: "Incident icon" }),
|
|
598
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M12 16h.01" }),
|
|
599
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M12 8v4" }),
|
|
600
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.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" })
|
|
572
601
|
]
|
|
573
602
|
}
|
|
574
603
|
);
|
|
575
604
|
};
|
|
576
605
|
|
|
577
606
|
// src/issues.tsx
|
|
578
|
-
var
|
|
607
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
579
608
|
var IssuesIcon = ({ size = 24, ...props }) => {
|
|
580
|
-
return /* @__PURE__ */ (0,
|
|
609
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
581
610
|
"svg",
|
|
582
611
|
{
|
|
583
612
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -591,21 +620,21 @@ var IssuesIcon = ({ size = 24, ...props }) => {
|
|
|
591
620
|
strokeLinejoin: "round",
|
|
592
621
|
...props,
|
|
593
622
|
children: [
|
|
594
|
-
/* @__PURE__ */ (0,
|
|
595
|
-
/* @__PURE__ */ (0,
|
|
596
|
-
/* @__PURE__ */ (0,
|
|
597
|
-
/* @__PURE__ */ (0,
|
|
598
|
-
/* @__PURE__ */ (0,
|
|
599
|
-
/* @__PURE__ */ (0,
|
|
623
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("title", { children: "Issues icon" }),
|
|
624
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.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" }),
|
|
625
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M12 11h4" }),
|
|
626
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M12 16h4" }),
|
|
627
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M8 11h.01" }),
|
|
628
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M8 16h.01" })
|
|
600
629
|
]
|
|
601
630
|
}
|
|
602
631
|
);
|
|
603
632
|
};
|
|
604
633
|
|
|
605
634
|
// src/linkedin.tsx
|
|
606
|
-
var
|
|
635
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
607
636
|
var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
608
|
-
return /* @__PURE__ */ (0,
|
|
637
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
609
638
|
"svg",
|
|
610
639
|
{
|
|
611
640
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -621,19 +650,19 @@ var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
|
621
650
|
focusable: "false",
|
|
622
651
|
...props,
|
|
623
652
|
children: [
|
|
624
|
-
/* @__PURE__ */ (0,
|
|
625
|
-
/* @__PURE__ */ (0,
|
|
626
|
-
/* @__PURE__ */ (0,
|
|
627
|
-
/* @__PURE__ */ (0,
|
|
653
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("title", { children: "LinkedIn Icon" }),
|
|
654
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.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" }),
|
|
655
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("rect", { width: "4", height: "12", x: "2", y: "9" }),
|
|
656
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("circle", { cx: "4", cy: "4", r: "2" })
|
|
628
657
|
]
|
|
629
658
|
}
|
|
630
659
|
);
|
|
631
660
|
};
|
|
632
661
|
|
|
633
662
|
// src/minus.tsx
|
|
634
|
-
var
|
|
663
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
635
664
|
var MinusIcon = ({ size = 24, ...props }) => {
|
|
636
|
-
return /* @__PURE__ */ (0,
|
|
665
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
637
666
|
"svg",
|
|
638
667
|
{
|
|
639
668
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -647,17 +676,17 @@ var MinusIcon = ({ size = 24, ...props }) => {
|
|
|
647
676
|
strokeLinejoin: "round",
|
|
648
677
|
...props,
|
|
649
678
|
children: [
|
|
650
|
-
/* @__PURE__ */ (0,
|
|
651
|
-
/* @__PURE__ */ (0,
|
|
679
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("title", { children: "Minus Icon" }),
|
|
680
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "M5 12h14" })
|
|
652
681
|
]
|
|
653
682
|
}
|
|
654
683
|
);
|
|
655
684
|
};
|
|
656
685
|
|
|
657
686
|
// src/notification-icon.tsx
|
|
658
|
-
var
|
|
687
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
659
688
|
var NotificationIcon = (props) => {
|
|
660
|
-
return /* @__PURE__ */ (0,
|
|
689
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
661
690
|
"svg",
|
|
662
691
|
{
|
|
663
692
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -671,18 +700,18 @@ var NotificationIcon = (props) => {
|
|
|
671
700
|
strokeLinejoin: "round",
|
|
672
701
|
...props,
|
|
673
702
|
children: [
|
|
674
|
-
/* @__PURE__ */ (0,
|
|
675
|
-
/* @__PURE__ */ (0,
|
|
676
|
-
/* @__PURE__ */ (0,
|
|
703
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("title", { children: "Notification Icon" }),
|
|
704
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
|
|
705
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.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" })
|
|
677
706
|
]
|
|
678
707
|
}
|
|
679
708
|
);
|
|
680
709
|
};
|
|
681
710
|
|
|
682
711
|
// src/panel-left-icon.tsx
|
|
683
|
-
var
|
|
712
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
684
713
|
var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
685
|
-
return /* @__PURE__ */ (0,
|
|
714
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
686
715
|
"svg",
|
|
687
716
|
{
|
|
688
717
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -696,18 +725,45 @@ var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
|
696
725
|
strokeLinejoin: "round",
|
|
697
726
|
...props,
|
|
698
727
|
children: [
|
|
699
|
-
/* @__PURE__ */ (0,
|
|
700
|
-
/* @__PURE__ */ (0,
|
|
701
|
-
/* @__PURE__ */ (0,
|
|
728
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("title", { children: "Panel Left icon" }),
|
|
729
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
730
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M9 3v18" })
|
|
702
731
|
]
|
|
703
732
|
}
|
|
704
733
|
);
|
|
705
734
|
};
|
|
706
735
|
|
|
707
736
|
// src/people.tsx
|
|
708
|
-
var
|
|
737
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
709
738
|
var PeopleIcon = ({ size = 24, ...props }) => {
|
|
710
|
-
return /* @__PURE__ */ (0,
|
|
739
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
740
|
+
"svg",
|
|
741
|
+
{
|
|
742
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
743
|
+
width: size,
|
|
744
|
+
height: size,
|
|
745
|
+
viewBox: "0 0 24 24",
|
|
746
|
+
fill: "none",
|
|
747
|
+
stroke: "currentColor",
|
|
748
|
+
strokeWidth: "2",
|
|
749
|
+
strokeLinecap: "round",
|
|
750
|
+
strokeLinejoin: "round",
|
|
751
|
+
...props,
|
|
752
|
+
children: [
|
|
753
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("title", { children: "People icon" }),
|
|
754
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
755
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M16 3.128a4 4 0 0 1 0 7.744" }),
|
|
756
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
757
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("circle", { cx: "9", cy: "7", r: "4" })
|
|
758
|
+
]
|
|
759
|
+
}
|
|
760
|
+
);
|
|
761
|
+
};
|
|
762
|
+
|
|
763
|
+
// src/physical-asset.tsx
|
|
764
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
765
|
+
var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
766
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
711
767
|
"svg",
|
|
712
768
|
{
|
|
713
769
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -721,20 +777,47 @@ var PeopleIcon = ({ size = 24, ...props }) => {
|
|
|
721
777
|
strokeLinejoin: "round",
|
|
722
778
|
...props,
|
|
723
779
|
children: [
|
|
724
|
-
/* @__PURE__ */ (0,
|
|
725
|
-
/* @__PURE__ */ (0,
|
|
726
|
-
/* @__PURE__ */ (0,
|
|
727
|
-
/* @__PURE__ */ (0,
|
|
728
|
-
/* @__PURE__ */ (0,
|
|
780
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("title", { children: "Physical Asset icon" }),
|
|
781
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" }),
|
|
782
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M10 19v-3.96 3.15" }),
|
|
783
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M7 19h5" }),
|
|
784
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("rect", { width: "6", height: "10", x: "16", y: "12", rx: "2" })
|
|
785
|
+
]
|
|
786
|
+
}
|
|
787
|
+
);
|
|
788
|
+
};
|
|
789
|
+
|
|
790
|
+
// src/plattform-asset.tsx
|
|
791
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
792
|
+
var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
793
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
794
|
+
"svg",
|
|
795
|
+
{
|
|
796
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
797
|
+
width: size,
|
|
798
|
+
height: size,
|
|
799
|
+
viewBox: "0 0 24 24",
|
|
800
|
+
fill: "none",
|
|
801
|
+
stroke: "currentColor",
|
|
802
|
+
strokeWidth: "2",
|
|
803
|
+
strokeLinecap: "round",
|
|
804
|
+
strokeLinejoin: "round",
|
|
805
|
+
...props,
|
|
806
|
+
children: [
|
|
807
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("title", { children: "Plattform Asset icon" }),
|
|
808
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }),
|
|
809
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }),
|
|
810
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }),
|
|
811
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("line", { x1: "6", x2: "6.01", y1: "18", y2: "18" })
|
|
729
812
|
]
|
|
730
813
|
}
|
|
731
814
|
);
|
|
732
815
|
};
|
|
733
816
|
|
|
734
817
|
// src/plus.tsx
|
|
735
|
-
var
|
|
818
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
736
819
|
var PlusIcon = (props) => {
|
|
737
|
-
return /* @__PURE__ */ (0,
|
|
820
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
738
821
|
"svg",
|
|
739
822
|
{
|
|
740
823
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -748,21 +831,21 @@ var PlusIcon = (props) => {
|
|
|
748
831
|
strokeLinejoin: "round",
|
|
749
832
|
...props,
|
|
750
833
|
children: [
|
|
751
|
-
/* @__PURE__ */ (0,
|
|
752
|
-
/* @__PURE__ */ (0,
|
|
753
|
-
/* @__PURE__ */ (0,
|
|
834
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("title", { children: "Plus Icon" }),
|
|
835
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M5 12h14" }),
|
|
836
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M12 5v14" })
|
|
754
837
|
]
|
|
755
838
|
}
|
|
756
839
|
);
|
|
757
840
|
};
|
|
758
841
|
|
|
759
842
|
// src/processing-activity.tsx
|
|
760
|
-
var
|
|
843
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
761
844
|
var ProcessingActivityIcon = ({
|
|
762
845
|
size = 24,
|
|
763
846
|
...props
|
|
764
847
|
}) => {
|
|
765
|
-
return /* @__PURE__ */ (0,
|
|
848
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
|
|
766
849
|
"svg",
|
|
767
850
|
{
|
|
768
851
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -776,19 +859,19 @@ var ProcessingActivityIcon = ({
|
|
|
776
859
|
strokeLinejoin: "round",
|
|
777
860
|
...props,
|
|
778
861
|
children: [
|
|
779
|
-
/* @__PURE__ */ (0,
|
|
780
|
-
/* @__PURE__ */ (0,
|
|
781
|
-
/* @__PURE__ */ (0,
|
|
782
|
-
/* @__PURE__ */ (0,
|
|
862
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("title", { children: "Processing Activity icon" }),
|
|
863
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("rect", { width: "8", height: "8", x: "3", y: "3", rx: "2" }),
|
|
864
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M7 11v4a2 2 0 0 0 2 2h4" }),
|
|
865
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("rect", { width: "8", height: "8", x: "13", y: "13", rx: "2" })
|
|
783
866
|
]
|
|
784
867
|
}
|
|
785
868
|
);
|
|
786
869
|
};
|
|
787
870
|
|
|
788
871
|
// src/program-icon.tsx
|
|
789
|
-
var
|
|
872
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
790
873
|
var ProgramIcon = ({ size = 24, ...props }) => {
|
|
791
|
-
return /* @__PURE__ */ (0,
|
|
874
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
792
875
|
"svg",
|
|
793
876
|
{
|
|
794
877
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -802,20 +885,20 @@ var ProgramIcon = ({ size = 24, ...props }) => {
|
|
|
802
885
|
strokeLinejoin: "round",
|
|
803
886
|
...props,
|
|
804
887
|
children: [
|
|
805
|
-
/* @__PURE__ */ (0,
|
|
806
|
-
/* @__PURE__ */ (0,
|
|
807
|
-
/* @__PURE__ */ (0,
|
|
808
|
-
/* @__PURE__ */ (0,
|
|
809
|
-
/* @__PURE__ */ (0,
|
|
888
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("title", { children: "Program icon" }),
|
|
889
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.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" }),
|
|
890
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M8 10v4" }),
|
|
891
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M12 10v2" }),
|
|
892
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M16 10v6" })
|
|
810
893
|
]
|
|
811
894
|
}
|
|
812
895
|
);
|
|
813
896
|
};
|
|
814
897
|
|
|
815
898
|
// src/risk.tsx
|
|
816
|
-
var
|
|
899
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
817
900
|
var RiskIcon = ({ size = 24, ...props }) => {
|
|
818
|
-
return /* @__PURE__ */ (0,
|
|
901
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
|
|
819
902
|
"svg",
|
|
820
903
|
{
|
|
821
904
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -829,19 +912,19 @@ var RiskIcon = ({ size = 24, ...props }) => {
|
|
|
829
912
|
strokeLinejoin: "round",
|
|
830
913
|
...props,
|
|
831
914
|
children: [
|
|
832
|
-
/* @__PURE__ */ (0,
|
|
833
|
-
/* @__PURE__ */ (0,
|
|
834
|
-
/* @__PURE__ */ (0,
|
|
835
|
-
/* @__PURE__ */ (0,
|
|
915
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("title", { children: "Risk icon" }),
|
|
916
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.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" }),
|
|
917
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M12 8v4" }),
|
|
918
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M12 16h.01" })
|
|
836
919
|
]
|
|
837
920
|
}
|
|
838
921
|
);
|
|
839
922
|
};
|
|
840
923
|
|
|
841
924
|
// src/save.tsx
|
|
842
|
-
var
|
|
925
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
843
926
|
var SaveIcon = (props) => {
|
|
844
|
-
return /* @__PURE__ */ (0,
|
|
927
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
845
928
|
"svg",
|
|
846
929
|
{
|
|
847
930
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -855,19 +938,19 @@ var SaveIcon = (props) => {
|
|
|
855
938
|
strokeLinejoin: "round",
|
|
856
939
|
...props,
|
|
857
940
|
children: [
|
|
858
|
-
/* @__PURE__ */ (0,
|
|
859
|
-
/* @__PURE__ */ (0,
|
|
860
|
-
/* @__PURE__ */ (0,
|
|
861
|
-
/* @__PURE__ */ (0,
|
|
941
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("title", { children: "Save Icon" }),
|
|
942
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.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" }),
|
|
943
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
944
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
862
945
|
]
|
|
863
946
|
}
|
|
864
947
|
);
|
|
865
948
|
};
|
|
866
949
|
|
|
867
950
|
// src/search.tsx
|
|
868
|
-
var
|
|
951
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
869
952
|
var SearchIcon = (props) => {
|
|
870
|
-
return /* @__PURE__ */ (0,
|
|
953
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
871
954
|
"svg",
|
|
872
955
|
{
|
|
873
956
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -881,18 +964,18 @@ var SearchIcon = (props) => {
|
|
|
881
964
|
strokeLinejoin: "round",
|
|
882
965
|
...props,
|
|
883
966
|
children: [
|
|
884
|
-
/* @__PURE__ */ (0,
|
|
885
|
-
/* @__PURE__ */ (0,
|
|
886
|
-
/* @__PURE__ */ (0,
|
|
967
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("title", { children: "Search Icon" }),
|
|
968
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "m21 21-4.34-4.34" }),
|
|
969
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("circle", { cx: "11", cy: "11", r: "8" })
|
|
887
970
|
]
|
|
888
971
|
}
|
|
889
972
|
);
|
|
890
973
|
};
|
|
891
974
|
|
|
892
975
|
// src/settings.tsx
|
|
893
|
-
var
|
|
976
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
894
977
|
var SettingsIcon = ({ size = 24, ...props }) => {
|
|
895
|
-
return /* @__PURE__ */ (0,
|
|
978
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
896
979
|
"svg",
|
|
897
980
|
{
|
|
898
981
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -906,20 +989,20 @@ var SettingsIcon = ({ size = 24, ...props }) => {
|
|
|
906
989
|
strokeLinejoin: "round",
|
|
907
990
|
...props,
|
|
908
991
|
children: [
|
|
909
|
-
/* @__PURE__ */ (0,
|
|
910
|
-
/* @__PURE__ */ (0,
|
|
911
|
-
/* @__PURE__ */ (0,
|
|
912
|
-
/* @__PURE__ */ (0,
|
|
913
|
-
/* @__PURE__ */ (0,
|
|
992
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("title", { children: "Settings" }),
|
|
993
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M14 17H5" }),
|
|
994
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M19 7h-9" }),
|
|
995
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "17", cy: "17", r: "3" }),
|
|
996
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "7", cy: "7", r: "3" })
|
|
914
997
|
]
|
|
915
998
|
}
|
|
916
999
|
);
|
|
917
1000
|
};
|
|
918
1001
|
|
|
919
1002
|
// src/upload.tsx
|
|
920
|
-
var
|
|
1003
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
921
1004
|
var UploadIcon = ({ size = 24, ...props }) => {
|
|
922
|
-
return /* @__PURE__ */ (0,
|
|
1005
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
923
1006
|
"svg",
|
|
924
1007
|
{
|
|
925
1008
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -933,19 +1016,19 @@ var UploadIcon = ({ size = 24, ...props }) => {
|
|
|
933
1016
|
strokeLinejoin: "round",
|
|
934
1017
|
...props,
|
|
935
1018
|
children: [
|
|
936
|
-
/* @__PURE__ */ (0,
|
|
937
|
-
/* @__PURE__ */ (0,
|
|
938
|
-
/* @__PURE__ */ (0,
|
|
939
|
-
/* @__PURE__ */ (0,
|
|
1019
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("title", { children: "Upload icon" }),
|
|
1020
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M12 13v8" }),
|
|
1021
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }),
|
|
1022
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "m8 17 4-4 4 4" })
|
|
940
1023
|
]
|
|
941
1024
|
}
|
|
942
1025
|
);
|
|
943
1026
|
};
|
|
944
1027
|
|
|
945
1028
|
// src/vendor.tsx
|
|
946
|
-
var
|
|
1029
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
947
1030
|
var VendorIcon = ({ size = 24, ...props }) => {
|
|
948
|
-
return /* @__PURE__ */ (0,
|
|
1031
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
|
|
949
1032
|
"svg",
|
|
950
1033
|
{
|
|
951
1034
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -959,12 +1042,12 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
959
1042
|
strokeLinejoin: "round",
|
|
960
1043
|
...props,
|
|
961
1044
|
children: [
|
|
962
|
-
/* @__PURE__ */ (0,
|
|
963
|
-
/* @__PURE__ */ (0,
|
|
964
|
-
/* @__PURE__ */ (0,
|
|
965
|
-
/* @__PURE__ */ (0,
|
|
966
|
-
/* @__PURE__ */ (0,
|
|
967
|
-
/* @__PURE__ */ (0,
|
|
1045
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("title", { children: "Vendor icon" }),
|
|
1046
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.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" }),
|
|
1047
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
1048
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4" }),
|
|
1049
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M2 7h20" }),
|
|
1050
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.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" })
|
|
968
1051
|
]
|
|
969
1052
|
}
|
|
970
1053
|
);
|
|
@@ -986,6 +1069,7 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
986
1069
|
CloseIcon,
|
|
987
1070
|
ControlsIcon,
|
|
988
1071
|
DSARIcon,
|
|
1072
|
+
DataAssetIcon,
|
|
989
1073
|
DocumentsIcon,
|
|
990
1074
|
EllipsisIcon,
|
|
991
1075
|
EyeIcon,
|
|
@@ -997,6 +1081,8 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
997
1081
|
NotificationIcon,
|
|
998
1082
|
PanelLeftIcon,
|
|
999
1083
|
PeopleIcon,
|
|
1084
|
+
PhysicalAssetIcon,
|
|
1085
|
+
PlattformAssetIcon,
|
|
1000
1086
|
PlusIcon,
|
|
1001
1087
|
ProcessingActivityIcon,
|
|
1002
1088
|
ProgramIcon,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
ProgramIcon
|
|
4
|
+
} from "./chunk-DSI5CQOQ.mjs";
|
|
5
|
+
import {
|
|
6
|
+
RiskIcon
|
|
7
|
+
} from "./chunk-JFTUDPFQ.mjs";
|
|
8
|
+
import {
|
|
9
|
+
SaveIcon
|
|
10
|
+
} from "./chunk-KE6JB3MS.mjs";
|
|
2
11
|
import {
|
|
3
12
|
SearchIcon
|
|
4
13
|
} from "./chunk-3BJDY4K2.mjs";
|
|
@@ -11,6 +20,9 @@ import {
|
|
|
11
20
|
import {
|
|
12
21
|
VendorIcon
|
|
13
22
|
} from "./chunk-5AMD4S26.mjs";
|
|
23
|
+
import {
|
|
24
|
+
MinusIcon
|
|
25
|
+
} from "./chunk-6TEI2IX4.mjs";
|
|
14
26
|
import {
|
|
15
27
|
NotificationIcon
|
|
16
28
|
} from "./chunk-H42UA2FF.mjs";
|
|
@@ -20,6 +32,12 @@ import {
|
|
|
20
32
|
import {
|
|
21
33
|
PeopleIcon
|
|
22
34
|
} from "./chunk-XOYRXKQA.mjs";
|
|
35
|
+
import {
|
|
36
|
+
PhysicalAssetIcon
|
|
37
|
+
} from "./chunk-V6QXOK5V.mjs";
|
|
38
|
+
import {
|
|
39
|
+
PlattformAssetIcon
|
|
40
|
+
} from "./chunk-WWSIRUDQ.mjs";
|
|
23
41
|
import {
|
|
24
42
|
PlusIcon
|
|
25
43
|
} from "./chunk-VT4DJPGF.mjs";
|
|
@@ -27,14 +45,8 @@ import {
|
|
|
27
45
|
ProcessingActivityIcon
|
|
28
46
|
} from "./chunk-Y7DSA4LC.mjs";
|
|
29
47
|
import {
|
|
30
|
-
|
|
31
|
-
} from "./chunk-
|
|
32
|
-
import {
|
|
33
|
-
RiskIcon
|
|
34
|
-
} from "./chunk-JFTUDPFQ.mjs";
|
|
35
|
-
import {
|
|
36
|
-
SaveIcon
|
|
37
|
-
} from "./chunk-KE6JB3MS.mjs";
|
|
48
|
+
DSARIcon
|
|
49
|
+
} from "./chunk-DRZOZSLJ.mjs";
|
|
38
50
|
import {
|
|
39
51
|
EllipsisIcon
|
|
40
52
|
} from "./chunk-AYB3TD3S.mjs";
|
|
@@ -53,9 +65,6 @@ import {
|
|
|
53
65
|
import {
|
|
54
66
|
LinkedInIcon
|
|
55
67
|
} from "./chunk-M2RUR5WR.mjs";
|
|
56
|
-
import {
|
|
57
|
-
MinusIcon
|
|
58
|
-
} from "./chunk-6TEI2IX4.mjs";
|
|
59
68
|
import {
|
|
60
69
|
ChevronLeftIcon
|
|
61
70
|
} from "./chunk-NKQY55QT.mjs";
|
|
@@ -74,12 +83,12 @@ import {
|
|
|
74
83
|
import {
|
|
75
84
|
ControlsIcon
|
|
76
85
|
} from "./chunk-DNHYYMYF.mjs";
|
|
86
|
+
import {
|
|
87
|
+
DataAssetIcon
|
|
88
|
+
} from "./chunk-36PEVCQL.mjs";
|
|
77
89
|
import {
|
|
78
90
|
DocumentsIcon
|
|
79
91
|
} from "./chunk-3FNTP6LP.mjs";
|
|
80
|
-
import {
|
|
81
|
-
DSARIcon
|
|
82
|
-
} from "./chunk-DRZOZSLJ.mjs";
|
|
83
92
|
import {
|
|
84
93
|
ArrowDownUp
|
|
85
94
|
} from "./chunk-Z4P7M3EL.mjs";
|
|
@@ -120,6 +129,7 @@ export {
|
|
|
120
129
|
CloseIcon,
|
|
121
130
|
ControlsIcon,
|
|
122
131
|
DSARIcon,
|
|
132
|
+
DataAssetIcon,
|
|
123
133
|
DocumentsIcon,
|
|
124
134
|
EllipsisIcon,
|
|
125
135
|
EyeIcon,
|
|
@@ -131,6 +141,8 @@ export {
|
|
|
131
141
|
NotificationIcon,
|
|
132
142
|
PanelLeftIcon,
|
|
133
143
|
PeopleIcon,
|
|
144
|
+
PhysicalAssetIcon,
|
|
145
|
+
PlattformAssetIcon,
|
|
134
146
|
PlusIcon,
|
|
135
147
|
ProcessingActivityIcon,
|
|
136
148
|
ProgramIcon,
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/physical-asset.tsx
|
|
22
|
+
var physical_asset_exports = {};
|
|
23
|
+
__export(physical_asset_exports, {
|
|
24
|
+
PhysicalAssetIcon: () => PhysicalAssetIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(physical_asset_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
29
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
30
|
+
"svg",
|
|
31
|
+
{
|
|
32
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
33
|
+
width: size,
|
|
34
|
+
height: size,
|
|
35
|
+
viewBox: "0 0 24 24",
|
|
36
|
+
fill: "none",
|
|
37
|
+
stroke: "currentColor",
|
|
38
|
+
strokeWidth: "2",
|
|
39
|
+
strokeLinecap: "round",
|
|
40
|
+
strokeLinejoin: "round",
|
|
41
|
+
...props,
|
|
42
|
+
children: [
|
|
43
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Physical Asset icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M10 19v-3.96 3.15" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 19h5" }),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "6", height: "10", x: "16", y: "12", rx: "2" })
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
);
|
|
51
|
+
};
|
|
52
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
53
|
+
0 && (module.exports = {
|
|
54
|
+
PhysicalAssetIcon
|
|
55
|
+
});
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/plattform-asset.tsx
|
|
22
|
+
var plattform_asset_exports = {};
|
|
23
|
+
__export(plattform_asset_exports, {
|
|
24
|
+
PlattformAssetIcon: () => PlattformAssetIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(plattform_asset_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
29
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
30
|
+
"svg",
|
|
31
|
+
{
|
|
32
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
33
|
+
width: size,
|
|
34
|
+
height: size,
|
|
35
|
+
viewBox: "0 0 24 24",
|
|
36
|
+
fill: "none",
|
|
37
|
+
stroke: "currentColor",
|
|
38
|
+
strokeWidth: "2",
|
|
39
|
+
strokeLinecap: "round",
|
|
40
|
+
strokeLinejoin: "round",
|
|
41
|
+
...props,
|
|
42
|
+
children: [
|
|
43
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Plattform Asset icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "6", x2: "6.01", y1: "18", y2: "18" })
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
);
|
|
51
|
+
};
|
|
52
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
53
|
+
0 && (module.exports = {
|
|
54
|
+
PlattformAssetIcon
|
|
55
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/icons",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.1",
|
|
4
4
|
"description": "icons we use in our kopexa products",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"icons"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"react": ">=19.0.0-rc.0",
|
|
29
29
|
"react-dom": ">=19.0.0-rc.0",
|
|
30
|
-
"@kopexa/theme": "1.6.
|
|
30
|
+
"@kopexa/theme": "1.6.1"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@kopexa/shared-utils": "1.1.5",
|